@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --white-clr: #ffffff;
    --primary-clr: #11569D;
    --secondary-clr: #C52227;
    --dark-black: #010B1B;
    --blue: #132644;
    --grey: #536582;
    --light-grey: #8C9AAF;
    --extra-light-grey: #D5E5FD;
}

body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
    position: relative;
}

.overlay {
    position: fixed;
    left: 0;
    background: #000;
    opacity: .7;
    width: 100%;
    height: 100vh;
    z-index: 4;
    top: 80px;
    visibility: hidden;
    transition: all .2s linear;
}

.overlay.open {
    visibility: visible;
}

body.modal-open {
    padding-right: 0 !important;
}


ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
    margin: 0 5px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}
.pt-10{ padding-top: 10px; }
.pt-15{ padding-top: 15px; }
.pr-5{ padding-right: 5px; }
.prl-5{ padding-right: 5px; padding-left: 5px; }
.plr-0{padding-left: 0; padding-right: 0;}
.p-1rem{padding: 1rem;}
.mt-15{ margin-top: 15px; }

input,
button,
textarea {
    outline: none;
    background: transparent;
    border: 0;
}

textarea {
    resize: none;
}

.flex {
    display: flex;
    flex-direction: row;
}

.flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

img {
    width: auto;
}

.cmn-btn {
    font-weight: 500;
    background: var(--primary-clr);
    color: var(--white-clr);
    border-radius: 6px;
}

.sub-heading {
    color: var(--blue);
    font-weight: 600;
    font-size: 36px;
    line-height: 52px;
    text-align: center;
}


.sec-padding {
    padding-block: 80px;
}

/* --------Navbar--------- */
.navBar {
    background: var(--white-clr);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));
}

.logo img {
    height: 40px;
}

.nav-inner {
    padding-block: 20px;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav-list .nav-list-item a {
    color: #2B244E;
    font-size: 15px;
    font-weight: 500;
}

.nav-list-item:hover a,
.nav-item.active.active a,
.nav-dd.show button {
    color: var(--primary-clr);
}

.navigator .navLinks-outer {
    gap: 30px;
}

.search-box {
    cursor: pointer;
}

.search-box .nav-search-btn {
    font-size: 18px;
    transform: scale(1);
    transition: all .2s linear .1s;
}

.search-box.active .nav-search-btn {
    transform: scale(0);
    transition-delay: 0s;
}

.cancel-search-btn {
    position: absolute;
    font-size: 18px;
    transition: all .2s linear;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.search-box.active .cancel-search-btn {
    transform: translate(-50%, -50%) scale(1);
    transition-delay: .1s;
}

.auth-box {
    gap: 10px;
}

.nav-auth-btn {
    border-radius: 6px;
    transition: all .2s ease;
    border: 2px solid var(--primary-clr);
    min-width: 110px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

#nav_signUp {
    background: transparent;
    color: var(--primary-clr);

}

#nav_signUp:hover {
    background: var(--primary-clr);
    color: var(--white-clr);
}

#nav_logIn:hover {
    background: transparent;
    color: var(--primary-clr);
}

.navLinks-outer .insbtn_auth:hover {
    background: transparent;
    color: var(--primary-clr);
}

.ham-btn {
    width: 30px;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    justify-content: center;
    display: none;
}

.ham-btn span {
    height: 3px;
    background: var(--dark-black);
    border-radius: 15px;
}

.search-box {
    position: relative;
}

.nav-search-btn {
    transition: color .1s linear;
}

.nav-search-btn:hover,
.cancel-search-btn:hover {
    color: var(--primary-clr);
}

#menusearch {
    border: 1px solid #DDDDDD;
    height: 44px;
    padding-right: 40px;
    padding-left: 15px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    font-size: 15px;
}

.search-block.input-block {
    margin-bottom: 0 !important;
}

.search-submit-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98%;
    width: 40px;
    cursor: pointer;
    transition: color .1s linear;
    color: var(--light-grey);
}

.search-submit-btn:hover {
    color: var(--dark-black);
}

#nav_search {
    position: absolute;
    width: 400px;
    top: 52px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: all .2s ease;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));

    right: 0;
}

#nav_search.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ---Hero section------ */
.hero-sec {
    background: var(--primary-clr);
    margin-top: 80px;
    color: white;
    padding-block: 91px 118px;
}

.heading {
    font-size: 50px;
    margin-bottom: 35px;
    line-height: 55px;
    letter-spacing: -0.01em;
}

.hero-left-inner {
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-right-inner {
    max-width: 564px;
    height: 100%;
    margin: auto;
}

.hero-right-inner img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-form {
    max-width: 458px;
}

.input-block input::placeholder {
    color: var(--light-grey);
}

.input-block {
    max-width: 458px;
}

.input-block:not(:last-child) {
    margin-bottom: 20px;
}

.input-block input {
    width: 100%;
    background: var(--white-clr);
    border-radius: 10px;
    height: 64px;
    padding: 0 21px;
}

.select2.select2-container .select2-selection {
    height: 64px;
    border-radius: 10px;
    padding: 0 21px;
    align-items: center;
    display: flex;
    border: 0;
    outline: none;
}

.fc-select .select2.select2-container .select2-selection,
.bordered-select .select2.select2-container .select2-selection {
    height: 50px;
    border-radius: 8px;
    padding-inline: 18px;
    border: 1px solid #dddd;
}

.fc-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 20px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dddd;
    border-radius: 4px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: var(--blue);
    color: var(--white-clr);
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    text-align: left;
}

.select2-dropdown {
    z-index: 4;
    border: 0;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));
}

.select2-container--open .select2-dropdown--below {
    border-top: 1px solid var(--extra-light-grey);

}

.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid var(--extra-light-grey);
}

.select2-selection__arrow {
    background: url(/images/web/chevron.svg) no-repeat center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: unset;
    right: 21px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--light-grey);
    font-size: 15px;
}

.hero-form-box .select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 16px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--light-grey);
}

.hero-form button {
    background: var(--secondary-clr);
    width: 100%;
    border-radius: 10px;
    /* padding-block: 18px 19px; */
    padding-block: 0;
    font-size: 18px;
    transition: background .2s linear;
    min-height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-form button:hover,
.find-class-btn:hover,
.reg-btn:hover {
    background: #000;
}

.find-class-btn {
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));
}

.dropdown-toggle {
    padding: 0;
    border: 0;
    color: #2B244E;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dropdown-toggle:hover {
    color: var(--primary-clr);
}

.btn-close {
    --bs-btn-close-bg: none;
}

.btn-close:focus {
    box-shadow: none;
}

.dropdown .dropdown-menu.show {
    display: inline-block;
    top: 26px !important;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 8px 0;
    width: fit-content;
    overflow: hidden;
    left: -20px !important;
    border: 0;
}

.dropdown-toggle::after {
    display: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--primary-clr);
    border: 0;
    background-color: transparent;
}

.dropdown-item {
    padding-inline: 20px 37px;
    padding-block: 10px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background: var(--blue);
    color: var(--white-clr);
}

.dd-nav-item.active .dropdown-toggle {
    color: var(--primary-clr);
}

/* ----Training Section--- */
.training-sec {
    background: var(--white-clr);
}

.home-sec-sub {
    margin-bottom: 30px;
}

.training-sec .sub-heading {
    max-width: 902px;
    margin-inline: auto;
}

.train-card-box {
    border-radius: 16px;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));
    background: var(--white-clr);
    padding: 24px;
}

.card-icon {
    height: 40px;
    width: 40px;
}

.card-title-box {
    gap: 14px;
}

.card-title-box .card-title {
    color: var(--blue);
    font-weight: 600;
    font-size: 18px;
}

.card-content {
    margin-top: 14px;
}

.card-content p {
    font-size: 15px;
    font-weight: 400;
    color: var(--grey);
    line-height: 22px;
    margin-bottom: 12px;
}

.vm-btn {
    color: var(--primary-clr);
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    transition: color .2s linear;
}

.vm-btn:hover {
    color: var(--blue)
}

/* ------About Section------- */
.ab-card-box .card-icon {
    height: 80px;
    width: 80px;
}

.about-sec .card-content p {
    margin-bottom: 0;
}

.ab-card-box .card-title {
    margin-top: 14px;
}

.ab-card-col {
    margin: 0 -20px;
}

.ab-card-box {
    padding: 0 25px;
}

/* -----Team------ */
.team-sec,
.fc-sec {
    background: linear-gradient(267.8deg, #F8F8F8 -19.02%, #F3F9FF 88.61%);
}

.tm-card-box {
    height: 350px;
    background: var(--white-clr);
    border-radius: 16px;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));
    padding-top: 0;
    overflow: hidden;
}

.tm-card-box .card-title-box {
    text-align: center;
    height: 271px;
}

.tm-card-box .card-title-box .profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-card-box .card-title-box .card-title {
    text-align: start;
    margin-top: 16px;
}

.tm-card-box .card-content {
    margin-top: 16px;
    padding-inline: 20px;
}

.tm-card-box .card-content .card-title {
    font-weight: 600;
    color: var(--blue);
    font-size: 18px;
}

.tm-card-box .card-content p {
    margin: 0;
}

.tm-post {
    letter-spacing: 0.16px;
}

/* ----Recent Course--- */
.rc-sec .sub-heading {
    margin-bottom: 18px;
}

.rc-col {
    margin-bottom: 30px;
}

.rc-col p {
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    color: var(--grey);
    font-weight: 400;
}

.chip-wrapper {
    flex-direction: column;
    justify-content: flex-start;
}

.clip-list {
    flex-wrap: wrap;
    gap: 16px 18px;
    min-height: 44px;
    max-height: 164px;
    overflow: hidden;
}

.clip-list.active {
    max-height: 100%;
}

.chip {
    color: var(--blue);
    font-size: 15px;
    line-height: 22px;
    padding: 9px 21px;
    background: #F7F8FA;
    border-radius: 70px;
    border: 1px solid #DDDDDD;
    transition: all .1s linear;
}

.chip:hover {
    background: var(--light-grey);
    color: var(--white-clr);
    border-color: var(--light-grey);
}

.chip-btn {
    margin-top: 24px;
}

/* -------Upcoming course------ */
.uc-sec {
    background: #F7F8FA;
}

.class-card-box {
    background: var(--white-clr);
    padding: 22px 24px;
    border-radius: 16px;
    box-shadow: 0px 3px 10px 0px #0000001A;
    min-height: 190px;
    transition: box-shadow .2s ease-in;
    height: 100%;
}

.class-card-box:hover {
    box-shadow: 0 3px 10px #00000033;
}

.class-card-col {
    width: 100%;
}

.seat-box {
    background: var(--secondary-clr);
    border-radius: 5px;
    font-size: 13px;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    color: var(--white-clr);
    margin-bottom: 10px;
}

.seat-badge {
    padding: 3px 12px;
}

.class-card-box .card-content {
    margin-top: 7px;
}

.class-card-box .card-content p {
    margin-bottom: 0;
}

.class-card-box .card-content .card-location {
    margin-bottom: 6px;
}

.card-timing {
    gap: 7px;
}

.card-timing p {
    color: var(--light-grey);
}

/* -----Find classes-------- */
.fc-right-inner {
    max-width: 555px;
    height: 100%;
    margin: auto;
}

.fc-right-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.find-class-btn {
    background: var(--secondary-clr);
    width: 100%;
    padding-block: 14px 13px;
    transition: background .2s linear;
    border-radius: 8px;
}

.fc-form {
    max-width: 470px;
}

.fc-form .input-block {
    width: 100%;
    max-width: unset;
}

.fc-form .input-block input {
    height: 50px;
    width: 100%;
    border-radius: 8px;
    padding-inline: 18px;
    border: 1px solid #DDDDDD;
    font-size: 15px;
}

.fc-form .input-block {
    margin-bottom: 16px;
}

.first-field,
.last-fields {
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.fc-left-inner h2 {
    text-align: start;
    margin-bottom: 22px;
}

/* ---------testimonial------- */
.testi-sec {
    overflow: hidden;
}

.testi-sec .home-sec-sub {
    margin-bottom: 15px;
}

.testi-header {
    justify-content: space-between;
}

.testi-desc p {
    font-size: 15px;
    font-weight: 400;
    color: var(--grey);
    line-height: 22px;
    margin-bottom: 16px;
}

.testi-content {
    margin-top: 0;
}

.testi-content p {
    margin-bottom: 0;
}


.card-inner {
    background: var(--white-clr);
    padding: 24px;
    border-radius: 16px;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));
    height: 247px;
    overflow-y: auto;
}

.card-inner::-webkit-scrollbar {
    width: 0;
}


.help-block {
    color: red;
    font-size: 15px;
}

.hero-form .help-block {
    /* color: var(--white-clr); */
}

.course-block.has-error {
    margin-bottom: 40px;
}

#hero_select-error,
#fc_course-error {
    bottom: -23px;
    position: absolute;
}

/* ------Foter------- */
.footer {
    background: #001E3D;
    padding-top: 60px;
    color: white;
    position: relative;
}

.footer::after {
    width: 100%;
    height: 1px;
    content: ' ';
    position: absolute;
    background: var(--white-clr);
    bottom: calc((83px + 43px));
}

.scrollTop-btn {
    cursor: pointer;
    position: absolute;
    background: #001E3D;
    border-radius: 50%;
    bottom: calc((83px + 43px - 25px));
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 50px;
    z-index: 4;
    border: 1px solid var(--white-clr);
    display: flex;
    justify-content: center;
    align-items: center;
}

.scrollTop-btn i {
    font-size: 16px;
}

.footer a {
    color: var(--white-clr);
}

.ft-logo-box {
    margin-bottom: 26px;
}

.ft-logo-box img {
    height: 68px;
}

.tranie-logo-col {
    text-align: end;
}

.social-media {
    gap: 18px;
}



.copyright-box {
    position: relative;
    margin-top: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 47px;
}

.social {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 1px solid var(--white-clr);
    overflow: hidden;
    transition: filter .2s ease;
}

.social:hover {
    filter: drop-shadow(0px 3px 5px var(--light-grey));
}

.social a {
    height: 100%;
    width: 100%;
}

.social a i {
    font-size: 15px;
}

.copyright p {
    line-height: 21px;
    text-align: left;
    font-weight: 300;
    font-size: 14px;
    color: var(--white-clr);
}

.links-col span {
    margin-bottom: 10px;
    display: block;
    font-size: 20px;
    font-weight: 500;
}

.ft-links:not(:last-child) {
    margin-bottom: 12px;
}

.ft-links {
    font-size: 16px;
    font-weight: 400;
}

.contactLinks .ft-links {
    gap: 14px;
    align-items: flex-start;
}

.acpt-info {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
}

.footer .links-col a {
    transition: color .1s linear;
}

.footer .links-col a:hover {
    color: #D5E5FD;
}

.pay-trust {
    margin-top: 40px;
}

.menu-active {
    overflow: hidden;
}


/* -----STUDENT REGISTRSTION PAGE----- */
.tReg-top-art {
    background: url(/images/web/regTop-vtr.png) no-repeat;
    background-position: top right -110px;
    background-size: 690px;
    right: 0;
    width: 100%;
    top: 0;
}

.tReg-bottom-art.tReg-corner-art {
    background: url(/images/web/regBottom-vtr.png) no-repeat;
    background-position: bottom left;
    width: 90%;
    background-size: 510px;
    bottom: 0;
    background-attachment: unset;
    z-index: 0;
    position: fixed;
    left: calc(100% - 50%);
}

.tReg-other-art {
    position: fixed;
    background: url(/images/web/form-side-vector-right.svg) no-repeat;
    width: 100px;
    height: 100%;
    right: 31px;
    z-index: 1;
    max-height: 147px;
    bottom: 92px;
    background-size: cover;
}


.tReg-corner-art {
    height: 100%;
    position: absolute;
    background-attachment: fixed;
}



.form-side-bg {
    background: transparent;
}

.sReg-main-art {
    position: fixed;
    background: url(/images/web/student-reg.png) no-repeat;
    z-index: 2;
    top: 50%;
    width: 50%;
    height: 90%;
    left: calc(74.3%);
    transform: translate(-50%, -50%);
    background-size: contain;
    background-position: center -7px;
}

/* .sReg-bg-corner-art {
    height: 100%;
    position: fixed;
    background: url(/images/web/sReg-vector.png) no-repeat;
    background-position: top -120px right -140px;
    background-size: 50%;
    right: 0;
    width: 50%;
    top: 0;
    max-height: 100vh;
    z-index: 1;
    background-attachment: fixed;
} */
.sReg-bg-corner-art {
    height: 100%;
    position: fixed;
    background: url(/images/web/sReg-vector.png) no-repeat;
    background-position: top -158px right -140px;
    background-size: 804px;
    right: 0;
    width: 50%;
    top: 0;
    max-height: 100vh;
    z-index: 1;
    background-attachment: fixed;
}


.reg-sec {
    background: var(--white-clr);
    min-height: 100vh;
}

.reg-logo {
    margin-bottom: 30px;
    text-align: center;
}

.reg-heading {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--blue);
    line-height: 45px;
    text-align: center;
}

.reg-form-box {
    margin-top: 20px;
}

.regForm-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 506px;
    width: 100%;
    background-color: var(--white-clr);
}

.reg-center-box {
    flex-direction: column;
    height: 100%;
}

.reg-container {
    display: flex;
    min-height: 100vh;
}

.reg-wrapper {
    width: 50%;
    min-height: 100vh;
}

.reg-left-wrapper {
    padding-block: 40px;
    padding-inline: 25px;
}

.reg-right-wrapper {
    background: var(--primary-clr);
    position: relative;
    pointer-events: none;
}

.form-side-arts {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.form-side-artLeft {
    left: 23px;
    top: 36%;
}

.form-side-artRight {
    height: 100%;
    width: 100%;
}

.form-side-bg {
    height: 470px;
    width: 406px;
    background-position: center;
}

.reg-btn {
    background: var(--secondary-clr);
    width: 100%;
    padding-block: 12px 11px;
    transition: background .2s linear;
}

.reg-form .input-block {
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
}

.reg-form .input-block input {
    border: 1px solid #DDDDDD;
    height: 50px;
    padding-inline: 18px;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color .2s linear;
}

.reg-form .input-block input:focus {
    border-color: var(--primary-clr);
}

.passwords-fields,
.area-fields,
.phone-fields {
    gap: 16px;
}

.reg-form .select2.select2-container .select2-selection {
    height: 50px;
    border: 1px solid #DDDDDD;
    padding-inline: 18px;
    outline: none;
}

.reg-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 18px;
}

