
.woocommerce-tabs {
    display: none;
}

.custom-accordion {
    width: 100%;
}

.panel-title {
    background-color: #f9f9f9;
    padding: 10px;
    margin: 0;
    cursor: pointer;
}

.panel-content {
    padding: 10px;
    border: 1px solid #ddd;
    border-top: 0;
}

.panel-content:first-child {
    display: block;
}
/*change this if right or left the icon*/
span.accordion-icon {
    float: right;
}
/* quick solution to remove the title h2 in the box
*/
.panel-content h2 {
    display: none !important;
}
/* Add Font Awesome icons to the accordion header */
.panel-title .accordion-icon {
    display: inline-block;
    margin-right: 10px; /* Adjust the margin to create space between title and icon */
}

.panel-title .fas {
    display: inline;
}

.panel-title.active .fa-caret-down {
    display: none;
}
.panel-title:not(.active) .fa-caret-up {
    display: none;
}
 