﻿.accordion {
    margin-bottom: 5rem;
    max-width: 1000px;
}

.accordion .card.accordion-title {
    border: 0;
    margin-bottom: 2rem;
}

.accordion .card:not(.accordion-title) {
    border: 0;
    border-bottom: 2px solid #e30137;
}

.accordion .subtitle {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 10px;
    color: #e30137;
}

.accordion .title-area a {
    font-size: 12px;
    line-height: 21px;
}

    .accordion .title-area a:after {
        content: "\f107";
        font-family: 'Font Awesome 5 Pro';
        float: right;
        margin-left: 8px;
    }
     
.accordion h2 {
    font-size: 18px;
    line-height: 22px;
    width: 222px;
    margin-top: 0px;
}

@media (min-width: 768px) {
    .accordion .title-area a {
        font-size: 12px;
        line-height: 22px;
    }

    .accordion h2 {
        font-size: 26px;
        line-height: 32px;
        width: unset;
    }
}

.accordion .card-block {
    padding: 0 40px 15px 30px;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    overflow-y: auto;
}

    .accordion .card-block ul {
        padding-left: 30px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .accordion .card-block ul > li::before {
        height: 1.4rem;
        width: 1.4rem;
        top: 0.2rem;
    }

    .accordion .card-block li {
        margin-bottom: 1.5rem;
        padding-left: 3rem;
        position: relative;
        list-style: none;
    }

        .accordion .card-block li::before {
            background-color: #E70036;
            border-radius: 50%;
            content: '';
            left: 0;
            position: absolute;
        }

    .accordion .card-block ol > li {
        list-style-type: none;
        counter-increment: li;
    }

        .accordion .card-block ol > li::before {
            top: 0;
            height: 2rem;
            width: 2rem;
            text-align: center;
            content: counter(li);
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 700;
            padding-top: 2.6px;
        }

.accordion .card-block a {
    border-bottom: 1px solid #e30137;
}

.accordion .card-header {
    border-bottom: none;
    background: none;
    margin-bottom: 0;
    padding: 25px 30px;
}

    /*.accordion .card-header a:not(.collapsed) {
        border-bottom: 1px solid #e2e2e2;
        padding-bottom: 20px;
    }*/

    .accordion .card-header a {
        color: #e30137;
        font-weight: 700;
        font-size: 1.6rem;
    }

    .accordion .card-header a:hover {
        text-decoration: none;
    }

    .accordion .card-header a:before {
        content: "\f068";
        font-family: 'Font Awesome 5 Pro';
        float: right;
    }

    .accordion .card-header a.d-block:before,
    .accordion .card-header a.d-block.collapsed:before {
        color: #e30137;
    }

    .accordion .card-header a.collapsed:before {
        content: "\f067";
        font-family: 'Font Awesome 5 Pro';
        color: #FFFFFF;
        float: right;
        margin-left: 16px;
        margin-bottom: 1px;
    }

/* table in accordion item */

.accordion .card-block .table {
    display: table;
    color: #000000;
}

    .accordion .card-block .table thead {
        background-color: #e30137;
        color: #fff;
        border-bottom: 0;
        border-top: 0;
    }

        .accordion .card-block .table thead th {
            border-top: 0;
            border-bottom: 0;
        }

        .accordion .card-block .table thead th:first-child {
            border-top-left-radius: 3rem;
            border-bottom-left-radius: 3rem;
        }

            .accordion .card-block .table thead th:last-child {
                border-top-right-radius: 3rem;
                border-bottom-right-radius: 3rem;
            }

.accordion .card-block .table th,
.accordion .card-block .table td {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2.1rem;
    padding-bottom: 1.6rem;
}

    .accordion .card-block .table td {
        border-top: 0;
        border-bottom: 1px solid #e30137;
        text-align: left;
    }

        .accordion .card-block .table td a {
            border-bottom: 1px solid #e30137;
            text-decoration: none;
        }