.sReg-login {
    margin-top: 16px;
    text-align: center;
    color: var(--grey);
    font-size: 16px;
}

.sReg-login a {
    color: var(--blue);
    font-weight: 500;
}

/*
.sRegister-select.has-error {
    margin-bottom: 40px;
} */

#sRegister_select_state-error,
#sRegister_select_hear-error,
#tRegister_select_state-error {
    bottom: -23px;
    position: absolute;
}

/* ----------TRAINING SITE REGISTRATION PAGE---- */
/* .tReg-bg{
    background: url(/images/web/reg) ;
} */


.textArea {
    width: 100%;
    height: 100px;
    overflow-y: auto;
    border-radius: 8px;
    padding: 14px 18px;
    border: 1px solid #DDDDDD;
    font-size: 15px;
}

.textArea::placeholder {
    color: var(--light-grey);
}

.reg-form .tell-us-block {
    max-height: 100px;
    position: relative;
}

.tRegbg-box {
    text-align: center;
    height: 100%;
    width: auto;
}

.tell-us-block.has-error {
    margin-bottom: 40px;
}

#tell_us-error {
    position: absolute;
    left: 0;
    bottom: -24px;
}

/* ----------TRAINING SITE AGREEMENT PAGE---- */
.tAgree-form-box {
    width: 100%;
}

.tAgree-form-box .file-upload {
    cursor: pointer;
    height: 50px;
}

.tLabel {
    color: var(--grey);
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 22px;
}

.input-box {
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    overflow: hidden;
    height: 50px;
}

.reg-form .input-block .file-upload {
    padding: 13px 18px;
    color: var(--light-grey);
    font-size: 15px;
}

.reg-form .input-block .file-upload::placeholder {
    font-size: 12px;
}

.file-input {
    display: inline-block;
    text-align: left;
    background: #fff;
    padding: 0;
    width: 100%;
    position: relative;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.file-input .input-box>[type='file'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

.file-input .input-box>.button {
    position: absolute;
    background-color: #FFEDEE;
    right: 4px;
    border-radius: 8px;
    border: 0;
    color: var(--secondary-clr);
    padding: 10px 19px;
    top: 31.5px;
    font-size: 15px;
    font-weight: 400;
    width: auto;
    cursor: pointer;
}

.file-input .input-box>.label {
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 18px;
    font-size: 15px;
    color: var(--light-grey);
}


.file-input.-chosen .input-box>.label {
    opacity: 1;
}

.certi-title {
    cursor: default;
    font-weight: 500;
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 10px;
}

#tsAgreeFile-error,
#tsGenFile-error {
    position: absolute;
    bottom: 0;
}

.file-input .input-box.has-error {
    margin-bottom: 23px;
}

/* -----checkbox-styling--- */
.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    color: var(--grey);
    font-size: 15px;
    user-select: none;
}

.styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: var(--white-clr);
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    user-select: none;
    transition: .2s ease-in;
}

.styled-checkbox:checked+label:before {
    background: #ED263B;
    border-color: #ED263B;
}

.styled-checkbox:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 7px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .2s ease-in;
}

.styled-checkbox:checked+label:after {
    opacity: 1;
}

.block-inner {
    margin-bottom: 16px;
}

.block-inner .input-block {
    margin-top: 6px;
    display: none;
}

.block-inner.active .input-block {
    display: block;
}

.tAgree-cus-col {
    display: flex;
    align-items: center;
}

.tAgree {
    height: 753px;
    height: 95%;
    right: 30px;
}


.gear-info-block.input-block {
    margin-bottom: 7px;
}

/* ------STUDENT LOGIN PAGE----- */
.select2-container .select2-selection--single .select2-selection__rendered {
    position: relative;
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    right: 30px;
    font-size: 0;
    width: 15px;
}

.hide-arrow.select2-selection__arrow {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__clear::after {
    content: ' ';
    position: absolute;
    height: 2px;
    width: 15px;
    background: #999999;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.select2-container--default .select2-selection--single .select2-selection__clear::before {
    content: ' ';
    position: absolute;
    height: 2px;
    width: 15px;
    background: #999999;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.student-login {
    background: #F6F9FD;
    padding: 50px 12px;
    min-height: 100vh;
}

.student-inner {
    max-width: 535px;
    width: 100%;
}

.student-inner .logo {
    text-align: center;
    margin-bottom: 40px;
}

.student-inner .logo a img {
    max-height: 80px;
    height: 80px;
}

.student-form-box {
    background: var(--white-clr);
    border-radius: 20px;
    box-shadow: 0px 3px 10px 0px #0000001A;
    padding: 30px;

}

.student-heading {
    text-align: center;
    color: var(--blue);
    font-size: 30px;
    font-weight: 600;
    line-height: 45px;
    margin-bottom: 20px;
}

.student-login-form .password-block, .student-login-form .confirm-password-block {
    margin-bottom: 8px;
    position : relative;
}
.password-block #showPsw{
    top: 25px;
    transform: translateY(-50%);
    cursor: pointer;
    position: absolute;
    right: 10px;
}
.confirm-password-block #showcPsw{
    top: 25px;
    transform: translateY(-50%);
    cursor: pointer;
    position: absolute;
    right: 10px;
}

.forgot-pass {
    text-align: end;
    margin-bottom: 16px;
}

.student-login-form a {
    color: var(--primary-clr);
    transition: .2s linear;
}

.student-login-form a:hover {
    color: var(--blue);
}

.studentLogin-btn {
    border-radius: 8px;
    font-size: 18px;
}

.student-ac-btn {
    text-align: center;
    font-size: 15px;
    margin-top: 16px;
    color: var(--light-grey);
}

.form-info {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.16px;
    text-align: center;
    color: var(--grey);
    margin-bottom: 20px;
}

.forgot-pass-btn {
    font-size: 18px;
}

/* ------INSTRUCTOR REGISTRATION PAGE-- */
.instructor-inner {
    max-width: 810px;
    margin-inline: auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 3px 10px 0px #0000001A;
}

.instructor-reg-sec {
    padding-block: 50px;
    background: #F6F9FD;
}

.address-fields {
    gap: 16px;
}

.instructor-form-box {
    width: 100%;
}

.reg-form .input-block.exp-block {
    margin-bottom: 9px;
}

.instructorReg-btn {
    max-width: 246px;
    float: right;
    clear: both;
}

/* .instructorReg-select.has-error,
.state-select-block.instructorReg-select.has-error {
    margin-bottom: 40px;
} */

#instReg_select_state-error,
#instAffiliate_select-error {
    position: absolute;
    bottom: -23px;
}


/* ---------MODAL------ */
.mdlClose-btn {
    background: #999999;
    display: block;
    width: 100%;
    height: 2px;
    rotate: 45deg;
}

.mdlClose-btn::after {
    content: ' ';
    position: absolute;
    background: #999999;
    width: 100%;
    height: 2px;
    rotate: 90deg;
    left: 0;
}

.modal-content {
    border-radius: 20px;
    border: 0;
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.chkEmail-acknow {
    margin-block: 40px 20px;
    font-size: 24px;
    color: var(--blue);
    font-weight: 600;
}

.modal-mail-info {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--grey);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.modal-mail-info strong {
    font-weight: 600;
}

.modal-close {
    position: absolute;
    right: 40px;
    top: 40px;
    height: 32px;
    width: 20px;
    padding: 0;
}

/* -------ABOUT US------- */

.sec-sub-head {
    margin-bottom: 30px;
}

.other-content {
    margin-top: 80px;
}

.other-page-header {
    position: relative;
    overflow: hidden;
}

.heading-box {
    padding: 70px 0;
}

.header-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(2px);
}

.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.header-bg .img-center {
    object-position: center !important;
}

.heading-box::after {
    content: ' ';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #11569D;
    opacity: 80%;
    inset: 0;
    z-index: 1;
}

.heading-box h1 {
    position: relative;
    text-align: center;
    z-index: 4;
    color: var(--white-clr);
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
}

.history-heading {
    font-size: 36px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 18px;
}

.ab-vm-btn {
    padding: 0;
    margin-top: 18px;
}

.history-para-head {
    font-size: 18px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 10px;
}

.history-para-main {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: var(--grey);
}

.history-box .history-para-main:not(:last-of-type) {
    margin-bottom: 12px;
}

/* .history-para-box{
    max-height: 367px;
    overflow: hidden;

}

.history-para-box.active{
    max-height: 100%;
    overflow: visible;
} */

.history-collapse-para-box {
    height: 0;
    overflow: hidden;
}

.history-collapse-para-box.active {
    height: auto;
    overflow: visible;
    margin-top: 12px;
}

.ab-bg-outer {
    border: 5px solid rgba(17, 87, 157, 0.70);
    width: 403px;
    margin-left: auto;
    border-radius: 18px;
}

.ab-img-box {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    transform: translate(-24px, 24px);
}

.ab-sec-sub {
    margin-bottom: 30px;
}

.about-us .about-sec {
    background: #F7F8FA;
}

.online-cpr-inner .sub-heading {
    text-align: left;
}

.online-cpr-form-box {
    margin-top: 20px;
}

.cpr-form {
    width: 100%;
}

.cpr-form .input-block {
    max-width: 100%;
}

.cpr-form .input-block.lname-block {
    margin-bottom: 16px;
}

.cpr-form .input-block:not(:last-child) {
    margin-bottom: 16px;
}

.online-cpr-inner {
    max-width: 470px;
    margin-inline: auto;
    flex-direction: column;

}

.cpr-form .input-block input {
    height: 50px;
    border-radius: 8px;
    padding-inline: 18px;
    border: 1px solid #DDDDDD;
    font-size: 15px;
    background: #F7F8FA;
}

.online-cpr-block .select2.select2-container .select2-selection {
    height: 50px;
    padding-inline: 18px;
    background: #F7F8FA;
    border: 1px solid #dddddd;
}

.cpr-form .input-block.description-block {
    margin-bottom: 9px;

}

.description-block textarea {
    background: #F7F8FA;
}

.onlineCpr-bg-inner {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    max-width: 557px;
}

.onlineCpr-bg-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.input-block.online-cpr-block.has-error {
    margin-bottom: 40px;
}

#online_cpr_training-error {
    bottom: -23px;
    position: absolute;
}

#description-error {
    position: relative;
    top: -7px;
}

.help-block {
    display: block;
}

/* ------FAQ Page------ */

.faq-sub-head {
    margin-bottom: 30px;
}

.accordion-item {
    border: 0;
    margin-bottom: 52px;
    position: relative;
}

.acc-wrapper {
    margin-bottom: 27px;
}

.accordion-item::after {
    content: ' ';
    position: absolute;
    background-color: #DDDDDD;
    height: 1px;
    width: 100%;
    bottom: -27px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
}

.acc-divder {
    display: block;
    height: 12px;
}

.accordion-button::after {
    display: none;
}

.faq-qus-btn {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--blue) !important;
    padding: 0;
    justify-content: space-between;
}

.acc-downIcon {
    transform: rotate(180deg);
    font-size: 18px;
    transition: transform .3s ease-in-out;
}

.faq-qus-btn.collapsed .acc-downIcon {
    transform: rotate(00deg);
}

.faq-ans-body {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
    padding: 0;
    color: #536582;
    max-width: calc(100% - 30px);
}

.accordion-item:last-of-type {
    margin-bottom: 0;
}

/* --COURSE DETAILS PAGE---- */

#cdp-page {
    margin-top: 80px;

}

.cpd-hero {
    padding-block: 50px;
}

.related-courses-sec,
.cpd-hero {
    background: #F6F9FD;

}

.cdp-heading.heading,
.courses-page-heading {
    font-size: 36px;
    line-height: 49px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: left;
    max-width: unset;
}

.course-header {
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.goBack-btn {
    height: 46px;
    max-width: 46px;
    background: var(--white-clr);
    border-radius: 50%;
    transition: .3s ease;
    width: 100%;
}

.goBack-btn:hover {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.course-details-wrapper {
    justify-content: space-between;
}

.course-details-lists {
    padding-left: 62px;
    max-width: 650px;
}

.course-details-lists li {
    gap: 17px;

}

.course-details-lists li:not(:last-child) {
    margin-bottom: 16px;
}

.course-details-lists li img {
    height: 20px;
    width: 20px;
    margin-top: 4px;
}

.course-details-lists li span {
    color: #536582;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.01em;
}

.cdp-booking-box {
    flex-direction: column;
    gap: 16px;
}

.cdp-booking-box a,
.cdp-booking-box button {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    color: var(--white-clr);
    box-shadow: 0px 3px 10px 0px #0000001A;
    width: 340px;
    height: 60px;
    border-radius: 8px;
    transition: .3s ease;
}

.pay-btn {
    background: var(--secondary-clr);
}

.pay-btn:hover {
    background: black;
}

.checkout-btn {
    background: var(--primary-clr);
}

.checkout-btn {
    border: 2px solid transparent;
}

.checkout-btn:hover {
    border-color: var(--primary-clr);
    background: transparent;
    color: var(--primary-clr);
}

.checkout-btn span {
    margin-left: 6px;
    transform: skewX(-9deg);
}

.description-wrapper {
    justify-content: space-between;
    align-items: flex-start;
}

.cpd-description {
    padding-block: 70px 114px;
}

.class-description {
    max-width: 750px;
    padding-right: 25px;
}

.cd-info p {
    color: var(--grey);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.cd-info-box {
    flex-direction: column;
    display: flex;
    gap: 15px;
}

.cd-info-box:not(:last-child) {
    margin-bottom: 15px;
}

.cd-duration p {
    font-weight: 600;
}

.class-other-details {
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.cd-instructor,
.cd-certificate {
    background: #F6F9FD;
    border-radius: 10px;
    padding: 16px;
}

.inst-card-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue);
    line-height: 27px;
    margin-bottom: 8px;
}

.inst-info {
    gap: 12px;
}

.inst-profile {
    width: 100%;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    max-width: 48px;
}

.inst-profile img {
    /* object-fit: contain; */
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.inst-name {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: var(--grey);
}

.inst-desig {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.01em;
    color: var(--light-grey);
}

.cd-map {
    height: 207px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: url(/images/web/cdp-map.jpg) no-repeat;
    background-position: center;
    background-size: 100% 100%;
    transition: background-size .3s ease;
}

.cd-map::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: black;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: .3s ease;
}

.cd-map:hover {
    background-size: 105% 105%;
}

.cd-map:hover:after {
    opacity: .2;
}

.map-btn {
    background: var(--primary-clr);
    color: white;
    width: 84px;
    height: 34px;
    position: absolute;
    right: 16px;
    bottom: 16px;
    border-radius: 6px;
    gap: 9px;
    z-index: 2;
    user-select: none;
}


.cd-certificate {
    justify-content: space-between;
}

.cd-certificate p {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    color: var(--blue);
    max-width: 160px;
}

/* -----REGISTRATION DONE PAGE--- */
.reg-done {
    background: #F6F9FD;
    height: 100vh;
    display: flex;
    justify-content: center;
    text-align: center;
}

.regDone-container {
    padding-block: 50px;
    background: white;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    max-height: 700px;
}

.regDone-logo img {
    height: 68px;
}

.thnk-user-name {
    margin-top: 35px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 25px;
    position: relative;
    font-size: 30px;
}

.thnk-user-name::after {
    content: '';
    background: var(--dark-black);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -13px;
    border-radius: 8px;
    opacity: 30%;
}

.regDone-content {
    padding-block: 20px;
}

.regDone-content p {
    font-size: 15px;
    color: var(--dark-black);
}

.regDone-mail {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    font-size: 15px;
    margin-bottom: 10px;
    gap: 5px;

}

.regDone-mail a {
    color: var(--blue);
    font-weight: 600;

}

.regDone-mail a:hover {
    text-decoration: underline;
}

.regDone-user-mail {
    font-weight: 700;
}

.reg-done .copyright {
    margin-top: 30px;
    position: relative;
}

.reg-done .copyright::after {
    content: '';
    background: var(--dark-black);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 30px;
    border-radius: 8px;
    opacity: 30%;
}

.reg-done .copyright p {
    color: var(--dark-black);
    text-align: end;
    padding-right: 50px;
    font-size: 13px;
}

.thankyou-greet {
    margin-block: 35px 10px;
}

.thankyou-greet p {
    font-weight: 500;
}

.tnc-block a {
    color: var(--blue);
}

.tnc-block a:hover {
    text-decoration: underline;
}

#tnc_check {
    height: 100%;
    width: fit-content;
    opacity: 1;
    opacity: 0;
}

.tnc-block .tnc-label {
    font-size: 13px;
}


.tnc-label {
    position: relative;
    cursor: pointer;
    padding: 0;
    color: var(--grey);
    font-size: 15px;
    user-select: none;
}

.tnc-block .tnc-label:before {
    content: '';
    width: 16px;
    height: 16px;
    margin-top: 1px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    background: var(--white-clr);
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    user-select: none;
    transition: .2s ease-in;
}

.tnc-block .styled-checkbox:checked {
    background: #ED263B !important;
    border-color: #ED263B !important;
}

.tnc-block .tnc-label:after {
    display: block;
    position: absolute;
    top: 2px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .2s ease-in;
    content: '';
    left: 5px;
    width: 5px;
    height: 12px;
}

.cdp-modal-title {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.01em;
}

.cdp-modal-body {
    padding: 0;
}

.cdp-dialog-box {
    max-width: 720px;
    width: 100%;
}

.cdp-mheader {
    padding: 40px;
    padding-bottom: 30px;
    border: 0;
}

.py-mHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 16px;
}

.emg-charge-block {
    width: 100%;
}

.emg-charge-block label {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.emg-charge-block label span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--blue);
}


.cmn-checkBox input {
    position: relative;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0;
    vertical-align: text-top;
    -webkit-appearance: none;
    height: 20px;
    width: 100%;
    max-width: 20px;
    border-radius: 4px;
    transition: .2s ease;
    margin-right: 10px;
    background: var(--white-clr);
    border: 1px solid #dddd;
}

.cmn-checkBox input:checked {
    background: var(--secondary-clr);
    border-color: var(--secondary-clr);
}

.cmn-checkBox input::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
}

.nav-tabs,
.nav-tabs .nav-link {
    border: 0;

}

