.cstm-accordion {
    width: 100%;
    margin: auto;

    border-radius: 4px;
    border: 1px solid #ffffff1a;
    background: #ffffff1a;
    margin-bottom: 20px;
    font-size: 12px;
}

.cstm-accordion-item {
}

.cstm-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 15px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;

    span {
        font-family: 'Amiko 400', sans-serif;
        font-weight: 400;
        line-height: 100%;
    }

    &.wp {
        font-size: 16px;
    }
}

.cstm-accordion-header .chevron {
    border: 2px solid #e4fffe;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.cstm-accordion-header.active {
    border-bottom: 1px solid #ffffff1a;
    .chevron {
        transform: rotate(-135deg);
    }
}

.cstm-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;

    div {
        cursor: pointer;
        padding: 19px 15px;
    }

    &.wp {
        font-size: 16px;
    }
    
    div:hover {
        background: #ffffff33;
    }
}
