.body-overlay{
    position: relative;
    overflow: hidden;
}
.body-overlay::after{
    position: absolute;
    content: "";
    inset: 0;
    /* width: 100%;
    height: 100vh; */
    z-index: 1;
    background: rgba(0,0,0,0.5);
}

.form-hidden-option{
    position: relative;
    margin: 10px;
}
.form-hidden-option .city-block{
    margin: 0;
    cursor: pointer;
}

.form-hidden-option input[type="radio"]{
    position: relative;
}

.form-hidden-option input[type="radio"]:checked ~ .city-block{
    background-color: #ffd166;
    font-weight: bold;
}


.nice-number button{
    color:rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    background: white;
    font-size: 12px;
    line-height: 2.7;
}
.nice-number button:hover,
.nice-number button:focus{
    outline: 0;
    color:#ffd166;
    border: 1px solid #ffd166;
}
.nice-number input{
    width: 100px;
}

.cart-link{
    font-size: 30px;
    cursor: pointer;
    color: #114566;
}
.notification-dot{
    position: relative;
}
.notification-dot::after{
    z-index: 2;
    position: absolute;
    right: 3px;
    top: 3px;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #bb0000;
}


.filter{
    display: none;
}