.quizWeb {
    width: 100%;
}

.quizMob {
    width: 100%;
    display: none;
}
.progresSec {
    position: sticky !important;
    top: 70px;
    z-index: 10;
    background-color: #fff;
}
.quizContainer {
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

/* =============== */
.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}
.progressBar {
    position: absolute;
    max-width: 98%;
    width: 0%;
    left: 1%;
    height: 3px;
    background-color: #003f54;
    z-index: 3;
    bottom: 7px;
    transition: width 0.3s;
}
.progress-step {
    text-align: left;
    width: 25%;
    height: 85px;
    position: relative;
    color: #999999;
}

.progress-step.active {
    color: #000;
}

.progress-step:after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 100%;
    border-bottom: 3px dashed #d2d2d2;
    transform: translateX(-50%);
    z-index: 1;
}

.progress-step::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 5px solid #d2d2d2;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 10px;
    transform: translateX(-50%);
    z-index: 5;
    transition: all 0.3s ease;
}

.progress-step.active::before {
    border: none;
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
}

.progress-step.active::after {
    /* border-bottom: 3px solid #003f54; */
}

.completed {
    position: absolute;
    right: -3px;
    bottom: -12px !important;
    background-color: #d0d7e4;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.completed.active {
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
}

.completed img {
    height: 18px;
}

.progress-step.current {
    font-weight: 600;
    color: #003f54;
}

.progress-step.current::before {
    box-shadow: 0 0 0 4px rgba(0, 63, 84, 0.3);
    transform: scale(1.1) translateX(-50%);
}

.completed.current {
    box-shadow: 0 0 0 4px rgba(0, 63, 84, 0.3);
}