.nav-item button {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.01em;
    padding: 0;
    width: 159px;
    color: #536582;
    text-align: center;
}
.course-book-icon{
    height: 20px;
    width: 20px;
    margin: 4px 0px;
    color: #8c9aaf;
}
.nav-item button:hover {
    color: var(--primary-clr);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--primary-clr);
    background: var(--white-clr);
    border: 0;
}

.nav-link:focus-visible {
    box-shadow: none;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    background: var(--white-clr);
    border-color: transparent;
}

.cdp-mNav-link.nav-link {
    position: relative;
    padding-block: 5px;
}

.nav-tabs .nav-link {
    margin-bottom: 0;

}

.cdp-mNav-link::after {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background: var(--primary-clr);
    width: 100%;
    transform: scale(0);
    transition: transform .2s ease-in;
}

.cdp-mNav-link.active::after {
    transform: scale(1);
}

.payModal-form {
    width: 100%;
    text-align: center;
}

.form-feilds {
    width: 100%;
    padding: 24px 40px;
}

.payModal-form .input-block {
    max-width: 100%;
}

.payModal-form .input-block:not(:last-child) {
    margin-bottom: 16px;
}

#payModal {
    z-index: 9;
}

.payModal-form .input-block input {
    height: 50px;
    border: 1px solid #dddddd;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    padding-inline: 18px;
    border-radius: 8px;
}

.card-type-select .select2.select2-container .select2-selection {
    height: 50px;
    border: 1px solid #dddddd;
    padding-inline: 18px;
    border-radius: 8px;

}

.card-expiry-fields {
    align-items: flex-start;
}

.card-expiry-fields,
.other-card-details {
    gap: 16px;
}

.card-expiry-fields .input-block,
.other-card-details .input-block {
    margin-bottom: 16px;
    width: 50%;
}


.promo-block {
    background: #F6F9FD;
    border: 2px solid #D0E1F8;
    border-style: dashed;
    border-radius: 10px;
    padding: 20px;
    display: none;
}

.p-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    float: left;
}

.promo-btn {
    border-radius: 8px;
    background: var(--secondary-clr);
    width: 150px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    color: var(--white-clr);
    transition: .3s ease;
}

.promo-btn:hover {
    background: #000;

}

.pay-total {
    color: var(--blue);
    background: #F6F9FD;
    padding: 0 40px;
    position: relative;
}

.class-fees {
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    position: relative;
}

.class-fees h6 {
    font-size: 15px;
    font-weight: 400;
}

.pay-total>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 20px 15px;
}

.class-fees {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.class-fees>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cdp-modal-body .tab-content {
    /* padding-bottom: 40px; */
}

.promo-input {
    gap: 12px;
    clear: both;
}

.pay-total::after {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    background-color: #DDDDDD;
    left: 0;
    bottom: 65px;
}

.total-payout h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.total-payout span {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;

}

.discounted-fees {
    color: #28AA58;
}

.class-fees .discounted-fees {
    display: none;
}

.input-block.py-tnc-block .py-tnc {
    position: relative;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0;
    vertical-align: text-top;
    -webkit-appearance: none;
    opacity: .5;
    height: 20px;
    width: 100%;
    max-width: 20px;
    border-radius: 4px;
    transition: .2s ease;
    margin-right: 10px;
}

.input-block.py-tnc-block .py-tnc:checked {
    background: var(--secondary-clr);
    opacity: 1;
    border-color: var(--secondary-clr);
}

.input-block.py-tnc-block .py-tnc:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
}

.payModal-form .input-block.py-tnc-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.input-block.py-tnc-block label {
    user-select: none;
    display: inline;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    max-width: 575px;
    text-align: left;
}

.input-block.py-tnc-block label a {
    font-weight: 500;
    color: var(--primary-clr);
}

.input-block.py-tnc-block label a:hover {
    text-decoration: underline;
}

.py-tnc-block {
    padding: 30px 40px 16px 40px;
}

.popUp-pay {
    background: var(--secondary-clr);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    color: var(--white-clr);
    height: 50px;
    border-radius: 8px;
    width: calc(100% - 80px);
}

.popUp-pay[disabled] {
    background: #DDDDDD;
    color: var(--grey);
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    box-shadow: none;
    border-radius: 8px;
    width: 100%;
    padding-inline: 18px;
}

.modal-backdrop {
    z-index: 8;
}

.input-group .date-picker-input {
    background-image: url(/images/web/calender-icon.svg);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 20px;
}

.datepicker .datepicker-switch:hover,
.datepicker .next:hover,
.datepicker .prev:hover,
.datepicker tfoot tr th:hover {
    background: transparent;
}

.table-condensed .prev {
    padding-left: 18px;
}

.table-condensed .next {
    padding-right: 18px;
}

.datepicker-dropdown {
    width: 100%;
}

.table-condensed thead {
    padding: 8px;
    display: block;

}

.table-condensed thead .datepicker-switch {
    width: 100%;

}

.datepicker-months .table-condensed,
.datepicker-years .table-condensed {
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.datepicker table tr td span.focused,
.datepicker table tr td span:hover {
    background: var(--primary-clr);
    color: var(--white-clr);
}

.datepicker table tr td span {
    font-size: 15px;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover {
    background-image: none;
    font-weight: 500;
    text-shadow: none;
    border: 0;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
    flex: unset;
}

.offer-applied {
    background: #28AA5814;
    padding: 18px 64px;
    border-radius: 8px;
    display: none;
    margin-bottom: 20px;
}

.offer-applied img {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.dis-value {
    display: block;
    color: #029402;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.py-later-wrapper {
    padding-block: 120px;
    flex-direction: column;
}

.py-later-wrapper img {
    max-height: 120px;
}

.py-later-wrapper span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--grey);
    margin-top: 12px;
}

#payTab {
    border-bottom: 1px solid #dddddd;
}

.map-modal-content .modal-header {
    border-bottom: 1px solid #dddddd;
}

.modal-map-frame {
    width: 100%;
    height: 433px;
}

.map-modal-content .cdp-modal-body {
    padding: 20px 40px;
}

#payModal .py-tnc-block {
    padding: 20px 40px;
}

/* ----COURSE LISTING PAGE------ */


.cld-header {
    background: #F6F9FD;
    margin-top: 80px;
}

.cdl-hero .heading-box {
    padding-block: 56px;
    max-width: 945px;
    margin-inline: auto;
}


.breadCb-Box {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.cld-hero-para {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.01em;
    color: var(--grey);
    margin-top: 16px;
}

.breadcrumb-item a {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    color: var(--white-clr);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--grey);
    padding: 0;
    width: 11px;
    height: 100%;
    margin-right: 4px;
    font-size: 14px;
}

.breadcrumb {
    margin-bottom: 0;
}

.cdl-hero {
    padding-block: 56px;
}

#cdp-page .cdl-hero {
    padding-block: 0;
}

.breadcrumb-item a {
    color: var(--primary-clr);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

}

.cdl-hero h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 52px;
    color: var(--blue);
}

/* couser listing main sec-- */
.cld-listing-sec {
    padding-block: 60px 80px;
}

.cld-dialog-box {
    max-width: 790px;
}

.cld-mheader {
    padding: 34px 34px 18px 34px;
}

.cld-mheader .modal-close {
    top: 31px;
    right: 34px;
}

.cousre-modal-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.01em;
    color: var(--blue);

}

/* .cld-modal-body {
    padding: 22px 32px 32px 32px;
} */

.course-desc-header {
    padding: 22px 32px 0 32px;
}

.course-desc-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: var(--blue);
    margin-bottom: 12px;
}

.course-desc-header {
    margin-bottom: 30px;
}

.course-desc-header p {
    color: var(--grey);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.01em;
}

.course-desc-header p:not(:last-child) {
    margin-bottom: 9px;
}

.avail-courses .heading {
    color: var(--blue);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 2px;
    padding-left: 32px;
}

.avail-course-title {
    color: var(--blue);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
}

.avail-course-card {
    padding: 16px;
    box-shadow: 0px 3px 10px 0px #0000001A;
    background: #F6F9FD;
    border-radius: 10px;
    transition: .3s ease-in-out;
    width: 300px; /* Fixed width for larger screens */
    max-width: 100%; /* Ensures it doesn't overflow on small screens */
    margin: auto; /* Centering if needed */
    cursor : pointer;
}

.avail-course-card:hover {
    box-shadow: 0px 3px 10px 0px #00000036;
}

.avail-courses-warpper {
    display: flex;
    flex-wrap: wrap;
    max-height: 582px;
    overflow-y: auto;
    padding-inline: 0;
    width: 696px;
}

.cousre-modal-body {
    padding-bottom: 26px;
}

.avail-courses-warpper::-webkit-scrollbar {
    width: 6px;
    background: transparent;
    border-radius: 2px;

}

.avail-courses-warpper::-webkit-scrollbar-thumb {
    background: var(--secondary-clr);
    border-radius: 20px;
}

.avail-courses-warpper::-webkit-scrollbar-track {
    background: #C5222714;
    border-radius: 2px;

}

.cld-modal-content {
    overflow: hidden;
    border-radius: 16px;
}

.avail-course-inner {
    flex-basis: calc(50% - 2px);
    padding: 10px;
    margin: 0px -5px;
}

.seats-left {
    max-width: 83px;
    background: #CD222814;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seats-left {
    color: var(--secondary-clr);
    font-size: 11px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.01em;
}

.course-timing {
    margin-block: 8px 12px;
    gap: 7px;
}

.course-timing p {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: var(--grey);
}

.course-timing img {
    height: 15px;
    width: 13px;
}

.cdl-course-deatils {
    padding-left: 63px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.01em;
    color: var(--grey);
}


.cd-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avail-courses-warpper {
    width: calc(100% - 64px);
    margin-left: 28px;
    column-gap: 10px;
}

.cld-header .header-bg img {
    height: 105%;
    object-position: center -13px;
}

.course-listing-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.cl-list-inner {
    padding: 0;
    flex-basis: calc(50% - 12px);
    max-width: calc(50% - 12px);
}

.cl-list-card {
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px #0000001A;
    background: var(--white-clr);
    padding: 16px;
    height: 100%;
    min-height: 104px;
    transition: .2s ease-in;
    position: relative;
    text-align: start;
    padding-right: 29px;
}

.cl-list-card:hover {
    box-shadow: 0 3px 10px #00000039;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 5px;
}

.cl-list-name {
    max-width: calc(100% - 28px);
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--blue);
    width: 100%;
    display: unset;
    margin-right: auto;
}


.cl-card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
}

.cl-last-update {
    padding-bottom: 24px;
    color: var(--light-grey);
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    position: relative;
    margin-top: 24px;

}

.cl-last-update::after {
    content: ' ';
    position: absolute;
    background: #DDDDDD;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.find-class-zipCode {
    margin-top: 24px;
}

.find-class-zipCode h3 {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.zipCode-wrapper {
    padding-top: 24px;
}

.zipCode-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.cl-left-col {
    padding-right: 8px;
}

.cl-right-col {
    padding-left: 8px;

}

.cl-right-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cl-cal-box {
    width: 100%;
    border-radius: 16px;
    background: #F6F9FD;
    padding: 25px 0;
    transition: box-shadow .2s ease-in;
}

.cl-cal-box:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.cl-cal-box a {
    width: 100%;
    background: url(/images/web/cdl-box-vector.png) no-repeat;
    background-size: contain;
    background-position: center right 11px;
    gap: 16px;
    color: var(--blue);
    padding: 0 24px;
}

.cl-cal-box h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}

.cl-cal-box span {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0.01em;
    display: block;
    color: var(--light-grey);
}

.cl-cal-box .cl-cal-img img {
    max-height: 54px;
    max-width: 62px;
}

.cListing-form {
    background: #F6F9FD;
    border-radius: 16px;
    box-shadow: 0px 3px 10px 0px #0000001A;
    padding: 24px;

}

.form-header p {
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    text-align: left;
    color: var(--blue);
}

.form-fields-box {
    margin-top: 20px;
}

.cListing-form .input-block input,
.cListing-form .input-block textarea {
    border: 1px solid #dddddd;
    font-size: 15px;
    padding-inline: 18px;
    width: 100%;
    border-radius: 8px;
}

.cListing-form .input-block input {
    height: 50px;
}

.cListing-form .input-block {
    max-width: 100%;
    margin-bottom: 16px;
}

.description-block.input-block {
    margin-bottom: 9px;

}

.cListing-form .input-block textarea {
    background: var(--white-clr);
    padding: 14px 18px;
}

.cListing-form .input-block textarea::placeholder {
    color: var(--light-grey);
}

.field-group {
    gap: 16px;
}

.field-group .input-block {
    width: 50%;
    margin-bottom: 16px;
}

.form-red-Sbtn {
    height: 50px;
    width: 100%;

}

.red-btn {
    background: var(--secondary-clr);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    transition: .3s ease-in-out;
    color: var(--white-clr);
}

.red-btn:hover {
    background: #000;
}

/* ----CATEGORY WISE COUSRE LISTING PAGE---- */

.catG-cld-sec .course-desc-header {
    padding: 0;
    margin-bottom: 70px;
}

.cdl-listing-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    color: var(--blue);
    margin-bottom: 30px;
}

.course-listing-wrapper .class-card-box {
    padding: 16px;
    height: 100%;
    min-height: 166px;
    border-radius: 10px;
}

.course-listing-wrapper .card-location {
    line-height: 20px;
    letter-spacing: 0.01em;
}

.catG-cld-sec .course-desc-header p {
    font-size: 18px;
    line-height: 29px;
}

.course-listing-wrapper .class-card-box .card-content .card-location {
    margin-bottom: 8px;
}

.course-listing-wrapper .seat-box {
    background: #CD222814;
    color: var(--secondary-clr);
    margin-bottom: 0;

}

.course-listing-wrapper .seat-box .seat-badge {
    line-height: 22px;
    padding: 2px 11px;
}

/* -------prmo checkbox---- */
.promo-ask label {
    color: var(--grey);
    user-select: none;
}

.promo-ask input {
    position: relative;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0;
    vertical-align: text-top;
    -webkit-appearance: none;
    height: 20px;
    width: 100%;
    max-width: 20px;
    border-radius: 4px;
    transition: .2s ease;
    margin-right: 10px;
    background: var(--white-clr);
    border: 1px solid #dddd;
}

.promo-block {
    margin-top: 16px;
}

.promo-ask input:checked {
    background: var(--secondary-clr);
    border-color: var(--secondary-clr);
}

.promo-ask input::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
}

.zip-cld-sec .cl-last-update {
    padding-bottom: 0;
}

.zip-cld-sec .cl-last-update::after {
    display: none;
}

.dropdown-toggle.show i {
    transform: rotate(180deg);
    transform-origin: center;
}

/* --------_DASHBOARD PAGE------ */
/* ---Dash - Home---- */
.user-profile-nav .profile {
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    width: 40px;
    margin-right: 12px;
}

.nav-user-name {
    margin-right: 8px;
}

.user-profile-nav .profile img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.user-profile {
    gap: 12px;
}

.chev-downIcon {
    font-size: 17px;
}

.dashboard {
    background: #F6F9FD;
}

.dash-main {
    margin-top: 80px;
    padding-block: 45px 80px;
}

.dash-wrapper {
    background: var(--white-clr);
    border-radius: 16px;
    box-shadow: 0px 5px 15px 0px #0000001A;
    min-height: 600px;
}

.dash-sideMenu {
    border-right: 2px solid #EEEEEE;
    max-width: 273px;
    width: 100%;
    padding: 24px;
}

.dash-content-wrapper {
    width: calc(100% - 273px);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.dash-content {
    padding-inline: 24px;
    height: 100%;
}

.dash-profile {
    padding: 0 10px 21px 10px;
    position: relative;
    padding-bottom: 21px;
}

.dash-profile-inner {
    gap: 10px;
    white-space: nowrap;
}


.dash-profile .profile {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #EEEEEE;
}

.dash-profile .profile img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.dash-profile .user-nameBtn .user-name,
.dash-sideMenu .user-name {
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.dropdown .dropdown-menu.profile-menu.show {
    top: 18px !important;
    left: 0 !important;
}

.dropdown-toggle.user-nameBtn {
    gap: 0;
}

.dash-side-btn {
    padding-block: 13px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 14px;
    padding-inline: 17px;
    border-radius: 8px;
    transition: .2s ease-in-out;
}

.dash-side-btn.active {
    color: var(--secondary-clr)
}

.dash-icon-box {
    position: relative;
    min-width: 23px;
    font-size: 20px;
    justify-content: center;
}

.dash-icon-box i.dash-book {
    font-size: 17px;
}

.dash-side-btn:hover {
    background: #C5222714;
    color: var(--secondary-clr);
}

.dash-nav-wrapper {
    padding: 11px 0;
}

.logout-mContent {
    max-width: 335px;
    margin-inline: auto;
    border-radius: 16px;
    background: var(--white-clr)
}

.logout-mFooter {
    border: none;
    padding: 0 30px 30px 30px;
    flex-wrap: nowrap;
    gap: 15px;
}

.logoutYes {
    background: var(--secondary-clr);
    color: var(--white-clr);
}

.logoutNo {
    background: var(--white-clr);
    color: var(--secondary-clr);
}

.dash-logBtn {
    width: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    border-radius: 8px;
    height: 40px;
    border: 2px solid var(--secondary-clr);
    transition: .3s ease;
}

.logout-mContent .modal-body {
    padding: 30px;
}

.logoutYes:hover {
    background: #000;
    color: var(--white-clr);
    border-color: #000;
}

.logoutNo:hover {
    background: var(--secondary-clr);
    color: var(--white-clr);
}

.logout-mContent .modal-body h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color: var(--blue);
    margin-bottom: 16px;
}

.logout-mContent .modal-body p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--grey);
}

.dash-side-logoutBtn {
    width: 100%;
}

.dash-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--blue);
    position: relative;
    padding: 24px;
    padding-bottom: 0;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-title::after {
    content: ' ';
    position: absolute;
    width: calc(100% - 48px);
    left: 50%;
    bottom: -16px;
    height: 2px;
    background: #EEEEEE;
    transform: translateX(-50%);
}

.no-data-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--grey);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.input-block.cl-select-block.has-error {
    margin-bottom: 38px;
}

#elm_taxes_select-error {
    position: absolute;
    top: 50px;
}


/* ---Dash - Courses---- */
.row-header {
    gap: 16px;
    margin-bottom: 12px;
}

.row-header:not(:nth-of-type(1)) {
    padding-top: 24px;
}

.dash-class-id {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--blue);
}

.cmn-badge {
    font-weight: 500;
    border-radius: 4px;
}

