.city-toc {
    position: relative;
    margin: 35px 0;
    padding: 22px 24px 18px;
    border-radius: 18px;
    background: #f3f6fb;
    box-shadow: 0 0 0 1px rgba(59, 92, 109, 0.08), 0 12px 34px rgba(59, 92, 109, 0.14);
}

.city-toc__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: default;
    text-align: left;
}

.city-toc__badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 4px;
    background: #3b5c6d;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.city-toc__icon {
    display: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #3b5c6d;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
}

.city-toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.city-toc__list li {
    margin: 0 0 10px;
    padding: 0;
    color: #3b5c6d;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    list-style: none;
}

.city-toc__list li::before {
    content: none;
}

.city-toc__list a {
    color: #3b5c6d;
    text-decoration: none;
}

.city-toc__list a:hover {
    color: #e02d30;
}

.city-toc__close {
    display: none;
    width: 36px;
    height: 36px;
    margin: 8px auto 0;
    border: 0;
    border-radius: 50%;
    background: #3b5c6d;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 767px) {
    .city-toc {
        padding: 16px;
    }

    .city-toc__toggle {
        cursor: pointer;
        margin-bottom: 0;
    }

    .city-toc__icon {
        display: inline-block;
    }

    .city-toc__body {
        display: none;
        margin-top: 14px;
    }

    .city-toc.is-open .city-toc__body {
        display: block;
    }

    .city-toc.is-open .city-toc__close {
        display: block;
    }

    .city-toc__list li {
        font-size: 16px;
    }
}
