/*
 * CE: Accordion
 * ---------------------------------------------------------------- */
.frame-type-mask_accordion, .frame-type-neuland_accordion {
    .container {
        max-width: 1200px!important;
    }
    .ce-accordion {
        margin-bottom: 30px;
        .card {
            border: none;
            background: none;
            border-bottom: 1px solid #C4C4C447!important;
            .card-header {
                background-color: transparent;
                transition: all .3s ease-out 0s;
                padding: .75rem 0rem;
                border: none;
                &[aria-expanded="true"] {
                    .icon {
                        transform: rotate(180deg);
                    }
                }
                .icon {
                    position: absolute;
                    top: 17px;
                    right: 0;
                    width: 14px;
                    height: 12px;
                    margin-top: -10px;
                    transition: all .3s ease-out 0s;
                    transform: rotate(0deg);
                    .icon-inner::before {
                        content: "";
                        display: block;
                        height: 100%;
                        background-image: url('../Icons/accordion_arrow.svg');
                        background-repeat: no-repeat;
                    }
                }
                &:hover {
                    transition: none;
                }
                &.active {
                    a {
                        color: currentColor;
                    }
                 }
            }
            .card-body {
                padding: 1.25rem 0rem;
                p {
                    color: #000;
                }
                a {
                    color: var(--hf-blue-600);
                    font-weight: 600;
                }
            }
        }
        h5 {
            position: relative;
            text-transform: none;
            color: var(--hf-blue-600);
            font-size: var(--font-size-sm);
            font-weight: 600;
            .icon {
                position: absolute;
                top: 5px;
                right: 0;
                width: 20px;
                height: 20px;
                margin-top: -10px;
                transition: all .3s ease-out 0s;
                &-inner::before {
                    position: absolute;
                    top: 50%;
                    right: 0;
                    content: '';
                    width: 20px;
                    height: 2px;
                    transform: translateY(-50%);
                    background-color: #212529;
                    transition: all .3s ease-out 0s;
                }
                &-inner::after {
                    position: absolute;
                    top: 50%;
                    right: 9px;
                    content: '';
                    width: 2px;
                    height: 20px;
                    transform: translateY(-50%);
                    background-color: #212529;
                    transition: all .3s ease-out 0s;
                }
            }
        }
    }
}

.frame-type-neuland_accordion {
    .ce-accordion {
        .card {
            .card-header {
                &[aria-expanded="true"] {
                    .icon {
                        transform: rotate(0deg);
                    }
                }
                &.active {
                    .icon {
                        transform: rotate(180deg);
                    }
                }
            }
        }
    }
}


.lipidtech {
    .card-header h5 {
        color: var(--hf-dark-800)!important;
    }

    .card-header {
        .icon {
            .icon-inner::before {
                background-image: url('../Icons/accordion_arrow_yellow.svg')!important;
            }
        }
    }
}