.red-badge {
    color: var(--secondary-clr);
    background: #C5222714;
}

.pass-badge {
    background: #00ff0038;
    color: green;
}

.absent-badge {
    /* background: #d14146; */
    background: #873f41;
    color: var(--white-clr);
}

.pending-badge {
    background: #ff6f33;
    color: white;
}

.present-badge {
    background: #11569D;
    color: white;
}

.cancelled-badge {
    background: #333;
    color: white;
}

.failed-badge {
    background: var(--secondary-clr);
    color: white;
}

.user-appear {
    font-size: 12px;
    line-height: 18px;
    padding: 2px 8px;
    max-width: 59px;
    max-width: fit-content;
    width: 100%;
    display: block;
}

.tcell-head {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #8C9AAF;
    margin-bottom: 10px;
}

.tcell-box {
    flex-direction: column;
}

.row-content {
    align-items: flex-start;
    gap: 42px;
    justify-content: space-between;
    padding-bottom: 24px;
}


.row-content:not(:last-child) {
    border-bottom: 1px solid #EEEEEE;
}

.tcell-data-head {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--blue);
}

.tcell-data-other {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--grey);
    margin-top: 2px;
}

.pagination-wrapper {
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid #DDDDDD;
    margin-top: auto;
}

.content-count {
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: var(--grey);
}

.pagination-box {
    gap: 1px;
}

.pagination-box button {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--light-grey);
    padding: 5px;

}

.pagination-box button.pag-progress-btn.active,
.pag-nav-btn.active span {
    color: var(--blue);
}

.pag-nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
}

.pagination-box button:hover {
    color: var(--blue);

}

.pag-nav-btn span {
    background-color: var(--white-clr);
    border-radius: 8px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.pag-nav-btn.active span {
    background-color: #F6F9FD;
}


.dash-content-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dash-content-box::-webkit-scrollbar {
    height: 4px;
}

.dash-content-box::-webkit-scrollbar-thumb {
    background: var(--secondary-clr);
    border-radius: 8px;

}

.dash-content-box::-webkit-scrollbar-track {
    background: #C5222714;
    border-radius: 8px;

}

.tcell-pay-now {
    background: var(--secondary-clr);
    color: var(--white-clr);
    font-size: 13px;
    line-height: 20px;
    width: 70px;
    height: 24px;
    transition: .3s ease;
}

.tcell-pay-now:hover {
    background: #000;
    color: var(--white-clr);
}

.tcell-pay-now.paid {
    background: #008000;
}

.tcell-pay-now.paid:hover {
    background: #000;
}

.dash-table thead th:nth-of-type(1) {
    width: 175px;
    padding-left: 20px;
}

.dash-table thead th:nth-of-type(2) {
    width: 175px;
}

.dash-table thead th:nth-of-type(3) {
    width: 181px;
}

.dash-table thead th:nth-of-type(4) {
    width: 50px;
    text-align: center;
}

.dash-payment-table thead th:nth-of-type(4) {
    width: 72px;
}

.dash-table thead th:nth-of-type(5) {
    width: 70px;
    text-align: center;
    padding-inline: 13px;
}



.dash-payment-table .tcell-box:nth-of-type(4) {
    text-align: center;
    padding-inline: 14px;
}

.pagination-box button.pag-progress-btn {
    color: var(--blue);
}

.pagination-box button.disabled {
    color: var(--light-grey);
}

.pag-progress-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pag-progress-btn i {
    font-size: 12px;
}

.dash-payment-table .row-content {
    padding-block: 24px;
}

.dash-payment-table .row-content:nth-of-type(1) {
    padding-top: 0px;
}

.row-content:nth-last-of-type(1) {
    padding-bottom: 0;
}

.dash-side-toggle {
    display: none;
}

/* ---Dash - My Profile--- */

.dash-edit-btn button {
    color: var(--white-clr);
    background: var(--secondary-clr);
    border-radius: 8px;
    border: 1px solid var(--secondary-clr);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 5px 17px;
    transition: .2s linear;
}

.dash-edit-btn button:hover {
    background: white;
    color: var(--secondary-clr);
}

.dash-edit-btn button img {
    margin-right: 12px;
}

.edit-icon {
    transition: .2s linear;
}

.dash-edit-btn button:hover .edit-icon {
    opacity: 0;
}

.icon-box {
    position: relative;
}

.edit-icon-sub {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.dash-edit-btn button:hover .edit-icon-sub {
    opacity: 1;
}

.user-avatar {
    --sz: 127px;
    background: #FEF9F9;
    border-radius: 50%;
    width: var(--sz);
    height: var(--sz);
    overflow: hidden;
    min-width: var(--sz);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dash-profile-content {
    padding-inline: 28px;
}

.info-save-btn {
    color: var(--white-clr);
    border-radius: 8px;
    padding: 12px 18px;
    display: none;
    margin-left: auto;
}

.info-save-btn.edit-active {
    display: block;
}

.user-info {
    width: 100%;
}

.my-profile-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
    padding-right: 28px;
    width: 100%;

}

.my-profile-view .user-view-block {
    font-weight: 400;
    min-height: 40px;
    cursor: default;
    padding-bottom: 16px;
    padding-right: 30px;
}

.my-profile-form .input-block {
    max-width: 100%;
}

.my-profile-form .input-block input,
.info-block textarea,
.my-profile-view .user-view-block {
    border-bottom: 1px solid #EEEEEE;
    color: var(--blue);
    font-size: 16px;
    line-height: 24px;
}

.my-profile-form .input-block:not(:last-child) {
    margin-bottom: 16px;
}

.my-profile-form .input-block input {
    height: 50px;
    padding-left: 0;
    padding-bottom: 0;
    border: 1px solid #eeee;
    padding-inline: 18px;
    font-size: 15px;
    border-radius: 8px;
}

.info-block textarea {
    width: 100%;
    padding: 0;
    min-height: 85px;
    height: 146px;
    font-size: 15px;
    padding: 10px 18px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
}

.my-profile-form .input-block.info-block {
    margin-bottom: 9px;

}

.my-profile-form .input-block input::placeholder,
.info-block textarea::placeholder {
    color: var(--light-grey);
}

/* -----CALENDAR PAGE---- */

.cal-sec {
    margin-top: 80px;
}

.fc .fc-toolbar {
    justify-content: unset;
}

.fc-toolbar-chunk:nth-last-of-type(2) {
    margin-right: auto;
    margin-left: 137px;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 40px;
}

.fc .fc-toolbar-title {
    margin: 0px;
    font-size: 28px;
    font-weight: 600;
    line-height: 50px;
    color: var(--blue);
}

.fc .fc-button-primary {
    background-color: #EEEEEE;
    color: #536582;
    border: none;
    border-radius: 8px;
}

.fc .fc-button {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    height: 46px;

}

.fc .fc-button:focus {
    box-shadow: none;
}

.fc .fc-button-primary:hover {
    background-color: var(--secondary-clr);
    color: var(--white-clr);
}

.fc .fc-button-primary.fc-today-button {
    width: 110px;
    height: 46px;
    margin-left: 20px;
}

.fc .fc-button-primary:disabled {
    background-color: #EEEEEE;
    color: var(--grey);
}

.fc-prev-button.fc-button,
.fc-next-button.fc-button {
    padding-inline: 11px;
}

.fc .fc-button-primary.fc-next-button.fc-button {
    margin-left: 11px;
}

.fc-icon-chevron-left::before,
.fc-icon-chevron-right::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
}

.fc-icon-chevron-left::before {
    content: "\f053";
}

.fc-icon-chevron-right::before {
    content: "\f054";
}

.fc .fc-button .fc-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background-color: var(--secondary-clr);
    color: var(--white-clr);
}

.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
    box-shadow: none;
}

.fc .fc-daygrid-day-frame {
    background: #F6F9FD;
}

.fc .fc-daygrid-day-top {
    flex-direction: row;
}

.fc .fc-daygrid-day-number {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: var(--blue);
    padding-top: 12px;
    padding-left: 12px;
}

.fc-theme-standard th {
    background: var(--primary-clr);
}

.fc-theme-standard th a {
    color: var(--white-clr);
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.fc .fc-col-header-cell-cushion {
    padding: 22px 4px;
}

.fc .fc-day-other .fc-daygrid-day-top {
    color: var(--light-grey);
}

.fc-theme-standard .fc-scrollgrid,
.fc-theme-standard td,
.fc-theme-standard th {
    border: 1px solid #DDDDDD;
}

.fc-scrollgrid-section>td {
    border: 0;
}


.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
    background: #D0E4FF;
}

.fc .fc-scrollgrid {
    border-radius: 20px;
    overflow: hidden;
}

.fc .fc-scrollgrid-section-header th {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.evn-title a {
    color: var(--primary-clr);
    display: inline;
}

.evn-title a:hover {
    text-decoration: underline
}

.fc-h-event .fc-event-title {
    white-space: normal;
    font-size: 10px;
    line-height: 14px;
}

.fc .fc-daygrid-day-events {
    margin-top: 6px;
}

.fc-event {
    border-radius: 4px;
    padding: 6px;
    border: 0;
    position: relative;

}


.fc .fc-daygrid-event {
    margin-top: 4px;
    position: relative;

}

.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
    background: #D0E4FF;
    color: var(--blue);
    font-weight: 500;
    white-space: normal;
    font-size: 10px;
    line-height: 14px;
    position: relative;
    z-index: 1;
}

.fc-daygrid-event-dot {
    display: none;
}

.popover-body {
    z-index: 4;
    position: absolute;
    background: white;
    border-radius: 10px;
    width: 100%;
    height: fit-content;
    padding: 12px;
    top: 0;
    box-shadow: 0px 3px 15px 0px #0000001A;
    min-width: 362px;
    bottom: 0;
}

.popover-body p {
    display: flex;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: var(--blue);
    align-items: baseline;

}

.popover-body p:not(:last-child) {
    margin-bottom: 10px;
}

.popover-body p .de-header {
    color: var(--light-grey);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    display: block;
    max-width: calc(100% - 83%);
    width: 100%;
}

.fc .fc-daygrid-day-bottom {
    display: flex;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
    justify-content: flex-end;
    margin-top: 5px !important;
}

.fc .fc-daygrid-day-bottom a {
    color: var(--blue);

}

.fc .fc-daygrid-more-link:hover {
    background: none;
    color: var(--primary-clr);
}

.fc-direction-ltr .fc-button-group>.fc-button:not(:last-child),
.fc-direction-ltr .fc-button-group>.fc-button:not(:first-child) {
    border-radius: 8px;
}

.fc-dropdown-button.fc-button-primary {
    padding: 0;
    height: auto;
    position: relative;
}

.fc-dropdown-button .dropdown {
    z-index: 4;
}

.fc-dropdown-button .dropdown button {
    padding: 12px 18px 13px 18px;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    background: #F6F9FD;
    width: 350px;
    justify-content: space-between;
    color: var(--blue);
}

.fc-dropdown-button .dropdown .dropdown-toggle {
    color: var(--light-grey);
    border: 1px solid #dddddd;

}

.fc-dropdown-button .dropdown .dropdown-toggle.show {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.fc .fc-button-primary.fc-dropdown-button:hover {
    background-color: transparent;
    color: transparent;
}

.dropdown .dropdown-menu.show.cal-drop-menu {
    left: 0 !important;
    transform: translate(0) !important;
    top: 50px !important;
    color: var(--blue);
    padding-block: 0;
    border: 1px solid #dddddd;
    border-top: 0;
    width: 100%;
}



.dropdown .dropdown-menu.show.cal-drop-menu li button:hover,
.fc-dropdown-button .dropdown button.active {
    background: var(--blue);
    color: var(--white-clr);
}

.fc-dropdown-button .dropdown .dropdown-toggle:active {
    background: #F6F9FD;
}

.fc-dropdown-button .dropdown .dropdown-toggle .item-selected {
    color: var(--blue);
}



.view-mode-box,
.my-profile-form {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.pf-file-upload {
    appearance: none;
}

.pf-box {
    max-width: 127px;
}

.other-fields-box {
    width: 100%;
}

.pf-upload-block {
    text-align: center;
    margin-top: 10px;
}

.pf-upload-block label {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #143A69;
    cursor: pointer;
    user-select: none;
}

.pf-upload-block input {
    display: none;
}

.popover-arrow {
    display: none !important;
}

.popover {
    height: fit-content;
    border: 0;
    width: 100%;
    z-index: 4;
    /* top: -5px !important; */
}

.popover {
    width: 362px !important;
    max-width: 100% !important;
    border: 0;
}


.de-header-collon {
    margin-inline: 8px;
}

/* ------_DASH TABLE NEW---- */
.table-wrapper {
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.dash-table td {
    padding: 19px 0;
}

.dash-table {
    border: 1px solid #dddddd;

}

table.dash-table {
    border: transparent;
    width: 100%;
    margin: 0;
}


.tcell-head {
    gap: 10px;
}

td[data-label="Cost"],
td[data-label="Payment"],
td[data-label="Amount"] {
    text-align: center;
}
td[data-label="InvoiceAmount"] {
    text-align: right;
}

table.dash-table tbody tr:last-child td {
    border: 0px;
}

table.dash-table th {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--light-grey);
    padding: 18px 0;
    background: #F4F4F4;
    border-bottom: 1px solid #ddd !important;

}

table.dash-table tbody tr {
    background-color: transparent;
    position: relative;
}

table.dash-table tbody tr:not(:last-child) {
    border-bottom: 1px solid #ddd !important;

}

table.dash-table tbody tr td:nth-of-type(1) {
    padding-left: 20px;
}

/* ---------CONTACT US PAGE------- */
.contact-other-sec {
    background: #F7F8FA;
}

.contact-support-box .sub-heading {
    text-align: left;
    margin-bottom: 18px;
}

.contact-support-box .hero-para-head {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: var(--grey);
}

.contact-support-box .hero-para-head a {
    font-weight: 500;
    color: var(--secondary-clr);
}

.contact-support-box .hero-para-head:not(:nth-last-of-type(1)) {
    margin-bottom: 16px;
}

.sup-time {
    font-style: italic;
}

.contact-number-box {
    margin-top: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.c-numCard-inner {
    flex-basis: calc(32.9% - 8px);
    max-width: calc(32.9% - 8px);
}

.cNum-card {
    background: white;
    min-height: 76px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 12px;
    height: 100%;
    transition: .2s ease-in;
}

.cNum-card:hover {
    box-shadow: 0 3px 10px #00000033;
}

.sup-centre {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: var(--blue);
    text-transform: capitalize;
}

.sup-mem-number {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: var(--secondary-clr);
}

form.contact-form {
    background: #F7F8FA;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 3px 10px 0px #0000001A;

}

.contact-form .form-header p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: var(--grey);
}

.contact-form .input-block {
    max-width: 100%;
}

.contact-form .input-block input {
    width: 100%;
    background: var(--white-clr);
    border-radius: 8px;
    height: 50px;
    padding: 0 18px;
    font-size: 15px;
    border: 1px solid #dddddd;
}

.contact-form .form-fields-box {
    margin-top: 16px;
}

.contact-btn {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0px 3px 10px 0px #0000001A;

}

.contact-form .input-block textArea {
    background: var(--white-clr);
    height: 80px;
}

.contact-form .input-block.message-block {
    margin-bottom: 12px;
}

.contact-form .input-block.message-block.has-error {
    margin-bottom: 14px;
}

.contact-form .input-block.message-block.has-error .help-block {
    transform: translateY(-6px);
}

.contact-form label.error {
    color: var(--secondary-clr);
}

.contact-other-card-col {
    height: 100%;
}

.contact-hero-inner {
    padding-right: 26px;
}

.contact-col-inner {
    background: white;
    border-radius: 8px;
    border: 1px solid #DDDDDD;
    padding: 20px;
    height: 100%;
}

.card-info {
    color: var(--grey);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.02em;
    margin-block: 8px 12px;
}

.contact-other-items ul li:not(:last-child) {
    margin-bottom: 12px;
}

.contact-other-items ul li a {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-align: left;
    color: var(--blue);
    display: flex;
    gap: 8px;
    width: fit-content;
}

.contact-other-items ul li a:hover {
    color: var(--secondary-clr);
}

.contact-other-items ul li a i {
    font-size: 17px;
    color: var(--secondary-clr);
    min-width: 24px;
    text-align: center;
    width: fit-content;
}

.contact-other-btn a {
    border-radius: 6px;
    font-size: 15px;
    padding: 9px 26px;
    line-height: normal;
    height: 40px;
}

/* -------Loader-------- */
.cousre-modal-body {
    position: relative;
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--blue);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-square {
    display: flex;
    flex-direction: row;
    width: 90px;
    height: 120px;
    scale: 0.5;
}

.spinner-square>.square {
    width: 17px;
    height: 80px;
    margin: auto auto;
    border-radius: 4px;
}

.square-1 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
}

.square-2 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
}

.square-3 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
}

@keyframes square-anim {
    0% {
        height: 80px;
        background-color: #536582;
    }

    20% {
        height: 80px;
    }

    40% {
        height: 120px;
        background-color: #8C9AAF;
    }

    80% {
        height: 80px;
    }

    100% {
        height: 80px;
        background-color: #536582;
    }
}

.training-sec .row>.col-12:last-child .card-col,
.uc-sec .row>.col-12:last-child .class-card-col,
.related-courses-sec .row>.col-12:last-child .class-card-col {
    margin-bottom: 0;
}

.reg-dis-btn:disabled {
    background: #DDDDDD;
    color: #536582;
}

.treg-side-art {
    overflow: hidden;
}

.treg-side-art .form-side-artLeft {
    top: 50%;
    right: 0;
    left: unset;
    background: url(/images/web/tc-reg-side-vector2.svg) no-repeat;
    background-attachment: fixed;
    width: 50%;
    height: 100%;
    background-position: top -220px right -26px;
    background-size: 695px 1002px;
    position: fixed;
}

.treg-side-art .form-side-artRight {
    background: url(/images/web/tc-reg-mainbg.png) no-repeat;
    background-size: contain;
    position: fixed;
    position: fixed;
    z-index: 2;
    top: 50%;
    width: 50%;
    height: 100%;
    left: calc(74.3%);
    transform: translate(-50%, -50%);
    background-size: contain;
    background-position: top center;
}

.tAgr-side-art .main-art {
    background: url(/images/web/tAg-main.jpg) no-repeat;
    height: 100%;
    width: 50%;
    position: fixed;
    background-size: auto 750px;
    background-size: 430px;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    background-position: center;
}

