.ulNum li {
    list-style: decimal;
    font-size: 1em;
    margin-bottom: 20px;
}
.liNum {
    font-size: 30px;
    color: #17a5e9 !important;
}
.liFAQ {
    font-size: 30px;
    color: #17a5e9 !important;
}
body {
    padding-top: 50px;
    line-height: 1.4;
    font-size: 1.4em;
}
.ulFaq li {
    list-style: disc;
    font-size: .7em;
    margin-bottom:20px;
}
.tabs {
    clear: both;
    position: relative;
    margin: 0 auto;
    /* you can either manually set a min-height here or do it via JS ---> */
}

.tab {
    float: left;
}

    .tab label {
        margin-right: 20px;
        position: relative;
        top: 0;
        cursor: pointer;
        color: #333;
        text-transform: uppercase;
    }

    .tab [type=radio] {
        display: none;
    }

.tab__content {
    position: relative;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity .2s cubic-bezier(.42,0,.34,1.01);
    opacity: 0;
}

[type=radio]:checked ~ label {
    border-bottom: 2px solid #1d1d1d;
    color: #1d1d1d;
    z-index: 2;
}

    [type=radio]:checked ~ label ~ .tab__content {
        z-index: 1;
        opacity: 1;
    }




/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*/
.nav-pills-custom .nav-link {
    color: white;
    background: lightgray;
    position: relative;
}

    .nav-pills-custom .nav-link.active {
        color: white;
        background: #808080;
    }


/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #808080;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}





/*
*
* ==========================================
* FOR DEMO PURPOSE
* ==========================================
*/
body {
    min-height: 100vh;
    /*background: linear-gradient(to left, #dce35b, #45b649);*/
}
