.progressBox {
    background-color: #FEF7F4;
    border: 1px solid #D9D9D9;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    position: relative;
    margin: 0 15px 20px;
    padding: 20px;
    z-index: 1;
    padding-bottom: 25px;
}
.mainDiv{
    /* margin: 0 50px; */
}
.noPad{
    padding: 0px !important;
}
.txtCntr{
    text-align: center !important;
}
.pad50{
    padding: 50px !important;
}
.pad30{
    padding: 30px !important;
}
.padlr0{
    padding-right: 0px !important;
    padding-left: 0px !important;
}
.noPadCnt .col-md-6{
    padding: 0px;
}
.padT20{
    padding-top: 20px !important;
}
.margDiv{
    margin-left: 2%;
    max-width: 48%;
    width: 48%;
}
.padLeft25{
    padding-left: 25px !important;
}
.takeAct .table{
    color: #747474;
}
.card-header{
    color: #EB6523;
}
.table .thead-orange th, .table tfoot td{
    background-color: #EB6523;
    border-color: #EB6523;
    text-align: center;
    color: #fff;
}
.table .thead-orange th:first-child{
    background-color: transparent !important;
    border: 1px solid #dee2e6 !important;
    text-align: left !important;
    color: #747474 !important;
}
.table td{
    text-align: center !important;
}
.takeAct ul{
    padding-left: 16px;
    font-weight: bold;
    color: #747474;
    font-size: 16px;
}
.takeAct p{
    font-weight: bold;
    color: #747474;
    font-size: 16px;
}
.divBordBlack{
    border: 1px solid #000;
}
.divBordBlack .headSec{
    border-bottom: 1px solid #000;
    background-color: #EB6523;
    padding: 5px 10px;
    color: #fff;
}
.divBordBlack .inputSec{
    padding: 5px 10px;
}
.divSep{
    border-top: 2px solid rgba(0,0,0,.1);
}
.inputSec input{
    width: 100%;
}
.colorGrey{
    color: #747474;
}
.colorGrey h3, .colorGrey h4, .colorGrey h5{
    font-weight: bold;
}
.fullWidth{
    width: 100% !important;
}
.hideMe{
    display: none;
}
.noMargn{
    margin: 0px !important;
}
.quizSec lable{
    display: block;
}
.progressBox h2 {
    font-family: Nunito,sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #EB6523;
}
.buttons {
    text-align: center;
    margin-top: 65px;
    display: block;
    width: 100%;
}
.buttons a {
    background-color: gray;
    text-decoration: none;
    padding: 8px 25px;
    color: #ffffff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.buttons a:hover {
    background-color: #cfcfcf;
}
a.next {
    margin-left: 25px;
}
a.prev {
    margin-right: 25px;
}
/* =================== */
/* PROGRESS BAR STYLES */
/* =================== */
.progressBar {
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    max-width: 1376px;
    margin-top: 50px;
    width: 100%;
}
.progressBar ul {
    display: flex;
    padding: 0px;
}
.progressBar ul li {
    transition: background-color 0.75s, color 0.5s;
    background-color: #E0E0E0;
    display: inline-block;
    position: relative;
    line-height: 10px;
    text-align: left;
    color: #FFF;
    width: 100%;
    z-index: -3;
}
.progressBar ul li::before {
    content: '';
    width: 30px;
    height: 30px;
    left: -11px;
    background-color: #d6d6d6;
    border: solid 5px #d6d6d6;
    position: absolute;
    top: -11px;
    z-index: -1;
    transition: background-color 0.75s, color 0.5s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
/* CURRENT STEP */
.progressBar ul li.current {
    display: inline-block;
    color: #eb6524;
}
.progressBar ul li.current::before {
    transition: background-color 0.75s, color 0.5s;
    -webkit-animation: pulse 3s ease-out;
    -moz-animation: pulse 3s ease-out;
    animation: pulse 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border: solid 5px #eb6524;
    background-color: #FFF;
}
/* COMPLETED STEPS */
.progressBar ul li.complete {
    transition: background-color 0.75s, color 0.5s;
    background-color: #eb6524;
}
.progressBar ul li.complete::before {
    transition: background-color 0.75s, color 0.5s;
    background-color: #eb6524;
    border: 5px solid transparent;
}
/* REMOVE FIRST STEP COLOR BAR LINE */

.progressBar ul li.removeBox{
    color: #E0E0E0 !important;
}
.progressBar ul li:last-of-type{
    background-color: #E0E0E0 !important;
}
.progressBar ul li.complete.removeBox{
    color: #eb6524 !important;
}
.progressBar ul li.removeBox::before{
    display:none !important;
}
.progressBar ul li.txtInd{
    text-indent: -9999px;
}
.progressBar ul li .btmText{
    font-family: Nunito,sans-serif;
    position: absolute;
    /* font-size: 1.2rem; */
    font-size: 1.7vw;
    line-height: normal;
    font-weight: 100;
    color: #161616;
    display: block;
    width: 100%;
    /* right: 78px; */
    right:50%;
    top: 34px;
}
/* Custom font size utility classes */
@media (max-width: 768px) {
    .progressBar ul li .btmText {
        font-size: 2.3vw;
    }
    
}
@media (max-width: 450px) {
    .progressBar ul li .btmText {
        font-size: 2.9vw;
    }
    
}
.progressBar ul li .btmTextSec{
    /* right: 34px; */
    right:20%;
}
.progressBar ul li .btmTextThir{
    /* right: 58px; */
    right: 28%;
}
.progressBar ul li .btmTextFour{
    /* right: 35px; */
    right: 20%;
}
.progressBar ul li .btmTextFive{
    /* right: 83px; */
    right: 36%;
}
.progress{
    height: 0.5rem;
}
.progressBar ul li .btmTextSix{
    right: 35px;
}
.progressBar ul li .btmTextSev{
    /* right: 78px; */
    right: 36%;
}
.progressBar ul li .btmTextEig{
    /* right: 44px; */
    right: 13%;
}
.progressBar ul li .btmTextNin{
    /* right: 35px; */
    right: 18%;
}
.progressBar ul li .btmTextTen{
    right: 80px;
    right: 28%;
}
/* .progress-bar{
    background-color: #54D14D;
} */
.progressOrange{
    background-color: #EB6523 !important;
}
table.teamTbl td{
    text-align: left !important;
}
.progressSec{
    background-color: #F9F9F9;
    border: 1px solid #D9D9D9;
    padding: 15px 15px 0px 15px;
    margin-bottom: 15px;
    border-radius: 7px;
}
.progressSec h2{
    font-family: Nunito,sans-serif;
    color: #161616;
    font-size: 17px;
    width: 50%;
}
.progressSec span{
    text-align: right;
    color: #77838F;
    width: 50%;
}
.divBord{
    border: 1px solid #D9D9D9;
    border-radius: 7px;
}

/* .custom-control-input:checked~.custom-control-label:before{
    background-color: #FEF7F4;
}

.custom-switch .custom-control-label:after{
    background-color: #eb6524 !important;
} */

/* Grey background when unchecked */
.custom-control-input:not(:checked) ~ .custom-control-label::before {
    background-color: #D9D9D9;
    border-color: #77838F;
}

/* Grey handle when unchecked */
.custom-control-input:not(:checked) ~ .custom-control-label::after {
    background-color: white; /* Keep the handle white */
    border-color: #77838F; /* If there's a border, make it grey */
}

/* Restore original colors when checked */
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #eb6524; /* Original orange or your preferred color */
    border-color: #eb6524;
}