.footer-header-wrapper .py-tnc-block {
    max-width: 100%;
}

.modal-footer,
.footer-header-wrapper {
    width: 100%;
}

#pyLater_btn {
    margin-inline: auto;
}

.footer-header-wrapper .class-fees {
    padding-top: 0;
}

.py-modal-footer.modal-footer {
    padding: 12px 0px;
    border-top: 0;
    padding-top: 40px;
}

.footer-header-wrapper {
    margin: 0;
}

.footer-header-wrapper .pay-total {
    padding-top: 15px;
}

.input-block.py-tnc-block .py-tnc {
    border: 1px solid #11569D;
}

.public-alert-row.row .alert-notify {
    margin-top: 10px;
}

.public-alert-row.row .alert-notify i {
    margin-right: 5px;
}

.public-alert-row.row {
    width: 100%;
    margin-inline: auto;
}

.public-alert-row>div {
    padding: 0;
}

#py_nowFrm .input-block label.error,
#py_laterTnc-error {
    color: var(--secondary-clr);
    font-size: 14px;
    line-height: 17px;
    width: 100%;
    text-align: left;
}
#payModal-form .input-block label.error,
#py_laterTnc-error {
    color: var(--secondary-clr);
    font-size: 14px;
    line-height: 17px;
    width: 100%;
    text-align: left;
}

#py_laterTnc-error {
    padding-left: 30px;
}

.date-select-block .select2-selection__arrow {
    background: url(/images/web/calender-icon.svg) no-repeat;
    background-size: contain;
    background-position: center;
}

.hide-date-arrow {
    display: none;
}

.date-select-block .select2-container--default .select2-selection--single .select2-selection__clear {
    right: 0;
}

.custom-error-select .select2-hidden-accessible.error+label.error {
    bottom: -1px !important;
}

.custom-error-select .select2-hidden-accessible.error~.select2.select2-container {
    margin-bottom: 21px;
}

/* ----let us do work form styling--- */

.work-form .form-header span {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: var(--grey);
    display: block;
}

#work_form {
    max-width: 750px;
    padding-right: 25px;
    background: #F6F9FD;
    border-radius: 16px;
    box-shadow: 0px 3px 10px 0px #0000001A;
    margin: auto;
    padding: 30px;
}

.work-form .input-block {
    max-width: 100%;
}

.work-form .input-block input {
    height: 50px;
    border: 1px solid #dddddd;
    font-size: 15px;
}

.form-stacked-btn {
    max-width: 190px;
    margin-left: calc(100% - 190px);
}

label.error {
    font-size: 15px;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    color: var(--white-clr);
    font-weight: 500;
}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
    background: #132644cf;
    background: #2d6acbb3;
}

/* ----Media Queries------- */


@media (min-width: 1400px) {
    .history-para-box {
        max-height: 299px;
    }

    .clip-list {
        max-height: 168px;
    }

    .sReg-bg-corner-art,
    .sReg-main-art {
        background-position: top center;
        background-size: contain;
        top: 50%;
    }

    .sReg-bg-corner-art {
        max-height: 650px;
        transform: translateY(-50%);
    }

    .sReg-main-art {
        max-height: 650px;
    }

    .treg-side-art .form-side-artRight {
        max-height: 600px;
        left: calc(76.3%);
    }

    .treg-side-art .form-side-artLeft {
        max-height: 600px;
        width: 50%;
        background-size: contain;
        background-position: center;
    }

    .tAgr-side-art .main-art {
        background-size: 500px;
    }
}

@media (max-width:1199px) {

    .heading {
        font-size: 40px;
        line-height: 50px;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 10px 15px;
    }

    .dropdown .dropdown-menu.show {
        position: static !important;
        transform: translate(0) !important;
        border: 0;
        text-align: center;
        width: 100%;
    }

    .dd-nav-item {
        padding: 0;
        width: 100%;
    }

    .dropdown-item.active,
    .dropdown-item:active,
    .dropdown-item:focus,
    .dropdown-item:hover {
        background: transparent;
        color: var(--primary-clr);
    }

    .nav-dd {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .dropdown-item {
        padding-inline: 0;
        justify-content: center;
    }

    /* .hero-right-inner {
        width: 450px;
        height: 100%;
    } */
    .hero-right-inner img {
        object-fit: contain;
    }


    .tm-card-col,
    .class-card-col {
        margin-bottom: 24px;
    }

    .fc-right-inner {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .fc-right-inner img {
        object-fit: contain;
    }

    #nav_search {
        position: static;
        transform: translate(0);
        opacity: 1;
        width: 95%;
        margin-inline: auto;
        pointer-events: auto;
        filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));
    }

    .nav-search-btn {
        display: none;
    }

    .ham-btn {
        display: flex;
    }

    .navigator {
        position: fixed;
        top: 80px;
        right: -300px;
        max-width: 300px;
        height: 100vh;
        width: 100%;
        transition: right .2s linear;
        z-index: 5;
        background: var(--white-clr);
        padding: 15px 0 50px 0;
        overflow: hidden;
    }

    .navLinks {
        width: 100%;
        text-align: center;
    }

    .navigator .navLinks-outer {
        height: 100%;
        top: 80px;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow-y: auto;
        padding-bottom: 40px;
    }

    .navLinks {
        width: 100%;
        text-align: center;
    }

    .navigator .navLinks-outer {
        height: 100%;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow-y: auto;
        padding-bottom: 40px;
    }

    .navigator .navLinks-outer {
        gap: 15px;
    }

    .ham-btn {
        padding: 2px;
    }

    .ham-btn span {
        transition: all .2s ease-in-out;
    }

    .ham-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 4px);
    }

    .ham-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .ham-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -5px);
    }

    .navigator.active {
        right: 0;
    }

    .navLinks ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-list {
        gap: 15px;
    }

    .nav-list-item {
        width: 100%;
        text-align: center;
    }

    .nav-list-item a {
        width: 100%;
        padding: 10px 15px;
    }

    .auth-box {
        flex-direction: column;
    }

    .nav-auth-btn {
        width: 95%;
    }


    .class-card-box {
        height: 215px;
    }

    .team-sec .row {
        max-width: 75%;
        margin-inline: auto;
    }

    #menusearch {
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }

    .tm-card-box {
        height: 360px;
    }

    .form-side-artLeft {
        top: 34%;
    }

    .dash-sideMenu {
        max-width: 243px;
        padding: 20px;
    }

    .dash-title {
        padding: 20px 20px 0 20px;
    }

    .user-profile {
        align-items: flex-start;
    }

    .dash-side-btn {
        font-size: 15px;
        line-height: 23px;
        gap: 12px;
    }

    .cl-left-col {
        margin-bottom: 50px;
    }

    .cl-cal-box a {
        background-position: center right 24px;
    }

    .cdl-hero .heading-box {
        max-width: 771px;
    }

    .cl-list-inner {
        max-width: 100%;
        flex-basis: 100%;
    }

    .view-mode-box,
    .my-profile-form {
        gap: 45px;
    }

    .fc-dropdown-button .dropdown button {
        width: 300px;
    }

    .dropdown .dropdown-menu.show.cal-drop-menu {
        position: absolute !important;
    }

    table.dash-table tbody tr td:nth-of-type(1) {
        display: block;
        margin-right: 20px;
        border-bottom: 0;
    }

    .tcell-head {
        gap: 5px;
    }

    .tcell-head {
        flex-wrap: wrap;
    }

    .form-side-artRight {
        max-width: 380px;
    }

    .tReg-other-art {
        max-height: 127px;
        background-size: contain;
        bottom: 10%;
    }

    .sReg-main-art {
        left: calc(75%);
        background-size: contain;
        background-position: center;
    }

    /* .sReg-bg-corner-art {
        background-position: top -60px left -60px;
        background-size: 145%;
    } */
    .dash-payment-table thead th:nth-of-type(4) {
        width: 94px;
    }

    .c-numCard-inner {
        flex-basis: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .sReg-bg-corner-art {
        background-position: top -173px right -118px;
        background-size: 700px;
    }

    .treg-side-art .form-side-artLeft {
        /* background-size: 573px 532px; */
        background-size: 596px 716px;
        background-position: top -161px right -26px;
    }

    .tAgr-side-art .main-art {
        background-size: 350px;
    }
}

@media (max-width:991px) {
    .footer::after {
        bottom: calc((71px + 43px));
    }

    .scrollTop-btn {
        bottom: calc((71px + 43px - 25px));
    }

    .copyright-box {
        margin-top: 25px;
        padding-bottom: 35px;
    }

    .team-sec .row {
        max-width: 90%;
    }

    .uc-sec .row,
    .training-sec .row {
        max-width: 90%;
        margin-inline: auto;
    }

    .tm-card-box {
        height: 350px;
    }

    .hero-left-inner {
        align-items: center;
        margin-bottom: 50px;
        justify-content: flex-start;
    }

    .heading {
        text-align: center;
    }

    .hero-form-box {
        max-width: 650px;
        width: 100%;
    }

    .hero-form {
        margin-inline: auto;
    }

    /* .hero-right-inner {
        width: 564px;
        height: 461px;
        margin: 0 auto;
    } */
    .hero-sec {
        margin-top: 80px;
        padding-block: 60px 90px;
    }

    .hero-form {
        max-width: 95%;
    }

    .input-block {
        max-width: 100%;
    }

    .ab-card-col {
        margin: unset;
        margin-bottom: 40px;
    }

    .ab-card-box {
        padding: unset;
    }

    .card-col {
        margin-bottom: 30px;
    }

    .tranie-logo-col {
        text-align: start;
    }

    .ft-col {
        margin-bottom: 50px;
    }

    /* .uc-card-box class-card-box {
        height: 233px;
        max-height: 250px;
    } */

    /* .fc-right-inner {
        width: 555px;
        height: 529px;
    } */
    .fc-right-inner {
        max-width: 450px;
    }

    .class-card-box {
        height: auto;
        max-height: unset;
    }

    .heading {
        line-height: 55px;
        max-width: 520px;
        font-size: 45px;
    }

    .ab-bg-outer {
        margin-inline: auto;
        margin-block: 50px 24px;
    }

    .onlineCpr-bg-inner {
        margin: auto;
        max-height: 500px;
    }

    .online-cpr-inner {
        margin: auto;
        margin-top: 50px;
    }

    .online-cpr-inner .sub-heading {
        text-align: center;
    }

    /* .reg-heading {
        font-size: 22px;
        line-height: 38px;
    } */

    .file-input .input-box>.label {
        font-size: 12px;
    }

    /* ----do not delete --- */
    /* .tLabel {
        color: var(--grey);
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 18px;
    }

    .input-box {
        height: 44px;
    }

    .file-input .input-box>.button {
        right: 3px;
        top: 27px;
        font-size: 12px;
    }

    .reg-form .input-block input {
        height: 44px;
        font-size: 12px;
    }

    .certi-title {
        font-size: 16px;
    }

    .styled-checkbox+label {
        font-size: 12px;
    }

    .styled-checkbox+label:before {
        width: 15px;
        height: 15px;
        margin-right: 7px;
    }

    .block-inner {
        margin-bottom: 10px;
    }

    .textArea {
        font-size: 12px;
    }

    .tReg-btn {
        font-size: 12px;
    } */

    .reg-right-wrapper {
        display: none;
    }

    .reg-left-wrapper {
        width: 100%;
    }

    .cdp-heading.heading,
    .courses-page-heading {
        font-size: 32px;
        line-height: 42px;
    }

    .course-details-wrapper,
    .description-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .cdp-booking-box {
        flex-direction: row;
        width: 100%;
    }

    .course-details-lists {
        max-width: unset;
    }

    .course-header {
        margin-bottom: 30px;
    }

    .class-other-details {
        max-width: 100%;
        width: 100%;

    }

    .dash-side-btn span {
        font-size: 12px;
    }

    .dash-side-btn {
        white-space: nowrap;
        padding-block: 10px;
    }

    .cd-map {
        height: 277px;
    }

    #select2-card_type-results {
        font-size: 15px;
    }


    .dash-sideMenu {
        max-width: 200px;
        transition: .4s ease;
    }

    .dash-sideMenu.collapse-menu {
        max-width: 84px;
        padding: 20px 15px;
    }

    .dash-side-btn span {
        transition: .4s ease;
    }

    .dash-sideMenu.collapse-menu .dash-side-btn span {
        opacity: 0;
        pointer-events: none;
    }

    .dash-sideMenu.collapse-menu.active {
        max-width: 200px;
    }

    .collapse-menu .dash-side-toggle i {
        rotate: 0deg;

        transition: .4s ease;
    }

    .dash-sideMenu.collapse-menu.active .dash-side-toggle i {
        rotate: 180deg;
    }

    .dash-content-wrapper {
        width: calc(100% - 84px);
        padding-inline: 10px;
    }


    .dash-sideMenu {
        position: relative;
    }

    .dash-side-toggle {
        display: flex;
        border-radius: 50%;
        height: 20px;
        width: 20px;
        background-color: var(--light-grey);
        right: -10px;
        cursor: pointer;
        z-index: 1;
        top: 20px;
    }

    .dash-profile,
    .dash-nav-wrapper {
        overflow: hidden;
    }

    .dash-side-toggle i {
        font-size: 10px;
        color: var(--white-clr);
    }

    .dash-sideMenu.collapse-menu.active .dash-side-btn span {
        opacity: 1;
        pointer-events: auto;
    }

    .dash-profile .profile {
        height: 40px;
        width: 40px;
        display: flex;
        flex: 0 0 40px;
    }

    .dash-sideMenu.collapse-menu .user-name {
        font-size: 14px;
        line-height: 24px;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        transition: .3s ease;
    }

    .dash-sideMenu.collapse-menu.active .user-name {
        opacity: 1;
        pointer-events: auto;
    }

    .dash-title {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .dash-profile {
        padding: 0 5px 15px 5px;
    }

    .dash-wrapper {
        border-radius: 14px;
        min-height: 500px;
    }

    .dash-content-box {
        overflow-x: auto;
    }

    .content-count,
    .pagination-box button {
        font-size: 13px;
        line-height: 15px;
    }

    .pagination-box button {
        line-height: 16px;
    }

    .dash-content {
        padding-inline: 10px;
    }

    .pagination-wrapper {
        padding: 15px 10px;
        position: relative;
    }



    .pag-progress-btn i {
        font-size: 10px;
        line-height: normal;
    }

    .pag-nav-btn {
        height: 35px;
        width: 35px;
    }

    .pag-nav-btn span {
        border-radius: 5px;
    }

    .user-appear {
        font-size: 11px;
        line-height: 17px;
        padding: 1px 8px;
    }

    .tcell-head {
        font-size: 12px;
        line-height: 19px;
    }

    .tcell-data-head {
        font-size: 12px;
        line-height: 18px;
    }

    .tcell-data-other {
        font-size: 10px;
        line-height: 16px;
    }

    .tcell-pay-now {
        font-size: 11px;
        line-height: 20px;
        height: 23px;
    }

    .dash-title::after {
        width: calc(100% - 20px);
    }

    .cld-hero-para {
        font-size: 14px;
        line-height: 22px;
    }

    .cdl-hero .heading-box {
        max-width: 588px;
    }

    .heading-box h1 {
        font-size: 35px;
        line-height: 50px;
    }

    .cld-hero-para {
        font-size: 12px;
        line-height: 19px;
    }

    .cl-list-inner {
        flex-basis: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .cl-left-col,
    .cl-right-col {
        padding: 0;
    }

    .dash-title {
        padding-inline: 10px;
    }

    .dash-table {
        width: 600px;
    }

    .dash-edit-btn button {
        font-size: 14px;
        line-height: 22px;
        padding: 5px 14px;
    }

    .view-mode-box,
    .my-profile-form {
        gap: 35px;
    }

    .info-save-btn {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 22px;
    }

    .my-profile-form .input-block input,
    .info-block textarea,
    .my-profile-view .user-view-block {
        font-size: 14px;
    }

    .my-profile-view .user-view-block {
        padding-right: 20px;
    }

    .fc-dropdown-button .dropdown button {
        width: 260px;
        font-size: 12px;
    }

    .fc-toolbar-chunk:nth-last-of-type(2) {
        margin-inline: auto;
    }

    .fc .fc-toolbar-title {
        font-size: 24px;
    }

    .fc .fc-button {
        font-size: 12px;
    }

    .fc-icon-chevron-left::before,
    .fc-icon-chevron-right::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 15px;
    }

    .fc .fc-button-primary.fc-today-button {
        width: 80px;
        margin-left: 10px;
    }

    .fc .fc-button-primary.fc-next-button.fc-button {
        margin-left: 8px;
    }

    .fc-col-header-cell {
        border-bottom: 0 !important;
    }

    .fc-scrollgrid-section-header .fc-scroller {
        overflow: hidden !important;
        border-bottom: 1px solid #EEEEEE;
    }

    .fc-col-header-cell.fc-day.fc-day-sat {
        padding-left: 10px;
    }

    table.dash-table th,
    .dash-class-id {
        font-size: 12px;
        line-height: 19px;
    }

    form.contact-form {
        max-width: 510px;
        margin-inline: auto;
        margin-top: 50px;
    }

    .contact-hero-inner {
        padding: 0;
    }

    .c-numCard-inner {
        flex-basis: calc(32.9% - 8px);
        max-width: calc(32.9% - 8px);
    }

    .contact-other-card-col {
        height: auto;
        margin-bottom: 20px;

    }

    .contact-col-inner {
        max-width: 90%;
        margin-inline: auto;
    }

    .contact-other-sec.sec-padding {
        padding-bottom: 60px;
    }

    .class-card-box {
        min-height: unset;
    }

    .history-para-box {
        max-height: 346px;
    }

    .dash-side-btn {
        padding-inline: 14px;
    }

    .dash-icon-box i {
        font-size: 18px;
    }

    .dash-edit-btn button img {
        margin-right: 10px;
    }
}

