.accordion-header:after{
    content: "";
    position: absolute;
    color: #B20933;
    background-image: url(/wp-content/uploads/2023/02/plus_icon.png);
    width: 20px;
    height: 20px;
    background-size: cover;
    top: 8px;
    right: 0;
    transition: .3s;
    transform: rotate(45deg);
}

.accordion-header.collapsed:after{
    content: "";
    transition: .3s;
    transform: rotate(0deg);
}

.accordion-header{
    position: relative;
}
.accordion-collapse.collapse.show:before{
    content: '';
    width: 30px;
    height: 1px;
    background-color: #B20933;
    position: absolute;
    top: 0;
    left: 0;
}
.accordion-body{
    padding-left: 0;
    padding-right: 0;
}

.custom-select {
position: relative;
width: 100%;
border-bottom: 2px solid #B20933;
border-radius: 5px;
}

.custom-select select {
display: none; /*hide original SELECT element:*/
}

.select-selected {
background-color: #FFFFFF;
border-radius: 5px;
}

/*style the arrow inside the select element:*/
.select-selected:before {
position: absolute;
content: "\f107";
top: 50%;
left: 20px;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
font-family: "Font Awesome 6 Pro";
font-weight: 300;
color: #999999;
transition: .3s;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:before {
transform: rotate(180deg) translateY(50%);
transition: .3s;
}
.select-selected.select-arrow-active:after {
    content: '';
    background-color: #999999;
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 1px;
}
.select-items{
    padding-top: 10px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
color: #333333;
padding: 1rem 3.5rem;
cursor: pointer;
user-select: none;
text-align: left;
font-weight: 300;
font-size: 1.3rem;
}
.select-items div{
    padding: .5rem 3.5rem;
}
/*style items (options):*/
.select-items {
position: absolute;
background-color: #fff;
top: 100%;
left: 0;
right: 0;
z-index: 99;
max-height: 350px;
overflow-y: scroll;
}

/*hide the items when the select box is closed:*/
.select-hide {
display: none;
}

.select-selected.select-arrow-active{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.select-selected.select-arrow-active + .select-items{
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom: 2px solid #B20933;
} 
