.cities-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cities-list .col{
    width: calc(33% - 10px);
}

.cities-list .city-item {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #fff;
    padding: 24px 24px 0 24px;
    width: 100%;
    transition: all .3s ease-in-out;
    margin-bottom: 20px;
}

.cities-list .city-item .addresses {
    transition: all .3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.cities-list .city-item.open .addresses {
    max-height: 556px;
    overflow-y: auto;
    padding: 0 5px;
    scrollbar-width: thin;
    scrollbar-color: #001336 #E2E3E6;
}

.cities-list .city-item.open {
    padding-bottom: 24px;
}

.cities-list .city-item:not(.open):hover {
    border-color: #155FE3;
}

.cities-list .city-item .open-close-button {
    width: 24px;
    height: 24px;
}

.cities-list .city-item .open-close-button svg {
    transition: all .3s ease;
    transform: rotate(0);
}

.cities-list .city-item.open .open-close-button svg {
    transform: rotate(45deg);
}

.cities-list .city-item .open-close-button svg path {
    transition: all .3s ease;
}

.cities-list .city-item:not(.open):hover .open-close-button svg path {
    stroke: #155FE3;
}

.cities-list .city-item:not(.open):hover .city-name {
    color: #155FE3;
}

.city-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding-bottom: 24px;
}

.city-header .left,
.city-header .left .icons{
    display: flex;
    align-items: center;
}

.city-header .left .icons svg{
    width: 32px;
    height: 32px;
}

.city-header .left .icons svg:last-child{
    margin-left: 4px;
}

.city-name{
    color: #001336;
    font-weight: 500;
    font-size: 18px;
    margin-left: 16px;
    transition: all .3s ease;
}

.cities-list .address{
    color: #001336;
    background: #F2F2F2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    display: block;
}

.cities-list .address:last-child{
    margin-bottom: 0;
}

@media(max-width: 1080px){
    .cities-list .col {
        width: 100%;
    }
}