﻿/* Accordion Portion */

.accordion-item.custom-accordion-item:first-of-type {
    border-top: 1px solid var(--black);
}

.accordion-item.custom-accordion-item {
    font-size: 16px;
    border-bottom: 1px solid var(--black);
}

.custom-accordion-item {
    background-color: transparent;
}

.accordion-collapse collapse show {
}

.custom-icon:not(.collapsed) .custom-icon,
.custom-icon:not(.collapsed) {
    color: black;
}

.accordion-button.custom-icon {
    background-image: none;
    position: relative;
}

    .accordion-button.custom-icon::before {
        content: '';
        background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3725_2457)'%3E%3Cpath d='M1 12.9971H25' stroke='%23231F20' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' /%3E%3Cpath d='M13 24.9971V0.99707' stroke='%23231F20' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3725_2457'%3E%3Crect width='26' height='26' fill='white' transform='translate(0 -0.00292969)' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
        width: 26px;
        height: 26px;
        font-size: 2rem;
        color: #000;
        position: absolute;
        right: 1rem;
        transition: transform 0.3s ease;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .accordion-button.custom-icon::after {
        display: none;
    }

    .accordion-button.custom-icon:not(.collapsed) {
        background-color: transparent !important;
    }

        .accordion-button.custom-icon:not(.collapsed)::before {
            content: "";
            background-image: url("data:image/svg+xml,%3Csvg width='26' height='2' viewBox='0 0 26 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.99707H25' stroke='black' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' /%3E%3C/svg%3E");
            width: 26px;
            height: 2px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            font-weight: normal;
            font-size: 20px;
        }

.accordion-button:focus,
.accordion-button:not(.collapsed) {
    box-shadow: none;
    outline: none;
}
