@media screen and (min-width: 1080px) {


    /******** Animation ********/

    /* Pop up appears */
    @keyframes locationPopUpReveal {
        from {
            transform: translateY(50px);
            visibility: hidden;
            opacity: 0;
        }
        to {
            transform: translateY(0);
            visibility: visible;
            opacity: 1;
        }
    }

    /* Pop up disappears */
    .locationPopUpReveal {
        animation: locationPopUpReveal 1s forwards;
    }

    @keyframes locationPopUpDisappear {
        from {
            transform: translateY(0);
            visibility: visible;
            opacity: 1;
        }
        to {
            transform: translateY(50px);
            visibility: hidden;
            opacity: 0;
        }
    }

    .locationPopUpDisappear {
        animation: locationPopUpDisappear 1s forwards;
    }

    /* Icon rotates on :hover (Waze, Google Maps, ...) */
    @keyframes itineraryApps {
        from {
            rotate: 0;
        }
        to {
            rotate: 360deg;
        }
    }


    /******** Style ********/
    
    #locationPopUp {
        visibility: hidden;
        z-index: 999;
    }
    #locationPopUp {
        position: fixed;
        bottom: 2.5em;
        left: 30%;
        right: 30%;
    }
    #locationPopUp {
        padding: 8px 10px;
    }
    #locationPopUp {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    #locationPopUp {
        background: #2c3338;
        border-radius: 50px;
        box-shadow: 1px 1px 10px 1px #00000020;
    }
    #locationPopUp #locationPopUp__address {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2.5px;
    }
    #locationPopUp #locationPopUp__address svg {
        height: 18px;
        margin-top: -1px;
        color: #fff;
    }
    #locationPopUp #locationPopUp__address p {
        margin: 0;
    }
    #locationPopUp #locationPopUp__address p {
        font-family: 'content-font';
        font-size: 15px;
        color: #fff;
    }
    #locationPopUp #locationPopUp__options {
        display: grid;
        grid-template-columns: 50px 50px 50px 50px;
    }
    #locationPopUp #locationPopUp__options a {
        width: auto;
        height: auto;
        background: transparent;
        padding: 0 5px;
    }
    #locationPopUp #locationPopUp__options a:hover {
        animation: itineraryApps 1s;
    }
    #locationPopUp #locationPopUp__options a img {
        width: 100%;
        height: auto;
        border-radius: 50%;
        object-fit: cover;
    }
    #CloselocationPopUp {
        position: absolute;
        right: -32px;
        cursor: pointer;
    }
    #CloselocationPopUp {
        background: none;
        border: none;
        padding: 0;
    }
    #CloselocationPopUp svg {
        width: 30px;
        color: #2c3338;
    }
    #CloselocationPopUp:hover svg {
        color: var(--secondary);
        transform: .5s ease-in;
    }


}