.cities-wrapper{
    background: #EDEFF7;
    padding: 24px 0px 48px 0px;
}
.cities-wrapper h1{
    display: flex;
    justify-content: center;
    padding: 12px 12px 24px 12px;
    font-size: 22px;
    line-height: 28px;
    color: #353339;
}
.cities-wrapper .cities{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 40px;
    background: #FFF;
    padding: 24px 0px;
    gap: 24px;
    width: 1076px;
    margin: auto;
}
.cities-wrapper .cities .h2.select-city-label{
    font-size: 22px;
    line-height: 28px;
    padding: 12px;
    color: #353339;
}
.cities-wrapper .cities .search-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 28px;
    background: #F2F2F8;

    min-width: 720px;
    height: 48px;
    padding: 4px;
    gap: 4px;
}
.cities-wrapper .cities .search-wrapper input.search-text{
    border: none;
    background: none;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    color: #1D1B20;
    outline: none;

    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
}
.cities-wrapper .cities .search-wrapper img.clear-search-text-button{
    padding: 8px;
    cursor: pointer;
}
.cities-wrapper .cities .list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 24px 110px;
    width: 100%;
}
.cities-wrapper .cities .list .city{
    display: flex;
    width: calc(100% / 4 - 3 / 4 * 24px);
    min-height: 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;

}
.cities-wrapper .cities .list .city a{
    color: #353339;
}

.cities-wrapper .cities .no-cities{
    display: none;
    width: 100%;
    font-size: 18px;
    line-height: 22px;
    padding: 12px;
    color: #353339;
    text-align: center;
}

/*select city widget*/


.cities-form {
    width: auto;
    padding: 0;
    background: #FFFFFF;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: height 1s ease-out;
}

.cities-form-container .cities-wrapper{
    background: transparent;
    padding: 0;
}
/*select city widget*/

@media (max-width: 1199px){
    .cities-wrapper .cities{
        width: 100%;
    }
}

@media (max-width: 991px){
    .cities-wrapper .cities .list .city{
        width: calc(100% / 3 - 16px);
    }
    .cities-wrapper .cities .search-wrapper{
        width: calc(100% - 200px);
        min-width: auto;
    }
}

@media (max-width: 767px){
    .cities-wrapper .cities .search-wrapper{
        width: calc(100% - 48px);
        border-radius: 8px;
        height: 40px;
    }
    .cities-wrapper .cities .list{
        padding: 12px 24px 24px 24px;
    }
    .cities-wrapper .cities .list .city{
        width: calc(100% / 2 - 12px);
        font-size: 14px;
        line-height: 20px;
    }
    .cities-wrapper .cities{
        gap: 12px;
        border-radius: 30px;
        min-width: 336px;
    }
    .cities-wrapper .cities .h2.select-city-label{
        font-size: 20px;
        line-height: 26px;
    }
    .cities-wrapper .cities .search-wrapper input.search-text{
        font-size: 14px;
        line-height: 22px
    }
    .cities-wrapper .cities .no-cities{
        font-size: 16px;
        line-height: 20px;
        padding: 12px 0;
    }
}