@media (max-width:767px) {
    .datepicker .datepicker-switch {
        font-size: 12px;
    }

    .datepicker-dropdown {
        width: 80%;
    }

    .datepicker table tr td span {
        width: 21%;
        height: 44px;
        line-height: 44px;
        margin: 2%;
        font-size: 12px;
    }

    .scrollTop-btn {
        height: 40px;
        width: 40px;
        bottom: calc((71px + 43px - 20px));
    }

    .regBg-box {
        display: none;
    }

    .tranie-logo-col img {
        max-height: 145px;
    }

    .hero-right-inner {
        max-width: 433px;
    }

    .nav-inner {
        padding-block: 15px;
    }

    .navigator,
    .overlay {
        top: 70px;
    }

    .hero-sec {
        margin-top: 70px;
    }

    .card-content p.tm-post {
        font-size: 13px;
        line-height: 18px;
    }

    .tm-card-box {
        height: 390px;
    }

    .uc-sec .row,
    .training-sec .row {
        max-width: 100%;
    }

    .sec-padding {
        padding-block: 70px;
    }

    .team-sec .row {
        max-width: 100%;
    }

    .other-content {
        margin-top: 70px;
    }

    .faq-qus-btn {
        font-size: 16px;
        line-height: 22px;
        align-items: flex-start;
    }

    .faq-ans-body {
        font-size: 14px;
        line-height: 22px;
    }

    .modal-img {
        max-height: 120px;
    }

    .chkEmail-acknow {
        margin-block: 25px 15px;
        font-size: 20px;
    }

    .modal-mail-info {
        font-size: 14px;
        line-height: 22px;
    }

    .modal-content {
        max-width: 450px;
        margin-inline: auto;
    }

    .cdp-modal-content.modal-content {
        max-width: 90%;
    }

    .que-para {
        max-width: calc(100% - 22px);
    }

    #cdp-page {
        margin-top: 70px;
    }

    .cdp-dialog-box {
        max-width: 100%;
        margin-inline: auto;
    }

    .card-type-select .select2.select2-container .select2-selection {
        height: 44px;
    }

    .payModal-form .input-block input {
        height: 44px;
        font-size: 12px;
    }

    .payModal-form .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 12px;
    }

    .cdp-mheader {
        padding: 20px;
        padding-bottom: 25px;
    }

    .cdp-modal-title {
        font-size: 18px;
        line-height: 26px;
    }

    .form-feilds {
        padding: 24px 30px;
    }

    .other-card-details {
        gap: 0;
        flex-direction: column;
    }

    .other-card-details .input-block {
        width: 100%;
    }

    .p-label {
        font-size: 13px;
        line-height: 19px;
    }

    .promo-btn {
        width: auto;
        height: 44px;
        font-size: 16px;
        line-height: 26px;
        padding: 0 30px;
    }

    .class-fees h6 {
        font-size: 13px;
        font-weight: 400;
    }

    .class-fees {
        font-size: 14px;
        line-height: 21px;
    }

    .total-payout h6 {
        font-size: 14px;
        line-height: 22px;
    }

    .total-payout span {
        font-size: 16px;
        line-height: 26px;
    }

    .popUp-pay {
        font-size: 16px;
        line-height: 26px;
        height: 44px;
    }

    .cdp-mNav-link.nav-link {
        font-size: 15px;
    }

    .cdp-mheader {
        padding-bottom: 20px;
    }

    .input-block.py-tnc-block label {
        font-size: 13px;
        line-height: 19px;
    }

    .promo-btn {
        font-size: 12px;
    }

    .promo-block {
        padding: 15px;
    }

    #select2-card_type-container .select2-selection__placeholder,
    #select2-card_type-container .select2-selection__rendered,
    #select2-card_type-results {
        font-size: 12px;
    }

    .cld-modal-content {
        max-width: 85%;
    }

    .cousre-modal-title {
        font-size: 16px;
        line-height: 26px;
    }

    .cld-mheader {
        padding: 25px 25px 15px 25px;
    }

    .cld-mheader .modal-close {
        top: 22px;
        right: 25px;
    }

    .course-desc-header {
        padding: 15px 25px 0 25px;
        margin-bottom: 22px;
    }

    .course-desc-title {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .course-desc-header p {
        font-size: 11px;
        line-height: 18px;
    }

    .avail-courses .heading {
        font-size: 15px;
        line-height: 22px;
        padding-left: 25px;
        text-align: left;
    }

    .avail-courses-warpper {
        width: calc(100% - 54px);
        margin-left: 20px;
    }

    .avail-course-title {
        font-size: 11px;
        line-height: 14px;
    }

    .course-timing p {
        font-size: 11px;
        line-height: 18px;
    }

    .course-timing img {
        height: 14px;
        width: 12px;
    }

    .course-timing {
        margin-block: 6px 10px;
        gap: 4px;
    }

    .seats-left {
        font-size: 9px;
        line-height: 21px;
    }

    .avail-courses-warpper {
        max-height: 404px;
    }

    .cousre-modal-body {
        padding-bottom: 20px;
    }

    .logout-mContent {
        max-width: 335px;
    }

    .dash-main {
        margin-top: 70px;
    }

    .cld-header {
        margin-top: 70px;
    }

    .heading-box h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .breadCb-Box {
        margin-bottom: 15px;
    }

    .cld-hero-para {
        margin-top: 10px;
    }

    .course-listing-wrapper {
        gap: 20px;
    }

    .cl-list-inner {
        flex-basis: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .cl-list-name {
        font-size: 14px;
        line-height: 21px;
    }

    .cld-listing-sec {
        padding-block: 60px;
    }

    .cdl-hero .heading-box {
        max-width: 435px;
        padding-block: 36px;

    }

    .cl-cal-box h5 {
        font-size: 20px;
        line-height: 31px;
    }

    .cl-cal-box span {
        font-size: 13px;
        line-height: 17px;
        max-width: 340px;
    }

    /* .form-header p {
        font-size: 28px;
        line-height: 39px;
    } */

    .find-class-zipCode h3 {
        font-size: 18px;
        line-height: 30px;
    }

    .zipCode-wrapper {
        padding-top: 14px;
    }

    .zipCode-wrapper ul {
        gap: 12px;
    }

    .cdl-hero h1 {
        font-size: 28px;
        line-height: 40px;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active span {
        font-size: 12px;
        line-height: 20px;
    }

    .catG-cld-sec .course-desc-header p {
        font-size: 15px;
        line-height: 25px;
    }

    .cdl-listing-title {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 11px;
        line-height: 24px;
        transform: translateY(1px);
    }

    .dash-profile-content {
        padding-inline: 0;
    }

    .view-mode-box,
    .my-profile-form {
        flex-direction: column;
        padding-inline: 10px;
    }

    .user-avatar {
        --sz: 120px;
    }

    .info-save-btn {
        font-size: 14px;
        line-height: 21px;
    }

    .fc .fc-col-header-cell-cushion {
        padding: 18px 4px;
    }

    .fc-theme-standard th a {
        font-size: 15px;
        line-height: 17px;
    }

    .fc-header-toolbar .fc-toolbar-chunk:nth-of-type(1) {
        width: 50%;
    }

    .fc-header-toolbar .fc-toolbar-chunk:nth-of-type(3) {
        margin-top: 15px;
        margin-left: auto;
    }

    .fc .fc-toolbar.fc-header-toolbar {
        flex-wrap: wrap;
    }

    .fc-toolbar-chunk:nth-last-of-type(2) {
        margin-right: 0;
    }

    .fc .fc-toolbar.fc-header-toolbar {
        margin-bottom: 30px;
    }

    .fc .fc-scrollgrid {
        border-radius: 10px;
    }

    .fc .fc-scrollgrid-section-header th {
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }

    .fc-theme-standard th a {
        font-size: 12px;
    }

    .emg-charge-block label {
        padding-right: 15px;
        font-size: 13px;
    }

    .emg-charge-block label span {
        margin-left: 15px;
    }

    .py-mclose {
        top: 17px;
    }

    .emg-charge-block label span {
        font-size: 16px;
        line-height: 22px;
    }

    .emg-charge-block {
        align-items: flex-start;
    }

    .my-profile-view {
        padding-right: 0;
    }

    table.dash-table thead {
        border: none;
        clip-path: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 0px;
    }


    table.dash-table tr {

        display: block;
    }

    table.dash-table td {
        border-bottom: 0;
        display: block;
        text-align: right;
    }

    table.dash-table tbody tr:not(:first-child) {
        border-top: 1px solid #DDDDDD;
    }

    table.dash-table tbody tr:not(:last-child) {
        margin-bottom: 30px;
    }

    table.dash-table td::before {
        content: attr(data-label);
        float: left;
        font-size: 12px;
        line-height: 18px;
    }

    table.dash-table tbody tr td:nth-of-type(1) {
        margin-right: 0;
    }

    table.dash-table tbody tr td {
        padding: 20px 15px;
    }

    table.dash-table td:last-child {
        border-bottom: 0;
    }

    .tcell-data-other,
    .tcell-data-head {
        padding-left: 90px;
    }

    .tcell-head {
        justify-content: flex-end;
    }

    .c-numCard-inner {
        flex-basis: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .contact-col-inner {
        max-width: 100%;
    }

    .popover-body p:not(:last-child) {
        margin-bottom: 5px;
    }


    .popover-body p .de-header {
        max-width: calc(100% - 78%);
    }

    .cal-sec {
        margin-top: 70px;
    }

    .history-para-box {
        max-height: 412px;
    }

    .dis-value,
    .not-dis-value {
        font-size: 14px !important;
        line-height: 17px !important;

    }

    .offer-applied {
        margin-bottom: 15px;
    }

    .promo_code_sec {
        padding: 0 30px 20px !important;
    }

    .offer-applied,
    .offer-not-applied {
        padding: 18px 54px !important;
    }

    .offer-applied img {
        max-height: 25px;
    }

    .offer-not-applied i {
        top: 15px !important;
        font-size: 25px !important;
    }
}

@media (max-width:575px) {
    .datepicker-dropdown {
        width: 90%;
    }

    .reg-heading {
        font-size: 20px;
        line-height: 30px;
    }

    .scrollTop-btn i {
        font-size: 14px;
    }

    .copyright p {
        font-size: 11px;
    }

    .nav-list-item a {
        font-size: 15px;
    }

    .fc-select .select2.select2-container .select2-selection {
        height: 44px;
    }

    #select2-tRegister_select_state-results,
    #select2-online_cpr_training-results,
    #select2-instReg_select_state-results,
    #select2-instAffiliate_select-results,
    #select2-sRegister_select_state-results,
    #select2-sRegister_select_hear-results,
    .reg-select .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 12px;
    }

    .reg-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
        font-size: 12px;
    }

    .reg-form .input-block input,
    .textArea {
        font-size: 12px;
    }

    .select2.select2-container .select2-selection {
        height: 54px;
    }

    .course-select.fc-select>.select2.select2-container .select2-selection {
        height: 44px;
    }

    .search-box i {
        font-size: 16px;
    }

    .contactLinks .ft-links {
        gap: 10px;
    }

    .ft-link-icon img {
        max-height: 18px;
        width: 100%;
        vertical-align: sub;
    }

    .footer .links-col a {
        font-size: 13px;
    }

    .links-col span {
        font-size: 18px;
    }

    .ft-links:not(:last-child) {
        margin-bottom: 8px;
    }

    .ft-col {
        margin-bottom: 35px;
    }

    .copyright-box {
        margin-top: 64px;
    }

    .footer::after {
        bottom: calc((71px + 32px));
    }

    .scrollTop-btn {
        bottom: calc((71px + 32px - 20px));
    }

    .footer {
        padding-top: 40px;
    }

    .tranie-logo-col {
        margin-bottom: 0;
    }

    .tranie-logo-col img {
        max-height: 92px;
    }

    .heading {
        font-size: 40px;
        line-height: 45px;
    }

    .input-block input {
        height: 54px;
        padding: 0 20px;
    }

    .hero-form button {
        padding-block: 14px;
    }

    .tm-card-box {
        max-width: 75%;
        margin: 0 auto;
    }

    .tm-card-box {
        height: auto;
    }

    .tm-card-box .card-content {
        padding-bottom: 20px;
    }

    .tm-card-box.manager-box .card-title-box {
        overflow: hidden;
    }

    .tm-card-box.manager-box .card-title-box .profile-pic {
        width: auto;
        height: 410px;
        object-position: 0 -100px;
    }

    .tm-card-box .card-content p,
    .tm-card-box .card-title-box .card-title {
        text-align: center;
    }

    .hero-sec {
        padding-block: 40px 50px;
    }

    .sec-padding {
        padding-block: 60px;
    }

    .card-icon {
        height: 36px;
        width: 36px;
    }

    .card-content a {
        font-size: 15px;
    }

    /* .card-title-box .card-title {
        font-size: 16px;
    }

    .card-title-box {
        gap: 10px;
    } */
    .fc-left-inner h2 {
        text-align: center;
    }

    .input-block input {
        font-size: 15px;
    }

    .fc-form .input-block input {
        height: 44px;
    }

    .class-card-box {
        height: auto;
    }

    .ab-card-box {
        text-align: center;
    }

    .student-inner .logo a img {
        height: 50px;
    }

    .student-form-box {
        border-radius: 15px;
        padding: 20px;
    }

    .student-heading {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .student-login {
        align-items: flex-start;
        max-height: 100vh;
    }

    .form-info,
    .student-login-form p {
        font-size: 12px;
    }

    .form-info {
        line-height: 20px;
    }

    .reg-form .input-block .file-upload {
        font-size: 12px;
    }

    .studentLogin-btn,
    .forgot-pass-btn {
        font-size: 16px;
    }

    .address-fields {
        flex-direction: column;
        gap: 0;
    }

    .styled-checkbox+label {
        font-size: 12px;
    }

    .tLabel {
        font-size: 13px;
        line-height: 20px;
    }

    .styled-checkbox+label:after {
        top: 1px;
        left: 5px;
        width: 5px;
        height: 11px;
        border-width: 0 1.5px 1.5px 0;
    }


    .block-inner {
        margin-bottom: 8px;
    }

    .certi-title {
        font-size: 15px;
    }

    .styled-checkbox+label:before {
        margin-right: 6px;
        width: 15px;
        height: 15px;
    }

    .reg-form .input-block .file-upload {
        padding: 15px 18px;
    }

    .instructorReg-btn {
        max-width: 40%;
        font-size: 14px;
    }

    .hero-right-inner {
        max-width: 344px;
    }

    .file-input .input-box>.button {
        top: 30px;
        font-size: 12px;
        padding: 12px 15px;
    }

    .file-input .input-box>.label {
        font-size: 12px;
    }

    .history-heading {
        font-size: 28px;
    }

    .history-para-head {
        font-size: 15px;
    }

    .history-para-main {
        font-size: 13px;
        line-height: 20px;
    }

    .ab-bg-outer {
        width: 350px;
        height: 363px;
    }

    .ab-img-box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /*
    .onlineCpr-bg-inner {
        max-height: 370px;
    } */
    .faq-qus-btn {
        font-size: 13px;
        line-height: 20px;
    }

    .faq-ans-body {
        font-size: 11px;
        line-height: 20px;
    }

    .faq-ans-body {
        max-width: calc(100% - 20px);
    }

    .hero-form button {
        min-height: 54px;
        line-height: 20px;
        padding-block: unset;
    }

    .textArea.description {
        font-size: 15px;
    }

    .que-para {
        max-width: calc(100% - 25px);
    }

    .cdp-heading.heading,
    .courses-page-heading {
        font-size: 24px;
        line-height: 30px;
    }

    .goBack-btn {
        height: 40px;
        max-width: 40px;
    }

    .cdp-booking-box {
        justify-content: space-evenly;
        gap: 0;
    }

    .cdp-booking-box a,
    .cdp-booking-box button {
        width: 45%;
        height: 55px;
        font-size: 16px;
    }

    .course-details-lists li:not(:last-child) {
        margin-bottom: 12px;
    }

    .course-details-lists li span {
        font-size: 15px;
        line-height: 25px;
    }

    .cd-certificate p {
        font-size: 16px;
        line-height: 22px;
    }

    .cpd-description {
        padding-block: 70px;
    }

    .class-description {
        padding-right: 0;
    }

    .thnk-user-name {
        margin-top: 27px;
        font-size: 25px;
    }

    .regDone-content p,
    .regDone-mail a {
        font-size: 12px;
    }

    .regDone-mail {
        flex-direction: column;
        gap: 0;
        margin-bottom: 25px;
    }

    .reg-done .copyright p {
        font-size: 8px;
        padding-right: 5px;
    }

    .input-block.py-tnc-block label {
        font-size: 12px;
        line-height: 18px;
    }

    .input-block.py-tnc-block .py-tnc {
        height: 15px;
        max-width: 15px;
    }

    .input-block.py-tnc-block .py-tnc:before {
        width: 5px;
        height: 10px;
        margin: -1px -1px 0 2px;
    }

    .py-later-wrapper {
        padding-block: 80px 50px;
    }

    .py-tnc-block {
        padding: 30px 30px 16px 30px;
    }

    .pay-total {
        padding-inline: 30px;
    }

    .cousre-modal-title {
        font-size: 15px;
        line-height: 20px;
        max-width: 280px;
    }

    .course-desc-title {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 8px;
    }

    .avail-courses .heading {
        font-size: 14px;
        line-height: 20px;
    }

    .avail-course-inner {
        flex-basis: 100%;
        padding-bottom: 5px;
    }

    .avail-courses-warpper {
        max-height: 393px;
    }

    .ft-logo-box img {
        height: 58px;
    }

    .acpt-info {
        font-size: 18px;
    }

    .pay-trust img {
        max-height: 30px;
    }

    .dash-sideMenu.collapse-menu {
        max-width: 70px;
        padding: 20px 10px;
    }

    .dash-content-wrapper {
        width: calc(100% - 70px);
    }

    .dash-sideMenu.collapse-menu.active {
        max-width: 170px;
    }

    .dash-profile .dash-profile-inner {
        flex-direction: column;
    }

    .dash-sideMenu.collapse-menu .user-name {
        max-height: 0;
    }

    .dash-sideMenu.collapse-menu.active .user-name {
        max-height: 80px;

    }

    .pagination-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: baseline;
    }

    .cl-list-inner {
        flex-basis: 100%;
        max-width: 100%;
    }

    .heading-box h1 {
        font-size: 25px;
        line-height: 30px;
    }

    .cld-listing-sec {
        padding-block: 50px;
    }

    .cl-cal-box span {
        max-width: 320px;
    }

    .promo-input {
        flex-direction: column;
    }

    .promo-btn {
        width: 100%;
    }

    .promo-block {
        padding: 15px;
    }

    .catG-cld-sec .course-desc-header {
        margin-bottom: 50px;
    }

    .my-profile-form .input-block:not(:last-child) {
        margin-bottom: 16px;
    }

    .info-save-btn.red-btn {
        font-size: 12px;
        line-height: 13px;
    }

    .fc-dropdown-button .dropdown button {
        max-width: 260px;
        width: 100%;
        gap: 40px;
    }

    .fc-header-toolbar .fc-toolbar-chunk:nth-of-type(1) {
        width: 100%;
        margin-bottom: 15px;
    }

    .fc-header-toolbar .fc-toolbar-chunk:nth-of-type(3) {
        margin-top: 0;
    }

    .fc-toolbar-chunk:nth-last-of-type(2) {
        margin-right: auto;
        margin-left: 0;
    }

    .fc .fc-toolbar-title {
        font-size: 20px;
    }

    .fc .fc-col-header-cell-cushion {
        padding: 16px 4px;
    }

    .fc-event {
        word-break: break-word;
    }

    .fc .fc-daygrid-day-bottom {
        margin-bottom: 5px !important;
        margin-inline: 0;
    }

    .promo-ask input {
        height: 15px;
        max-width: 15px;
        margin-right: 7px;
    }

    .promo-ask input::before {
        width: 5px;
        height: 10px;
        margin: -0.5px -0.5px 0 2px;
    }

    .cmn-checkBox input {
        height: 15px;
        max-width: 15px;
    }

    .cmn-checkBox input::before {
        margin: -0.5px -0.5px 0 -1px;
        width: 4.5px;
        height: 10px;
    }

    .emg-charge-block label {
        font-size: 12px;
        line-height: 16px;
    }

    .py-mHeader {
        padding-bottom: 16px;
    }

    .contact-support-box .hero-para-head {
        line-height: 21px;
        font-size: 14px;
    }

    .sup-centre {
        font-size: 13px;
        line-height: 18px;
    }

    .sup-mem-number {
        font-size: 16px;
        line-height: 25px;
    }

    .cNum-card {
        min-height: 68px;
    }

    .contact-form .form-header p {
        font-size: 14px;
        line-height: 20px;
    }

    form.contact-form {
        padding: 20px;
    }

    .contact-form .input-block input {
        font-size: 12px;
    }

    .cal-drop {
        min-width: 233px;
    }

    .popover {
        max-width: 276px !important;
    }

    .popover-body {
        min-width: auto;
    }

    .dash-profile {
        padding-bottom: 10px;
    }

    .public-alert-row.row .alert-notify {
        font-size: 12px;
        padding-right: 18px;
    }

    .public-alert-row.row .alert-notify i {
        margin-right: 2px;
    }
}


@media (max-width:480px) {

    .footer::after {
        bottom: calc((112px + 32px));
    }

    .scrollTop-btn {
        bottom: calc((112px + 32px - 20px));
    }

    .copyright-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    #select2-hero_select-results,
    #select2-fc_course-results {
        font-size: 12px;
    }

    /* .select2-container .select2-selection--single .select2-selection__rendered,
    #select2-online_cpr_course-results,
    .select2-search__field,
    #select2-elm_taxes_select-results {
        font-size: 12px;
    } */

    .select2-results__options {
        font-size: 12px;
    }

    .textArea.description {
        font-size: 12px;
    }

    /* .select2-container .select2-selection--single .select2-selection__rendered {
        max-width: 290px;
    } */

    .certificated-box {
        margin-top: 16px;
    }

    /* .reg-form .input-block input {
        height: 44px;
    } */

    .reg-form-box {
        width: 100%;
    }

    .name-fields,
    .passwords-fields,
    .area-fields,
    .phone-fields {
        gap: 0;
        flex-direction: column;
    }

    .tm-card-box {
        max-width: 70%;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        font-size: 12px;
    }

    .hero-form-box .select2-container--default .select2-selection--single .select2-selection__placeholder,
    .input-block input,
    .fc-form .input-block input,
    .sReg-login,
    .cpr-form .input-block input {
        font-size: 12px;
    }

    .reg-btn,
    .find-class-btn,
    .hero-form button {
        font-size: 14px;

    }

    .fc-form .input-block,
    .reg-form .input-block {
        margin-bottom: 10px;
    }

    .fc-select .select2.select2-container .select2-selection {
        padding-inline: 15px;
    }

    .select2-selection__arrow {
        scale: .8;
    }

    .fc-form .input-block input {
        padding-inline: 15px;
    }

    .instructorReg-btn {
        max-width: 100%;
    }

    .instructorReg-select.has-error,
    .state-select-block.instructorReg-select.has-error,
    .course-block.has-error {
        margin-bottom: 35px;
    }

    /* .sRegister-select.has-error, */
    /* .reg-select.has-error */
    .help-block {
        font-size: 12px;
    }

    .nav-auth-btn {
        width: 95%;
        font-size: 15px;
    }

    .heading {
        font-size: 32px;
        line-height: 38px;
    }

    .card-icon {
        height: 31px;
        width: 31px;
    }

    .sub-heading {
        line-height: 40px;
        font-size: 28px;
    }

    .card-title-box .card-title {
        font-size: 16px;
    }

    .card-title-box {
        gap: 10px;
    }

    .card-content p {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 8px;
    }

    .card-content a {
        font-size: 13px;
    }

    #online_cpr_training-error {
        bottom: -19px;
    }

    .input-block.online-cpr-block.has-error {
        margin-bottom: 35px;
    }

    /* .reg-form .select2.select2-container .select2-selection{
        height: 44px;
    } */
    .modal-content {
        max-width: 390px;
    }

    .modal-img {
        max-height: 75px;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-mail-info {
        font-size: 12px;
        line-height: 17px;
    }

    .modal-close {
        right: 25px;
        top: 25px;
    }

    .input-block.tell-us-block.has-error {
        margin-bottom: 35px;
    }

    #tRegister_select_state-error,
    #tell_us-error {
        bottom: -18.5px;
    }

    .cdp-booking-box {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cdp-booking-box a,
    .cdp-booking-box button {
        width: 75%;
    }

    .course-details-wrapper {
        gap: 35px;
    }

    .course-details-lists {
        padding-left: 2%;/* 55px; */
    }

    .cd-map {
        height: 207px;
    }

    .cd-certificate p {
        font-size: 13px;
        line-height: 17px;
        max-width: 120px;
    }

    .cd-certificate img {
        max-height: 65px;
    }

    .tnc-block .styled-checkbox+label {
        font-size: 10px;
    }

    .tnc-block .styled-checkbox+label:before {
        margin-top: -1px;
        width: 15px;
        height: 15px;
        margin-right: 8px;
    }

    .tnc-block .styled-checkbox+label:after {
        left: 4.5px;
        height: 9px;
        top: 1.5px;
        border-width: 0 1.7px 1.7px 0;

    }

    .promo-btn {
        font-size: 14px;
        line-height: 24px;
        padding: 0 30px;
    }

    .popUp-pay {
        font-size: 14px;
    }

    .map-modal-content .cdp-modal-body {
        padding: 20px 20px;
    }

    .modal-map-frame {
        height: 300px;
    }

    .card-expiry-fields {
        flex-direction: column;
        gap: 0;
    }

    .card-expiry-fields .input-block {
        width: 100%;
    }

    .datepicker-dropdown {
        width: 100%;
    }

    .cld-modal-content {
        max-width: 90%;
    }

    .cousre-modal-title {
        max-width: 260px;
    }

    .form-header p {
        font-size: 28px;
        line-height: 40px;
    }

    .cListing-form .input-block input,
    .cListing-form .input-block textarea {
        font-size: 12px;
        padding-inline: 15px;
    }

    .cListing-form .field-group .input-block {
        width: 100%;
    }

    .cListing-form .input-block {
        margin-bottom: 13px;
    }

    .select2-container--default .select2-selection--single .select2-selection__clear::before,
    .select2-container--default .select2-selection--single .select2-selection__clear::after {
        width: 11px;
    }

    .description-block.input-block {
        margin-bottom: 6px;
    }

    .select2-search__field {
        font-size: 12px;
    }

    .cListing-form {
        padding-inline: 20px 15px;
    }

    .cl-cal-box .cl-cal-img img {
        max-height: 50px;
    }

    .cl-cal-box h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .cl-cal-box span {
        font-size: 10px;
        line-height: 14px;
        max-width: 210px;
    }

    .cl-cal-box {
        padding: 25px 15px;
    }

    .cl-cal-box a {
        gap: 12px;
        padding: 0;
        background-position: center right;
    }

    .cl-last-update {
        font-size: 12px;
        line-height: 18px;
        margin-top: 30px;
    }

    .find-class-zipCode h3 {
        font-size: 16px;
        line-height: 26px;
    }

    .chip {
        font-size: 13px;
        line-height: 20px;
        padding: 8px 19px;
    }

    .clip-list {
        max-height: 156px;
    }

    /* .cl-list-name {
        font-size: 16px;
        line-height: 26px;
    } */
    .red-btn {
        font-size: 14px;
        line-height: 22px;
    }

    .input-block.cl-select-block.has-error {
        margin-bottom: 30px;
    }

    .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 12px;
    }

    .cdl-hero h1 {
        line-height: 36px;
    }

    .prev-progress-btn {
        padding-left: 0;
    }

    .catG-cld-sec .course-desc-header p {
        font-size: 13px;
        line-height: 24px;
    }

    .my-profile-form .input-block input,
    .info-block textarea,
    .my-profile-view .user-view-block {
        font-size: 12px;
        line-height: 20px;
    }

    .my-profile-view .user-view-block {
        padding-right: 0px;
        min-height: 35px;
        padding-bottom: 10px;
    }

    .dash-edit-btn button {
        font-size: 12px;
        line-height: 21px;
        padding: 3px 11px;
    }

    .dash-edit-btn .edit-icon {
        max-height: 13px;
        margin-right: 9px;
    }

    .dash-title {
        margin-bottom: 35px;
    }

    .user-avatar {
        --sz: 100px;
    }

    .pf-box,
    .user-avatar {
        margin-inline: auto;
    }

    table.dash-table tbody tr td {
        padding: 20px 10px;
    }

    table.dash-table tbody tr td:nth-of-type(1) {
        padding-left: 10px;
    }

    .dash-icon-box {
        font-size: 18px;
    }

    .dash-side-btn {
        gap: 7px;
    }



    .dash-book {
        font-size: 15px;
    }

    .card-info,
    .contact-other-items ul li a {
        font-size: 13px;
        line-height: 19px;
    }

    .contact-other-items ul li a {
        gap: 4px;
    }

    .contact-other-items ul li a i {
        font-size: 16px;
    }

    .emg-charge-block label {
        padding-right: 8px;
    }

    .contact-other-items ul li a i {
        transform: translateY(1px);
    }

    .nav-search-btn {
        display: block;
    }

    .cancel-search-btn {
        display: none;
    }

    .search-box .nav-search-btn {
        margin-bottom: 0;
    }

    .search-box.active .nav-search-btn {
        transform: scale(1);
        margin-bottom: 10px;
    }

    .nav-search-btn {
        margin-bottom: 10px;
        width: fit-content;
        margin-inline: auto;
        padding: 10px 35px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    #nav_search {
        height: 0;
        overflow: hidden;
        transition: all .3s ease;
    }

    .search-box.active #nav_search {
        height: 44px;
    }


    .fc .fc-button,
    .fc .fc-button-primary.fc-today-button {
        height: 40px;
    }

    .emg-charge-block label span {
        font-size: 14px;
        line-height: 20px;
    }

    .cmn-checkBox input::before {
        margin: -0.5px 0px 0 -1px;
    }

    .dis-value,
    .not-dis-value {
        font-size: 12px !important;
        line-height: 16px !important;
    }

    .offer-applied img {
        max-height: 21px;
    }

    .offer-applied,
    .offer-not-applied {
        padding: 16px 47px !important;
    }

    .offer-not-applied i {
        font-size: 21px !important;
    }

    .work-form .field-group .input-block {
        width: 100%;
    }

    .work-form .input-block input {
        font-size: 12px;
    }

    .form-stacked-btn {
        max-width: 137px;
        margin-left: calc(100% - 137px);
        height: 44px !important;
    }

    .work-form .form-header span {
        font-size: 14px;
        line-height: 21px;
    }

    label.error {
        font-size: 12px;
        display: block;
    }

    .custom-error-select .select2-hidden-accessible.error+label.error {
        bottom: 3px !important;
    }
}

