@media screen and (max-width: 1080px) {


    /******** Animation ********/

    @keyframes locationPopUpReveal {
        from {
            transform: translateY(50px);
            visibility: hidden;
            opacity: 0;
        }
        to {
            transform: translateY(0);
            visibility: visible;
            opacity: 1;
        }
    }

    .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;
    }


    /******** Style ********/
    
    #locationPopUp {
        visibility: hidden;
        z-index: 999;
    }
    #locationPopUp {
        position: fixed;
        bottom: 30px;
    }
    #locationPopUp {
        margin: 20px 40px;
        padding: 10px 5px;
    }
    #locationPopUp {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #locationPopUp {
        background: #fff;
        border-radius: 20px;
        box-shadow: 1px 1px 10px 1px #00000020;
    }
    #locationPopUp #locationPopUp__address {
        margin: 10px auto;
    }
    #locationPopUp #locationPopUp__address {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2.5px;
    }
    #locationPopUp #locationPopUp__address svg {
        height: 18px;
        margin-top: -3px;
        color: #000;
    }
    #locationPopUp #locationPopUp__address p {
        margin: 0;
    }
    #locationPopUp #locationPopUp__address p {
        font-family: 'content-font';
        font-size: 14px;
        color: #000;
    }
    #locationPopUp #locationPopUp__options {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
    }
    #locationPopUp #locationPopUp__options a {
        width: auto;
        height: auto;
        background: transparent;
        padding: 0 5px;
    }
    #locationPopUp #locationPopUp__options a img {
        width: 100%;
        height: auto;
        border-radius: 50%;
        object-fit: cover;
    }
    #CloselocationPopUp {
        position: absolute;
        right: 5;
        top: -28;
    }
    #CloselocationPopUp {
        background: none;
        border: none;
        padding: 0;
    }
    #CloselocationPopUp svg {
        width: 25px;
        color: #f0f0f1;
    }


}