
/** Accordions */
.wp-block-custom-accordion {
    counter-reset: accordion-counter;
}
.wp-block-custom-accordion .accordion-item {
    position: relative;
}
.wp-block-custom-accordion .accordion-item .accordion-header {
    border-bottom: 1px solid #333333;
    padding: 30px 60px 30px 60px;
    margin: 0px;
    /* font-size: 24px; */
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    font-family: Rubik, Arial, Tahoma, Verdana;
    transition: background-color 0.2s ease-in-out;
    color: #333 !important;
    background: url(./../../images/drop-down-arrow.png) right center no-repeat;
}
.wp-block-custom-accordion .accordion-item:first-child .accordion-header {
    border-top: 3px solid #173355;
}

.wp-block-custom-accordion .accordion-item .accordion-header[aria-expanded="true"]{
    background: url(./../../images/drop-up-arrow.png) right center no-repeat;
}
.wp-block-custom-accordion .accordion-item::before {
    counter-increment: accordion-counter;
    content: counter(accordion-counter);
    position: absolute;
    top: 46px;
    transform: translateY(-50%);
    border: 2px solid #333333;
    border-radius: 50%;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #333333;
    font-weight: bold;
}
.wp-block-custom-accordion .accordion-item .accordion-content {
    border-bottom: 1px solid #ccc;
    font-weight: 200;
    padding: 20px 0;
}