/*Styles for accordion and accordion items*/

.accordion-item {
    background-color: transparent; /*Set the background color for the accordion*/
    font-size: 14px;
}

.accordion {
    padding: 0px;
    padding-left: 0px; /* Distance to the left*/
    padding-top: 0px; /* Distance to the left*/
    padding-bottom: 0px; /* Distance to the left*/
    margin: 0px;
    background-color: transparent !important;
    /*border-top: 1px solid #afdff8 !important; /*Border above*/
    /*border-bottom: 1px solid #afdff8 !important; /*Border below*/
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.accordion-explain {
    padding: 0px;
    padding-left: 0px; /* Distance to the left*/
    padding-top: 0px; /* Distance to the left*/
    padding-bottom: 0px; /* Distance to the left*/
    margin: 0px;
    margin-top: 15px;
    background-color: transparent !important;
    /*border-top: 1px solid #afdff8 !important; /*Border above*/
    /*border-bottom: 1px solid #afdff8 !important; /*Border below*/
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.accordion-header {
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    background-color: transparent !important;
    border-bottom: 0px !important;
    cursor: none;
    transition: background-color 0.3s ease;
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

/* Styling the accordion headers */
.accordion-explain .accordion-button {
    padding: 0px;
    margin: 0px;
    color: 'black' !important; /*font color of accordion title*/
    background-color: transparent !important;
    border: 0px !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}


/* Styling the accordion body */
.accordion-body {
    padding: 0px;
    font-size: 12px; /*font size of accordion body*/
    color: #4c626c !important; /*font color of accordion body*/
    background-color: transparent !important;
    border: 0px !important;
}