@media (max-width:420px) {
    .ab-bg-outer {
        width: 80%;
        height: 323px;
    }

    .instructor-inner {
        padding-inline: 25px;
    }

    .ab-img-box {
        transform: translate(-16px, 16px);
    }

    .ab-bg-outer {
        border-width: 3px;
    }

    .faq-sub-head.sub-heading {
        line-height: 36px;
        font-size: 26px;
    }

    .input-block.exp-block {
        margin-bottom: 0;
    }

    #exp-error,
    #gear_info-error {
        transform: translateY(-6px);
    }

    .logout-mContent {
        max-width: 80%;
    }

    .logout-mContent .modal-body h5 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .logout-mContent .modal-body p {
        font-size: 15px;
        line-height: 21px;
    }

    .logout-mContent .modal-body {
        padding: 22px;
    }

    .dash-logBtn {
        font-size: 13px;
        line-height: 21px;
        height: 35px;
    }

    .logout-mFooter {
        border: none;
        padding: 0 22px 22px 22px;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .cdp-mNav-link.nav-link {
        width: 100%;
        padding-inline: 20px;
    }

    .content-count,
    .pagination-box button {
        font-size: 11px;
        line-height: 13px;
    }

    .fc-col-header-cell.fc-day.fc-day-sat {
        padding-left: 0px;
    }

    .fc .fc-daygrid-day-number {
        font-size: 12px;
        line-height: 16px;
        padding-top: 5px;
        padding-left: 5px;
    }

}

@media (max-width:375px) {
    .fc-right-inner img {
        object-position: center;
    }

    .cousre-modal-title {
        max-width: 210px;
    }

    .navigator {
        max-width: 100%;
        right: -100%
    }

    .hero-right-inner {
        max-width: 280px;
    }

    .tm-card-box {
        height: auto;
    }

    .tm-card-box {
        max-width: 90%;
    }

    .ab-img-box img {
        object-position: -35px;
    }

    /* .select2-container .select2-selection--single .select2-selection__rendered {
        max-width: 220px;
    } */

    .cdp-heading.heading,
    .courses-page-heading {
        font-size: 22px;
        line-height: 28px;
    }

    .cdp-booking-box a,
    .cdp-booking-box button {
        width: 90%;
    }

    .cl-cal-box span {
        max-width: 190px;
    }

    .input-block.py-tnc-block .py-tnc:before {
        margin: -1px -0.5px 0 2px;
    }

    .modal-content,
    .cdp-modal-content.modal-content {
        max-width: 330px;
    }

    .fc-dropdown-button .dropdown button {
        max-width: 100%;
    }

    .fc-dropdown-button.fc-button-primary {
        width: 100%;
    }

    .fc .fc-toolbar-title {
        font-size: 18px;
    }

    .contact-form .field-group {
        flex-direction: column;
        gap: 0;
    }

    .contact-form .input-block {
        width: 100%;
    }

    .c-numCard-inner {
        flex-basis: calc(100%);
        max-width: calc(100%);
    }

    .public-alert-row.row .alert-notify {
        font-size: 12px;
    }

    .form-stacked-btn {
        max-width: 100%;
        margin-left: unset;
    }
}

@media (max-width:320px) {
    .pagination-box {
        flex-wrap: wrap;
    }

    .hero-left-inner {
        margin-bottom: 30px;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 12px;
    }

    .breadcrumb-item.active i {
        font-size: 11px;
        margin-right: 4px;
    }

    .cl-cal-box a {
        padding-inline-end: 40px;
    }
}

.sucss-message-container .sucss-message-popup {
    width: auto;
    padding: 15px 25px;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 13%);
}

.sucss-message-container.swal2-backdrop-show {
    background: none;
}

.sucss-message-icon {
    font-size: 8px !important;
    margin: 1em auto 0.6em !important;
    margin-top: 0 !important;
}

.sucss-message-title {
    padding: 0px 0em 0px !important;
    line-height: 1 !important;
    font-size: 15px !important;
    font-weight: 500;
}

/* 404 page */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.error-pg .inner-box {
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;

}

.error-pg .inner-box h1 {
    font-size: 235px;
    font-weight: 900;
    margin: 0;
    color: #010B1B;
    text-transform: uppercase;
    text-shadow: -8px 0 0 #aabbd5;
    line-height: 190px;
}

.error-pg .inner-box h3 {
    margin: 0;
    margin-bottom: 10px;
}

.error-pg .inner-box p {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 20px;
    max-width: 500px;
    text-align: center;
    line-height: 30px;
}

.nf-button {
    color: white;
    text-decoration: none;
    background: #010B1B;
    border-radius: 30px;
    padding: 10px 25px;
    transition: .3s ease;
    outline: 2px solid transparent;

}

.nf-button:hover {
    outline: 2px solid #010B1B;
    outline-offset: 3px;
    transition: .3s ease;
}

@media screen and (max-width:575px) {
    .error-pg .inner-box h1 {
        font-size: 185px;
        line-height: 160px;
    }

    .error-pg .inner-box p {
        font-size: 18px;
        margin: 5px 0 20px;
        max-width: 383px;
        line-height: 27px;
    }

}

@media screen and (max-width:480px) {
    .error-pg .inner-box h1 {
        font-size: 130px;
        line-height: 140px;
    }

    .error-pg .inner-box h3 {
        font-size: 15px;
        margin-bottom: 0;
    }

    .error-pg .inner-box p {
        font-size: 16px;
        margin: 0px 0 15px;
        max-width: 345px;
        line-height: 24px;
    }

    .nf-button {
        scale: .95;
    }
}

/* ----let us do work form styling--- */

.work-form .form-header span {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.01em;
    color: var(--grey);
    display: block;
}

#work_form {
    max-width: 750px;
    padding-right: 25px;
    background: #F6F9FD;
    border-radius: 16px;
    box-shadow: 0px 3px 10px 0px #0000001A;
    margin: auto;
    padding: 30px;
}

.work-form .input-block {
    max-width: 100%;
}

.work-form .input-block input {
    height: 50px;
    border: 1px solid #dddddd;
    font-size: 15px;
}

.form-stacked-btn {
    max-width: 190px;
    margin-left: calc(100% - 190px);
}

