/* @import url('https://fonts.googleapis.com/css2?family=Apercu&display=swap'); */
/* @font-face {
  font-family: 'Apercu';
  src: 
    url('files/assets/fonts/Apercu/Apercu Regular.otf') format('opentype'),
    url('files/assets/fonts/Apercu/Apercu Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
} */
@font-face {
    font-family: 'Apercu';
    src: url('../fonts/Apercu/Apercu Light.otf') format('opentype'),
        url('../fonts/Apercu/Apercu Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Apercu';
    src: url('../fonts/Apercu/Apercu Medium.otf') format('opentype'),
        url('../fonts/Apercu/Apercu Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* @font-face {
  font-family: 'Apercu';
  src:
    url('files/assets/fonts/Apercu/Apercu Bold.otf') format('opentype'),
    url('files/assets/fonts/Apercu/Apercu Bold.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
} */
/* @font-face {
  font-family: 'Inter';
  src:
    url('files/assets/fonts/Inter/Inter-Bold.otf') format('truetype'),
    url('files/assets/fonts/Inter/Inter-Bold.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
}  */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Regular.ttf') format('truetype'),
        url('../assets/fonts/Inter/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --nav-bg: 'white';
    --def-bgcolor: #8D8D8D;
    --def-fontfamily: 'Inter', sans-serif;
    --def-heading-fontfamily: 'Apercu', sans-serif;
    --def-text-color: #4D4D4D;
    --def-text-colorlight: #212121;
    --primary: #2463EB;
    --primary-ghost: rgba(36, 99, 235, 0.04);
    --secondary: #FFBA00;
    --success: #115B43;
    --success-light: #009262;
    --warning: #89939E;
    --danger: red;
    --heading-fontfamily: 'Apercu', sans-serif;
    --btag-fontfamily: 'Apercu', sans-serif;
    --natural-black: #212121;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-danger {
    background-color: var(--danger);
}

.bg-success {
    background-color: var(--success);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-success-light {
    background-color: var(--success-light);
}

.bg-warning {
    background-color: var(--warning);
}

#app {
    background-color: #F9FAFB;

}


/* Tags */
body {
    font-family: var(--def-fontfamily);
    /* background-color: var(--def-bgcolor); */
    color: var(--def-text-color);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
}

.truncate-text {
    white-space: nowrap;
    /* Prevent line breaks */
    overflow: hidden;
    /* Hide overflowed content */
    text-overflow: ellipsis;
    /* Display ellipsis (...) when text overflows */
    max-width: 100%;
    /* Set the maximum width */
}

b {
    font-family: var(--btag-fontfamily);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
}

nav {
    background-color: var(--nav-bg);
}

a {
    font-family: var(--def-fontfamily);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--def-text-color);
    text-decoration: none;
}

hr {
    border: 0.5px solid rgba(33, 33, 33, 0.7);

}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-fontfamily);
    color: var(--natural-black);
    font-style: normal;
    font-weight: 500;
    margin: 0px;
}

