/* .collapsible {
    cursor: pointer;
    background-color: #fff;
    padding: 18px;
    width: 100%;
    border: 1px solid #dae0e6;
    border-radius: 15px;
    text-align: left;
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.collapsible:hover {
    background-color: #efefef;
}

.collapsible.active{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.collapsible__content {
    width: 95%;
    margin: 0 auto;
    padding: 10px 18px;
    display: none;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #dae0e6;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
} */

.collapsible {
    background-color: #fff;
    border: 1px solid #dae0e6;
    border-radius: 15px;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    transition: max-height 0.3s ease;
    position: relative;
}

.collapsible::after {
    content: '';
    width: 30px;
    height: 30px;
    background: url("../image/arrow-to-top.svg") center center no-repeat;
    position: absolute;
    right: 13px;
    top: 13px;
    transform: rotate(180deg);
    transition: all .3s ease 0s;
}

.collapsible.active::after {
    transform: rotate(0deg);
    transition: all .3s ease 0s;
}

.collapsible__title {
    /* font-weight: 600; */
}

.collapsible__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    transition: margin-top 0.3s ease;
    color: #444;
}

.collapsible:hover {
    background-color: #efefef;
}