@media (max-width:480px) {
    .work-form .field-group .input-block {
        width: 100%;
    }

    .work-form .input-block input {
        font-size: 12px;
    }

    .form-stacked-btn {
        max-width: 137px;
        margin-left: calc(100% - 137px);
        height: 44px !important;
    }

    .work-form .form-header span {
        font-size: 14px;
        line-height: 21px;
    }

}

@media (max-width:375px) {
    .form-stacked-btn {
        max-width: 100%;
        margin-left: unset;
    }
}

/* ---course -listing -- */
.cListing-form-wrapper {
    background: #F6F9FD;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 3px 10px 0px #0000001A;
}

.form-header {
    margin-bottom: 20px;
}

#find_class_form input,
#find_class_form textArea,
#find_class_form .online-cpr-block .select2.select2-container .select2-selection {
    background: var(--white-clr) !important;

}
.training-pg {
    margin-top: 80px;
  }

  .oln-trn-head {
    padding: 40px 0;
  }

  .oln-trn-head h1 {
    font-size: 22px;
    font-weight: 600;
  }

  .training-listing {
    padding: 20px 0;
  }

  .training-listing-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.01em;
    color: var(--blue);
    margin-bottom: 16px;
  }

  .crs-type {
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    color: #132644;
  }

  .crs-desc p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: var(--grey);
  }

  .crs-desc p.note {
    font-size: 14px;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 0;
  }

  .type-wrapper {
    justify-content: space-between;
    margin-bottom: 17px;
  }

  .pay-btn {
    box-shadow: 0px 3px 10px 0px #0000001a;
    border-radius: 8px;
    transition: 0.3s ease;
    min-width: 150px;
    padding: 0 20px;
    min-height: 40px;
    font-size: 14px;
    color: white;
  }

  .crs-py-box {
    position: relative;
    display: flex;
    margin-top: auto;
    height: 100%;
  }

  .price-box {
    margin-top: auto;
    font-size: 20px;
    font-weight: 500;
    color: white;
    background: var(--primary-clr);
    border-radius: 5px;
    padding: 3px 22px;
  }

  .price-box span {
    font-size: 15px;
  }

  .vm-btn.read-more {
    padding: 0;
    font-size: 14px;
  }
  /* ------------edf */
  .crs-desc.collapsed {
    overflow: hidden;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .crs-desc {
    transition: max-height 0.3s ease;
  }
  /* ------------edf */

  .training-listing {
    position: relative;
  }

  .training-listing:not(:last-of-type)::after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 100%;
    background: #ddd;
  }

  .training-listing {
    margin-bottom: 30px;
  }

  @media (max-width: 767px) {
    .training-pg {
      margin-top: 70px;
    }
    .type-wrapper {
      align-items: flex-start;
      flex-direction: column;
      gap: 10px;
    }
    .type-wrapper .pay-btn {
      min-width: auto;
      font-size: 12px;
      min-height: auto;
      padding: 8px 20px;
    }
  }

  @media (max-width: 480px) {
    .training-listing-title {
      font-size: 17px;
      line-height: 25px;
    }

    .crs-type {
      font-size: 14px;
    }

    .crs-desc p {
      font-size: 13px;
      line-height: 20px;
    }

    .price-box {
      font-size: 23px;
    }

    .price-box span {
      font-size: 18px;
    }

    .crs-footer {
      width: 100%;
    }
  }
  .g-recaptcha {
    display: flex;
    justify-content: center;
}

@media screen and (max-width:420px) {
    .g-recaptcha iframe {
        transform: scale(.9) ;
    }

}

@media screen and (max-width:375px) {
    .g-recaptcha iframe {
        transform: scale(.8) ;
    }
}
.login-other-dd button {
    gap: 3px;
    background: var(--primary-clr);
    color: var(--white-clr);
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
    border: 1px solid var(--primary-clr) !important;
}

.login-other-dd button:hover,
.login-other-dd button:active {
    border: 1px solid #175EAA !important;
}

.login-other-dd button i {
    font-size: 12px;
}

.login-other-dd {
    margin-left: -8px;
}

.login-other-dd .dropdown-menu.show{
    top: 4px !important;
    left: 0 !important;
    box-shadow: 0px 0px 4px 0px #0000001A;
    width: 100%;
    border-radius: 5px;
    padding: 0;
}

.login-other-dd .dropdown-item{
    font-size: 12px;
    line-height: 1;
}
.login-other-dd .dropdown-item:hover{
    background: #EDEDED;
    color: #000000;
}
.navigator .navLinks-outer {
    gap: 20px;
}

.nav-auth-btn {
    font-size: 13px;
    min-width: 70px;
}
@media screen and (min-width:1200px)  and (max-width:1470px) {
    .navigator {
        position: fixed;
        top: 80px;
        right: -300px;
        max-width: 300px;
        height: 100vh;
        width: 100%;
        transition: right .2s linear;
        z-index: 5;
        background: var(--white-clr);
        padding: 15px 0 50px 0;
        overflow: hidden;
    }
    .navigator .navLinks-outer {
        height: 100%;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow-y: auto;
        padding-bottom: 40px;
    }
    .ham-btn {
        display: flex;
    }
    .navigator.active {
        right: 0;
    }
    .ham-btn {
        padding: 2px;
    }

    .ham-btn span {
        transition: all .2s ease-in-out;
    }

    .ham-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 4px);
    }

    .ham-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .ham-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -5px);
    }
    .nav-list {
        gap: 15px;
    }
    .navLinks ul {
        flex-direction: column;
        width: 100%;
    }
    .nav-dd {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .dropdown .dropdown-menu.show {
        position: static !important;
        transform: translate(0) !important;
        border: 0;
        text-align: center;
        width: 100%;
    }
    .nav-list-item a {
        width: 100%;
        padding: 10px 15px;
    }
    .dropdown-toggle {
        width: 100%;
        padding: 10px 15px;
    }
    .dropdown-item {
        padding-inline: 0;
        justify-content: center;
    }
    .dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
        background: transparent;
        color: var(--primary-clr);
    }
    .navLinks {
        width: 100%;
        text-align: center;
    }
    .nav-search-btn {
        display: none;
    }
    #nav_search {
        position: static;
        transform: translate(0);
        opacity: 1;
        width: 95%;
        margin-inline: auto;
        pointer-events: auto;
        filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.10));
    }
    #menusearch {
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    .nav-auth-btn {
        width: 95%;
    }
    .auth-box {
        flex-direction: column;
    }

}

@media screen  and (max-width:1470px) {
    .login-other-dd{
        width: 100%;
        margin: -10px 0 0;
    }
    .login-other-dd button{
        margin:  0 auto;
        width: 95%;
    }
    .login-other-dd .dropdown-item{
        width: 95%;
        margin:  0 auto;
        font-weight: 500;
    }
    .login-other-dd .dropdown-menu.show{
        width:100%;
        margin-top: 5px !important;
        box-shadow: none;
    }
    .login-other-dd .dropdown-item:hover{
        background: #fff;
        color: var(--primary-clr);
    }
}
.customWebMultiselect .select2-container .select2-selection--single,
.customWebMultiselect .select2-container--default .select2-selection--multiple{
    height: auto !important;
}
.customWebMultiselect .select2-container--default .select2-selection--multiple .select2-selection__choice{
    margin-top: 12px;
}
.customWebMultiselect .select2-container--default .select2-selection--multiple .select2-selection__clear{
    margin-top: 12px;
}
.customWebMultiselect .select2-container .select2-search--inline .select2-search__field{
    margin-top: 0px;
}
.customALinkBtn{
    padding-top: 10px !important;
    text-align: center !important;
    margin-top: 15px;
}
.payment_gateway{
    padding-right: 5px;
}
.payment_gateway .nav-link{
    padding-top: 13px;
    padding-bottom: 13px;
}
.payment_gateway .payment_gateway_img{
    width: 100%;
    height: 100%;
}
#v-pills-stripe #card-element{
    padding-top: 15px;
    height: 50px;
    border: 1px solid #dddddd;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    padding-inline: 18px;
    border-radius: 8px;
}
.validation-text{
    color: var(--secondary-clr);
}
/* 13-dec-24 */
.hm-map{
    height:540px;
}
.hero-sec{
    padding-block: 0;min-height:540px;
    display: flex;
    align-items: center;
}
.bg-map-continer{
    height: 100%;
    width: 100%;
}
.hero-left-inner{
    position: relative;z-index: 2;max-width: 448px;background: #ffff;box-shadow: 0px 10px 40px 0px #0000004D;
    border-radius: 16px;padding: 24px;margin-bottom: 0;
}
.hero-left-inner .heading{font-size: 36px;color: var(--blue);line-height: 46px;margin-bottom: 22px;
}
.hero-left-inner .heading strong{color: var(--primary-clr);}
.hero-form-box .select2.select2-container .select2-selection,
.hero-form-box .input-block input{border: 1px solid #DDDDDD;height: 50px;font-size: 15px;}
.hero-form-box .input-block:not(:last-child) ,
.hero-form-box .hero-form-btn:not(:last-child){margin-bottom: 16px;}
.hero-form-box .hero-form-btn{min-height: 50px;font-weight: 600;padding-block: 0;}
.hero-form-box .hero-form-btn + br{display: none;}
/* gmap extra buttons remove-- */
.bg-map-continer .gmnoprint a, .bg-map-continer .gmnoprint span {display:none;}
.bg-map-continer .gmnoprint div {background:none !important;}
.bg-map-continer #GMapsID div div a div img{display:none;}
.bg-map-continer .gm-style-cc:last-child {display: none !important;}
.bg-map-continer a[title="Report errors in the road map or imagery to Google"] {display: none !important;}
.bg-map-continer a[href^="http://maps.google.com/maps"]{display:none !important}
.bg-map-continer a[href^="https://maps.google.com/maps"]{display:none !important}
.bg-map-continer .gmnoprint a,.bg-map-continer .gmnoprint span,.bg-map-continer .gm-style-cc {display:none;}
.bg-map-continer .gmnoprint div {background:none !important;}
.bg-map-continer .gm-style .gm-style-iw-c,.bg-map-continer .poi-info-window div, .poi-info-window a {background:var(--primary-clr);color: #fff;}
.bg-map-continer .gm-style .gm-style-iw-d {background:var(--primary-clr);overflow: auto !important;}
.bg-map-continer .gm-style .gm-style-iw-tc::after,
.bg-map-continer .gm-style .transit-container,
.bg-map-continer .gm-style .transit-container div,
.bg-map-continer .gm-style .transit-container .gm-full-width {
    background: var(--primary-clr)
}
.bg-map-continer .poi-info-window .address{padding-bottom: 10px;}
.bg-map-continer .gm-ui-hover-effect{opacity: 100%;}
.bg-map-continer .gm-ui-hover-effect>span{color: #fff;filter: invert(1);}

@media screen and (max-width:767px) {
    .hero-sec {align-items: flex-start;}
    .hero-left-inner {margin-top: 30px;max-width: 100%;padding: 17px;height: max-content;}
    .hm-map {height: 550px;}
    .hero-left-inner .heading {font-size: 22px;line-height: 40px;margin-bottom:16px;}
    .hero-form {display: flex;flex-wrap: wrap;gap:10px 12px;max-width: 100%;}
    .hero-form-box .input-block:not(:last-child), .hero-form-box .hero-form-btn:not(:last-child) {margin-bottom: 0;}
    .hero-form-box .select2.select2-container .select2-selection, .hero-form-box .input-block input {border: 1px solid #DDDDDD;height: 44px;font-size: 13px;}
    .hero-form-box .select2-container--default .select2-selection--single .select2-selection__placeholder {font-size:13px;}
    .hero-form-box .input-block {max-width: calc(50% - 6px);flex-basis: calc(50% - 6px);font-size: 13px;}
    .hero-form-box .hero-form-btn:not(:last-child) {margin-left: auto;}
    .hero-form-box .hero-form-btn{max-width: calc(27% - 8px);flex-basis: calc(27% - 8px);font-size: 11px;}
    .hero-form-box .hero-form-btn {min-height: 39px;}
}
@media screen and (max-width:480px) {
    .hero-left-inner .heading {font-size: 17px;line-height: 1;}
    .hero-form-box .select2.select2-container .select2-selection, .hero-form-box .input-block input {padding: 0 13px;}
    .hero-form-box .select2-container--default .select2-selection--single .select2-selection__arrow {right: 6px;}
    .hero-form-box .select2-container .select2-selection--single .select2-selection__rendered {padding-right: 7px;}
    .hero-form-box  .hero-select{max-width: calc(100% - 0px);flex-basis: calc(100% - 0px);}
    .hero-form-box  .zipCode-block{max-width: calc(40% - 6px);flex-basis: calc(40% - 6px);}
    .hero-form-box .hero-form-btn {max-width: calc(36% - 8px);flex-basis: calc(36% - 8px);font-size: 11px;}
}



/* ---payment_gateway (details page)--- */
.cd_payment_gateway {
    margin-bottom: 20px;gap: 15px;display: grid;grid-template-columns: repeat(3, 1fr);
    padding: 10px;background: #F6F9FD;border-radius: 10px;
}

.cd_payment_gateway .nav-link {
    border: 1px solid var(--primary-clr);
}

.cd_payment_gateway.nav-pills button {
    color: var(--primary-clr);
}

.cd_payment_gateway.nav-pills button.active {
    background-color: var(--primary-clr);
}
.pNow-frm-wrapper{
    padding-inline: 40px;
}
@media screen and (max-width:575px) {
    .pNow-frm-wrapper{
        padding-inline:30px;
    }
}
@media screen and (max-width:480px) {
    .cd_payment_gateway { gap:10px;
    }
    .cd_payment_gateway.nav-pills button{
        font-size: 12px;
        padding:8px;
    }
    .pNow-frm-wrapper{
        padding-inline:20px;
    }
    .pay_flag_content .promo_code_sec {
        padding: 0 20px 20px !important;
    }
    .pay_flag_content .pay-total {
        padding-inline: 20px;
    }
    #payModal .pay_flag + .py-modal-footer .py-tnc-block {
        padding: 20px 20px;
    }
}
.webimage{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* 06-01-2024 -start */ /* Calendar Page List View  */
    /* .fc-view-harness,
    .fc-toolbar-title,
    .fc-button-group
    .fc-today-button{
    display:none !important;
    }
    .calendar.active  .fc-view-harness,
    .calendar.active  .fc-toolbar-title,
    .calendar.active  .fc-button-group,
    .calendar.active  .fc-today-button
    {
    display:block !important;
    } */
    .fc-header-toolbar {
        display:none !important;
    }
    .calendar.active  .fc-header-toolbar {
        display:flex !important;
    }
    .fc-view-harness {
        display: none !important;
    }
    .fc-customDdLocation-button, .fc--button, .fc-customDdCourse-button {
        display: none !important;
    }
    .calendar.active .fc-view-harness,
    .calendar.active .fc-customDdLocation-button,
    .calendar.active .fc--button,
    .calendar.active .fc-customDdCourse-button {
        display: block !important;
    }
    .list {
        display: none;
    }
    .list.active {
        display: block;
    }
    .list-wrap {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid #dddddd;
    }
    .course-list {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }
    .course-list th {
        font-weight: 500;
        font-size: 15px;
        line-height: 27px;
        color: #ffffff;
        height: 71px;
        background: var(--primary-clr);
        color: #fff;
    }
    .course-list thead tr {
        border-bottom: 1px solid #dddddd !important;
    }
    .course-list tbody tr:not(:last-of-type) {
        border-bottom: 1px solid #dddddd !important;
    }
    .vwSwitcher {
        font-size: 1.3rem;
        background-color: #eeeeee;
        color: #536582;
    }
    .vwSwitcher.active {
        background-color: var(--primary-clr);
        color: #ffffff;
    }
    .vwSwitcher:hover {
        background-color: var(--primary-clr);
        color: #ffffff;
    }
    .course-list td,
    .course-list th {
        padding: 10px 15px;
    }
    .list-field {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .list-field p {
        color: #132644;
        font-size: 14px;
        font-weight: 500;
    }
    .gray-text {
        color: #536582;
        font-size: 12px;
        line-height: 18px;
    }
    .detail {
        text-align: center;
    }
    .detail a {
        text-align: center;
        font-size: 20px;
        color: #132644;
    }
    .detail a:hover {
        color: var(--secondary-clr);
    }
    .table-btn {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .list-btn {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .center {
        text-align: center;
    }
    @media (max-width: 1199px) {
        .list-field p {
            font-size: 12px;
        }
        .gray-text {
            font-size: 10px;
        }
        .course-list th {
            font-size: 14px;
        }
    }
    @media (max-width: 991px) {
        .vwSwitcher {
            font-size: 16px;
        }
        .detail a {
            font-size: 18px;
        }
    }
    @media (max-width: 767px) {
        .course-list tr {
            position: relative;
        }
        .course-list tbody td::before {
            position: absolute;
            padding-right: 10px;
            content: attr(data-column);
            color: #132644;
            font-weight: 500;
            left: 15px;
            font-size: 14px;
        }
        .course-list tbody td {
            padding-left: 50%;
        }
        .course-list,
        .course-list thead,
        .course-list tbody,
        .course-list th,
        .course-list td,
        .course-list tr {
            display: block;
        }
        .head-tr {
            display: none !important;
        }
        .detail {
            text-align: left;
        }
        .course-list td {
            padding-top: 15px;
            padding-bottom: 15px;
        }
    }
    @media (max-width: 575px) {
        .detail a {
            font-size: 16px;
        }
    }
    @media (max-width: 420px) {
        .course-list tbody td::before {
            font-size: 13px;
        }
        .list-field p {
            font-size: 11px;
        }
        .course-list td {
            padding-top: 12px;
            padding-bottom: 12px;
        }
    }
/* 06-01-2024 -end */
.rangehgt{
    height: 50px !important;
}
.no-data {
    padding-left: 0px !important;/* Center text */
}

.zip-mile-fields{
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}
.zip-block{
    width:60%;
}
.mile-block{
    width:40%;
}
.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    line-height: 22px;
    padding: 2px 11px;
}
.course-time-box{
    background: #CD222814;
    color: var(--secondary-clr);
    margin-bottom: 0;
    background: #5a95a0;
    border-radius: 5px;
    font-size: 13px;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    color: var(--white-clr);
    margin-bottom: 10px;
    float: right;
    padding:2px 0px;
}
.course-time-box img {
    width: 15px;
    height: 15px;
    margin-top: -1px;
}
.seat-avl-card-box{
    display: flex;
    flex-direction: column;
}
.availability-row{
    margin-top: auto;
    display: flex; 
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    align-items: flex-start;
}