.atext-1 {
    font-family: var(--def-fontfamily);
    color: var(--def-text-color);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

.btext-1 {
    font-family: var(--def-fontfamily);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.btext-2 {
    font-family: var(--def-fontfamily);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.no-course-div {
    margin-top: 25px !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.no-course-found {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 400;
    color: #717171;
}

.btext-3 {
    font-family: var(--def-fontfamily);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdownbtn+.dropdownbtndata {
    position: absolute;
    margin-top: 8px !important;
    border-radius: 8px;
    box-shadow: 0px 2px 16px 0px rgba(17, 24, 39, 0.08);
    padding: 0px !important;
    border: 1px solid var(--neutral-silver, #F5F7FA);
    min-width: 200px !important;
}

.uploadprogress {
    border-radius: 16px;
    background: #FFF;
    padding: 16px 32px;
}

.uploadprogresssection {
    display: flex;
    justify-content: space-between;
}

.ups_fileinfo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ups_fileinfo_file {
    color: var(--neutral-black, #212121);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.ups_details {
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    color: var(--neutral-grey, #717171);
    text-align: right;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.ups_btn_remove {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 4.8px;
    border-radius: 7.2px;
    border: 0.6px solid rgba(77, 77, 77, 0.20);
}

.ups_recordinfo_completetext .ups_recordinfo_text {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: end;
}

.ups_recordinfo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: inherit;
    margin-left: auto;
    cursor: pointer;
}

.ups_recordinfo_text {
    color: var(--neutral-grey, #717171);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.ups_fileinfo_status {
    color: #FA0;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.ups_fileinfotext {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.uploadportion {
    display: flex;
    padding: 40px 70px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #ABBED1;
    background: rgba(36, 99, 235, 0.04);
    flex-direction: column;
    gap: 12px;
}

.blurit {
    filter: blur(2px);
}

.dropdownbtn+.dropdownbtndata a {
    display: flex;
    padding: 16px 20px;
    align-items: center;
}

.btext-4 {
    color: #717171;
    font-family: var(--def-fontfamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
}

h1 {
    font-size: 48px;
    line-height: 28px;
}

h2 {
    font-size: 36px;
    line-height: 28px;
}

h3 {
    font-size: 28px;
    line-height: 28px;
}

h4 {
    font-size: 20px;
    line-height: 28px;
}

h6 {
    font-family: var(--def-fontfamily);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

/* Classes */
.navbar-fixed {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 23;

}

.btn-block {
    width: 100%;
}

.section-margin-b {
    margin-bottom: 50px;
}

.section-margin {
    margin-top: 50px;
    margin-bottom: 50px;
}

.btn {
    font-size: 14px !important;
}

.btn-primary-outline:hover {
    color: var(--primary);

}

.mr-12 {
    margin-right: 12px;
}

.btn-primary-outline {
    color: var(--primary);
    padding: 10px 32px;
    border: 1px solid #2463EB;
    border-radius: 4px;
}

.btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 10px 32px;

}

.btn-primary:disabled {
    background-color: #EEF5FC;
    color: #ABBED1;
    border: none;
}

.btn-clean {
    color: #7e8299;
    border-color: #f9f9f9;
    background-color: #f9f9f9;

}

.btn-clean:hover {
    background-color: #F4F4F4 !important;
}

.btn-clean-primary-1:hover {
    border: 1px solid var(--primary);
    background: #D0DEFB !important;
}

.btn-clean-primary-1 {
    background: #D0DEFB;
    border-radius: 4px;
    align-items: center;
    padding: 10px 32px;
    color: #2463EB !important;
    border-radius: 12px;
}

.btn-clean-primary {
    background: rgba(36, 99, 235, 0.05);
    border-radius: 4px;
    align-items: center;
    padding: 10px 32px;
    color: #2463EB !important;
    border-radius: 12px;
}

.btn-clean-success:hover {
    border: 1px solid var(--success-light);
    background: #D0DEFB !important;
    color: var(--success-light);
}

.btn-clean-success {
    background: rgba(0, 146, 98, 0.1);
    padding: 12px 32px;
    color: var(--success-light);
    border-radius: 12px;
}

.btn-clean-danger:hover {
    border: 1px solid var(--danger);
    background: rgba(224, 43, 29, 0.1) !important;
    color: var(--danger);
}

.btn-clean-danger {
    background: rgba(224, 43, 29, 0.1);
    padding: 12px 32px;
    color: var(--danger);
    border-radius: 12px;
}


.text-primary {
    color: var(--primary);
}

.section-1 p {
    line-height: 30px;
}

.display-1 {
    font-family: var(--def-heading-fontfamily);
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    line-height: 74px;
    color: var(--natural-black);
}

.nav-header {
    background: #FFFFFF;
    box-shadow: 0px 15px 30px rgba(187, 170, 187, 0.09);
}

.navbar .nav-container {
    column-gap: 70px;
    ;
}

.navbar .nav-container a:not(.btn) a:not(:hover) {
    gap: 70px;
    color: var(--def-text-colorlight) !important;
}


.nav-link:hover {
    color: var(--primary) !important;
}


/* tags */


ul {
    line-height: 20px;
}

/* Classes */


.display-3 {
    font-family: var(--heading-fontfamily);
    font-style: normal;
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: var(--natural-black);

}

.quote-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 96px 0px;
    margin-top: 116px;
    background: rgba(255, 186, 0, 0.05);
}

.quote-section .row {
    row-gap: 36px;
    text-align: center;
}

.avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 200px;
}

.avatar-section {
    row-gap: 32px;
}

.alternative-school p {
    font-size: 16px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.alternative-school img {
    position: absolute;
    z-index: 11;
    left: -10px;
    top: -104px;
    width: 374px;
}

.menu-dropdown-toggle::after {
    content: url('../../../files/assets/img/arrow-down.svg') !important;
    border: none;
    vertical-align: middle;
}

.breadcrumps {
    overflow: hidden;
}

.card-title-n {
    overflow: hidden;
}

.menu-dropdown-toggle.show svg {
    transform: rotate(180deg) !important;
}

.alternative-school {
    position: relative;
    height: 451px;
    padding-left: 269px;
    background-color: var(--primary);
    background-image: url('../../../files/assets/img/homepage/bg-blue.webp');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
    /* height: 50vh; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* padding: 0px; */
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    row-gap: 16px;
    justify-content: center;
    color: white !important;
}

.alternative-school-text .frame-1 {
    row-gap: 16px;
    display: grid;
}

.alternative-school-text .frame-2 {
    row-gap: 16px;
    display: grid;
}

.alternative-school-text {
    /* max-width: 50%; */
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 711.77px;
}

.btn-light:hover {
    background-color: var(--primary);
}

.btn-light {
    padding: 10px 32px 10px 32px;
    color: var(--primary);
}

.page-maincontainer {
    padding-top: 162px;
}

/* ===**************** Media Queries ****************=== */
@media (max-width: 915px) {

    /* CSS styles here */
    .page-maincontainer {
        padding-top: 152px;
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-weight: 500;
        font-size: 32px;
        line-height: 39px;
        text-align: center;
    }

    .display-1 {
        font-size: 32px;
        line-height: 39px;
    }

    .section-1 h4 {
        text-align: center;
    }

    .display-3 {
        font-weight: 300;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.02em;

    }

    .quote-section {
        padding: 0px;
        margin-top: 64px;
    }


    h2 {
        font-size: 24px;
        line-height: 44px;
    }

    h3 {
        font-size: 24px;
        line-height: 28px;
    }

    h4,
    .modile-h4 {
        font-size: 20px;
        line-height: 28px;
    }

    h6 {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    .btext-1 {
        font-size: 14px;
        line-height: 24px;
    }

    .alternative-school {
        height: unset;
        padding: 0px;
    }

    .alternative-school-image img {
        position: relative;
        width: 235.76px;
        height: 302.58px;
        left: 0px;
        top: 0px;
    }

    .alternative-school-text {
        width: UNSET;
    }

    /* .btext-2 {
      font-family: var(--def-fontfamily);
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
    } */


}


.mm-0 {
    margin: 0 auto !important;
}

.a-link:hover {
    border-bottom: 1px solid var(--primary);
}

.a-link {
    color: var(--primary);
    cursor: pointer;
}

.error-border {
    border: 1px solid var(--danger) !important;
}

.text-right {
    text-align: right !important;
}

.dp__input_wrap svg {
    display: none;
}

.dp__input_wrap input {
    background: rgba(137, 147, 158, 0.05);
    border: 0.5px solid #ABBED1;
    border-radius: 8px;
    /* height: 48px; */
    padding: 12px 20px;
    font-family: var(--def-fontfamily);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #4D4D4D;
}

.custom-back-btn {
    border-radius: 8px;
    padding: 6px 12px 6px 10px;
    gap: 8px;
    color: #9CA3AF;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px !important;
    line-height: 20px;
}

.label-input input {
    padding: 12px 12px 12px 16px !important;
}

.dp__action_button {
    height: unset !important;
}

.mb-24p {
    margin-bottom: 24px;

}

.mb-30p {
    margin-bottom: 30px;
}

.mb-16p {
    margin-bottom: 16px;

}

.pl-0 {
    padding-left: 0px !important;
}

hr {
    opacity: 0.4;
    border: 1px solid #ABBED1;
}

:disabled,
:disabled+.select2-container .select2-selection--single,
:disabled+.select2-container {
    opacity: 0.8 !important;
    cursor: not-allowed;
    background: #EFEFEF !important;
}

.select2-container {
    background-color: rgba(137, 147, 158, 0.05) !important;
    border: 0.5px solid #ABBED1;
    border-radius: 8px;
    /* height: 48px; */
    /* padding: 12px 20px !important;  */
    padding: 10px 12px 10px 16px;
    font-family: var(--def-fontfamily) !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    color: #4D4D4D !important;

}

.card {
    border: none;
}

.mb-3>.select2-container--default {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border: none !important;
    background-color: #f9f9fa !important;
}

.select-label-input .select2-selection__rendered {
    padding: 0px !important;
    padding-top: 6px !important;
}

.select2-results__option[aria-disabled="true"] {
    display: none;
}

.select2-selection__arrow {
    margin-top: 0.6rem;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pr-0 {
    padding-right: 0px;
}

.select2-container--open {
    z-index: 1111 !important;
}

.select2-container--open {
    background-color: #F8F7F7 !important;
}

.form-control::placeholder {
    color: #798389 !important;
    opacity: 0.8;
}

option:disabled {
    color: #798389 !important;
    opacity: 0.8;
}

.select2-selection__rendered:not([title]) {
    padding-left: 0px !important;
}

.custom-back-btn:hover svg,
.custom-back-btn:hover path {
    stroke: var(--primary) !important;
}


.custom-back-btn:hover {
    background: var(--primary-ghost) !important;
    color: var(--primary);
}

.custom-back-btn {
    border-radius: 8px;
    padding: 6px 12px 6px 10px;
    gap: 8px;
    color: #9CA3AF;
}

.custom-modal-box .modal-content {
    background: #FFFFFF;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 12px;
}

.custom-modal-box .modal-body {
    height: 60vh;
    overflow-y: scroll;
}

.custom-modal-box .modal-body::-webkit-scrollbar {
    display: none;
}

.custom-modal-box .modal-content {
    padding: 14px !important;
}

.custom-modal-box .modal-button-close {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 14px !important;
    border-radius: 12px;
    border: 1px solid rgba(77, 77, 77, 0.2);
}

.custom-round-progress .point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-round-progress .round {
    transform: rotate(-90deg);
    transition: all 1s ease-in-out;

    /* SVG */
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 0 999;
}

.custom-round-progress .border {
    /* SVG */
    fill: none;
    stroke: lightgray;
    /* Set the color of the grey border here */
    stroke-width: 4;
    opacity: 0.4;
    /* Set the opacity to make the grey border less prominent */
    stroke-dasharray: 999 0;
}

.custom-round-progress {
    position: relative;
}