.benefits-container{
    position: relative;
}
.benefits-container::after{
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    z-index: -1;
    background-color: #e4c8cb;
    border-radius: 25px;
}

.benefit{
    margin: 0 auto;
}

.popup{
    position:fixed;
    top:0px;
    bottom:0px;
    left:0px;
    width:100vw;
    height: 100%;
    display: flex;
    padding: 20px;
    align-items: center;
    z-index:-1;
    opacity: 0;
    justify-content: center;
    transition: all 0.5s ease;
    background-color: rgba(0,0,0,0.7);
}
.popup-wrapper{
    width:100%;
    height:100%;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: -1;
    align-items:start;
    display: flex;
    padding:20px;
}


.popup-drawer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-drawer.show{
    opacity: 1;
    z-index: 999999;
}
.popup-drawer .popup-wrapper{
    max-width: var(--max-width-desktop , 420px);
    position: absolute;
    right:0px;
    height: 100%;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}


    .popup-bottom-bar{

        .popup-wrapper{
            max-width: var(--max-width-desktop);
            height:70vh;
        }

        @media screen and (max-width:1200px){
            .popup-wrapper{
                position:absolute;
                transform: translateY(100%);
                bottom:0px;
                padding:0px;
                left:0px;
                width:100%;
                height:auto;
                border-radius:0px;
                box-shadow:none;
            }
            
            .show .popup-wrapper{
                transform: translateY(0px);
            }
        }

    }
    .popup-lg .popup-wrapper{
        max-width: 1400px;
    }
    .popup-sm .popup-wrapper{
        max-width: 780px;
    }
    .popup-md .popup-wrapper{
        max-width: var(--max-width-desktop , 920px);
    }

    .popup-responsive .popup-wrapper{
        max-width: var(--max-width-desktop);
    }

    .popup-container{
        width:100%;
        border-radius: 15px;
        max-height:90vh;
        overflow-y:auto;
        overflow-x:hidden;
        background-color: white;
        padding: 25px;
    }

    .popup-drawer .popup-container{
        height:100%;
        max-height:100%;
        overflow-y:auto;
    }

    .city-label{
        border-radius: 10px;
        color:var(-black);
        display:flex;
        cursor:pointer;
        width:100%;
        padding:7px 10px;
        display: inline-flex;
        font-size:1rem;
        font-weight: 500;
        margin-right: 10px;
        margin-bottom:10px;
    }
    [class*=city-label]
    {
        cursor:pointer;
        transition: all 0.5s ease;
    }
    [class*=city-label]:hover img
    {
        filter:drop-shadow(200px 0px black);
    }



    .popup.show,.popup.show .popup-wrapper{
        opacity: 1;
        z-index: 999999;
        transform: translateY(0px); 
    }


    @media screen and (max-width:992px){
        .popup-wrapper{
            padding:0px;
        }
        .popup-full .popup-container{
            width:100vw;
            height:100vh;
        }
    }


    .floating-menu{
        position: fixed;
        /* bottom: calc(env(safe-area-inset-bottom, 0px) + 20px)
        ; */
        display: flex;
        bottom:0px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999999;
        width:100%;
        padding: 0.5rem;
        justify-content: center;
        background-color: var(--white);
        /* border-radius: 9999px; */
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    }
    .floating-menu-content{
        display: flex;
        width:100%;
        align-items: center;
        gap: 0.25rem;
        justify-content: space-around;
        max-width: 320px;
        padding: 0.25rem;
    }
    .floating-menu-item{
        display: flex;
        transition: all 0.2s ease;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }
    .floating-menu-item--active .floating-menu-link{
        background-color: var(--accent-dark);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 9999px;
    }
    .floating-menu-item--active .floating-menu-icon svg,
    .floating-menu-item--active .floating-menu-icon path{
        stroke: var(--white) !important;
    }
    .floating-menu-link{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.5rem;
        color: var(--black);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        border-radius: 9999px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    .floating-menu-item:hover{
        transform: scale(1.05);
    }
    .floating-menu-link--icon-only .floating-menu-icon svg,
    .floating-menu-link--icon-only .floating-menu-icon path{
        stroke: var(--black) !important;
    }
    .floating-menu-label{
        white-space: nowrap;
    }
    .floating-menu-icon{
        flex-shrink: 0;
    }