.accordion {
    margin-top: 60px;
}

.accord {
    border: 1px solid var(--color-black-3);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: hidden;
}

.accord:not(:first-child) {
    border-top: 0;
}

.accord:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.accord:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.accord-head {
    display: flex;
    align-items: flex-start;
    padding: 11px;
    cursor: pointer;
}

.accord-head .accord-head__title {
    flex: 1;
}

.accord-head .accord-head__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 100%;

    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);

    -webkit-transition: .5s;
    transition: .5s;
}
.accord:not(.close) .accord-head__icon,
.accord-head:hover .accord-head__icon {
    background: var(--color-vera-teal-5);
}

.accord:not(.close) .icon-svg {
    fill: var(--color-vera-teal-1);
}

.accord.close .accord-head__icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accord.close .accord-body {
    max-height: 0;
    -webkit-transition: 1s;
    transition: 1s;
    will-change: max-height;
}

.accord-body__content {
    padding: 12px 12px 12px 48px;
}

@media screen and (max-width: 1023px) {
    .accordion {
        margin-top: 40px;
    }

    .accord-head__title {
        padding-top: 5px;
    }

    .accord h2 {
        font-size: 14px;
        line-height: 18px;
    }

    .accord .accord-body {
        max-height: 250vmin
    }
}