.progress-step .fill {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
    transform: translateX(-50%);
    z-index: 2;
    transition: width 0.4s ease;
}
/* Uniquiz chnages */
.quizSlider .owl-stage-outer {
    overflow-y: auto;
    height: 540px;
}
.applyBtnres:hover {
    color: #ffffff;
}
.quizCard:hover .applyBtnres {
    display: flex;
    right: 0;
}
.applyBtnres {
    display: none;
    position: absolute;
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
    width: calc(100% - 20px);
    left: 0;
    margin: 0px auto;
    color: #ffffff;
    text-align: center;
    justify-self: anchor-center;
    height: 45px;
    bottom: -21px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

@media screen and (max-width: 1080px) {
    .customContainer.quizContainer {
        margin: 3rem 0;
        padding-bottom: 1rem;
        overflow-x: auto;
        align-items: flex-start;
    }
    .customSection.firstSection {
        min-height: auto;
    }
    .progress-container {
        min-width: 1080px;
    }

    .completed {
        bottom: -8px !important;
        width: 35px;
        height: 35px;
    }

    .completed img {
        height: 16px;
    }
}

/* ===================== */
.customContainer.quizBoxContainer {
    justify-content: flex-start;
}

.quizBoxBG {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    object-position: bottom;
}

/* ============== */
.quizBox1 {
    box-shadow: 4px 4px 17px 0px #00000040;
    backdrop-filter: blur(20px);
    background-color: #ffffff;
    border: 1px solid #555555;
    border-radius: 12px;
    overflow: hidden;
}

.img1 {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

.contentBoxs {
    width: 100%;
    padding: 3rem !important;
    position: relative;
}

.numberBox {
    position: absolute;
    font-size: 80px;
    color: #d0d7e4;
    right: 3rem;
    top: 1rem;
}

.selectHead {
    width: 100%;
    padding: 0 1rem;
    margin-top: 2rem;
    background: #a41a1f;
    height: 50px;
    border-radius: 4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.country-list {
    padding: 0;
    box-shadow: 0px 0px 14px 0px #00000040;
    height: 360px;
    overflow-y: auto;
}

.country-list::-webkit-scrollbar {
    width: 6px;
}

.country-list::-webkit-scrollbar-track {
    background-color: #ffffff;
}

.country-list::-webkit-scrollbar-thumb {
    background-color: #9c7c29;
    border-radius: 12px;
}

.country-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #000;
    font-family: "Inter", sans-serif;
}

.country-item img {
    width: 20px;
    height: 16px;
    margin-right: 10px;
}

.country-item:hover {
    background-color: #d6eeff;
}

/* ============== */
.selection-container::-webkit-scrollbar {
    width: 6px;
}

.selection-container::-webkit-scrollbar-track {
    background-color: #ffffff;
}

.selection-container::-webkit-scrollbar-thumb {
    background-color: #9c7c29;
    border-radius: 12px;
}

.selection-container {
    margin-top: 3rem;
    width: 100%;
    overflow-y: auto;
    /* max-height: 300px; */
    max-height: 420px;
}

.selection-group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.selection-option {
    min-width: calc(50% - 20px);
    max-width: calc(50% - 20px);
    /* width: 99%; */
    display: flex;
    align-items: center;
    padding: 10px 20px;
    /* height: 50px; */
    height: auto;
    border: 1px solid #d2d2d2;
    color: #555555;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.selection-option:hover {
    background: #a41a1f;
    border-color: #a41a1f;
    color: #fff;
}

.selection-option.selected {
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
    color: white;
    border-color: #23915a;
}
.selection-option label {
    flex: 1;
}
.selection-option input[type="checkbox"],
.selection-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid #555555;
    border-radius: 50%;
    background-color: white;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.selection-option.selected input[type="checkbox"],
.selection-option.selected input[type="radio"] {
    background-color: #fff;
    border-color: #fff;
}
.selection-option.selected input[type="checkbox"]:after,
.selection-option.selected input[type="radio"]:after {
    content: url("../images/okG.svg");
    color: #9c7c29 !important;
    font-size: 16px;
    position: absolute;
}

.selection-container .nextBtn {
    height: 50px;
    background-color: #021b47;
    color: #ffffff;
}
.butnBoxF {
    position: absolute;
    bottom: 3rem;
    padding: 0 3rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.backBtn,
.nextBtn {
    color: #003f54;
}
.customBoxGred {
    background: #000000;
}

/* ================= */
.formContainer {
    margin-top: 3rem;
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-label {
    position: absolute;
    left: 1.2rem;
    top: -0.9rem;
    padding: 0;
    z-index: 2;
    background-color: #000000;
}
.iti {
    width: 100%;
}

.formContainer .form-control {
    border: 1px solid #ffffff;
    border-radius: 0;
    box-shadow: 0px 0px 14px 0px #00000040;
    height: 50px;
    background: none;
    color: #ffffff;
    padding: 0 20px;
}

.formContainer .form-control:focus {
    outline: none;
    box-shadow: none;
    background: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 14px 0px #00395240;
}

.formContainer .form-control:-webkit-autofill,
.formContainer .form-control:-webkit-autofill:focus,
.formContainer .form-control:-webkit-autofill:hover,
.formContainer .form-control:-webkit-autofill:active {
    outline: none;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    background: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* ============== */
.formContainer button{
    margin-top: 2rem;
    width: 220px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #23915a;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #23915a;
    border-radius: 0;
    cursor: pointer;
    gap: 8px;
    transition: background-color 0.3s ease;
}
.formContainer button.iti__search-clear {
    display: none;
}

.formContainer button:hover {
    background: linear-gradient(180deg, #23915a 0%, #054b28 100%);
    color: #fff;
}

.sliderBox {
    padding: 1rem;
}

.quizhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.BtnBoxSlider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.BtnBoxSlider .arroeIcon {
    height: 80px;
    cursor: pointer;
}

.countBox {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #054b28;
}

/* =================== */
.quizSlider {
    margin-top: 2rem !important;
    margin-bottom: 1rem;
}

.quizCard {
    position: relative;
    backdrop-filter: blur(4px);
    border: 1px solid #555;
    border-radius: 8px;
    box-shadow: 2px 2px 8px 0px #0000001a;
    padding: 1rem;
    padding-bottom: 30px;
}
.coverImg {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}
.cardBody {
    margin-top: 1rem;
}
.btnBoxBtm {
    display: none;
}
.quizCard h5 {
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 1280px) {
    .contentBoxs {
        padding: 1.5rem !important;
    }

    .numberBox {
        top: 0rem;
        font-size: 64px;
        right: 1.5rem;
    }
}

@media screen and (max-width: 1080px) {
    .quizhead h3.titel42 {
        font-size: 34px;
    }

    .BtnBoxSlider {
        gap: 1rem;
    }

    .BtnBoxSlider .arroeIcon {
        height: 60px;
        cursor: pointer;
    }

    .countBox {
        width: 50px;
        height: 50px;
    }

    .numberBox {
        font-size: 54px;
    }

    .img1 {
        min-height: 600px;
    }

    .selection-option {
        width: calc(50% - 5px);
        padding: 8px;
    }

    .contentBoxs {
        padding: 1rem !important;
    }

    .selection-group {
        gap: 10px;
    }

    .quizBox1 .col-lg-6:first-child {
        width: 60% !important;
    }

    .quizBox1 .col-lg-6:nth-child(2) {
        width: 40% !important;
    }

    .formContainer {
        margin-top: 0rem;
    }
}

@media screen and (max-width: 991px) {
    .formContainer {
        width: 100%;
    }

    .butnBoxF {
        bottom: 520px;
    }

    .contentBoxs {
        min-height: 400px;
    }

    .img1 {
        margin-top: 2rem;
        min-height: auto;
        height: 500px;
        max-height: auto;
    }

    .quizBox1 .col-lg-6:first-child {
        width: 100% !important;
    }

    .quizBox1 .col-lg-6:nth-child(2) {
        width: 100% !important;
    }
}

@media screen and (max-width: 768px) {
    .quizBoxContainer .btnBoxBtm {
        margin-top: 0rem !important;
    }
    .quizhead .BtnBoxSlider {
        display: none;
    }

    .btnBoxBtm {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        margin-top: 1rem !important;
        margin-bottom: 1rem;
    }

    .quizhead {
        margin-top: 1rem !important;
        justify-content: center;
    }

    .quizhead h3.titel42 {
        font-size: 28px;
        text-align: center;
    }

    .img1 {
        height: 400px;
    }

    .butnBoxF {
        position: absolute;
        bottom: 420px;
        left: 0;
    }
}

@media screen and (max-width: 600px) {
    .progresSec {
        top: 70px;
    }
    .customContainer.quizContainer {
        margin: 2rem 0;
    }

    .quizWeb {
        display: none;
    }
    .quizMob {
        display: block;
    }
}
@media screen and (max-width: 550px) {
    .selection-group {
        flex-direction: column;
    }
    .selection-option {
        width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .applyBtnres {
        font-size: 12px;
    }
    .quizCard {
        padding-bottom: 30px !important;
    }
    .quizSlider .owl-stage-outer {
        overflow-y: auto;
        height: 500px;
    }
    .quizSlider .owl-stage-outer {
        height: 520px;
    }
    .quizhead h3.titel42 {
        font-size: 24px;
    }

    .quizCard {
        padding: 0.5rem;
    }

    .formContainer button {
        width: 100%;
    }
    .sliderBox {
        padding: 0;
    }
    .img1 {
        min-height: auto;
        max-height: 400px;
    }

    .contentBoxs {
        padding: 1rem !important;
    }

    .contentBoxs .titel42 {
        font-size: 28px;
    }

    .numberBox {
        font-size: 38px;
    }
    .firstSection h1.titel64 {
        font-size: 32px;
        padding: 0 20px;
        margin-top: 30px !important;
        margin-bottom: 0px !important;
    }
}

.country-search-box input {
    padding: 8px;
    font-size: 14px;
}

.country-search-input {
    color: #000 !important;
}

.scrollBox {
    /* border: 1px solid #ddd; */
    /* padding: 5px; */
}

.navigation-buttons {
    display: flex;
    justify-content: flex-start;
}
.backBtn,
.nextBtn {
    /* position: absolute; */
    bottom: 3rem;
    left: 3rem;
    gap: 0.5rem;
}

.form-control[readonly] {
    background-color: unset !important;
    opacity: unset !important;
}

@media screen and (min-width: 2100px) and (max-width: 2500px) {
    .contentBoxs h6.titel18 {
        font-size: 24px;
    }
    .selectHead h6.titel16 {
        font-size: 24px;
    }
    .country-search-box input {
        font-size: 22px !important;
    }
    .country-item {
        font-size: 22px;
    }
    .selection-option label.titel16 {
        font-size: 22px;
    }
    .contentBoxs h6.mb-4 {
        margin-bottom: 2rem !important;
    }
    .formContainer .form-control {
        height: 60px;
    }
    .form-group input {
        font-size: 22px;
    }
    .contentBoxs button {
        font-size: 22px;
    }
    .iti__selected-dial-code {
        font-size: 22px;
    }
}

@media screen and (min-width: 2501px) and (max-width: 3000px) {
    .progress-step {
        height: 110px;
    }
    .contentBoxs h6.titel18 {
        font-size: 28px;
    }
    .selectHead h6.titel16 {
        font-size: 28px;
    }
    .country-search-box input {
        font-size: 24px !important;
    }
    .country-item {
        font-size: 28px;
    }
    .country-item img {
        width: 30px;
        height: 20px;
    }
    .selection-option label.titel16 {
        font-size: 24px;
    }
    .contentBoxs h6.mb-4 {
        margin-bottom: 2rem !important;
    }
    .selectHead {
        height: 70px;
    }
    .formContainer .form-control {
        height: 70px;
    }
    .form-group input {
        font-size: 26px;
    }
    .contentBoxs button {
        font-size: 26px;
    }
    .iti__selected-dial-code {
        font-size: 26px;
    }
    .selection-option input[type="checkbox"],
    .selection-option input[type="radio"] {
        width: 26px;
        height: 26px;
    }
}

@media screen and (min-width: 3001px) and (max-width: 4000px) {
    .progress-step {
        height: 130px;
    }
    .contentBoxs h6.titel18 {
        font-size: 38px;
    }
    .selectHead h6.titel16 {
        font-size: 38px;
    }
    .country-search-box input {
        font-size: 38px !important;
    }
    .country-item {
        font-size: 38px;
    }
    .selection-option label.titel16 {
        font-size: 38px;
    }
    .selectHead {
        height: 80px;
    }
    .formContainer .form-control {
        height: 100px;
    }
    .form-label {
        top: -1.9rem;
    }
    .contentBoxs h6.titel24.mb-4 {
        margin-bottom: 4rem !important;
    }
    .form-group label,
    .form-group input {
        font-size: 34px;
    }
    .country-item img {
        width: 38px;
        height: 28px;
        margin-right: 20px;
    }
    .contentBoxs button {
        font-size: 28px;
    }
    .iti__selected-dial-code {
        font-size: 28px;
    }
    .selection-option input[type="checkbox"],
    .selection-option input[type="radio"] {
        width: 32px;
        height: 32px;
    }
    .formContainer button {
        margin-top: 3rem;
        width: 250px;
        height: 80px;
    }
    .progress-step::before {
        width: 35px;
        height: 35px;
        bottom: -5px;
        left: 16px;
    }
}
