.question-text {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
}

.main-question p {
    /* margin-top: 0.8%; */
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 400;
}

.bold-question {
    margin-top: 1.6%;
    display: block;
    font-size: 1.7em;
    color: #211e1e;
    font-weight: bold;
}

.select-alert {
    margin-top: 0.8%;
    display: block;
    color: #bb2024;
    font-weight: 600;
    font-size: 1.7em;
}

.main-answer {
    margin-top: 1.2%;
}

.prev-next-btn {
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-label span p {
    margin: 0;
    color: var(--primary-color);
}

.prev-next-btn a, .prev-next-btn button {
    color: white;
    border: 0;
    width: max-content;
    display: flex;
    outline: 0;
    background: linear-gradient(to bottom, #00c9ff 0%, #006c93 100%);
    padding: 14px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    gap: 10px;
}

.next-btn-active {
    background-color: #1a4681 !important;
}

.prev-btn-disable,
.next-btn-disable {
    background-color: #787878 !important;
}

.main-question-container {
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 45px;
}

.go-back-btn {
    margin-bottom: 10px;
    width: auto;
    display: flex;
    justify-content: end;
    /* align-items: center; */
}

.back-btn {
    color: white;
    border: 0;
    width: max-content;
    display: flex;
    outline: 0;
    background: linear-gradient(to bottom, #00c9ff 0%, #006c93 100%);
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    gap: 10px;
}
.back-btn svg {
    width: 20px;
}
.back-btn:hover {
    color: #fff;
}

.pagination-list {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.pagination-list li {
    width: 38px;
    height: 38px;
    background-color: #AFEDFF;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-list li.active {
    color: white !important;
    background-color: #cc7c2c;
}

.pagination-list-custom li.active {
    color: white !important;
    background: linear-gradient(to bottom, #00c9ff 0%, #006c93 100%);
}

@media (max-width: 600px) {
    .pagination-list li {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }

    .back-btn {
        font-size: 0.9em;
        padding: 12px 12px;
    }
}

/* checkbox */
.option-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    display: flex;
    align-items: stretch;
    border: 1px solid #58595B;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: background-color 0.3s ease, border 0.3s ease;
    margin-bottom: 23px;
}

.option input[type="radio"],
.option input[type="checkbox"] {
    display: none;
}

.option-label {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    padding: 10px 12px 10px 90px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

.option-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    border-right: 1px solid #58595B;
}

.option input[type="radio"]:checked + .option-label::before,
.option input[type="checkbox"]:checked + .option-label::before {
    background-color: #1a4681;
    border-color: #1a4681;
}

.option-label-red::before {
    background-color: rgb(255 0 0 /0);
}

.option-label-green::before {
    background-color: #3b74b1;
}

.option-label-yellow::before {
    background-color: rgb(255 0 0 /0);
}

.option-label-red {
    background-color: rgb(255 0 0 / 60%);
}

.option-label-green {
    background-color: rgb(0 128 0 / 70%);
}

.option-label-yellow {
    background-color: rgba(255, 255, 0, 0.7);
}

.option-green {
    color: white !important;
}

.option-label span {
    color: #2b2929eb;
    font-size: 22px;
    font-weight: 400;
}
.tb-head .nav-pills .nav-link.active {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 800;
    border-color: var(--primary-color);
}
.tb-head .nav-pills .nav-link {
    padding: 0;
    font-size: 24px;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding-bottom: 10px;
    color: var(--primary-color);
    position: relative;
}
.tb-head .nav {
    gap: 40px;
}
.tb-head .nav-pills .nav-link::after {
    content: "";
    font-weight: 300;
    position: absolute;
    right: -20px;
    height: 50px;
    width: 1px;
    background-color: var(--primary-color);
}
.tb-head .nav-pills .nav-item:last-child .nav-link::after {
    content: "";
    display: none;
}
.pt-card {
    background: linear-gradient(to bottom, #00c9ff 0%, #006c93 100%);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    gap: 15px;
    height: 100%;
}
.pt-n {
    max-width: 90px;
    height: 90px;
    width: 90px;
    background-color: #ffffff;
    flex: 0 0 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}
.pt-detail p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
.pg-title h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}
/*.custom-question-bg {*/
/*    background: linear-gradient(to bottom, #00c9ff 0%, #006c93 100%);*/
/*    padding: 25px;*/
/*    border-radius: 15px;*/
/*}*/
/*.custom-question-bg p {*/
/*    color: #ffffff;*/
/*    margin: 0;*/
/*}*/
.sidebar-box {
    border-radius: 15px;
    height: 100%;
    overflow: auto;
}
.sidebar-box .list-unstyled li .btn[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
    transition: 0.2s;
}
.sidebar-box .list-unstyled li .btn {
    padding: 12px 0;
    font-size: 18px;
    color: #fff;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
}
.btn-toggle-nav li a {
    display: flex;
    color: #fff !important;
    font-weight: 300;
    font-size: 18px;
    gap: 10px;
    margin-bottom: 10px;
    align-items: start;
}
.btn-toggle-nav li a.activated {
    color: #AFEDFF !important;
    font-weight: 600;
}
.btn-toggle-nav li a svg {
    width: 20px;
    flex: 0 0 20px;
    margin-top: 5px;
}
.sidebar-box .list-unstyled li.mb-1 {
    border-bottom: 1px solid #ffffff;
}
.sidebar-box .list-unstyled li.mb-1:last-child {
    border: none;
}
.btn-toggle-nav li a:hover {
    color: #AFEDFF!important;
}
.btn-toggle-nav li a:hover svg path{
    fill: #AFEDFF!important;
}

.btn-toggle-nav li a.activated svg path{
    fill: #AFEDFF!important;
}
.download-button {
    display: flex;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
    background: linear-gradient(to bottom, #00c9ff 0%, #006c93 100%);
    padding: 10px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.download-button svg{
   width: 20px;
}
.ast-title h5 {
    font-weight: 700;
}
.module-div iframe {
    height: 500PX;
    width: 100%;
    background-color: #000000;
}
@media (max-width: 900px) {
    .main-question p {
        font-size: 16px;
    }

    .option-label span {
        font-size: 14px;
    }

    .bold-question {
        font-size: 1.3em;
    }

    .select-alert {
        font-size: 1.3em;
    }

    .option-label {
        padding: 12px;
        font-size: 0.95rem;
    }

    .option-label span {
        margin-left: 11%;
    }

    .option-label::before {
        width: 10%;
    }
}

@media (max-width: 400px) {
    .main-question p {
        font-size: 1.2em;
    }

    .option-label span {
        font-size: 1.4em;
    }

    .bold-question {
        font-size: 1.1em;
    }

    .select-alert {
        font-size: 1.1em;
    }

    .option-label {
        padding: 12px;
        font-size: 0.95rem;
    }

    .option-label span {
        margin-left: 14%;
    }

    .option-label::before {
        width: 14%;
    }
}

.explanation-refrences h4 {
    margin-bottom: 8px;
    color: black;
    font-size: 1.8em;
    font-weight: 600;
    font-family: "Roboto";
}

/* .explanation-refrences span {
    color: black;
    font-size: 1.4em;
    font-weight: 500;
    font-family: "Raleway", sans-serif !important;
} */

@media (max-width: 1199px) {
    .custom-main .container,.custom-main  .container-md,.custom-main  .container-sm {
        max-width: 100%;
    }
}
@media (max-width: 992px) {
    .prev-next-btn a, .prev-next-btn button {
        padding: 10px 15px;
    }
    .pg-title h1 {
        font-size: 30px;
    }
    .tb-head .nav-pills .nav-link {
        font-size: 18px;
    }
    .pt-n {
        max-width: 70px;
        height: 70px;
        width: 70px;
        flex: 0 0 70px;
        font-size: 20px;
    }
    .pt-detail p {
        font-size: 12px;
    }

}