.custom-control-input:checked ~ .custom-control-label::after {
    background-color: white; /* Keep the handle white */
}

.homeCnt .card-header{
    color: #eb6524;
}
.divFlex{
    display: flex;
}
.todoCnt{
    width: 100%;
}
.todoCnt .custom-control{
    width: 100%;
}
.todoCnt h3{
    margin-right: 2%;
    font-size: 19px;
    width: 88%;
}
.todoCnt .custom-switch{
    width: 10%;
}
.btnGreen .custom-control-input:checked~.custom-control-label:before{
    background-color: #54D14D99 !important;
    border-color: #54D14D99 !important;
}
.btnGreen .custom-control-label:after{
    background-color: #04AD15 !important;
}
.greenBtn{
    background-color: #54D14D;
    border-radius: 3px;
    padding: 5px 15px;
    margin-right: 7px;
    margin-top: 10px;
    color: #fff;
}
.greenBtn:hover{
    text-decoration: none;
    color: #fff;
}
.videoCnt iframe{
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    height: 500px;
    width: 90%;
}
.videoCnt{
    overflow: hidden;
}
.btmPaymentSec{
    overflow: hidden;
    margin-top: 25px;
    padding: 20px;
}
/* .todoCnt .custom-switch{
    padding-left: 0px !important;
}
.todoCnt .custom-switch .custom-control-label:before{
    right: 0 !important;
}
.todoCnt .custom-switch .custom-control-label:after{
    right: calc(-2.25rem + 2px) !important;
}
.todoCnt .custom-control-input{
    right: 0 !important;
} */
@-webkit-keyframes pulse {
    0% {-webkit-transform: scale(1, 1);}
    50% {-webkit-transform: scale(1.1, 1.1);}
    100% {-webkit-transform: scale(1, 1);}
}
@-keyframes pulse {
    0% {transform: scale(1, 1);}
    50% {transform: scale(1.1, 1.1);}
    100% {transform: scale(1, 1);}
}



/* new css */

/* 
.progressBarContainer {
    width: 100%;
    padding: 20px;
    background-color: #fdf6f4;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.progressBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.progressStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.progressStep::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: -1;
}

.progressStep:last-child::after {
    display: none;
}

.stepNumber {
    background-color: #f37021;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
    z-index: 1;
}

.stepText {
    text-align: center;
    font-size: 12px;
    color: #333;
}

.current .stepNumber {
    background-color: #f37021;
    border: 2px solid #fff;
}

.progressStep:not(.current) .stepNumber {
    background-color: #e0e0e0;
}

@media (max-width: 600px) {
    .progressBar {
        flex-direction: column;
        align-items: flex-start;
    }
    .progressStep {
        flex-direction: row;
        align-items: center;
        margin-bottom: 20px;
    }
    .progressStep::after {
        width: 2px;
        height: 100%;
        right: 50%;
        top: auto;
    }
    .stepNumber {
        margin-bottom: 0;
        margin-right: 10px;
    }
    .stepText {
        text-align: left;
    }
} */



.progressSec p {
    display: none;
}
.progressSec.show p {
    display: block;
}
.color {
    color: #eb6524;
}


#chartx svg {
    height: 175px !important;
}
/* #charty svg {
    height: 175px !important;
} */
#chartz svg {
    height: 175px !important;
}