:root {
    --main-primary-text-color: #0a49c4;
    --secondary-primary-text-color: #233444;
    --main-primary-bg-color: #fff;
    --main-info-text-color: #000;
    --main-info-bg-color: #2A3645;
    --main-success-text-color: #24d5d8;
    --main-success-bg-color: #2acfd2;
    --main-warning-text-color: #fecd2f;
    --main-warning-bg-color: #fecd2f;
    --main-danger-text-color: #fd3259;
    --main-danger-bg-color: #fd3259;
    --main-dark-bg-color: #334a65;
    --main-dark-text-color: #050505;
    --main-primary-gradient-bg-color: linear-gradient(120deg, #b603c1 0%, #7a38e0 100%);
    --main-info-gradient-bg-color: linear-gradient(120deg, #6a4ee1 0%, #05bdd7 100%);
    --main-success-gradient-bg-color: linear-gradient(120deg, #1dccdf 0%, #1de4bd 100%);
    --main-warning-gradient-bg-color: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    --main-danger-gradient-bg-color: linear-gradient(120deg, #f3301a 0%, #f37138 100%);
    --main-primary-row-selection-color: rgba(156, 39, 176, 0.04);
    --main-info-row-selection-color: rgba(0, 150, 136, 0.04);
    --main-success-row-selection-color: rgba(3, 169, 244, 0.04);
    --main-warning-row-selection-color: rgba(255, 255, 0, 0.1);
    --main-danger-row-selection-color: rgba(255, 87, 34, 0.04);
    --main-default-row-selection-color: rgb(240, 240, 240);
    --main-dark-row-selection-color: rgba(128, 128, 128, 0.03);
}

html,
html a,
body {
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: Roboto, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    /* font-size: 16px; */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    color: var(--secondary-primary-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
span,
li,
.h3 {
    font-family: Roboto, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

button.btn.btn-default {
    background-color: #137ce2;
}

button.btn.btn-default:hover {
    background-color: var(--main-primary-text-color);
}

.org-alert {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: bold;
    padding: 1rem 2rem;
    background-color: #EF364E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.org-alert .alert-message {
    justify-content: flex-start;
    flex-grow: 1;
}

.org-alert .alert-close {
    justify-content: flex-end;
    padding-left: 10px;
    flex-grow: 0;
    cursor: pointer;
}

.theme-blue>.header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #707070;
    background-color: #fff;
}

.header .header-logo {
    justify-content: flex-start;
    flex-grow: 0;
}

.header .header-logo img {
    width: 200px;
}

.header ul.header-menu {
    list-style-type: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    padding-left: 2rem;
    color: #707070;
    flex-grow: 0;
    margin: 0;
}

.header .imgcenter {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}


.header ul.header-menu li,
li.hompage {
    cursor: pointer;
    flex: auto;
    text-align: center;
    padding: 0 0.8rem;
}

.header ul.header-menu li.std-hd-btn {
    padding: 0 !important;
}

.header .header-menu a,
.header a.login-logout,
.banner-content .banner-info a,
.banner-content a.login-logout {
    color: #707070;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    flex-wrap: nowrap;
    word-wrap: normal;
    text-decoration: none !important;
}

.header .header-menu a:hover,
.banner-content .banner-info a:hover {
    color: #fff;
}

.header a.login-logout,
.banner-content a.login-logout {
    cursor: pointer;
    flex: auto;
    text-align: center;
    margin-left: 1.5rem;
    padding: 12px 64px 13px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 20px;
    background-color: #137ce2;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 15px;
    flex-grow: 0;
    display: inline-flex;
    width: 200px;
    flex-basis: auto;
    flex-wrap: nowrap;
}


a.login-anime {
    width: 200px;
    height: 70px;
    font-size: 25px;
    text-align: center;
    line-height: 50px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    background: linear-gradient(-45deg, #ffa63d, #ff3d77, #338aff, #3cf0c5);
    background-size: 600%;
    -webkit-animation: anime 16s linear infinite;
    animation: anime 16s linear infinite;
    position: relative;
    margin-top: 10px;
    --filter: blur(30px);
    opacity: 0.8;
    display: inline-flex;
    width: 200px;
    flex-grow: 0;
    flex-basis: auto;
    flex-wrap: nowrap;
}

@-webkit-keyframes anime {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes anime {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header a.logout.btn-logout,
li.hompage a.logout.btn-logout {
    cursor: pointer;
    flex: auto;
    text-align: center;
    margin-left: 0.6rem;
    padding: 10px 24px 8px;
    border-radius: 25px;
    font-weight: 500;
    background-color: #fff !important;
    color: #003AAC !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 15px;
    flex-grow: 0;
    display: inline-flex;
    flex-basis: auto;
    flex-wrap: nowrap;
    height: auto;
    min-height: 20px;
    justify-content: flex-end;
    font-weight: bold;
    font-size: 16px;
}

a.btn-login {
    width: 100px;
}

.header a.btn-logout {
    width: auto;
}

.header-menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#header-menu-toggle {
    display: none;
}

.header-menu-button,
.header-menu-button::before,
.header-menu-button::after {
    display: block;
    background-color: #707070;
    position: absolute;
    justify-content: flex-end;
    height: 3px;
    width: 25px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.header-menu-button::before {
    content: '';
    margin-top: -8px;
}

.header-menu-button::after {
    content: '';
    margin-top: 8px;
}

#header-menu-toggle:checked+.header-menu-button-container .header-menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#header-menu-toggle:checked+.header-menu-button-container .header-menu-button {
    background: rgba(255, 255, 255, 0);
}

#header-menu-toggle:checked+.header-menu-button-container .header-menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

@media (max-width: 767px) {

    #contactSupport {
        margin-left: 0;
    }

    .modal.student-modal.col-lg-6,
    .modal.student-modal.col-lg-offset-6 {
        width: 80% !important;
    }

    .body-header-logo-text {
        display: none !important;
    }

    li.hompage {
        display: block !important;
        padding: 0;
    }

    .header-menu-button-container {
        display: flex;
    }

    ul.header-menu.menu-unauthorized {
        position: absolute;
        top: 90px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #header-menu-toggle~.header-menu.menu-unauthorized li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #header-menu-toggle~.header-menu.menu-unauthorized li {
        display: none;
    }

    #header-menu-toggle:checked~.header-menu.menu-unauthorized li {
        border: 1px solid #fff;
        height: 3.1em;
        padding: 0.8em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
        display: flex;
    }

    .header-menu.menu-unauthorized>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.8em 0;
        width: 100%;
        color: #fff;
        background-color: var(--main-primary-text-color);
    }

    .header .header-menu.menu-unauthorized a {
        color: #fff;
    }

    .header .header-menu.menu-unauthorized a:hover {
        color: #fff;
    }

    .header-menu>li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
}

.footer {
    background: #000;
    padding: 3rem;
    display: flex;
    color: #fff;
    flex-wrap: wrap;
}

.footer .footer-info {
    display: flex;
    flex-direction: row;
    margin: 0;
}

.footer .footer-info .footer-logo {
    padding-right: 1.5rem;
}

.footer .footer-info .footer-logo img {
    width: 60px;
}

.footer .footer-info .footer-address {
    justify-content: flex-start;
}

.footer .footer-info .footer-address h6 {
    font-size: 1em;
    line-height: 1.25em;
    padding-bottom: 14px;
    margin: 0;
    text-transform: uppercase;
}

.footer .footer-info a {
    color: #fff;
    text-decoration: none !important;
}


.footer .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1
}

.footer .footer-right .social-icons {
    flex-wrap: nowrap;
    display: flex;
    justify-content: flex-end;
}

.footer .footer-right .social-icons a,
.footer .footer-right .social-icons a:visited,
.footer .footer-right .social-icons a:active {
    padding-right: 4px;
    font-size: 1.3em;
    color: rgb(143, 190, 234);
}

.footer .footer-right .social-icons a:hover {
    color: #000;
}

.footer .footer-right .social-icons a .fa-inverse {
    color: #000;
}

.footer .footer-right .social-icons a:hover .fa-inverse {
    color: #fff;
}

.footer .footer-right .footer-menu {
    color: #fff;
    font-size: 0.9em;
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    flex-wrap: nowrap;
}

.footer .footer-right .footer-menu a {
    color: #fff;
    text-decoration: none !important;
    padding: 0px 3px 0 4px;
    text-wrap: none;
    flex: 0 0 auto;
    font-weight: 400;
}

.footer .footer-right .footer-menu a:hover {
    opacity: 0.8;
}

@media (max-width: 700px) {
    .footer {
        flex-direction: column;
        padding: 1.5rem;
    }

    .footer .footer-right {
        margin-top: 20px;
    }
}

.page-dialog-center,
.ui-effects-wrapper {
    width: 98vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: absolute;
}

.page-dialog-center-my-profile,
.ui-effects-wrapper {
    width: 98vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: absolute;
}

.ui-dialog.dlgSwitch,
.ui-dialog.dlgChangePassword,
.ui-dialog.dlgLockAjax,
.ui-dialog.dlgFileUpload,
.ui-dialog.dlgMyProfile {
    border-radius: 10px;
    display: block !important;
    justify-content: center;
    top: initial !important;
    left: initial !important;
    align-items: center !important;
    flex-direction: column;
}

.ui-dialog.dlgMyProfile {
    max-height: 100vh !important;
    overflow: scroll;
}

@media (max-width: 767px) {
    .homeLink {
        display: block !important;
    }

    .backLink {
        margin: 0 0 10px !important;
    }

    .profileContainer h3 {
        padding: 10px 0 !important;
        margin: 15px 0 !important;
    }

    .files .name {
        width: auto;
        word-wrap: break-word;
    }

    .ui-dialog.dlgFileUpload {
        width: calc(90vw) !important;
    }
}

/*div.royal_tab.sliding > div.tabs > div.scroller {
    position: absolute;
    left: 42px;
    margin-right: 10px;
    right:0;
    max-width: calc(100vw - 170px);
}

div.royal_tab > div.tabs > div.scroller {
    position: relative;
    overflow: hidden;
    white-space:nowrap;
    float: left;
    max-width: calc(100vw - 150px);
}*/


/* New styles */
.body-header {
    color: #FFFFFF;
    padding-top: 20px;
    /* background-color: #003AAC; */
}

.body-header-logo-text {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}


.body-header-content {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.body-card-content {
    display: flex;
    justify-content: center;
}

.body-header-content-text {
    font-size: 60px !important;
    color: #FFFFFF;
}

.contents-header2 {
    background-color: #003AAC;
}

.body-content-intent1 {
    border-radius: 10px;
    padding: 10px 10px;
}

.body-content-intent {
    margin: 0px 20px;
}


.card-main {
    display: flex;
    height: 50px;
}

.card-main-empty {
    width: 50%;
}

.body-header-logo-text-img {
    border-radius: 50%;
}

.body-header-content-text {
    line-height: 1;
}

.body-header-logo-text-content {
    align-items: center;
    display: flex;
}

.body-header-logo-text-content p {
    font-size: 17px;
    font-weight: 400;
}

/* header card css */

.card1 {
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
    overflow: hidden;
    max-width: 500px;
    min-width: 428px;
    background-color: #FFFFFF;
    margin: 20px auto;
    font-family: Roboto;
    margin-right: 0.9rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}


.card-header div:first-child {
    width: 45%;
    background-color: #F5D521;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-header div:last-child {
    width: 55%;
}

/* body contents */
.body-content-header-text {
    color: #1273D3;
    font-size: 20px;
    font-weight: 500;
}

.card5 {
    border-radius: 10px;
    overflow: hidden;
    min-width: 100%;
    max-width: 100%;
    margin: 10px 10px;
    display: flex;
    flex-direction: column;
}

.hr-tag {
    border: 1px solid #1273D3;
}

.container-lms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.box-lms {
    box-sizing: border-box;
    display: flex;
}

.btn-success-student {
    background: #FFFFFF !important;
    color: #00C462 !important;
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-failed {
    background: #FFFFFF !important;
    color: #D80000 !important;
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-failed-red {
    background: #D80000 !important;
    color: #FFFFFF !important;
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    color: white;
    padding: 10px 25px;
    border-radius: 25px
}

.fa-2xl {
    font-size: 1.2rem !important;
}

@media screen and (max-width: 1015px) {
    .box-lms {
        box-sizing: border-box;
    }

}

@media screen and (max-width: 768px) {

    /* card 1 */
    .card1 {
        max-width: 350px;
        min-width: 350px;
        margin: 10px auto;
    }

    .body-header-content {
        flex-direction: column;
    }

    .contents-header {
        height: auto;
    }

    .card-header div:first-child {
        width: 100%;
    }


    /* card 5 */
    .card5 {
        margin: 10px auto;
    }

    /* test */

    .test {
        width: 100%;
    }

    /* body-card-content */

    .body-card-content {
        width: 100%;
    }

    .card-main {
        height: 10px;
        margin-bottom: 20px;
    }


    .btn-success-student {
        padding: 5px 12px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
    }

    .btn-failed-red {
        padding: 5px 12px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
    }

    .btn-failed {
        padding: 5px 12px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
    }

    .fa-2xl {
        font-size: 1rem !important;
    }

    .form-horizontal.form-column {
        min-width: auto !important;
    }

    #PersonalEmail {
        width: auto !important;
    }

    .dlgMyProfile {
        width: auto !important;
    }

    .form-horizontal .form-actions {
        padding: 10px !important;
    }

    .btn-primary {
        padding: 5px 10px;
    }
}

@media screen and (max-width: 480px) {
    .col-xs-12 .card5 .container {
        padding: 0;
    }

    .body-header-content-text {
        font-size: 18px;
    }

    .body-header-content-header h1 {
        font-size: 1.2rem;
    }

    p {
        font-size: 14px;
    }

    /* card 1 */
    .card1 {
        max-width: 350px;
        min-width: 315px;
        margin: 10px auto;
    }

    .body-header-content {
        flex-direction: column;
    }

    .contents-header {
        height: auto;
    }

    .card-header div:first-child {
        width: 100%;
    }


    /* card 5 */
    .card5 {
        margin: 10px auto;
    }

    /* body-card-content */

    .body-card-content {
        width: 100%;
    }

    .card-main {
        height: 10px;
        margin-bottom: 20px;
    }


    .btn-success-student {
        padding: 5px 12px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
    }

    .dlgMyProfile {
        width: auto !important;
    }

    #PersonalEmail {
        width: auto !important;
    }

    .btn-failed-red {
        padding: 5px 12px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
    }

    .btn-failed {
        padding: 5px 12px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
    }

    .fa-2xl {
        font-size: 1rem !important;
    }
}

.container {
    width: 100%;
}

.card-container {
    width: 100%;
}

.training-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.failed-card {
    display: flex;
    flex-direction: column;
    background-color: #FDD6D8;
    border: 1px solid #ddd;
    border-radius: 10px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-body .h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    min-height: 3.3rem;
    font-weight: bold;
}

.card-actions {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.btn {
    font-weight: bold;
}


.start-over {
    color: #A29D9D !important;
    text-decoration: underline;
    font-size: 14px;
}

.progress {
    height: 8px !important;
    margin: 0;
    border-radius: 0%;
    background-color: #DEDEDE;
}

.progress-bar-custom-passed {
    background: linear-gradient(to right, #00C462, #009048);
    height: 100%;
}


.progress-bar-custom-failed {
    background: linear-gradient(to right, #FC3248, #931926);
    height: 100%;
}

.card-status {
    font-size: 14px;
    display: flex;
    background-color: #003AAC;
    justify-content: space-between;
    color: #fff;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.training-card.success {
    background-color: #E0F7DF;
    color: #233444;
}

.fa-xs {
    font-size: 0.25 !important;
}

.card-status-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header {
    width: 50%;
    background-color: #F5D521;
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.required-course {
    font-size: 12px;
}

.card-body {
    padding: 5px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.hr-tag {
    border-color: #1273D3;
    margin: 15px 0;
}

.training-card hr:first-of-type {
    margin: 20px 0 10px;
}

.training-card hr:last-of-type {
    margin: 10px 0 20px;
}

.lesson {
    display: flex;
    justify-content: space-between;
}

.lesson p {
    margin: 0;
}

.lesson-passed {
    color: #009048;
}

.lesson-notCompleted {
    color: #1273D3;
}

.lesson-notStarted {
    color: #707070;
}

.lessons-bold {
    font-weight: bold;
}


.btn-default {
    background-color: #1273D3;
    border-color: #1273D3;
    color: white;
    font-size: 14px;
    padding: 7px 22px;
    border-radius: 25px;
}

.start-over {
    color: #A29D9D !important;
    text-decoration: underline !important;
    font-size: 13px;
}

.progress {
    height: 8px !important;
    margin: 0;
    border-radius: 0;
}

.progress-bar-custom {
    background: linear-gradient(to left, #00C462, #1273D3);
    height: 100%;
}

.card-status {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    background-color: #003AAC;
    color: #fff;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.course-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.lessons-completed {
    font-size: 13px;
}

.course-document-cards {
    color: #FFFFFF;
}

.course-document {
    background-color: #003AAC;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: left;
    margin-bottom: 20px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-document.inactive {
    background-color: #A29D9D;
}

.flex-end {
    justify-content: flex-end;
}

/*18-07-2024*/

.a-white {
    color: #FFFFFF !important;
    background-color: transparent;
}

.collapse {
    display: block;
}

.body-btn .theme-blue a {
    color: white !important;
}

.student-footer {
    flex-direction: column;
    padding: 0;
}

#main.student-site-main .tabs {
    display: none;
}

#main.student-site-main {
    padding: 0 !important;
    margin: 0;
    flex: 1;
}

.header-theme-blue #main.student-site-main {
    background: transparent !important;
}

#main.student-site-main .views .scroller .active #Dashboard {
    margin: 0 !important;
}

.footer.footer-admin {
    background: #000;
}

.student-footer-icons .fa-inverse {
    color: #003AAC;
}

.student-footer-icons .fa-1x {
    color: white;
}

.footer.student-footer .terms-and-condition p {
    font-weight: 400;
}


.navbar-default {
    background-color: transparent;
    border: none;
    width: 100%;
}

.body-header-content-text {
    font-weight: 100 !important;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
    /* content: ''; */
    height: 100%;
    vertical-align: middle;
}

.modalDialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 100%;
}

.modalDialog .modal-content {
    border-radius: 0;
    box-shadow: none;
    line-height: 1.42857143;
}

.modalDialog .modal-body {
    padding: 0 15px;
    max-height: calc(65vh - 210px);
    overflow-y: auto;

}

.modal-body {
    text-align: left !important;
}

.modal-content {
    position: relative;
    background-clip: padding-box;
    border: none;
    border-radius: 0px;
    outline: 0px none;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0 auto;
    top: 0;
}

.modal-content .container {
    padding: 0;
}

.modalDialog .modal-header {
    padding: 5px 15px;
    background: #3498db !important;
    color: #fff;
}

.modal-title {
    color: #fff;
}

.closeIcon {
    float: right;
    background: none;
    border: 0;
    font-size: 30px;
    font-weight: bold;
    outline: none;
    color: #FFFFFF;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .header ul.header-menu {
        flex-direction: column;
    }

    .body-header-content-text {
        font-size: 36px !important;
    }

    .header-menu>li {
        border: none !important;
        margin: 12px 0 !important;
    }

    .header-menu .contact-support {
        display: none !important;
    }

    .My-Account-head {
        display: block !important;
    }

    .header ul.header-menu li a.btn-logout {
        border-radius: 0%;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        width: 100%;
        justify-content: flex-start;
        text-decoration: underline !important;
        text-underline-offset: 0.1rem;
        font-weight: bold;
        background-color: transparent !important;
    }

    .header ul.header-menu {
        padding: 0;
        width: 100%;
    }

    .header ul.header-menu li {
        width: 100%;
    }

    .header ul.header-menu {
        padding-top: 5px;
    }

    .modalDialog {
        width: 100% !important;
    }

}



@media (max-width: 900px) {
    .header-menu>li {
        padding: 0 !important;

    }

    .header-menu>li a.btn-logout {
        margin-left: 0.4rem !important;

    }
}

input[type="text"],
input[type="email"] {
    height: auto;
}

.input-append .add-on {
    height: auto;
    text-align: center;
}

.modal {
    height: fit-content;
}

.m-top {
    margin: 20px;
}

#content {
    background-color: transparent;
}

.color-white {
    background-color: #FFFFFF;
}

.header-img {
    height: 100px;
    width: 100%;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.header.homepage ul.header-menu li.Home {
    display: none;
}

.header.My_Account ul.header-menu li.My_Account {
    display: none;
}

li.hompage {
    display: none;
    text-align: left;
}

.modal.student-modal {
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    border-radius: 10px;

}

.modal.student-modal .modal-body {
    max-height: none;
    padding: auto;
}

.modal.student-modal.fade.in {
    bottom: 10%;
}

.modal.student-modal .modalDialog .modal-header .modal-title {
    font-size: 30px;
}

.modal.student-modal .modalDialog .modal-header button {
    line-height: normal;
}


.modal-header h2 {
    border-bottom: none !important;
    font-weight: 500 !important;
}

.modal.student-modal.col-lg-6,
.modal.student-modal.col-lg-offset-6 {
    width: 50%;
}

#main .views .scroller>div {
    padding-top: 0px !important;
}

.curve-box1 {
    background-color: #1273D3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 290px;
    width: 100%;
}

.curve-box2 {
    background-color: #003AAC;
    position: absolute;
    left: 0;
    top: 0;
    height: 260px;
    z-index: -1;
    width: 100%;
    clip-path: ellipse(100% 100% at 89% 2%);
}

.curve-box3 {
    background-color: #1273D3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 110px;
    width: 100%;
}

.curve-box4 {
    background-color: #003AAC;
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
    z-index: -1;
    width: 100%;
    clip-path: ellipse(100% 100% at 89% 2%);
}

.header-logo>img {
    height: 50px !important;
    width: 50px !important;
}

.card-headers.col-lg-8 {
    padding: 0;
}

.card-headers.col-lg-4 {
    padding: 0;
}

.box-lms.col-lg-4 {
    padding: 0;
}

@media (min-width: 1255px) and (max-width: 1600px) {
    .col-xl-8 {
        width: 66.666% !important;
    }

    .col-xl-4 {
        width: 33.3333% !important;
    }
}

.border-radius {
    border-radius: 10px;
}

.modal-body h3 {
    font-weight: 500 !important;
    margin: 10px 0px;
    line-height: 1.1;
}

#main {
    background: none !important;
}

.card-image img {
    height: 110px;
    width: 100% !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-image {
    height: 110px;
}

.no-card-image {
    height: 110px;
}
  
  /* 410px to 500px */
  @media (min-width: 410px) and (max-width: 500px) {
    .card-image img {
      height: 100px !important;
    }

    .no-card-image {
        height: 100px !important;
    }

    .card-image {
        height: 100px !important;
    }
    
  }
  
  /* Below 410px */
  @media (max-width: 409px) {
    .card-image img {
      height: 90px !important;
    }

    .no-card-image {
        height: 90px !important;
    }

    .card-image {
        height: 90px !important;
    }
  }

.card-header.img-header{
    position:absolute;
    width: 43%;
}

.class {
    background-color: #F4F5F5; 
}

.btn {
    font-family: inherit;
}

.TranieeGroupName-div h3 {
    margin: 0 0 10px !important;
    line-height: 30px;
    font-size: 23px;
}

.fixed-size-card {
    width: 420px;
}

@media (max-width: 904px) {
    .container-lms {
        justify-content: center !important;
    }

    .header-card-wrapper {
        justify-content: center !important;
    }
}

.container-lms .col-xs-12,
.container-lms .col-sm-12,
.container-lms .col-md-12,
.container-lms .col-lg-12,
.container-lms .col-xl-12 
{
    padding-right: 0;
    padding-left: 0 ;
}

.header-card-wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 0px 10px;
}

.header-card-wrapper .col-xs-12,
.header-card-wrapper .col-sm-12,
.header-card-wrapper .col-md-12,
.header-card-wrapper .col-lg-12,
.header-card-wrapper .col-xl-12
{
    padding-right: 0;
    padding-left: 0 ;
}

.card-body .traning-group-h3 {
    min-height: 5.3rem;
}

.card-headers-text {
    padding-right: 0;
    padding-left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    .demonstration h3 {
        font-size: 20px !important;
    }

    .demonstration p {
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 767px) and (min-width: 481px) {
    .demonstration h3 {
        font-size: 16px !important;
    }

    .demonstration p {
        font-size: 13px !important;
    }
}

@media only screen and (max-width: 480px) and (min-width:376px) {
    .demonstration h3 {
        font-size: 16px !important;
    }

    .demonstration p {
        font-size: 13px !important;
    }

}

@media only screen and (max-width: 375px) and (min-width:361px) { 
    .demonstration h3 {
        font-size: 16px !important;
    }

    .demonstration p {
        font-size: 13px !important;
    }

    .modal.student-modal .modalDialog .modal-header .modal-title {
        font-size: 27.5px !important;
    }

    .modalDialog .modal-header {
        padding: 5px 10px !important;
    }
}

@media only screen and (max-width: 360px) and (min-width:321px) {
    .demonstration h3 {
        font-size: 16px !important;
    }

    .demonstration p {
        font-size: 13px !important;
    }

    .modal.student-modal .modalDialog .modal-header .modal-title {
        font-size: 26.5px !important;
    }

    .modalDialog .modal-header {
        padding: 5px 10px !important;
    }

    .modal-header .close {
        margin-top: -3px !important;
    }
}

@media only screen and (max-width: 320px) {
    .demonstration h3 {
        font-size: 16px !important;
    }

    .demonstration p {
        font-size: 13px !important;
    }

    .modal.student-modal .modalDialog .modal-header .modal-title {
        font-size: 25px !important;
    }

    .modalDialog .modal-header {
        padding: 5px 10px !important;
    }

    .modal-header .close {
        margin-top: -3px !important;
    }
}

.modal-header button {
    font-family: inherit;
}

.modal-header .close {
    padding: 0;
    margin: 0;
}
.modal {
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.disabled-link {
    pointer-events: none !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background-color: #808080 !important;
}