/*========================================================
    CSMCQS - TOPICS COVERED
========================================================*/

.csmcqs-topics-covered {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    margin: 25px 0 30px !important;
    padding: 18px 22px !important;
    background: #ffffff !important;
    border: 1px solid #ebebeb !important;
    border-left: 4px solid #f58634 !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    box-shadow: 12.5px 21.651px 49px 0px rgba(58, 74, 88, 0.08) !important;
}


/*========================================================
    TOPICS COVERED - HEADING
========================================================*/

.csmcqs-topics-covered h5 {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    margin: 0 0 16px 0 !important;
    padding: 0 0 10px 0 !important;
    color: #822e2f !important;
    font-family: 'Roboto Slab', serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    border-bottom: 1px solid #f3f3f3 !important;
}


/*========================================================
    HEADING ICON
========================================================*/

.csmcqs-topics-covered h5::before {
    content: "\f02d";
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    margin-right: 9px !important;
    background: #fff3e9 !important;
    color: #f58634 !important;
    border-radius: 8px !important;
    font-family: FontAwesome !important;
    font-size: 14px !important;
    font-weight: normal !important;
    flex: 0 0 34px !important;
}


/*========================================================
    ORANGE HEADING UNDERLINE
========================================================*/

.csmcqs-topics-covered h5::after {
    content: "";
    position: absolute !important;
    left: 0 !important;
    bottom: -1px !important;
    width: 45px !important;
    height: 3px !important;
    background: #f58634 !important;
    border-radius: 3px !important;
}


/*========================================================
    TOPIC TAG CONTAINER
========================================================*/

.csmcqs-topic-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    /*
        Distribute the available horizontal space
        between topic boxes on each row.
    */
    justify-content: space-between !important;
    gap: 7px 6px !important;
    box-sizing: border-box !important;
}


/*========================================================
    INDIVIDUAL TOPIC BOX
========================================================*/

.csmcqs-topic-tag {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 5px 10px !important;
    background: #fffdfb !important;
    border: 1px solid #eadfd8 !important;
    border-radius: 16px !important;
    color: #4a4a4a !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease !important;
}


/*========================================================
    SMALL ORANGE DOT
========================================================*/

.csmcqs-topic-tag::before {
    content: "";
    display: inline-block !important;
    width: 5px !important;
    height: 5px !important;
    margin-right: 6px !important;
    background: #f58634 !important;
    border-radius: 50% !important;
    flex: 0 0 5px !important;
}


/*========================================================
    TOPIC HOVER EFFECT
========================================================*/

.csmcqs-topic-tag:hover {
    background: #fff7f1 !important;
    border-color: #f58634 !important;
    color: #822e2f !important;
    box-shadow: 0 2px 7px rgba(245, 134, 52, 0.10) !important;
}


/*========================================================
    MOBILE - TOPICS COVERED
========================================================*/

@media only screen and (max-width: 767px) {

    .csmcqs-topics-covered {
        display: block !important;
        width: 100% !important;
        margin: 20px 0 25px 0 !important;
        padding: 15px 16px !important;
        background: #ffffff !important;
        border: 1px solid #ebebeb !important;
        border-left: 4px solid #f58634 !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
    }


    /*----------------------------------------------
        Heading
    ----------------------------------------------*/

    .csmcqs-topics-covered h5 {
        display: flex !important;
        align-items: center !important;
        margin: 0 0 13px 0 !important;
        padding: 0 0 9px 0 !important;
        color: #822e2f !important;
        font-family: 'Roboto Slab', serif !important;
        font-size: 17px !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
        border-bottom: 1px solid #f3f3f3 !important;
    }


    /*----------------------------------------------
        Heading Icon
    ----------------------------------------------*/

    .csmcqs-topics-covered h5::before {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 30px !important;
        height: 30px !important;
        margin-right: 7px !important;
        background: #fff3e9 !important;
        color: #f58634 !important;
        border-radius: 7px !important;
        font-family: FontAwesome !important;
        font-size: 12px !important;
        font-weight: normal !important;
        flex: 0 0 30px !important;
    }


    /*----------------------------------------------
        Heading Underline
    ----------------------------------------------*/

    .csmcqs-topics-covered h5::after {
        content: "";
        position: absolute !important;
        left: 0 !important;
        bottom: -1px !important;
        width: 40px !important;
        height: 3px !important;
        background: #f58634 !important;
        border-radius: 3px !important;
    }


    /*----------------------------------------------
        Topic Container
    ----------------------------------------------*/

    .csmcqs-topic-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;

        /*
            On mobile, keep the natural left-to-right
            arrangement instead of stretching the gaps.
        */
        justify-content: flex-start !important;
        gap: 6px !important;
        box-sizing: border-box !important;
    }


    /*----------------------------------------------
        Individual Topic Box
    ----------------------------------------------*/

    .csmcqs-topics-covered .csmcqs-topic-tag {
        display: inline-flex !important;
        align-items: center !important;
        vertical-align: middle !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 5px 9px !important;
        background: #fffdfb !important;
        border: 1px solid #eadfd8 !important;
        border-radius: 15px !important;
        color: #4a4a4a !important;
        font-family: 'Roboto', sans-serif !important;
        font-size: 11px !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
        white-space: normal !important;
        box-sizing: border-box !important;
        box-shadow: none !important;
        opacity: 1 !important;
    }


    /*----------------------------------------------
        Orange Dot
    ----------------------------------------------*/

    .csmcqs-topics-covered .csmcqs-topic-tag::before {
        content: "";
        display: inline-block !important;
        width: 4px !important;
        height: 4px !important;
        min-width: 4px !important;
        min-height: 4px !important;
        margin-right: 5px !important;
        padding: 0 !important;
        background: #f58634 !important;
        border: 0 !important;
        border-radius: 50% !important;
        flex: 0 0 4px !important;
    }


    /*----------------------------------------------
        Mobile Hover / Tap
    ----------------------------------------------*/

    .csmcqs-topics-covered .csmcqs-topic-tag:hover,
    .csmcqs-topics-covered .csmcqs-topic-tag:focus {
        background: #fff7f1 !important;
        border-color: #f58634 !important;
        color: #822e2f !important;
    }

}