.category-title {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    margin: 0;
    cursor: pointer;
}

.category-title:not(.active)::after {
    content: '';
    background-image: url(/common/images/icon_arrow_down.svg);
    margin-left: 5px;
    width: 13px;
    height: 13px;
    display: inline-block;
    background-repeat: no-repeat;
}

.category-title.active::after {
    content: '';
    background-image: url(/common/images/icon_arrow_up.svg);
    margin-left: 5px;
    width: 13px;
    height: 13px;
    display: inline-block;
    background-repeat: no-repeat;
}

.category-list-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 95;
    display: none;
}

.category-list-wrap.show {
    display: block;
}

.category-list {
    padding: 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.category-list p {
    display: flex;
    justify-content: space-between;
}

.category-list a:first-child p {
    font-weight: bold;
}

.category-list a.active {
    color: #1a73e8;
    text-decoration: underline;
}
