﻿@media only screen and (min-width: 768px) {
    body {
        background-color: #F2F3F7;
        background-color: var(--body-bg-color);
    }
}

/* =============== Bootstrap Override =============== */

/* buttons */

.btn-primary {
    color: #ffffff;
    color: var(--btn-primary-text);
    background-color: #5877ff;
    background-color: var(--btn-primary-bg);
    border-color: #5877ff;
    border-color: var(--btn-primary-bg);
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    color: #ffffff;
    color: var(--btn-primary-text);
    background-color: #5877FF;
    background-color: var(--btn-primary-hover-color);
    border-color: #5877FF;
    border-color: var(--btn-primary-hover-color);
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    color: var(--btn-primary-text);
    background-color: #5877FF;
    background-color: var(--btn-primary-hover-color);
    border-color: #5877FF;
    border-color: var(--btn-primary-hover-color);
}
.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.3);
}

.btn-secondary {
    color: #ffffff;
    color: var(--btn-secondary-text);
    background-color: #1D2858;
    background-color: var(--btn-secondary-bg);
    border-color: #1D2858;
    border-color: var(--btn-secondary-bg);
}
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
    color: #ffffff;
    color: var(--btn-secondary-text);
    background-color: #1D2858;
    background-color: var(--btn-secondary-hover-color);
    border-color: #1D2858;
    border-color: var(--btn-secondary-hover-color);
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #ffffff;
    color: var(--btn-secondary-text);
    background-color: #1D2858;
    background-color: var(--btn-secondary-hover-color);
    border-color: #1D2858;
    border-color: var(--btn-secondary-hover-color);
}
.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.3);
}

button:focus {
    outline: none;
}

/* Modal */
.modal-backdrop {
    /*background: #f2f3f7;*/
    background: #000;
}

.modal-content {
    border: none;
    border-radius: 0;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}

.modal-xl {
    max-width: 90%;
}

@media only screen and (min-width: 992px) {
    .modal-xl {
        max-width: 800px;
    }
}

@media only screen and (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.modal-fullScreen {
    max-width: 100%;
    margin: auto;
}

.modal-fullScreen .modal-header {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 9px 10px;
    height: 40px;
    border-radius: 0;
    border-bottom: none;
    background-color: #5877FF;
    background-color: var(--theme-primary-color);
}

@media only screen and (min-width: 992px) {
    .modal-fullScreen .modal-header {
        padding: 9px 10px 9px 30px;
    }
}

.modal-fullScreen .modal-body {
    padding: 0;
    height: calc(100vh - 40px);
}

.modal-fullScreen .modal-header .close {
    display: inline-block;
    width: 40px;
    height: 40px;
    opacity: 1;
    background-image: url('../images/common-icon/icon-close-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

/* Form */
select.form-control {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    height: auto;
    padding: 5px 25px 5px 10px;
    background-image: url('../images/common-icon/icon-dropdown-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    select.form-control {
        font-size: 16px;
        border: 0;
        border-bottom: 1px solid #EBEDF5;
        border-radius: 0;
    }
}

.form-control:focus {
    color: #212C5B;
    color: var(--primary-text-color);
    background-color: transparent;
    border-color: #ddd;
    outline: 0;
    box-shadow: none;
}

.form-control:disabled {
    cursor: not-allowed;
    opacity: 0.3;
    pointer-events: none;
}

.dropdown-menu.show li,
.dropdown.show a {
    background-color: transparent;
}

input[type="password"].form-control {
    letter-spacing: 0.5em;
}

/* table */

.table.table-lms thead th {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.085em;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #EBEDF5;
    padding: 10px;
}

@media only screen and (min-width: 576px) {
    .table.table-lms thead th {
        font-size: 12px;
        padding: 18px 10px;
    }
}

.table.table-lms tr td {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    background-color: #fff;
    border-top: 1px solid #EBEDF5;
    padding: 10px;
}

@media only screen and (min-width: 576px) {
    .table.table-lms tr td {
        font-size: 16px;
        padding: 18px 10px;
    }
}

.table.table-lms tr.title-row td {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
}

@media only screen and (min-width: 576px) {
    .table.table-lms tr.title-row td {
        font-size: 16px;
    }
}

/* =============== Bootstrap Override End =============== */

/* =============== Global Style =============== */
.no-scroll {
    overflow: hidden;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
#orientationmsg,
#orientationmsg + .overlay {
    display: none;
}
/* =============== Global Style End =============== */
/* =============== Loader Style =============== */
.overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f3f7;
    background-color: var(--loader-overlay-bg);
}

.mainInnerLoader,
.submitPopup {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    transform-origin: center center;
    display: none;
}

.loader-wrapper {
    display: block;
    width: 80%;
    position: absolute;
    z-index: 50000;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

.loader-wrapper > p {
    margin-top: 16px;
}

.mainLoaderImg,
.loaderImageDiv {
    display: inline-block;
    border: 5px solid #fff;
    border: var(--loader-border-width) solid var(--loader-bg-color);
    border-top: 5px solid #5877FF;
    border-top: var(--loader-border-width) solid var(--loader-color);
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.inline-loader::before {
    content: '';
    display: inline-block;
    border: 3px solid #ccc;
    border-top: 3px solid #5877FF;
    border-top: 3px solid var(--loader-color);
    border-radius: 50%;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.inline-loader-sm::before {
    content: '';
    display: inline-block;
    border: 2px solid #ccc;
    border-top: 2px solid #5877FF;
    border-top: 2px solid var(--loader-color);
    border-radius: 50%;
    width: .5em;
    height: .5em;
    margin-right: 0.5em;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.inline-loader-md::before {
    content: '';
    display: inline-block;
    border: 3px solid #ccc;
    border-top: 3px solid #5877FF;
    border-top: 3px solid var(--loader-color);
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5em;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.inline-loader-lg::before {
    content: '';
    display: inline-block;
    border: 5px solid #ccc;
    border-top: 5px solid #5877FF;
    border-top: 5px solid var(--loader-color);
    border-radius: 50%;
    width: 2em;
    height: 2em;
    margin-right: 0.5em;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.loader-bottom {
    display: none;
    position: fixed;
    left: 0;
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
    z-index: 1040;
    transform-origin: center center;
    background-color: #f2f3f7;
    background-color: var(--loader-overlay-bg);
}

.loader-bottom .loader-wrapper > p {
    margin: 0;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =============== Loader Style End =============== */

/* =============== popup Style =============== */
.submitPopup .submitPopupPanel {
    display: inline-block;
    width: 90%;
    padding: 0;
    text-align: center;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 950;
    margin-top: -58px;
}

@media only screen and (min-width: 576px) {
    .submitPopup .submitPopupPanel {
        width: auto;
    }
}

.submitPopupPanel .popupInfo {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.083em;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
    padding: 35px 40px;
    margin-bottom: 0;
}

.submitPopupPanel .legendBtn ul {
    padding: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.submitPopupPanel .legendBtn ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
    margin: 0;
}

.submitPopupPanel .legendBtn ul li:only-child {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 100%;
    margin: 0;
}

.submitPopupPanel .legendBtn ul li .btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height:16px;
    color: #ffffff;
    color: var(--btn-primary-text);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    padding: 20px 20px 19px 20px;
    border-radius: 0;
    background-color: #5877ff;
    background-color: var(--btn-primary-bg);
    width: 100%;
}

.submitPopupPanel .legendBtn ul li .btn:hover {
    background-color: #5877ff;
    background-color: var(--btn-primary-hover-color);
}

.submitPopupPanel .legendBtn ul li #btn_Cancel {
    background-color: #1D2858;
    background-color: var(--btn-secondary-bg);
}

.submitPopupPanel .legendBtn ul li #btn_Cancel:hover {
    background-color: #1D2858;
    background-color: var(--btn-secondary-hover-color);
}

/* =============== popup Style End =============== */

/* Icons */

.icon-facebook {
    background-image: url('../images/social/icon-facebook.svg');
}

.icon-twitter {
    background-image: url('../images/social/icon-twitter.svg');
}

.icon-google {
    background-image: url('../images/social/icon-google.svg');
}

.icon-linkedin {
    background-image: url('../images/social/icon-linkedin.svg');
}

/* =============== Login Page Style =============== */

@media only screen and (min-width: 576px) {
    .login-Page {
        background-color: #f2f3f7;
        background-color: var(--login-bg-color);
    }
}

.login-Page .mainlogin-container {
    min-height: 100%;
    min-height: 100vh;
}

@media only screen and (min-width: 576px) {
    .login-Page .mainlogin-container {
        max-width: 330px;
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.login-Page .mainlogin-container .form-container {
    min-height: 100%;
    min-height: 100vh;
}

@media only screen and (min-width: 768px) {
    .login-Page .mainlogin-container .form-container {
        /*height: 100%;*/
    }
}

/* ---------- Form Header ---------- */

.mainlogin-container .form-header .logo-wrap img {
    display: inline-block;
    max-height: 66px;
}

.mainlogin-container .form-header {
    height: calc(100% - 375px);
    height: calc(100vh - 375px);
    position: relative;
    background-color: #b3bce6;
    background-color: hsl(229, 50%, 80%);
    background-color: var(--mainlogin-header-color);
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .form-header {
        text-align: center;
        padding: 50px 0;
        height: auto;
        background-color: transparent;
        z-index: 1;
    }
}

.mainlogin-container .form-header .logo-wrap {
    position: absolute;
    left: 20px;
    top: auto;
    bottom: 50px;
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .form-header .logo-wrap {
        position: static;
    }

    .mainlogin-container .form-header .logo-wrap img {
        max-width: 330px;
        max-height: 66px;
    }
}

/* ---------- Form conatiner ---------- */

.mainlogin-container .form-container .form-body {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .form-container .form-body {
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
        height: auto;
    }
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .form-container .nav-item .nav-link {
        display: block;
    }

    .mainlogin-container .form-container .nav-item:not(:last-of-type) .nav-link {
        border-right: 0;
    }

    .mainlogin-container .form-container .nav-item:first-of-type .nav-link {
        border-top-left-radius: 0;
    }

    .mainlogin-container .form-container .nav-item:last-of-type .nav-link {
        border-top-right-radius: 0;
    }
}

.mainlogin-container .form-container .form-body .sign-in-container,
.mainlogin-container .form-container .form-body .forgotpassword-container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.2s ease;
    -moz-transition: -moz-transform 0.2s ease;
    transition: transform 0.2s ease;
}

.mainlogin-container .form-container .form-body.login-visible .sign-in-container {
    position: relative;
    z-index: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

.mainlogin-container .form-container .form-body.forgotPassword-visible .forgotpassword-container {
    position: relative;
    z-index: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
}

/* Sign In Container */

.mainlogin-container .sign-in-container .nav-tabs {
    border: none;
    padding: 20px 20px 0 20px;
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .sign-in-container .nav-tabs {
        border: none;
        padding: 35px 40px 0 40px;
    }
}

.mainlogin-container .sign-in-container .nav-item:not(:last-of-type) {
    position: relative;
    margin-right: 30px;
}

.mainlogin-container .sign-in-container .nav-item input[type='radio'] {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    z-index: 0;
}

.mainlogin-container .sign-in-container .nav-item .nav-link {
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.083em;
    text-transform: uppercase;
    color: #212C5B;
    color: var(--primary-text-color);
    border: none;
    border-radius: 0;
    padding: 0;
}

.mainlogin-container .sign-in-container .nav-item .nav-link.active {
    font-weight: 700;
    color: #5877FF;
    color: var(--theme-primary-color);
    background-color: transparent;
    border-bottom: 2px solid #5877FF;
    border-bottom: 2px solid var(--theme-primary-color);
}

.mainlogin-container form {
    padding: 0;
    background-color: transparent;
}

@media only screen and (min-width:576px) {
    .mainlogin-container form {
        border: none;
        border-top-color: transparent;
    }
}

.mainlogin-container .form-body .form-wrapper {
    padding: 25px 20px 5px 20px;
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .form-body .form-wrapper {
        padding: 25px 40px 5px 40px;
    }
}

.mainlogin-container form .form-group {
    margin-bottom: 25px;
}

.mainlogin-container form .form-group label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.083em;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.mainlogin-container form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #EBEDF5;
    border-radius: 0;
    height: auto;
    padding: 5px 0;
}

.mainlogin-container form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.mainlogin-container .forgotPassword a {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5877FF;
    color: var(--anchor-color);
    text-transform: capitalize;
    text-decoration: none;
    margin-left: 3px;
}

.mainlogin-container .sign-up-link {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5877FF;
    color: var(--anchor-color);
    text-decoration: none;
}

.mainlogin-container .sign-up-link::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 8px;
    margin-left: 5px;
    vertical-align: middle;
    background-image: url('../images/common-icon/icon-next-arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.mainlogin-container .instructorbtn {
    padding: 0 15px 15px;
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .instructorbtn {
        padding: 0;
    }
}

.logInbtn {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #ffffff;
    color: var(--btn-primary-text);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    padding: 17px 40px;
    border-radius: 10px;
    background-color: #5877ff;
    background-color: var(--btn-primary-bg);
    width: 100%;
    outline: 0;
    border: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.logInbtn:hover {
    background-color: #5877FF;
    background-color: var(--btn-primary-hover-color);
}

@media only screen and (min-width: 576px) {
    .logInbtn {
        font-size: 16px;
        line-height: 20px;
        padding: 20px 40px;
        text-align: left;
        border-radius: 0;
        background-image: url('../images/common-icon/icon-btnBlock-arrow.svg');
        background-repeat: no-repeat;
        background-position: right 40px center;
        background-size: 6px;
    }
}

/* Forgot Password Container */

.forgotpassword-container .backTologin {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.083em;
    color: #5877FF;
    color: var(--anchor-color);
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem 0;
}

.forgotpassword-container .backTologin::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 10px;
    margin-right: 5px;
    background-image: url(../images/common-icon/icon-arrow-left-blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.forgotpassword-container .button-wrapper {
    padding: 0 15px;
}

@media only screen and (min-width: 576px) {
    .forgotpassword-container .button-wrapper {
        padding: 0;
    }
}

.frogotpwd-modal .modal-body {
    padding: 1rem 1rem 1.625rem 1rem;
}

.frogotpwd-modal .form-group label {
    font-size: 1.125em;
    margin-bottom: 0;
}

.frogotpwd-modal .form-group .form-text {
    margin-bottom: 1rem;
}

.mainlogin-container .btn.btn-block {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #ffffff;
    color: var(--btn-primary-text);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    padding: 17px 40px;
    border: none;
    border-radius: 10px;
    background-color: #5877ff;
    background-color: var(--btn-primary-bg);
    width: 100%;
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .btn.btn-block {
        font-size: 16px;
        line-height: 20px;
        padding: 20px 40px;
        text-align: left;
        border-radius: 0;
        background-image: url('../images/common-icon/icon-btnBlock-arrow.svg');
        background-repeat: no-repeat;
        background-position: right 40px center;
        background-size: 6px;
    }
}

/* ---------- Form Footer ---------- */

.mainlogin-container .form-footer {
    display: none;
}

@media only screen and (min-width: 576px) {
    .mainlogin-container .form-footer {
        display: block;
        margin-top: 50px;
    }
}

.form-footer .social {
    padding: 0 1.875em;
}

@media only screen and (min-width: 576px) {
    .form-footer .social {
        padding: 0;
    }
}

.form-footer .assist {
    margin-top: 1em;
    margin-bottom: 1em;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

    .form-footer .assist a.nav-link {
        font-size: 12px;
        padding: 0.5em 1em;
        color: var(--primary-text-color);
        text-decoration: none;
    }

/* =============== Login Page Style End =============== */


/* =============== Layout Style =============== */

.wrapper {
    position: relative;
    display: block;
    min-height: 100vh;
}

@media only screen and (min-width: 768px) {
    .wrapper {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/* ---------- Main Navigation - SideBar style ---------- */

/* Sidebar wrapper */
.wrapper .header-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    height: 50px;
    height: var(--main-navigation-height-small);
    pointer-events: none;
}

@media only screen and (min-width: 768px) {
    .wrapper .header-wrapper {
        position: static;
        height: auto;
        background-color: #fff;
        background-color: var(--main-navigation-bg);
        -ms-flex: 0 0 55px;
        flex: 0 0 55px;
        -ms-flex: 0 0 var(--main-navigation-width);
        flex: 0 0 var(--main-navigation-width);
        max-width: 55px;
        max-width: var(--main-navigation-width);
    }
}

.wrapper .header-wrapper.open {
    height: 100%;
    height: 100vh;
    overflow:hidden;
}

@media only screen and (min-width: 768px) {
    .header-wrapper > .siderbar-wrapper,
    .siderbar-wrapper > .main-sidebar {
        height: 100vh;
    }
}

.header-wrapper .main-sidebar .main-nav {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: absolute;
    left: 0;
    top: 50px;
    top: var(--main-navigation-height-small);
    right: 0;
    bottom: auto;
    z-index: 1030;
    width: 100%;
    height: calc(100% - 50px);
    height: calc(100vh - var(--main-navigation-height-small));
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    background-color: var(--main-navigation-bg);
    pointer-events: all;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.header-wrapper.open .main-sidebar .main-nav {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}

@media only screen and (min-width: 768px) {
    .header-wrapper .main-sidebar .main-nav {
        position: static;
        top: 0;
        left: 0;
        right: auto;
        bottom: 0;
        z-index: 1050;
        width: 55px;
        width: var(--main-navigation-width);
        height: 100%;
        box-shadow: 1px 0 1px #EBEDF5;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

@media only screen and (min-width: 768px) {
    .main-sidebar .main-nav.fixedNav {
        position: fixed;
    }

    .main-sidebar .main-nav.stretchNav {
        height: 100vh;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .main-sidebar .main-nav.stretchNav > .main-nav-item {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .header-wrapper.main-sidebar-collapse .main-sidebar .main-nav {
        width: 55px;
        width: var(--main-navigation-width);
    }

    .header-wrapper.main-sidebar-open .main-sidebar .main-nav {
        width: 224px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    }
}

/* Navigation toggle Button */

.header-wrapper .nav-toggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 50px;
    width: var(--main-navigation-height-small);
    height: 50px;
    height: var(--main-navigation-height-small);
    pointer-events: all;
}

@media only screen and (min-width: 768px) {
    .header-wrapper .nav-toggle {
        display: none;
    }
}

.header-wrapper .main-sidebar .nav-toggle span {
    display: inline-block;
    width: 20px;
    height: 12px;
    background-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.header-wrapper .main-sidebar .nav-toggle span em {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #212C5B;
    background-color: var(--primary-text-color);
    opacity: 1;
    transform-origin: center center;
    will-change: transform, opacity, left, top, background;
    -webkit-transition: background .2s .25s, opacity .2s .25s, left .2s .25s, top .2s .25s, transform .2s;
    -moz-transition: background .2s .25s, opacity .2s .25s, left .2s .25s, top .2s .25s, transform .2s;
    transition: background .2s .25s, opacity .2s .25s, left .2s .25s, top .2s .25s, transform .2s;
}

.header-wrapper .main-sidebar .nav-toggle span em:first-of-type {
    top: 0;
}

.header-wrapper .main-sidebar .nav-toggle span em:last-of-type {
    top: 100%;
}

.header-wrapper.open .main-sidebar .nav-toggle span em {
    opacity: 0;
    -webkit-transition: background .2s, opacity .2s, left .2s, top .2s, transform .2s .25s;
    -moz-transition: background .2s, opacity .2s, left .2s, top .2s, transform .2s .25s;
    transition: background .2s, opacity .2s, left .2s, top .2s, transform .2s .25s;
}

.header-wrapper.open .main-sidebar .nav-toggle span em:first-of-type {
    opacity: 1;
    left: 0;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-wrapper.open .main-sidebar .nav-toggle span em:last-of-type {
    opacity: 1;
    left: 0;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) {
    .main-sidebar .main-nav .main-nav-item.nav-logout {
        margin-top: auto;
    }
}

/* Logo wrap */

.main-sidebar .main-nav .main-nav-item.nav-logo {
    display: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: #fff;
}

@media only screen and (min-width: 768px) {
    .main-sidebar .main-nav .main-nav-item.nav-logo {
        display: block;
    }

    .main-sidebar .main-nav .main-nav-item.nav-logo .logo {
        max-height: 85%;
        max-width: 85%;
        width: auto;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    .main-sidebar .main-nav .nav-logo-small {
        position: relative;
        width: 55px;
        width: var(--main-navigation-width);
        height: 55px;
        height: var(--main-navlink-height);
    }

    .main-sidebar .main-nav .nav-logo-large {
        position: relative;
        display: inline-block;
        height: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        padding: 0;
    }

    .main-sidebar .main-nav .main-nav-item.nav-logo .nav-logo-large .logo {
        margin: auto;
    }

    .main-sidebar .main-nav .main-nav-item.nav-logo .main-nav-link {
        height: 60px;
    }
}

/* Nav link */

.main-sidebar .main-nav .main-nav-link {
    width: 100%;
    height: 48px;
    height: var(--main-navlink-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 10px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.main-sidebar .main-nav .main-nav-link:hover {
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
}

.main-sidebar .main-nav .main-nav-link.active {
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
}

.main-sidebar .main-nav .main-nav-link.active .nav-title {
    color: #fff;
    color: var(--main-navigation-bg);
}

@media only screen and (min-width: 768px) {
    .main-sidebar .main-nav .main-nav-link {
        padding: 0;
    }
}

.main-sidebar .main-nav .nav-img {
    display: inline-block;
    width: 55px;
    width: var(--main-navigation-width);
    height: 48px;
    height: var(--main-navlink-height);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.main-sidebar .main-nav .nav-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    color: #212C5B;
    color: var(--main-navigation-text);
    vertical-align: middle;
    padding: 0 25px 0 0;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-sidebar .main-nav .main-nav-link.active .nav-title {
    color: #5877FF;
    color: var(--main-navigation-activeText);
}

@media only screen and (min-width:768px) {
    .main-sidebar .main-nav .main-nav-link.active .nav-title::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 10px;
        background-image: url('../images/dashboard-icons/icon-main-nav-link-active.svg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media only screen and (min-width: 768px) {
    .header-wrapper.main-sidebar-collapse .nav-title {
        display: none
    }
}

.main-sidebar .main-nav .nav-title small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #212C5B;
    color: var(--main-navigation-text);
    opacity: .5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}

.main-sidebar-collapse .main-nav .main-nav-item.nav-logo .nav-logo-small {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.main-sidebar-open .main-nav .main-nav-item.nav-logo .nav-logo-small {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    display: none;
}

.main-sidebar .nav-img.icon-logOut {
    background-image: url(../images/dashboard-icons/icon-logout.svg);
}

.main-sidebar .active .nav-img.icon-logOut {
    background-image: url(../images/dashboard-icons/icon-logout-active.svg);
}

.main-sidebar .nav-img.icon-courses {
    background-image: url(../images/dashboard-icons/icon-course-library.svg);
}

.main-sidebar .active .nav-img.icon-courses {
    background-image: url(../images/dashboard-icons/icon-course-library-active.svg);
}

.main-sidebar .nav-img.icon-myProgress {
    background-image: url(../images/dashboard-icons/icon-progress.svg);
}

.main-sidebar .active .nav-img.icon-myProgress {
    background-image: url(../images/dashboard-icons/icon-progress-active.svg);
}

.main-sidebar .nav-img.icon-profile {
    background-image: url(../images/dashboard-icons/icon-profile.svg);
}

.main-sidebar .active .nav-img.icon-profile {
    background-image: url(../images/dashboard-icons/icon-profile-active.svg);
}

.main-sidebar .nav-img.icon-lectures {
    background-image: url(../images/dashboard-icons/icon-lectures.svg);
}

.main-sidebar .active .nav-img.icon-lectures {
    background-image: url(../images/dashboard-icons/icon-lectures-active.svg);
}

.main-sidebar .nav-img.icon-reports {
    background-image: url(../images/dashboard-icons/icon-reports.svg);
}

.main-sidebar .active .nav-img.icon-reports {
    background-image: url(../images/dashboard-icons/icon-reports-active.svg);
}

.main-sidebar .nav-img.icon-calender {
    background-image: url(../images/dashboard-icons/icon-calender.svg);
}

.main-sidebar .active .nav-img.icon-calender {
    background-image: url(../images/dashboard-icons/icon-calender-active.svg);
}

.main-sidebar .nav-img.icon-store {
    background-image: url(../images/dashboard-icons/icon-cart.svg);
}

.main-sidebar .active .nav-img.icon-store {
    background-image: url(../images/dashboard-icons/icon-cart-active.svg);
}

.main-sidebar .nav-img.icon-course-library {
    background-image: url(../images/dashboard-icons/icon-library.svg);
}

.main-sidebar .active .nav-img.icon-course-library {
    background-image: url(../images/dashboard-icons/icon-library-active.svg);
}

.main-sidebar .nav-img.icon-challenge {
    background-image: url(../images/dashboard-icons/icon-challenge.svg);
}

.main-sidebar .active .nav-img.icon-challenge {
    background-image: url(../images/dashboard-icons/icon-challenge-active.svg);
}

.main-sidebar .nav-img.icon-circle {
    background-image: url(../images/dashboard-icons/icon-circle.svg);
}

.main-sidebar .active .nav-img.icon-circle {
    background-image: url(../images/dashboard-icons/icon-circle-active.svg);
}

.main-sidebar .nav-img.icon-chat {
    background-image: url(../images/dashboard-icons/icon-chat.svg);
}

.main-sidebar .active .nav-img.icon-chat {
    background-image: url(../images/dashboard-icons/icon-chat-active.svg);
}

.main-sidebar .nav-img.icon-access-code {
    background-image: url(../images/dashboard-icons/icon-access-code.svg);
}

.main-sidebar .active .nav-img.icon-access-code {
    background-image: url(../images/dashboard-icons/icon-access-code-active.svg);
}

/* ---------- Main Navigation - SideBar style End ---------- */

/* ---------- content wrapper style ---------- */

.wrapper .content-wrapper {
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    .wrapper .content-wrapper {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
}

/* ::::: content header style ::::: */

.content-header {
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
    color: #212C5B;
    color: var(--primary-text-color);
    padding: 0 20px;
    border-bottom: 1px solid #CFD4E6;
    width: 100%;
    height: 50px;
    height: var(--main-navigation-height-small);
}

@media only screen and (min-width: 768px) {
    .content-header {
        display: none !important;
    }
}

.content-header .back-button {
    display: inline-block;
    border: none;
    outline: 0;
    background-color: transparent;
    background-image: url(../images/common-icon/icon-arrow-left-blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    padding: 0;
    cursor: pointer;
}

.content-header #spancoursename {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    vertical-align: middle;
    color: #212C5B;
    color: var(--primary-text-color);
    padding-right: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ::::: content header style end ::::: */

/* ::::: content body style ::::: */

.content-wrapper .content-body {
    position: relative;
    min-height: calc(100% - 50px);
    min-height: calc(100vh - var(--main-navigation-height-small));
}

@media only screen and (min-width: 768px) {
    .content-wrapper .content-body {
        height: 100%;
        min-height: 100vh;
    }
}

/* ::::: content body style end ::::: */

/* ---------- content wrapper style End ---------- */

/* ---------- content frame style ---------- */

.content-body .article-frame {
    position: relative;
    min-height: calc(100% - 50px);
    min-height: calc(100vh - var(--main-navigation-height-small));
}

@media only screen and (min-width: 768px) {
    .content-body .article-frame {
        height: 100%;
        min-height: 100vh;
    }
}

.content-body .content-frame {
    position: relative;
    min-height: calc(100% - 50px);
    min-height: calc(100vh - var(--main-navigation-height-small));
}

@media only screen and (min-width: 768px) {
    .content-body .content-frame {
        height: 100%;
        min-height: 100vh;
    }
}

/* ---------- content frame style End ---------- */

.content-body .base-container {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: calc(100% - 50px);
    min-height: calc(100vh - var(--main-navigation-height-small));
    overflow-x: hidden;
    overflow-y: auto;
}

@media only screen and (min-width: 768px) {
    .content-body .base-container {
        height: 100%;
        min-height: 100vh;
    }
}

@media only screen and (min-width: 992px) {
    .content-body .base-container .bookreader-sidebar {
        width: 350px;
        width: var(--lrs-sidebar-width);
    }
}

/* ::::: course content Container Style ::::: */

.course-content-container {
    position: relative;
    margin-left: 0;
    min-height: calc(100% - 50px);
    min-height: calc(100vh - var(--main-navigation-height-small));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: -webkit-transform .3s ease, width .3s ease, margin .3s ease;
    -moz-transition: -moz-transform .3s ease, width .3s ease, margin .3s ease;
    transition: transform .3s ease, width .3s ease, margin .3s ease;
}

/* ::::: course content Container Style End ::::: */


.unavailable-massage-wrap {
    font-weight: bold;
    color: #1D2858;
    color: var(--primary-text-color);
}

.BookReaderWrapper {
    position: relative;
}

.BookReaderHolder {
    position: relative;
    background-color: var(--body-bg-color);
    display: none;
}

.BookReaderHolder > iframe {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.MCQHolder {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
}

@media only screen and (min-width: 768px) {
    .MCQHolder {
        position: absolute;
    }
}

.MCQHolder > iframe {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ---------- content frame style End ---------- */

/* =============== Layout Style End =============== */

/* =============== Register Page Style =============== */
.register-Page {
    background-color: #fff;
}

@media only screen and (min-width: 576px) {
    .register-Page {
        background-color: #F2F3F7;
        background-color: var(--body-bg-color);
    }
}

/* ---------- Register Form Header ---------- */

.register-Page .form-header {
    height: calc(100% - 360px);
    height: calc(100vh - 360px);
    position: relative;
    background-color: #b3bce6;
    background-color: var(--mainlogin-header-color);
}

@media only screen and (min-width: 576px) {
    .register-Page .form-header {
        text-align: center;
        padding: 10px 0 0 0;
        height: auto;
        background-color: #fff;
        z-index: 1;
    }
}

.register-Page .form-header .logo-wrap {
    position: absolute;
    left: 20px;
    top: auto;
    bottom: 50px;
}

@media only screen and (min-width: 576px) {
    .register-Page .form-header .logo-wrap {
        position: static;
    }
}

.register-Page .form-header .logo-wrap img {
    display: inline-block;
    max-width: 330px;
    max-height: 66px;
}

/* ---------- Register Form conatiner ---------- */

.register-Page .register-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (min-width: 576px) {
    .register-Page .register-container {
        max-width: 520px;
    }
}

.register-container .form-container {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (min-width: 576px) {
    .register-container .form-container {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.register-container .form-container .form-body {
    position: relative;
    background-color: #fff;
    margin-bottom: 20px;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media only screen and (min-width: 576px) {
    .register-container .form-container .form-body {
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    }
}

.register-container .form-body .register-form-group {
    padding: 20px 20px 25px;
}

@media only screen and (min-width: 576px) {
    .register-container .form-body .register-form-group {
        padding: 30px 20px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) {
    .register-container .registrationFormList {
        padding: 0 20px;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
}

.register-container .registrationFormList .form-group {
    margin-bottom: 25px;
}

.register-container .registrationFormList .form-group label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.083em;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.register-container .registrationFormList .form-group label > span {
    color: #ED1C24;
}

.register-container .registrationFormList .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #EBEDF5;
    border-radius: 0;
    height: auto;
    padding: 5px 0;
}

.register-container .registrationFormList .form-control:focus {
    outline: none;
    box-shadow: none;
}

@media only screen and (min-width: 576px) {
    .register-container .register-form-group .backTologin {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.register-container .register-form-group .backTologin a {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #5877FF;
    color: var(--anchor-color);
    text-decoration: none;
    cursor: pointer;
}

.register-container .register-form-group .conditions-wrap {
    margin-bottom: 25px;
}

@media only screen and (min-width: 576px) {
    .register-container .register-form-group .conditions-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.register-container .register-form-group .conditions-wrap label {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
}

.conditions-wrap label .condition-one {
    display: inline-block;
    padding-left: 20px;
}

.conditions-wrap label input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 3px;
}
.register-box .buttons-set {
    padding: 0 20px;
}

@media only screen and (min-width: 576px) {
    .register-box .buttons-set {
        padding: 0;
    }
}

.register-box .buttons-set button {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    background-color: #5877FF;
    background-color: var(--anchor-color);
    padding: 12px 20px;
    border-radius: 10px;
    border-color: #5877FF;
    border-color: var(--anchor-color);
}

@media only screen and (min-width: 576px) {
    .register-box .buttons-set button {
        text-align: left;
        padding: 17px 40px;
        border-radius: 0;
        background-image: url('../images/common-icon/icon-btnBlock-arrow.svg');
        background-repeat: no-repeat;
        background-position: right 40px center;
        background-size: 5px 9px;
    }
}

/* =============== Register Page Style End =============== */

/* =============== Set Password Page Style =============== */

.set-password {
    background-color: #fff;
}

@media only screen and (min-width: 576px) {
    .set-password {
        background-color: #F2F3F7;
        background-color: var(--body-bg-color);
    }
}

.set-password .form-header {
    position: relative;
    background-color: #b3bce6;
    background-color: var(--mainlogin-header-color);
}

@media only screen and (min-width: 576px) {
    .set-password .form-header {
        text-align: center;
        padding: 10px 0 50px 0;
        height: auto;
        background-color: transparent;
    }
}

.set-password .form-header .logo-wrap {
    position: absolute;
    left: 20px;
    top: auto;
    bottom: 50px;
}

@media only screen and (min-width: 576px) {
    .set-password .form-header .logo-wrap {
        position: static;
    }
}

.set-password .form-header .logo-wrap img {
    display: inline-block;
    max-height: 30px;
}

.set-password .set-password-wrapper {
    min-height: 100vh;
}

@media only screen and (min-width: 576px) {
    .set-password .set-password-wrapper {
        max-width: 500px;
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.set-password .set-password-container {
    min-height: 100vh;
}

.form-password h2 {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.083em;
    text-transform: uppercase;
    color: #5877FF;
    color: var(--anchor-color);
    padding: 0;
    margin-bottom: 25px;
    text-align: center;
}

.form-password form {
    background-color: #fff;
}

.form-password .form-wrapper {
    padding: 20px 20px 5px 20px;
}

@media only screen and (min-width: 576px) {
    .form-password .form-wrapper {
        padding: 35px 40px 5px 40px;
    }
}

.form-password .form-wrapper label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.083em;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.form-password .form-wrapper .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #EBEDF5;
    border-radius: 0;
    height: auto;
    padding: 5px 0;
}

.form-password form .form-group {
    margin-bottom: 25px;
}

.form-password form .form-control {
    font-size: 1em;
    border: 1px solid #EBEDF5;
    border-radius: 0;
    height: 3.375em;
}

.frogotpwd-modal .modal-body {
    padding: 1rem 1rem 1.625rem 1rem;
}

.frogotpwd-modal .form-group label {
    font-size: 1.125em;
    margin-bottom: 0;
}

.frogotpwd-modal .form-group .form-text {
    margin-bottom: 1rem;
}

.form-password .instructorbtn {
    padding: 0 20px 20px;
}

@media only screen and (min-width: 576px) {
    .form-password .instructorbtn {
        padding: 0;
    }
}

/* =============== Set Password Page Style End =============== */


/* =============== My Profile Page Style =============== */

.main-profile-wrapper .form-container input[type="number"].form-control {
    -moz-appearance: textfield;
}

.main-profile-wrapper .form-container input[type="number"].form-control:hover,
.main-profile-wrapper .form-container input[type="number"].form-control:focus {
    -moz-appearance: number-input;
}

@media only screen and (min-width: 576px) {
    .main-profile-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) {
    .main-profile-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 576px) {
    .main-profile-form-wrap {
        max-width: 570px;
        margin: 0 auto;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

@media only screen and (min-width: 576px) {
    .main-profile-form-wrap {
        max-width: 625px;
    }
}

.edit-profile-img .change-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
}

@media only screen and (min-width: 576px) {
    .edit-profile-img .change-image {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 54%;
    }
}

.edit-profile-img .user-image-container,
.user-image-container .user-image-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #B2C0FF;
    overflow: hidden;
}

.user-image-container .user-image-wrap img {
    height: auto;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    margin: auto;
}

.user-image-container .upload-img {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    background-image: url('../images/common-icon/icon-camera.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}

.user-image-container .upload-img input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.user-image-container .upload-img span {
    display: none;
}

.user-image-container .support-files {
    display: none;
}

.edit-profile-img label.control-label {
    display: none;
}

.main-profile-form-wrap .edit-profile-info .form-container {
    background-color: #fff;
    padding: 25px 20px;
}

@media only screen and (min-width: 576px) {
    .main-profile-form-wrap .edit-profile-info .form-container {
        position: relative;
        padding: 30px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.main-profile-form-wrap .form-container:empty {
    display: none;
}

.main-profile-form-wrap .edit-profile-info .registrationFormList {
    margin-bottom: 30px;
}

@media only screen and (min-width: 576px) {
    .main-profile-form-wrap .edit-profile-info .registrationFormList {
        padding: 0 20px;
        margin-bottom: 25px;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }
}

.main-profile-form-wrap .edit-profile-info .registrationFormList:last-of-type {
    margin-bottom: 0;
}

.main-profile-form-wrap .profile-registerForm label.control-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    color: #212C5B;
    color: var(--primary-text-color);
    margin-bottom: 0;
}

@media only screen and (min-width: 576px) {
    .main-profile-form-wrap .profile-registerForm label.control-label {
        font-size: 12px;
    }
}

.main-profile-form-wrap .profile-registerForm label.control-label > span {
    color: #ED1C24;
    margin-left: 3px;
}

.main-profile-form-wrap .profile-registerForm .form-control {
    font-size: 20px;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    padding: 0 0 10px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #EBEDF5;
    height: auto;
}

@media only screen and (min-width: 576px) {
    .main-profile-form-wrap .profile-registerForm .form-control {
        font-size: 16px;
        padding: 0 0 5px;
    }
}

.main-profile-form-wrap .profile-registerForm .form-control:focus {
    box-shadow: none;
}

.view-password-wrap {
    position: relative;
}

.view-password-wrap .view-password {
    right: 0;
}

.view-password-wrap input[type="password"] {
    padding-right: 30px;
}

.view-password-wrap .view-password {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 30px;
    cursor: pointer;
    background-image: url("../images/common-icon/icon-pwdView.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% 70%;
}

.view-password-wrap .view-password.view {
    background-image: url("../images/common-icon/icon-pwdHide.svg");
}

.main-profile-form-wrap .buttons-set {
    padding: 0 20px 25px 20px;
}

@media only screen and (min-width: 576px) {
    .main-profile-form-wrap .buttons-set {
        padding: 0;
    }
}

.main-profile-form-wrap .buttons-set button {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    color: var(--btn-primary-text);
    letter-spacing: 0.085em;
    background-color: #5877FF;
    background-color: var(--btn-primary-bg);
    padding: 17px 20px;
    border: none;
    border-radius: 10px;
}

@media only screen and (min-width: 576px) {
    .main-profile-form-wrap .buttons-set button {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        letter-spacing: 0.0625em;
        padding: 18px 40px;
        border-radius: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        background-image: url('../images/common-icon/icon-btnBlock-arrow.svg');
        background-repeat: no-repeat;
        background-position: right 40px center;
        background-size: 5px 9px;
    }
}

.main-profile-form-wrap .buttons-set button:hover {
    background-color: #5877FF;
    background-color: var(--btn-primary-hover-color);
}
/* =============== My Profile Page Style End =============== */
/* =============== Course List Page style =============== */
.coursewrap-con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

@media only screen and (min-width: 768px) {
    .coursewrap-con {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.coursewrap-con .courseconwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
}

@media only screen and (min-width: 576px) {
    .coursewrap-con .courseconwrap {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }
}

@media only screen and (min-width: 768px) {
    .coursewrap-con .courseconwrap {
        -ms-flex-preferred-size: 380px;
        flex-basis: 380px;
        max-width: 33.333%;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 30px;
    }
}

.course-content {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media only screen and (min-width: 768px) {
    .course-content {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .course-content:hover {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.30);
    }
}

.course-content .course-cover-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    border-radius: 10px;
    background-color: #5877FF;
    background-color: var(--anchor-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media only screen and (min-width: 768px) {
    .course-content .course-cover-wrap {
        top: 50%;
        border-radius: 0;
    }
}

.course-content .course-caption-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 50%;
    background-color: #fff;
    padding: 10px 0;
}

@media only screen and (min-width: 768px) {
    .course-content .course-caption-wrap {
        top: 0;
        padding: 15px;
    }
}

@media only screen and (min-width: 992px) {
    .course-content .course-caption-wrap {
        top: 0;
        padding: 35px 40px;
    }
}

.course-caption-wrap .course-caption {
    font-size: 16px;
    font-weight: 700;
    color: #212C5B;
    color: var(--primary-text-color);
    position: relative;
    line-height: 1.2;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (min-width: 768px) {
    .course-caption-wrap .course-caption {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) {
    .course-caption-wrap .course-caption {
        font-size: 28px;
    }
}

.course-content .course-cover-wrap .read-pages {
    font-size: 12px;
    font-weight: 400;
    color: #9096AD;
    letter-spacing: 0.085em;
    margin: 0;
    position: absolute;
    left: 5px;
    bottom: 5px;
    text-shadow: 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

@media only screen and (min-width: 768px) {
    .course-content .course-cover-wrap .read-pages {
        left: 15px;
        bottom: 15px;
        color: #fff;
        text-shadow: -1px -1px 2px #9096AD, 1px -1px 2px #9096AD, -1px 1px 2px #9096AD, 1px 1px 2px #9096AD;
    }
}

@media only screen and (min-width: 992px) {
    .course-content .course-cover-wrap .read-pages {
        font-size: 12px;
        left: 40px;
        bottom: 30px;
    }
} 

.course-complete .course-content .course-cover-wrap .read-pages:before {
    content: '';
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    background-image: url('../images/common-icon/icon-reading-finished_gray.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -3px;
}

@media only screen and (min-width: 768px) {
    .course-complete .course-content .course-cover-wrap .read-pages:before {
        background-image: url('../images/common-icon/icon-reading-finished.svg');
    }
} 

.course-contents {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 32px;
    color: #212C5B;
    color: var(--primary-text-color);
    vertical-align: middle;
    margin: 0;
}

.course-contents .dot {
    display: inline-block;
    background: #212C5B;
    background: var(--primary-text-color);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: relative;
    top: -3px;
    margin-left: .3em;
    margin-right: .3em;
}


/* ::::: featured course style ::::: */

.featured-course-section {
    margin-top: 30px;
}

.featured-course-section .featured-course-heading {
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.29);
    padding: 10px 10px 10px 50px;
    margin-bottom: 40px;
}

.featured-course-section .featured-course-heading .clip-shape {
    display: inline-block;
    width: 50px;
    height: 100%;
    background-color: #5877FF;
    background-color: var(--theme-primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.featured-course-section .featured-course-heading .clip-shape::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-bottom: 48px solid #fff;
    border-left: 30px solid transparent;
    position: absolute;
    left: auto;
    top: 0;
    right: -1px;
}

@media only screen and (min-width: 992px) {
    .featured-course-section .featured-course-heading {
        padding: 10px 10px 10px 95px;
    }
    .featured-course-section .featured-course-heading .clip-shape {
        width: 95px;
    }
    .featured-course-section .featured-course-heading .clip-shape::after {
        border-bottom: 56px solid #fff;
        border-left: 50px solid transparent;
    }
}

.featured-course-heading h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #5877FF;
    color: var(--theme-primary-color);
}

@media only screen and (min-width: 992px) {
    .featured-course-heading h2 {
        font-size: 30px;
    }
}

/* ::::: featured course style End ::::: */

/* ::::: course Library style ::::: */
.myCoursemain,
.CourseLibrary {
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
}

.CourseLibrary .course-library-container {
    position: relative;
    min-height: 100vh;
}

.CourseLibrary .course-library-wrapper {
    position: relative;
    min-height: 100vh;
}

@media only screen and (min-width: 992px) {
    .CourseLibrary .course-library-wrapper {
        display: -ms-flexbox;
        display: flex;
    }
}

.CourseLibrary .course-library-wrapper .course-library-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 1;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s .6s ease, visibility .3s .9s ease;
    -moz-transition: opacity .3s .6s ease, visibility .3s .9s ease;
    transition: opacity .3s .6s ease, visibility .3s .9s ease;
    pointer-events: all;
}

@media only screen and (min-width: 992px) {
    .CourseLibrary .course-library-wrapper .course-library-overlay {
        display: none;
    }
}

.CourseLibrary .course-library-wrapper.sidebarCollapse .course-library-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity .3s 0s ease, visibility 0s .3s ease;
    -moz-transition: opacity .3s 0s ease, visibility 0s .3s ease;
    transition: opacity .3s 0s ease, visibility 0s .3s ease;
}

.CourseLibrary .course-library-wrapper .course-library-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    min-height: 100%;
    width: 100%;
    z-index: 10;
    border-right: 1px solid #EBEDF5;
    background-color: transparent;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform .3s .6s ease, width .3s ease;
    -moz-transition: -moz-transform .3s .6s ease, width .3s ease;
    transition: transform .3s .6s ease, width .3s ease;
}

@media only screen and (min-width: 992px) {
    .CourseLibrary .course-library-wrapper .course-library-sidebar {
        position: relative;
        width: 250px;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        max-width: 250px;
    }
}

.CourseLibrary .course-library-wrapper.sidebarCollapse .course-library-sidebar {
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform .3s 0s ease, width .3s ease;
    -moz-transition: -moz-transform .3s 0s ease, width .3s ease;
    transition: transform .3s 0s ease, width .3s ease;
}

@media only screen and (min-width: 992px) {
    .CourseLibrary .course-library-wrapper.sidebarCollapse .course-library-sidebar {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.CourseLibrary .course-library-sidebar .list {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background-color: #fff;
    z-index: 3;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 992px) {
    .CourseLibrary .course-library-sidebar .list {
        position: static;
        width: 100%;
    }
}

.courseLibrary-sidebar-trigger {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url('../images/common-icon/icon-menu-icon-black.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 5px;
    right: -50px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity .3s 0s ease, visibility 0s 0s ease;
    -moz-transition: opacity .3s 0s ease, visibility 0s 0s ease;
    transition: opacity .3s 0s ease, visibility 0s 0s ease;
}

@media only screen and (min-width: 992px) {
    .courseLibrary-sidebar-trigger {
        display: none;
    }
}

.CourseLibrary .course-library-wrapper.sidebarCollapse .course-library-sidebar .courseLibrary-sidebar-trigger {
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s .6s ease, visibility .3s 0s ease;
    -moz-transition: opacity .3s .6s ease, visibility .3s 0s ease;
    transition: opacity .3s .6s ease, visibility .3s 0s ease;
    pointer-events: all;
}

.CourseLibrary .course-library-sidebar .course-section-link {
    display: block;
    font-size: 14px;
    font-weight: 400;
    background-color: transparent;
    color: #212C5B;
    position: relative;
    overflow: hidden;
    padding: 13px 20px;
    text-align: left;
    border-bottom: 1px solid #EBEDF5;
    cursor: pointer;
}

.CourseLibrary .course-library-sidebar ul.list li:first-of-type .course-section-link:first-of-type {
    font-weight: 700;
}

.course-library-sidebar .course-section-link.selected {
    font-weight: 600;
    background-color: #F3F6FF;
    color: #5877FF;
    color: var(--anchor-color);
}

.course-library-sidebar .course-section-link.selected::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 9px;
    background-image: url('../images/common-icon/icon-course-library-sidebar-selected.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 20px;
    transform-origin: center center;
    -webkit-transform: translateX(-100%) translateY(-50%);
    -moz-transform: translateX(-100%) translateY(-50%);
    transform: translateX(-100%) translateY(-50%);
}

.course-library-wrapper .course-library-content {
    padding: 20px;
}

@media only screen and (min-width: 992px) {
    .course-library-wrapper .course-library-content {
        padding: 40px 60px;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
}

.CourseLibrary .course-library-wrapper {
    padding-top: 30px;
}

@media only screen and (min-width: 992px) {
    .CourseLibrary .course-library-wrapper {
        padding-top: 0;
    }
}

.course-counter {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    padding: 10px 15px;
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
    position: fixed;
    left: auto;
    top: 50px;
    right: 0;
}

@media only screen and (min-width: 992px) {
    .course-counter {
        font-size: 16px;
        top: 75px;
    }
}
/* ::::: course Library style End ::::: */
/* ::::: course Filter style ::::: */
.course-filter-wrapper {
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .course-filter-wrapper {
        margin-bottom: 40px;
    }
}

.course-filter-wrap {
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .course-filter-wrap {
        display: inline-block;
        margin-right: 20px;
        margin-bottom: 0;
        vertical-align: middle;
    }
}

.course-filter-wrapper .course-filter-select {
    display: block;
    width: 100%;
    height: 40px;
    padding: 7px 30px 7px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #5B6770;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #BFC5D9;
    border-radius: 4px;
    background-image: url('../images/common-icon/icon-dropdown-secondry.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .course-filter-wrapper .course-filter-select {
        width: 225px;
    }
}

.course-filter-wrapper .course-search-wrap {
    position: relative;
}

.course-search-wrap .course-search {
    display: block;
    width: 100%;
    /*height: 40px;*/
    padding: 7px 40px 8px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #5B6770;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #BFC5D9;
    border-radius: 4px;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .course-search-wrap {
        width: 300px;
    }
}

.course-search-wrap .course-search-btn:focus,
.course-search-wrap .course-search-btn {
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-image: url('../images/common-icon/icon-search-secondry.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    transition: transform 0.5s;
}

.course-search-wrap.clear-search .course-search-btn {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    background-image: url('../images/common-icon/icon-clear-search.svg');
}
/* ::::: course Filter style End ::::: */

/* ::::: course Title style ::::: */

.course-section-title {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 30px;
}

.course-section-title h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #5877FF;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    margin-bottom: 0;
}

/* ::::: course Title style End ::::: */



/* :::::::::: Course Custom Grid style :::::::::: */
.course-grid-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.course-grid-row .course-grid-col {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media only screen and (min-width: 620px) {
    .course-grid-row .course-grid-col {
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        max-width: 100%;
    }
}

/*@media only screen and (min-width: 576px) {
    .course-grid-row .course-grid-col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 768px) {
    .course-grid-row .course-grid-col {
        -ms-flex: 0 0 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media only screen and (min-width: 992px) {
    .course-grid-row .course-grid-col {
        -ms-flex: 0 0 350px;
        flex: 0 0 350px;
        max-width: 350px;
    }
}*/

.course-card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.2);
    min-height: 440px;
    height: 100%;
}

.course-card .course-edition-wrap {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.083em;
    color: #fff;
    padding: 6px 18px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

.course-card .course-description-wrap {
    position: relative;
    padding: 40px 40px 25px 40px;
    background-color: #fff;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.course-description-wrap .course-title {
    font-size: 28px;
    font-weight: 700;
    color: #5877FF;
    color: var(--theme-primary-color);
    position: relative;
    line-height: 36px;
    margin-bottom: 20px;
    height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-description-wrap .course-type-wrap {
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}

.course-description-wrap .course-period-wrap {
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
    height: 16px;
}

.course-description-wrap .course-short-description {
    font-size: 12px;
    line-height: 14px;
    height: 42px;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-description-wrap .course-launch-status {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.course-description-wrap .course-register-status {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.course-description-wrap .hide {
    visibility: hidden;
    color: transparent;
}

.course-launch-status .btn-drop:active,
.course-launch-status .btn-drop:focus,
.course-launch-status .btn-drop {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.083em;
    color: #5877FF;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    padding: 5px 5px 5px 0;
    border-radius: 0;
    box-shadow: none;
}

.course-launch-status .btn-launch:active,
.course-launch-status .btn-launch:focus,
.course-launch-status .btn-launch {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.083em;
    color: #5877FF;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    padding: 5px 0 5px 5px;
    border-radius: 0;
    box-shadow: none;
}

.course-register-status .btn-register:active,
.course-register-status .btn-register:focus,
.course-register-status .btn-register {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.083em;
    color: #5877FF;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    padding: 5px 0 5px 5px;
    border-radius: 0;
    box-shadow: none;
}

.course-cover-wrap {
    position: relative;
    background-color: #ccc;
    cursor: pointer;
}

.course-cover-wrap .course-progress {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.083em;
    color: #fff;
    /*text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
    position: absolute;
    left: 40px;
    bottom: 30px;
}

.course-card.course-complete .course-cover-wrap .course-progress {
    padding-left: 20px;
}

.course-card.course-complete .course-cover-wrap .course-progress::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url('../images/common-icon/icon-finished-reading.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.course-cover-wrap .seek-timer-wrap {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.083em;
    color: #fff;
    padding: 6px 18px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
}

.course-cover-wrap .complation-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.083em;
    color: #fff;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
    margin: 0;
    background-color: transparent;
    position: absolute;
    left: 20px;
    top: auto;
    bottom: 20px;
}

.course-cover-wrap .complation-label.complated {
    padding-left: 25px;
}

.course-cover-wrap .complation-label.complated::before {
    content: '';
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: -2px;
    background-image: url('../images/common-icon/icon-course-finished.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.course-cover-wrap .course-cover-img-wrap {
    position: relative;
    width: 100%;
    height: auto;
    /*padding-bottom: 100%;*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.course-cover-wrap .course-cover-img-wrap > .course-cover-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
}

.course-cover-wrap .course-cover-img-wrap.landscape {
    padding-bottom: 50%;
}

.course-cover-wrap .course-cover-img-wrap.portrait {
    padding-bottom: 70%;
}

.course-card.image-placement-bottom .course-description-wrap {
    order: 1;
}

.course-card.image-placement-bottom .course-cover-wrap {
    order: 2
}

.course-card.image-placement-top .course-cover-wrap {
    order: 1;
}

.course-card.image-placement-top .course-description-wrap {
    order: 2;
}

/* :::::::::: Course Custom Grid style End :::::::::: */

/* ::::: course Details Template style ::::: */

.package-course-container {
    padding: 0 20px;
}

@media only screen and (min-width: 768px) {
    .package-course-container {
        padding: 0 60px;
    }
}

.package-course-container .top-navigation {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.top-navigation .btn-back-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-back-wrap .btn-back {
    font-family: 'Barlow', sans-serif;
    font-family: var(--Primary-font-family);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--anchor-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-back-wrap .btn-back::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 10px;
    margin-right: 7px;
    background-image: url(../images/common-icon/icon-arrow-left-blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.course-deatils-container {
    padding: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

@media only screen and (min-width: 768px) {
    .course-deatils-container {
        background-color: #fff;
        box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.2);
        padding: 40px 45px;
        margin-bottom: 40px;
        border-bottom: none;
    }
}

.course-deatils-container .btn-primary {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.0625em;
    text-transform: uppercase;
    border-radius: 0;
    padding: 7px 15px;
}

.course-deatils-container .course-deatils-header {
    margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
    .course-deatils-container .course-deatils-header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.course-deatils-header .course-deatils-title {
    font-size: 22px;
    font-weight: 700;
    color: #212C5B;
    color: var(--primary-text-color);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media only screen and (min-width: 768px) {
    .course-deatils-header .course-deatils-title {
        font-size: 28px;
        margin-bottom: 0;
    }
}

.course-deatils-container .course-deatils-content {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    .course-deatils-container .course-deatils-content {
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 40px;
    }
}

.course-deatils-content .course-deatils-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    margin-bottom: 20px;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

@media only screen and (min-width: 992px) {
    .course-deatils-content .course-deatils-thumbnail {
        -ms-flex: 0 0 350px;
        flex: 0 0 350px;
        max-width: 350px;
        width: 350px;
        height: 175px;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 992px) {
    .course-deatils-content .course-deatils-info {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        padding-left: 30px;
    }
}

.course-deatils-info .course-info {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media only screen and (min-width: 768px) {
    .course-deatils-info .course-info {
        margin: 0 0 15px 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.course-deatils-info .course-info > li {
    font-size: 16px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    .course-deatils-info .course-info > li {
        margin-bottom: 0;
        margin-right: 10px;
        padding-right: 10px;
        border-right: 1px solid #1D2858;
    }

    .course-deatils-info .course-info > li:last-of-type {
        border-right: none;
    }
}

.course-deatils-info .course-info > li label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    margin-right: 5px;
}

@media only screen and (min-width: 768px) {
    .additional-information-list > li > label {
        -ms-flex: 0 0 180px;
        flex: 0 0 180px;
        max-width: 180px;
    }
}

.course-deatils-info .course-info > li span {
    font-size: 16px;
}

.course-overview-wrapper {
    /*margin-bottom: 40px;*/
}

.course-overview-wrapper .course-overview-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-overview-wrapper .course-overview-wrap {
    font-size: 16px;
    line-height: 1.875;
}

.course-overview-wrapper .course-overview-wrap p {
    font-size: 14px;
    line-height: 20px;
}

.course-overview-wrapper .course-overview-wrap ul {
   list-style-type: inherit;
   padding-left: 15px;
}

.additional-information-wrapper {
    /*margin-bottom: 40px;*/
}

.additional-information-wrapper .additional-information-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.additional-information-wrapper .additional-information-wrap {
    font-size: 16px;
    line-height: 1.875;
}

.additional-information-wrap .additional-information-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.additional-information-list > li {
    margin-bottom: 10px;
    display: -ms-flexbox;
    display: flex;
}

.additional-information-list > li > label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    margin-right: 10px;
}


.additional-information-list > li > span {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .additional-information-list > li > span {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
}

.courseDeatils-content-wrapper .course-deatils-content {
   margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    .courseDeatils-content-wrapper .course-deatils-content {
        display: -ms-flexbox;
        display: flex;
    }
}

.course-completion-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.course-completion-wrapper .loader-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.course-completion-wrapper .course-completion-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-completion-wrapper .progress {
    height: 20px;
    font-size: 14px;
    background-color: #D5DCF2;
    border-radius: 0;
}

.course-completion-wrapper .progress .progress-bar {
    background-color: #1D2858;
    text-align: left;
    text-indent: 10px;
}

.course-included-wrapper {
    margin-bottom: 40px;
}

.course-included-wrapper .course-included-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.course-included-wrapper .course-card .course-card-details {
    background-color: #fff;
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    .course-included-wrapper .course-card .course-card-details {
        padding: 30px 40px;
    }
}

.course-included-wrapper .course-card .course-card-details-title {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    line-height: 36px;
    margin-bottom: 20px;
    height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-card-info-wrap .course-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-card-info-wrap .course-card-info {
    font-size: 12px;
    line-height: 14px;
    height: 45px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-card-cover {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.course-included-wrapper .course-description-wrap .course-launch-status {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.courseDeatils-header {
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .courseDeatils-header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.courseDeatils-header .course-deatils-title {
    font-size: 22px;
    font-weight: 700;
    color: #212C5B;
    color: var(--primary-text-color);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media only screen and (min-width: 768px) {
    .courseDeatils-header .course-deatils-title {
        font-size: 28px;
    }
}

.courseDeatils-header .btn-primary {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.0625em;
    text-transform: uppercase;
    border-radius: 0;
    padding: 7px 15px;
}

.courseDeatils-header .courseDeatils-sub-header {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .courseDeatils-sub-header .course-publish-date {
        font-size: 14px;
    }
}

.courseDeatils-container {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

@media only screen and (min-width: 768px) {
    .courseDeatils-container {
        background-color: #fff;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
        padding: 30px 40px;
        height: 100%;
        border-bottom: none;
    }

    .id2html-container .courseDeatils-container.id2html-additionalInfo-wrapper {
        padding: 0;
    }
}

.additional-info-wrapper,
.courseDeatils-content-wrapper {
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .courseDeatils-content-wrapper .course-deatils-thumbnail {
        margin-bottom: 0;
    }
}

.courseDeatils-content-wrapper .course-deatils-info .course-info {
    display: block;
    margin-bottom: 0;
}

.courseDeatils-content-wrapper .course-deatils-info .course-info > li {
    margin: 0 0 5px 0;
    padding: 0;
    border: none;
}

.additional-info-wrapper .additional-information-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.additional-info-wrapper .additional-information-list > li {
    display: block;
}

/* Id to HTML style */

@media only screen and (min-width: 768px) {
    .id2html-container .course-overview-wrapper {
        margin-bottom: 20px;
    }

    .id2html-container .course-overview-wrap {
        padding-top: 20px;
    }

    .id2html-container .allDocument-wrapper {
        padding-top: 20px;
    }
}

.allDocument-wrapper .allDocument-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.allDocument-list-wrap .document-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0;
}

@media only screen and (min-width: 768px) {
    .allDocument-list-wrap .document-wrap {
        -ms-flex-align: center;
        align-items: center;
    }
}

.allDocument-list-wrap .document-wrap .course-document-title {
    width: 100%;
    padding: 10px 0;
}

@media only screen and (min-width: 768px) {
    .allDocument-list-wrap .document-wrap .course-document-title {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        padding: 15px 0;
        width: auto;
    }

    .course-document-title a {
        display: inline-block;
    }
}

.allDocument-list-wrap .document-wrap .convert-document-list {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

@media only screen and (min-width: 768px) {
    .allDocument-list-wrap .document-wrap .convert-document-list {
        -ms-flex: 0 0 180px;
        flex: 0 0 180px;
        max-width: 180px;
    }
}

.allDocument-list-wrap .document-wrap .document-btn-wrap {
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    max-width: 30px;
    margin-left: 20px;
}

.btn-download-document {
    width: 30px;
    height: 30px;
    background-image: url('../images/common-icon/icon-download-documents.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

@media only screen and (min-width: 768px) {
    .id2html-container .additional-function-wrapper {
        padding: 30px 40px;
    }
}

.additional-function-wrapper .additional-function-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    margin-bottom: 18px;
}

.additional-function-list .label {
    position: relative;
    display: block;
    padding: 12px 15px 12px 50px;
    margin: 0;
}

.additional-function-list .label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.additional-function-list .label.msg::before {
    background-image: url('../images/common-icon/icon-id2html-message.svg');
}

.additional-function-list .label.add2fav::before {
    background-image: url('../images/common-icon/icon-add-to-favorites.svg');
}

.related-courses-wrapper .related-courses-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    margin: 0;
    padding: 20px 0 20px 0;
}

@media only screen and (min-width: 768px) {
    .related-courses-wrapper .related-courses-title {
        padding: 10px 40px 20px 40px;
    }
}

.related-courses-list {
    margin-bottom: 0;
}

.related-courses-list li {
    position: relative;
    padding: 25px 0;
    border-top: 1px solid #DDDDDD;
}

@media only screen and (min-width: 768px) {
    .related-courses-list li {
        padding: 25px 40px;
    }
}

.related-courses-list li:last-of-type {
    border-bottom: 1px solid #DDDDDD;
}

.related-courses-list li::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url('../images/common-icon/icon-related-courses.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media only screen and (min-width: 768px) {
    .related-courses-list li::before {
        left: 40px;
    }
}

.related-courses-list label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 50px;
    margin: 0;
}
/* Id to HTML style End */

/* Package course style */

.package-course-container .package-course-wrapper {
    padding: 0;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .package-course-container .package-course-wrapper {
        background-color: #fff;
        padding: 30px;
        margin-bottom: 60px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }
}

.package-course-header {
    margin-bottom: 30px;
}

.package-course-wrapper .package-course-title {
    font-size: 22px;
    font-weight: 700;
    color: #5877FF;
    color: var(--theme-primary-color);
    /*overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;*/
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .package-course-wrapper .package-course-title {
        font-size: 28px;
    }
}

.package-course-content .content-row .content-left-col {
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .package-course-content .content-row {
        display: -ms-flexbox;
        display: flex;
    }

    .package-course-content .content-row .content-left-col {
        margin-bottom: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .package-course-content .content-row .content-right-col {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        padding-left:20px;
    }
}

@media only screen and (min-width: 992px) {
    .package-course-content .content-row .content-left-col {
        -ms-flex: 0 0 355px;
        flex: 0 0 355px;
        max-width: 355px;
    }
}

.package-course-content .course-deatils-thumbnail {
    position: relative;
    margin-bottom: 20px;
}

.package-course-content .course-deatils-thumbnail > img {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .package-course-content .course-deatils-thumbnail > img {
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 992px) {
    .package-course-content .course-deatils-thumbnail > img {
        width: 100%;
        max-width: 355px;
    }
} 

.package-course-content .progress {
    height: 34px;
    font-size: 18px;
    color: var(--progress-bar-text);
    background-color: var(--progress-bar-progress);
    border-radius: 0;
}

.package-course-content .progress .progress-bar {
    background-color: var(--progress-bar-bg);
    text-align: left;
    text-indent: 10px;
}

.package-course-content .course-deatils-info .course-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.package-course-content .course-deatils-info .course-info > li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0 0 20px 0;
    padding: 0;
    border: none;
}

.package-course-content .course-deatils-info .course-info > li label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    margin-right: 5px;
}

.package-course-content .course-deatils-info .course-info > li span {
    font-size: 14px;
    font-weight: 400;
}

.package-course-content .course-deatils-info .course-info > li a {
    color: #5877FF;
    color: var(--anchor-color);
}

.package-course-content .button-wrapper {
    margin-top: auto;
}

.package-course-content .button-wrapper .btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 5px 20px;
}


@media only screen and (min-width: 768px) {
    .prerequisites-modal .modal-dialog {
       max-width: 700px;
    }
}

.prerequisites-modal .modal-content {
    border-top: 10px solid #5877FF;
    border-top: 10px solid var(--theme-primary-color);
}

.prerequisites-modal .modal-header {
    background-color: #fff;
    border-bottom: 1px solid #fff;
}

.prerequisites-modal .modal-header .modal-title {
    color: #fff;
}

.prerequisites-modal .modal-footer {
    padding: 20px 30px;
    border-top: none;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.prerequisites-modal .modal-footer .btn {
    font-size: 16px;
    line-height: normal;
    padding: 8px 20px;
}

.prerequisites-modal .modal-body {
    padding: 0;
}

.prerequisites-modal .prerequisites-course-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.prerequisites-modal .prerequisites-course-list li {
    position: relative;
    display: block;
    padding: 20px 30px;
    border-bottom: 1px solid #DEE0E2;
}

.prerequisites-modal .prerequisites-course-list li::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../images/common-icon/icon-prerequisites-course-uncomplete.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    left: auto;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.prerequisites-modal .prerequisites-course-list li.completed::after {
    background-image: url('../images/common-icon/icon-prerequisites-course-complete.svg');
}

.prerequisites-modal .prerequisites-course-list .course-list-title {
    position: relative;
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #5B6770;
    padding-left: 25px;
}

.prerequisites-modal .prerequisites-course-list .course-list-title::before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 15px;
    background-image: url('../images/common-icon/icon-prerequisites-course.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.prerequisites-modal .prerequisites-course-list .course-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #5B6770;
    padding: 0 25px;
}

/* Package course style */

/* ::::: course Details Template style End ::::: */


/* ---------- Course Inner Pages Style ----------  */

/* ::::: course content Sidebar style ::::: */
.bookreader-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    width: 100%;
    z-index: 15;
    background-color: transparent;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform .3s ease, width .3s ease;
    -moz-transition: -moz-transform .3s ease, width .3s ease;
    transition: transform .3s ease, width .3s ease;
}

@media only screen and (min-width: 768px) {
    .bookreader-sidebar {
        width: 350px;
        width: var(--lrs-sidebar-width);
        left: 55px;
        left: var(--main-navigation-width);
    }
}

@media only screen and (min-width: 992px) {
    .content-body .base-container.toggle-off.sidebar-collapse .bookreader-sidebar {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .content-body .base-container.toggle-on.sidebar-collapse .bookreader-sidebar {
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.bookreader-sidebar .sidebar-trigger {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0;
    padding: 0;
    outline: 0;
    position: absolute;
    top: 60px;
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    background-image: url('../images/common-icon/icon-side-panel-close.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}

@media only screen and (min-width: 992px) {
    .bookreader-sidebar .sidebar-trigger {
        top: 70px;
    }

    .base-container.toggle-on .bookreader-sidebar .sidebar-trigger {
        display: block;
    }

    .base-container.toggle-off .bookreader-sidebar .sidebar-trigger {
        display: none;
    }
}

.bookreader-sidebar-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    -moz-transition: opacity .3s ease, visibility .3s ease;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 3;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

@media only screen and (min-width: 768px) {
    .bookreader-sidebar-overlay {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .content-body .bookreader-sidebar-overlay {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.base-container.sidebar-collapse .bookreader-sidebar {
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.base-container.sidebar-collapse .bookreader-sidebar-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sidebar-collapse .bookreader-sidebar .sidebar-trigger {
    background-image: url('../images/common-icon/icon-side-panel-open.svg');
}

.bookreader-sidebar .tab-container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 90%;
    min-height: 100%;
    background-color: #fff;
    background-color: var(--main-navigation-bg);
}

@media only screen and (min-width:768px) {
    .bookreader-sidebar .tab-container {
        width: 100%;
    }
}

.sidebar-collapse .tab-container {
    width: 100%;
}

.bookreader-sidebar .tab-nav-wrapper .arrow {
    display: block;
    width: 20px;
    height: 100%;
    background-color: #F3F6FF;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
}

.bookreader-sidebar .tab-nav-wrapper .arrow.left-arrow {
    left: 0;
    background-image: url('../images/common-icon/icon-sidebarTab-left-arrow.svg');
}

.bookreader-sidebar .tab-nav-wrapper .arrow.right-arrow {
    right: 0;
    background-image: url('../images/common-icon/icon-sidebarTab-right-arrow.svg');
}

.arrow.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bookreader-sidebar .tab-container .tab-nav-wrapper {
    position: relative;
    height: 50px;
    height: var(--sidebar-TopNav-height-small);
    padding: 0;
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
    border-top: 1px solid #CFD4E6;
    border-bottom: 1px solid #CFD4E6;
    overflow-y: hidden;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width:992px) {
    .bookreader-sidebar .tab-container .tab-nav-wrapper {
        height: 70px;
        height: var(--sidebar-TopNav-height-large);
        background-color: #FFF;
        border-top: 1px solid #FFF;
        border-bottom: 1px solid #FFF;
    }
}

.bookreader-sidebar .tab-nav-wrapper .tab-nav {
    position: relative;
    height: 50px;
    height: var(--lrsSidebar-TopNav-height-small);
}

@media only screen and (min-width: 992px) {
    .bookreader-sidebar .tab-nav-wrapper .tab-nav {
        height: 70px;
        height: var(--lrsSidebar-TopNav-height-large);
    }
}

.bookreader-sidebar .tab-nav-wrapper .tab-nav .tab-items {
    position: relative;
    display: inline-block;
    height: 50px;
    height: var(--lrsSidebar-TopNav-height-small);
}

@media only screen and (min-width: 992px) {
    .bookreader-sidebar .tab-nav-wrapper .tab-nav .tab-items {
        height: 70px;
        height: var(--lrsSidebar-TopNav-height-large);
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.tab-nav-wrapper .tab-nav .tab-items .tab-link:hover,
.tab-nav-wrapper .tab-nav .tab-items .tab-link {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
    letter-spacing: 0.085em;
    white-space: nowrap;
    cursor: pointer;
    margin: 0;
    padding: 0 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

@media only screen and (min-width: 768px) {
    .tab-nav-wrapper .tab-nav .tab-items .tab-link:hover,
    .tab-nav-wrapper .tab-nav .tab-items .tab-link {
        display: inline-block;
        height: auto;
        margin: 0 20px;
        padding: 5px 0;
    }
}

.tab-nav-wrapper .tab-nav .tab-items .tab-link.tab-active {
    color: #5877FF;
    color: var(--anchor-color);
    box-shadow: inset 0 -4px 0 #5877FF;
    box-shadow: inset 0 -4px 0 var(--anchor-color);
}

@media only screen and (min-width: 992px) {
    .tab-nav-wrapper .tab-nav .tab-items .tab-link.tab-active {
        box-shadow: inset 0 -2px 0 #5877FF;
        box-shadow: inset 0 -2px 0 var(--anchor-color);
    }
}

@media only screen and (min-width:768px) {
    .tab-nav-wrapper .tab-nav .tab-items .tab-link:hover,
    .tab-nav-wrapper .tab-nav .tab-items .tab-link {
        display: inline-block;
        height: auto;
        margin: 0 20px;
        padding: 5px 0;
    }
}

.tab-nav-wrapper .tab-link .badge {
    display: inline-block;
    padding: 0px;
    font-size: 10px;
    font-weight: 300;
    line-height: normal;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 50%;
    background-color: #00A3DA;
    margin-top: -5px;
    min-width: 24px;
    line-height: 23px;
    font-size: 0;
    background-color: #FF5858;
    width: 4px;
    height: 4px;
    min-width: 0;
    margin-top: -3px;
}

.tab-nav-wrapper .tab-link .badge:empty {
    display: none;
}

.bookreader-sidebar .tab-container .tab-content-wrapper {
    overflow-x: hidden;
    overflow-y: auto;
    /*height: calc( 100vh - (var(--lrsSidebar-TopNav-height-small) + var(--main-navigation-height-small)));*/
}

@media only screen and (min-width: 992px) {
    .bookreader-sidebar .tab-container .tab-content-wrapper {
        /*height: calc( 100vh - var(--lrsSidebar-TopNav-height-large));*/
    }
}

.bookreader-sidebar .tab-content-wrapper .tab-content {
    min-height: 100%;
    display: none;
}

.bookreader-sidebar .tab-content-wrapper .tab-content.show {
    display: block;
}

/* Overview Style */

.overview-wrapper {
    padding: 20px;
}

@media only screen and (min-width: 992px) {
    .overview-wrapper {
        padding: 15px 40px;
    }
}

.overview-wrapper .overview-title {
    font-size: 16px;
    font-weight: 700;
    color: #212C5B;
    color: var(--primary-text-color);
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
    .overview-wrapper .overview-title {
        font-size: 18px;
    }
}

.overview-wrapper .overview-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
}

@media only screen and (min-width: 992px) {
    .overview-wrapper .overview-content {
        font-size: 16px;
    }
}

/* End of overview Style */

/* Course Content Tab Style */

.tab-course-content-wrap {
    padding: 20px;
}

@media only screen and (min-width: 992px) {
    .tab-course-content-wrap {
        padding: 15px 40px;
    }
}

.tab-course-content-wrap .tab-course-content-title {
    font-size: 16px;
    font-weight: 700;
    color: #212C5B;
    color: var(--primary-text-color);
    margin-bottom: 0;
    word-break: break-word;
}

@media only screen and (min-width: 992px) {
    .tab-course-content-wrap .tab-course-content-title {
        font-size: 18px;
    }
}

/* End of Course Content Tab Style  */

/* Q & A Style */

.ask-question {
    padding: 5px 10px;
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.ask-question:first-of-type {
    padding-top: 10px;
}

.ask-question .user-img-wrap {
    flex-basis: 32px;
    max-width: 32px;
    margin-right: 5px;
}

.ask-question .user-img-wrap .user-img {
    display: inline-block;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #BBC9D7;
    background-size: cover;
}

.question-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 5px;
}

.comment-body textarea,
.question-wrap textarea {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 14px;
    border: 1px solid #EBEDED;
    border-radius: 3px;
    padding: 5px;
    background-color: #fff;
    resize: none;
    margin-bottom: 5px;
}

.ask-question .question-wrap {
    padding-bottom: 0;
}

.comment-wrap {
    background-color: #fff;
}

.tab-content > div > .comment-wrap.ng-scope {
    border-top: 1px solid #EBEDF5;
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
}

.tab-content > div > .comment-wrap.ng-scope > .comment-body .show-more {
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
}

.tab-content > div > .comment-wrap.ng-scope > .comment-body .show-more::before {
    background: rgba(242,243,247,0);
    background: -moz-linear-gradient(left, rgba(242,243,247,0) 0%, rgba(242,243,247,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(242,243,247,0)), color-stop(100%, rgba(242,243,247,1)));
    background: -webkit-linear-gradient(left, rgba(242,243,247,0) 0%, rgba(242,243,247,1) 100%);
    background: -o-linear-gradient(left, rgba(242,243,247,0) 0%, rgba(242,243,247,1) 100%);
    background: -ms-linear-gradient(left, rgba(242,243,247,0) 0%, rgba(242,243,247,1) 100%);
    background: linear-gradient(to right, rgba(242,243,247,0) 0%, rgba(242,243,247,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f3f7', endColorstr='#f2f3f7', GradientType=1 );
}

.comment-wrap .comment-header {
    padding: 5px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.comment-wrap .comment-header .user-img {
    display: inline-block;
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #BBC9D7;
    margin-right: 6px;
    vertical-align: middle;
    max-width: 32px;
    background-size: cover;
}

.comment-wrap .comment-header .user-name {
    font-size: 14px;
    font-weight: 700;
    color: #212C5B;
    color: var(--primary-text-color);
    line-height: 32px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.comment-wrap .comment-header .user-name small {
    font-size: 14px;
    font-weight: 300;
    color: #333;
    line-height: 32px;
}

.comment-wrap .comment-body {
    padding: 0 10px 0 46px;
}

.comment-wrap .comment-body .comment-content {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

.comment-wrap .comment-body .comment-content p {
    font-size: 14px;
    color: #212C5B;
    color: var(--primary-text-color);
    line-height: 17px;
    margin-bottom: 0;
}

.comment-wrap .comment-body .show-more {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #fff;
    max-height: 17px;
}

.comment-wrap .comment-body .show-more::before {
    content: '';
    width: 15px;
    height: 100%;
    position: absolute;
    left: -15px;
    top: 0;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.comment-wrap .comment-body .show-more a {
    display: block;
    font-size: 14px;
    color: #BBC9D7;
}

.comment-wrap .comment-action {
    margin: 10px 0 0 0;
    padding-bottom: 5px;
}

.comment-wrap .comment-action .comment-replay {
    font-size: 12px;
    line-height: 14px;
    color: #BBC9D7;
}

.comment-wrap .comment-action .got-answers {
    font-size: 12px;
    line-height: 14px;
    color: #333;
}

.comment-wrap .comment-footer .ask-question {
    padding: 10px;
}

.comment-wrap .comment-wrap {
    padding-left: 45px;
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
}

.comment-wrap .comment-wrap .comment-header {
    padding: 5px 5px 5px 0;
}

.comment-wrap .comment-wrap .comment-body {
    padding-left: 0;
}

.comment-wrap .comment-wrap .comment-body .show-more {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #f2f3f7;
    max-height: 17px;
}

.comment-wrap .comment-wrap .comment-body .show-more::before {
    content: '';
    width: 15px;
    height: 100%;
    position: absolute;
    left: -15px;
    top: 0;
    background: linear-gradient(to left, #F2F3F7, rgba(242, 243, 247, 0));
    background: -webkit-linear-gradient( right, var(--body-bg-color), rgba(242, 243, 247, 0));
    background: linear-gradient(to left,var(--body-bg-color), rgba(242, 243, 247, 0));
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* End of Q & A Style */

/* remedial content style */

.remedial-list-wrap {
    position: relative;
}

.remedial-list-wrap .remedial-list-content {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    color: #212C5B;
    color: var(--primary-text-color);
    position: relative;
    overflow: hidden;
    padding: 6px 20px;
    text-align: left;
    cursor: pointer;
}

.remedial-section-title {
    margin-bottom: 30px;
}
.remedial-section-title h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #1D2858;
    color: var(--theme-secodary-color);
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .remedial-section-title h2 {
        font-size: 28px;
    }
}

.remedial-section-subTitle {
    margin-bottom: 20px;
}

.remedial-section-subTitle h3 {
    font-size: 18px;
    font-weight:700;
    line-height: 1.5;
    color: #1D2858;
    color: var(--theme-secodary-color);
}

.remedial-url {
    margin-bottom: 40px;
}

.remedial-url-list li {
    margin-bottom: 10px;
}

.remedial-section-wrapper .remedial-section .course-section {
    margin-bottom: 10px;
}

.remedial-section-wrapper .suggest-text-wrap {
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: 40px;
}

@media only screen and (min-width:992px) {
    .remedial-section-wrapper .suggest-text-wrap {
        padding: 25px 30px;
    }
}

.suggest-text-wrap .suggest-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #1D2858;
    color: var(--theme-secodary-color);
}
/* remedial content style End */
/* ::::: course content Sidebar style End ::::: */
/* :::::: Course Dashboard Tabs ::::::::::  */
@media only screen and (min-width: 768px) {
    .course-content-container {
        min-height: 100vh;
        padding: 0 60px 0 60px;
        background-color: #F2F3F7;
        background-color: var(--body-bg-color);
    }
}

@media only screen and (min-width: 992px) {
    .base-container.toggle-on.sidebar-open .course-content-container {
        margin-left: 0;
    }

    .base-container.toggle-off .course-content-container {
        margin-left: 350px;
        margin-left: var(--lrs-sidebar-width);
    }
}

.course-content-container .course-dashboard-nav {
    position: relative;
}

.course-content-container .course-dashboard-nav::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to left, #F2F3F7, rgba(242, 243, 247, 0));
    background: -webkit-linear-gradient( right, var(--body-bg-color), rgba(242, 243, 247, 0));
    background: linear-gradient(to left, var(--body-bg-color), rgba(242, 243, 247, 0));
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.course-content-container .course-dashboard-nav.is-ended::after {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.course-content-container .top-navigation {
    position: relative;
    padding: 0;
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
    border-top: 1px solid #CFD4E6;
    border-bottom: 1px solid #CFD4E6;
    height: 50px;
    height: var(--lrsSidebar-TopNav-height-small);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 768px) {
    .course-content-container .top-navigation {
        background-color: #F2F3F7;
        background-color: var(--body-bg-color);
        border-top: 1px solid #F2F3F7;
        border-top: 1px solid var(--body-bg-color);
        border-bottom: 1px solid #F2F3F7;
        border-bottom: 1px solid var(--body-bg-color);
    }
}

@media only screen and (min-width: 992px) {
    .course-content-container .top-navigation {
        height: 70px;
        height: var(--lrsSidebar-TopNav-height-large);
    }
}

.course-content-container .top-navigation .btn-library-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

@media only screen and (min-width: 768px) {
    .course-content-container .top-navigation .btn-library-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.btn-library-wrap .btn-go-library {
    font-family: 'Barlow', sans-serif;
    font-family: var(--Primary-font-family);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #5877FF;
    color: var(--anchor-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-left: 15px;
    white-space: nowrap;
    cursor: pointer;
}

.btn-library-wrap .btn-go-library::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 10px;
    background-image: url(../images/common-icon/icon-arrow-left-blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.course-content-container .top-navigation .course-dashboard-tabs {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
}

.course-dashboard-tabs ul {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    border: none;
    list-style-type: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.course-dashboard-tabs ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.course-dashboard-tabs ul > li:first-of-type {
    padding-left: 35px;
}

@media only screen and (min-width: 992px) {
    .course-dashboard-tabs ul > li:first-of-type {
        padding-left: 0;
    }
}

.course-dashboard-tabs ul > li > a {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
    letter-spacing: 0.085em;
    cursor: pointer;
    margin: 0;
    padding: 0 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.course-dashboard-tabs ul > li > a:hover {
    text-decoration: none;
}

.course-dashboard-tabs ul > li > a.active {
    color: #5877FF;
    color: var(--anchor-color);
    box-shadow: inset 0 -2px 0 #5877FF;
    box-shadow: inset 0 -2px 0 var(--anchor-color);
}

@media only screen and (min-width: 768px) {
    .course-dashboard-tabs ul > li > a {
        display: inline-block;
        height: auto;
        margin: 0 20px;
        padding: 5px 0;
    }

    .course-dashboard-tabs ul > li:first-of-type > a {
        margin-left: 40px;
    }
}

/* :::::::::: End of Course Dashboard Tabs ::::::::::  */

/* :::::::::: Course dashboard Style :::::::::: */

.courseDashboard-wrap {
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    .courseDashboard-wrap {
        padding: 60px;
    }

}

.courseDashboard-wrap .courseDashboard-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.083em;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
}

.courseDashboard-wrap select {
    padding: 5px;
    min-width: 200px;
    cursor: pointer;
}

.selectTest-btn-wrap {
    margin: 15px 0;
}

.selectTest-btn-wrap .btn {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-family: var(--Primary-font-family);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    color: var(--btn-primary-text);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    padding: 5px 15px;
    border-radius: 0;
    background-color: #5877ff;
    background-color: var(--btn-primary-bg);
    width: auto;
    cursor: pointer;
}

/* :::::::::: End of Course dashboard Style :::::::::: */

/* :::::::::: other Type Wrapper Style :::::::::: */

.course-content-container .otherTypeWrapper {
    position: relative;
    /*min-height: calc(100% - 50px);
    min-height: calc(100vh - var(--lrsSidebar-TopNav-height-small));*/
}

@media only screen and (min-width: 768px) {
    .course-content-container .otherTypeWrapper {
        position: relative;
        /*min-height: calc(100vh - 70px);
        min-height: calc(100vh - var(--lrsSidebar-TopNav-height-large));*/
    }
}

.course-content-container .otherTypeWrapper .articulate-wrapper {
    min-height: calc(100% - 50px);
    min-height: calc(100vh - var(--lrsSidebar-TopNav-height-small));
}

@media only screen and (min-width: 768px) {
    .course-content-container .otherTypeWrapper .articulate-wrapper {
        min-height: calc(100vh - 70px);
        min-height: calc(100vh - var(--lrsSidebar-TopNav-height-large));
    }
}

.course-content-container .articulate-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
/* :::::::::: other Type Wrapper Style End :::::::::: */

/* :::::::::: LRS Container Style :::::::::: */

.course-content-container .go-content-wrapper .btn-go-content {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-family: var(--Primary-font-family);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.056em;
    padding: 20px;
    border-radius: 0;
    background-color: #5877FF;
    background-color: var(--anchor-color);
    width: 100%;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .course-content-container .go-content-wrapper .btn-go-content {
        font-size: 16px;
        text-align: left;
        letter-spacing: 0.0625em;
        padding: 20px 40px;
        border-radius: 0;
    }
}

/* :::::::::: End of LRS Container Style :::::::::: */


/* :::::::::: Assessment Style :::::::::: */

.assessment-test-wrapper {
    position: relative;
    padding: 20px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .assessment-test-wrapper {
        padding: 45px;
        background-color: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 60px;
    }
}

.assessment-test-wrapper::after {
    content: '';
    width: 90%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (min-width: 768px) {
    .assessment-test-wrapper::after {
        display: none;
    }
}

.assessment-test-wrapper .test-title {
    font-size: 16px;
    font-weight: 700;
    color: #5877FF;
    color: var(--theme-primary-color);
    text-transform: capitalize;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .assessment-test-wrapper .test-title {
        font-size: 18px;
        text-transform: uppercase;
    }
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table {
        display: table;
        width: 100%;
        border-spacing: 0;
        border-collapse: collapse;
    }
}

.assessment-responsive-table .assessment-table-thead {
    display: none;
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-thead {
        display: table-header-group;
    }
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-thead .assessment-table-th {
        display: table-cell;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.5;
        color: #1D2858;
        color: var(--primary-text-color);
        text-transform: uppercase;
        letter-spacing: 0.085em;
        text-align: left;
        background-color: #fff;
        border: 0;
        border-bottom: 1px solid #EBEDF5;
        padding: 20px 10px;
    }
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-tbody {
        display: table-row-group;
    }
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-tr {
        display: table-row;
    }
}

.assessment-responsive-table .assessment-table-tbody .assessment-table-tr {
    margin-bottom: 25px;
}

.assessment-responsive-table .assessment-table-tbody .assessment-table-tr:only-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-tbody .assessment-table-tr {
        margin-bottom: 0;
        cursor: pointer;
    }
}

.assessment-responsive-table .assessment-table-tr > .assessment-table-td {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-tr > .assessment-table-td {
        display: table-cell;
        padding: 20px 10px;
        cursor: pointer;
        max-width: 0;
    }

    .assessment-responsive-table .assessment-table-tr:hover .assessment-table-td {
        background-color: #D5DCF2;
        -webkit-transition: background 0.2s ease;
        -moz-transition: background 0.2s ease;
        transition: background 0.2s ease;
    }
}

.assessment-responsive-table .assessment-table-td .assessment-table-label {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}

.assessment-responsive-table .assessment-table-td .assessment-table-dataWrap {
    display: inline-block;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-td .assessment-table-dataWrap {
        position: relative;
        display: inline-block;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
}

.assessment-table-dataWrap .assessment-test-name {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.assessment-responsive-table .assessment-table-dataWrap .test-status-bullet {
    display: inline-block;
    height: 6px;
    width: 6px;
    border-radius: 50%;
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-dataWrap .test-status-bullet {
        position: absolute;
        left: -10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.assessment-responsive-table .assessment-table-dataWrap .test-status-bullet.test-completed {
    background-color: #71E183;
}

.assessment-responsive-table .assessment-table-dataWrap .test-status-bullet.test-inprogress {
    background-color: #FF5858;
}

.assessment-responsive-table .assessment-table-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: capitalize;
    letter-spacing: 0.085em;
    text-align: left;
    margin: 0;
}

@media only screen and (min-width: 992px) {
    .assessment-responsive-table .assessment-table-label {
        display: none;
    }
}

.assessment-responsive-table .retryspan,
.assessment-responsive-table .retry-test {
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding-left: 20px;
    margin-left: 10px;
    cursor: pointer;
    color: #5877FF;
    color: var(--anchor-color);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-image: url('../images/common-icon/icon-retry.svg');
}

/* :::::::::: Assessment Style End :::::::::: */

/* ::::::::::  Assignment Style ::::::::::  */

.assignment-container {
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .assignment-container {
        margin-bottom: 40px;
    }
}

.student-assiment-wrapper {
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    .student-assiment-wrapper {
        padding: 45px;
        background-color: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

.student-assiment-wrapper .student-assiment-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #5877FF;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    letter-spacing: 0.0556em;
    margin-bottom: 30px;
}

.student-assiment-wrapper .student-assiment-alert {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    margin-left: -45px;
    margin-right: -45px;
    margin-bottom: 40px;
    margin-top: 30px;
    padding: 20px 45px;
    border-radius: 0;
    color: #1D2858;
    background-color: #B2C0FF;
    border-color: #B2C0FF;
}

.student-assiment-wrapper .student-assiment-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #1D2858;
    color: var(--primary-text-color);
    text-transform: uppercase;
    letter-spacing: 0.085em;
}

.student-assiment-wrapper .student-assiment-uploadFile {
    position: relative;
}

.student-assiment-wrapper .student-assiment-uploadFile input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.student-assiment-wrapper .student-assiment-uploadFile input[type="file"]:disabled + .btn {
    cursor: not-allowed;
    opacity: 0.5;
}

.student-assiment-wrapper .student-assiment-uploadFile #fileuploadFileName {
    font-size: 14px;
}

.student-assiment-wrapper .student-assiment-uploadFile .btn-secondary {
    color: #1D2858;
    background-color: #eee;
    border-color: #eee;
    margin-right: 15px;
}

.student-assiment-wrapper .supportfile-list {
    font-size: 14px;
    margin-bottom: 20px;
}

.student-assiment-wrapper .pdf-name {
    display: inline-block;
    vertical-align: top;
    margin-top: -5px;
}

.student-assiment-wrapper .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
}

.icon.icon-pdf {
    background-image: url('../images/common-icon/icon-assigment-pdf.svg');
    vertical-align: top;
    margin-right: 10px;
}

.footerbtn-wrapper .btnPrimary {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 0.0625em;
    text-transform: uppercase;
    text-align: left;
    background-color: #5877FF;
    padding: 20px 40px;
    border: none;
    outline: none;
}

.footerbtn-wrapper .btnSecondary:hover,
.footerbtn-wrapper .btnSecondary {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 0.0625em;
    text-transform: uppercase;
    text-align: left;
    background-color: #1D2858;
    padding: 20px 40px;
    border: none;
    outline: none;
    text-decoration: none;
}
table.table-testHistory {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    margin-left: -10px;
    margin-right: -10px;
}

table.table-testHistory thead tr th {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #212C5B;
    text-transform: uppercase;
    letter-spacing: 0.085em;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #EBEDF5;
    padding: 18px 15px;
}

table.table-testHistory tr td {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212C5B;
    background-color: #fff;
    border: 0;
    padding: 10px 15px;
    vertical-align: middle;
}

table.table-testHistory tbody tr:first-of-type td {
    padding-top: 20px;
    position: relative;
}

table.table-testHistory tbody tr:last-of-type td {
    padding-bottom: 0;
}

table.table-testHistory tr td.test-name {
    max-width: 200px;
}

table.table-testHistory tr td.percentage {
    width: 100px;
}

table.table-testHistory tr td.date {
    width: 110px;
}

table.table-testHistory tr td.status {
    width: 130px;
}

table.table-testHistory tr td.attempt {
    width: 110px;
}

table.table-testHistory tr td.scoring-methodology {
    width: 200px;
}

table.table-testHistory td.datarowfirst {
    width: 55%;
}

table.table-testHistory td.datarowfirst span {
    display: inline-block;
    vertical-align: middle;
}

table.table-testHistory tr td .text-name-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 700;
    color: #212C5B;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

table.table-testHistory tr td .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

table.table-testHistory tr td:first-of-type .test-status-bullet {
    display: inline-block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    border-radius: 100%;
    margin: 0 7px 0 -15px;
}

table.table-testHistory .text-name-wrap .test-status-bullet {
    display: inline-block;
    position: absolute;
    left: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

table.table-testHistory td .availabeOn {
    display: inline-block;
    color: #5877FF;
    cursor: pointer;
}

table.table-testHistory tr td .test-name {
    font-size: 16px;
    font-weight: 700;
    color: #212C5B;
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media only screen and (min-width:992px) {
    .assignment-responsive-table {
        display: table;
        width: 100%;
        border-spacing: 0;
        border-collapse: collapse;
    }
}

.assignment-responsive-table .assignment-table-thead {
    display: none;
}

@media only screen and (min-width:992px) {
    .assignment-responsive-table .assignment-table-thead {
        display: table-header-group;
    }

    .assignment-responsive-table .assignment-table-tbody {
        display: table-row-group;
    }
}

.assignment-responsive-table .assignment-table-tbody .assignment-table-tr {
    margin-bottom: 25px;
    cursor: pointer;
}

.assignment-responsive-table .assignment-table-tbody .assignment-table-tr:only-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
    .assignment-responsive-table .assignment-table-thead .assignment-table-th {
        display: table-cell;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.5;
        color: #212C5B;
        text-transform: uppercase;
        letter-spacing: 0.085em;
        text-align: left;
        background-color: #fff;
        border: 0;
        border-bottom: 1px solid #EBEDF5;
        padding: 20px 10px;
    }

    .assignment-responsive-table .assignment-table-tr {
        display: table-row;
    }

    .assignment-responsive-table .assignment-table-tbody .assignment-table-tr {
        display: table-row;
        margin-bottom: 0;
        cursor: pointer;
    }
}

.assignment-responsive-table .assignment-table-tr > .assignment-table-td {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding-bottom: 20px;
}

@media only screen and (min-width:992px) {
    .assignment-responsive-table .assignment-table-tr > .assignment-table-td {
        display: table-cell;
        padding: 20px 10px;
        cursor: pointer;
        max-width: 0;
    }

    .assignment-responsive-table .assignment-table-tr:hover .assignment-table-td {
        background-color: #D5DCF2;
        -webkit-transition: background 0.2s ease;
        -moz-transition: background 0.2s ease;
        transition: background 0.2s ease;
    }

    .assignment-table-td .test-name-wrap {
        font-size: 16px;
        margin-bottom: 0;
    }
}

.assignment-responsive-table .assignment-table-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: capitalize;
    letter-spacing: 0.085em;
    text-align: left;
    margin: 0;
}

.assignment-responsive-table .assignment-table-td .assignment-table-label {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}

@media only screen and (min-width: 992px) {
    .assignment-responsive-table .assignment-table-label {
        display: none;
    }
}

.assignment-responsive-table .assignment-table-td .assignment-table-dataWrap {
    display: inline-block;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}

@media only screen and (min-width: 992px) {
    .assignment-responsive-table .assignment-table-td .assignment-table-dataWrap {
        position: relative;
        display: inline-block;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
}

.assignment-table-dataWrap .assignment-test-name {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ::::::::::  End of Assignment Style ::::::::::  */


/* :::::::::: Performance Style :::::::::: */

.performance-container {
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    .performance-container {
        padding: 45px;
        background-color: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 65px;
    }
}

.performance-container .test-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #5877FF;
    color: var(--theme-primary-color);
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

@media only screen and (min-width: 992px) {
    .performance-container .test-title {
        font-size: 18px;
        letter-spacing: 0.0556em;
    }
}

@media only screen and (min-width: 992px) {
    .performance-container .performance-table-offset {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media only screen and (min-width: 992px) {
    .performance-responsive-table {
        display: table;
        width: 100%;
        border-spacing: 0;
        border-collapse: collapse;
    }
}

.performance-responsive-table .performance-table-thead {
    display: none;
}

@media only screen and (min-width: 992px) {
    .performance-responsive-table .performance-table-thead {
        display: table-header-group;
    }

    .performance-responsive-table .performance-table-thead .performance-table-th {
        display: table-cell;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.5;
        color: #1D2858;
        color: var(--primary-text-color);
        text-transform: uppercase;
        letter-spacing: 0.085em;
        text-align: left;
        background-color: #fff;
        border: 0;
        border-bottom: 1px solid #EBEDF5;
        padding: 20px 10px;
    }
}

@media only screen and (min-width: 992px) {
    .performance-responsive-table .performance-table-tbody {
        display: table-row-group;
    }
}

@media only screen and (min-width: 992px) {
    .performance-responsive-table .performance-table-tr {
        display: table-row;
    }
}

.performance-responsive-table .performance-table-tbody .performance-table-tr {
    margin-bottom: 30px;
    cursor: pointer;
    border-bottom: 1px solid #E6E9F2;
}

@media only screen and (min-width: 992px) {
    .performance-responsive-table .performance-table-tbody .performance-table-tr {
        margin-bottom: 0;
        cursor: pointer;
        border-bottom: 0;
    }
}

@media only screen and (min-width: 992px) {
    .performance-responsive-table .performance-table-tr > .performance-table-td {
        display: table-cell;
        padding: 20px 10px;
        cursor: pointer
    }

    .performance-responsive-table .performance-table-tr:hover .performance-table-td {
        background-color: #D5DCF2;
        -webkit-transition: background 0.2s ease;
        -moz-transition: background 0.2s ease;
        transition: background 0.2s ease;
    }

    .performance-responsive-table .performance-table-tr > .performance-table-td:first-of-type {
        width: 50%;
        max-width: 0;
    }

    .Performance-responsive-table .performance-table-tr > .performance-table-td:last-of-type {
        width: 20%;
    }
}

.performance-table-td .test-name-wrap {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media only screen and (min-width: 992px) {
    .performance-table-td .test-name-wrap {
        font-size: 16px;
        margin-bottom: 0;
    }
}

.performance-table-td .scoring-methodology-wrap {
    margin-bottom: 20px;
    font-size: 16px;
}

@media only screen and (min-width: 992px) {
    .performance-table-td .scoring-methodology-wrap {
        margin-bottom: 0;
    }
}

.scoring-methodology-wrap .scoring-methodology-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    color: #212C5B;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    .scoring-methodology-wrap .scoring-methodology-title {
        display: none;
    }
}

.performance-table-td .subject-score {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
}

@media only screen and (min-width: 992px) {
    .performance-table-td .subject-score {
        margin-bottom: 0;
    }
}

.subject-score .subject-score-percentage {
    font-size: 16px;
    padding-right: 20px;
}

.subject-score .subject-progress-wrap {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

@media only screen and (min-width: 992px) {
    .subject-score .subject-progress-wrap {
        display: none;
    }
}

.subject-score .subject-progress-wrap .progress {
    height: 8px;
    background-color: #DDDDDD;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.subject-score .subject-progress-wrap .progress-bar {
    box-shadow: none;
}

.subject-score .subject-progress-wrap .progress-bar.bg-strong {
    background-color: #A1D00B;
}

.subject-score .subject-progress-wrap .progress-bar.bg-average {
    background-color: #D4DCF3;
}

.subject-score .subject-progress-wrap .progress-bar.bg-weak {
    background-color: #FF5A54;
}

.performance-container .select-test-wrap {
    display: -ms-flexbox;
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .performance-container .select-test-wrap {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 30px;
    }
}

.performance-container .select-test-wrap .select-test {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 5px;
    padding-right: 5px;
}

@media only screen and (min-width: 768px) {
    .performance-container .select-test-wrap .select-test {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .performance-container .select-test-wrap .select-test.dropdown-attempt {
        position: relative;
    }

    .performance-container .select-test-wrap .select-test.dropdown-attempt::after {
        content: '/';
        display: inline-block;
        position: absolute;
        left: -1px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 26px;
    }
}

.performance-container .overallperformance-graph {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
    .performance-container .overallperformance-graph {
        margin-left: -30px;
        margin-right: -30px;
        margin-bottom: 15px;
    }
}

.testPerformance-responsive-table {
    display: table;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.testPerformance-responsive-table .performance-table-thead {
    display: table-header-group;
}

.testPerformance-responsive-table .performance-table-tbody {
    display: table-row-group;
}

.testPerformance-responsive-table .performance-table-tr {
    display: table-row;
}

.testPerformance-responsive-table .performance-table-thead .performance-table-th {
    display: table-cell;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: capitalize;
    letter-spacing: 0.085em;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #EBEDF5;
    padding: 10px;
}

.testPerformance-responsive-table .performance-table-tr > .performance-table-td {
    display: table-cell;
    padding: 15px 10px;
    cursor: pointer;
}

.testPerformance-responsive-table .performance-table-tr:hover .performance-table-td {
    background-color: #D5DCF2;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

.testPerformance-responsive-table .performance-table-tr > .performance-table-td:last-of-type {
    width: 30%;
}

.attempt-score-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    background-color: #F2F3F7;
    background-color: var(--body-bg-color);
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    .attempt-score-wrapper {
        margin-left: auto;
        margin-right: auto;
        background-color: transparent;
        padding: 0;
    }
}

.attempt-score-wrapper .attempt-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212C5B;
    color: var(--primary-text-color);
}

@media only screen and (min-width: 768px) {
    .attempt-score-wrapper .attempt-title {
        display: none;
    }
}

.attempt-score-wrapper .score-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.attempt-score-wrapper .score-list > .score-list-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
    margin-bottom: 24px;
}

@media only screen and (min-width: 768px) {
    .attempt-score-wrapper .score-list > .score-list-item {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: none;
        padding-right: 100px;
    }
}

.attempt-score-wrapper .score-list .total-score-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    color: #1D2858;
    color: var(--primary-text-color);
}

.attempt-score-wrapper .score-list .total-score-detail {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #1D2858;
    color: var(--primary-text-color);
}

.attempt-result-wrapper .score-percentage-wrap {
    margin-left: -20px;
    margin-right: -20px;
}

@media only screen and (min-width: 768px) {
    .attempt-result-wrapper .score-percentage-wrap {
        margin-left: auto;
        margin-right: auto;
    }
}

.attempt-result-wrapper .score-percentage-wrap .progress {
    height: 16px;
    margin-bottom: 0;
    background-color: #D5DCF2;
    background-color: var(--progress-bar-bg);
    border-radius: 0;
    box-shadow: none;
}

@media only screen and (min-width: 768px) {
    .attempt-result-wrapper .score-percentage-wrap .progress {
        height: 30px;
        margin-bottom: 0;
        background-color: #D5DCF2;
        background-color: var(--progress-bar-bg);
        border-radius: 0;
        box-shadow: none;
    }
}


.attempt-result-wrapper .score-percentage-wrap .progress .progress-bar {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: transparent;
    background-color: #1D2858;
    background-color: var(--progress-bar-progress);
    text-align: left;
}

@media only screen and (min-width: 768px) {
    .attempt-result-wrapper .score-percentage-wrap .progress .progress-bar {
        font-size: 20px;
        font-weight: 700;
        line-height: 100px;
        color: #FFF;
        color: var(--progress-bar-text);
        text-align: left;
    }
}

.score-percentage-wrap .progress-bar > span {
    margin-left: 20px;
}

@media only screen and (min-width: 768px) {
    .attempt-result-wrapper .score-percentage-wrap .progress-bar > span {
        margin-left: 35px;
    }
}

@media only screen and (min-width: 768px) {
    .attempt-table-wrap {
        margin-top: 22px;
    }
}

.attempt-details-table {
    margin-top: 12px;
    margin-bottom: 0;
}

table.attempt-details-table tr > th {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: #212C5B;
    color: var(--primary-text-color);
    text-transform: uppercase;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #EBEDF5;
    padding: 18px 10px;
}

table.attempt-details-table tr > td {
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    border: 0;
    padding: 18px 10px;
}

table.attempt-details-table span.useth-attemptedsymbol {
    width: 14px;
    height: 14px;
    background-color: #3f8ffb;
    display: inline-block;
    border-radius: 100%;
}

table.attempt-details-table span.useth-correctsymbol {
    width: 14px;
    height: 14px;
    background-color: #85da00;
    display: inline-block;
    border-radius: 100%;
}

@media only screen and (min-width: 768px) {
    table.attempt-details-table span.useth-attemptedsymbol,
    table.attempt-details-table span.useth-correctsymbol {
        display: none;
    }
}

table.attempt-details-table span.useth-attemptedtext,
table.attempt-details-table span.useth-correcttext,
.useth-pertext {
    display: none;
}

@media only screen and (min-width: 768px) {
    table.attempt-details-table span.useth-attemptedtext,
    table.attempt-details-table span.useth-correcttext,
    .useth-pertext {
        display: inline-block;
    }
}

.btn-round.btn-xs {
    width: 8px;
    height: 12px;
    border-radius: 50%;
    cursor: default;
    padding: 1px 5px;
}

.sorttable-btm,
.sorttable-tp {
    display: block;
    width: 14px;
    height: 20px;
    cursor: pointer;
}

.sorttable-btm {
    background: url(../images/bottom-sort.png) no-repeat 0 4px;
}

.sorttable-tp {
    background: url(../images/top-sort.png) no-repeat 0 4px;
}

.btn-strong {
    background-color: #A1D00B;
}

.btn-average {
    background-color: #D4DCF3;
}

.btn-weak {
    background-color: #FF5A54;
}

/* :::::::::: Performance Style End :::::::::: */

/* ---------- Course Inner Pages Style End ----------  */

/* =============== Course List Page style End =============== */

/* =============== Track Progress Page Style =============== */

.analytics-container {
    width: 100%;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) {
    .analytics-container {
        padding: 60px;
    }
}

.analytics-container .analytics-wrapper {
    background-color: #fff;
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    .analytics-container .analytics-wrapper {
        padding: 40px 45px;
    }
}

.analytics-header .page-title {
    font-size: 22px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media only screen and (min-width: 768px) {
    .analytics-header .page-title {
        font-size: 28px;
    }
}

.analytics-header .heade-link {
    font-size: 18px;
    font-weight: 700;
}

.medal-section {
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE;
}

@media only screen and (min-width: 768px) {
    .medal-section {
        padding: 40px 0;
    }
}

.medal-wrapper {
    display: -ms-flexbox;
    display: flex;
}

.medal-wrapper .medal-wrap {
    padding: 0 10px;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

@media only screen and (min-width: 768px) {
    .medal-wrapper .medal-wrap {
        padding: 0 20px;
        -ms-flex: 0 0 140px;
        flex: 0 0 140px;
        max-width: 140px;
    }
}

.medal-wrap p {
    font-size: 16px;
    text-align: center;
    color: #5B6770;
}

@media only screen and (min-width: 768px) {
    .medal-wrap p {
        font-size: 18px;
    }
}

.medal-wrap .medal {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.medal-wrap .medal.gold {
    background-image: url('../images/common-icon/icon-badges-gold.svg');
}

.medal-wrap .medal.silver {
    background-image: url('../images/common-icon/icon-badges-silver.svg');
}

.medal-wrap .medal.bronze {
    background-image: url('../images/common-icon/icon-badges-bronze.svg');
}

.analytics-report-wrapper {
    padding: 30px 0;
}

@media only screen and (min-width: 768px) {
    .analytics-report-wrapper {
        padding: 60px 0;
    }
}

@media only screen and (min-width: 992px) {
    .vertical-bar-container {
        padding-right: 35px;
    }
    .progress-bar-container {
        padding-left: 35px;
    }
}

.time-report-wrap {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
}

.time-report-wrap .time-wrap {
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
}

@media only screen and (min-width: 768px) {
    .time-report-wrap .time-wrap {
        -ms-flex: 1 0 140px;
        flex: 1 0 140px;
        max-width: 140px;
        margin-right: 90px;
    }

    .time-report-wrap .time-wrap:last-of-type {
        margin-right: 0;
    }
}

.analytics-report-wrapper .time-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1D2858;
    color: var(--theme-secodary-color);
    margin-bottom: 0;
}

.analytics-report-wrapper .time-wrap h3 small {
    font-size: 12px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    text-transform: uppercase;
    margin-left: 5px;
}

.analytics-report-wrapper .time-wrap p {
    font-size: 12px;
    font-weight: 700;
    color: #5B6770;
    color: var(--primary-text-color);
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
    .analytics-progress-wrapper {
        display: -ms-flexbox;
        display: flex;
    }

    .analytics-progress-col {
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 50%;
    }
}

.vertical-bar-container {
    margin-bottom: 30px;
}

@media only screen and (min-width: 992px) {
    .vertical-bar-container {
        margin-bottom: 0;
    }
}

.vertical-bar-wrapper {
    margin-bottom: 15px;
}

.vertical-bar-wrapper:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
    .vertical-bar-wrapper {
        margin-bottom: 30px;
    }
}

.vertical-bar-wrapper .vertical-bar-title {
    font-size: 16px;
    font-weight: 700;
    color: #5877FF;
    color: var(--theme-primary-color);
    margin-bottom: 5px;
}

.vertical-bar-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 992px) {
    .vertical-bar-wrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.vertical-bar-wrap .vertical-bar {
    -ms-flex: 1 0 80px;
    flex: 1 0 80px;
    max-width: 80px;
}

.vertical-progress-bar {
    position: relative;
    height: 95px;
}

.vertical-progress-bar .progress {
    width: 95px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}

.vertical-progress-bar .progress .progress-bar .progress-value {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    width: 80px;
    height: 30px;
    position: absolute;
    left: -25px;
    top: 30%;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}

.vertical-bar .vertical-bar-text {
    font-size: 12px;
    color: #1D2858;
    color: var(--primary-text-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: -5px;
    margin-right: -5px;
}

.vertical-bar.global .progress .progress-bar {
    background-color: #5877FF;
    background-color: var(--theme-primary-color);
}

.vertical-bar.organization .progress .progress-bar {
    background-color: #1D2858;
    background-color: var(--theme-secodary-color);
}

.vertical-bar.team .progress .progress-bar {
    background-color: #596771;
}

.vertical-bar.group .progress .progress-bar {
    background-color: #bfa53b;
}

.vertical-bar.user .progress .progress-bar {
    background-color: #3ABFBB;
}

.progress-bar-wrap {
    margin-bottom: 30px;
}

.progress-bar-wrap:last-of-type {
    margin-bottom: 0;
}

.progress-bar-wrap .progress-head {
    margin-bottom: 15px;
}

.progress-bar-wrap .progress-head label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: #1D2858;
    color: var(--primary-text-color);
    margin-bottom: 0;
}

.progress-bar-wrap .progress-head small {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
}

.progress-bar-wrap .progress-head .progress-head-right {
    text-align: right;
}

.progress {
    height: 10px;
    border-radius: 0;
    background-color: #D5DCF2;
    background-color: var(--progress-bar-bg);
}

.progress .progress-bar {
    background-color: #1D2858;
    background-color: var(--progress-bar-progress);
}

.activity-timeline-section {
    margin-bottom: 50px;
}

.activity-timeline-wrapper .activity-timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

.activity-timeline-actions {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    .activity-timeline-actions {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }
}

.activity-timeline-actions .actions-buttons {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    .activity-timeline-actions .actions-buttons {
        margin-bottom: 0;
        margin-right: 25px;
    }
}

.actions-buttons .btn-outline-primary {
    font-size: 12px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    border-color: #1D2858;
    border-color: var(--primary-text-color);
    border-radius: 4px;
    padding: 5px 15px;
    margin-right: 10px;
}

.actions-buttons .btn-outline-primary.selected,
.actions-buttons .btn-outline-primary:not(:disabled):not(.disabled):active,
.actions-buttons .btn-outline-primary:hover {
    color: #fff;
    background-color: #1D2858;
    background-color: var(--primary-text-color);
}

.actions-buttons .btn-outline-primary:last-of-type {
    margin-right: 0;
}

@media only screen and (min-width: 768px) {
    .actions-range {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }
}

.actions-range .actions-range-title {
    font-size: 14px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    .actions-range .actions-range-title {
        margin-bottom: 0;
        margin-right: 10px;
    }
}

.range-select-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.range-sapator {
    width: 8px;
    height: 2px;
    background-color: #1D2858;
    background-color: var(--primary-text-color);
    margin: auto 10px;
}

.range-select .form-wrap {
    display: block;
    margin-bottom: 0;
    position: relative;
}

@media only screen and (min-width: 768px) {
    .range-select .form-wrap {
        max-width: 140px;
    }
}

.range-select .form-control {
    font-size: 16px;
    padding: 5px 10px;
    height: 30px;
    border-color: #ddd;
    border-radius: 4px;
    padding-right: 40px;
}

.range-select .form-wrap .cal-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: #CAD4FF;
    background-image: url('../images/common-icon/icon-calendar.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
}

.certification-earned-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #EBEDF5;
}
.certification-earned-wrapper .certification-earned-title {
    font-size: 18px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

.certification-earned-list > li {
    margin-bottom: 20px;
}

.certification-earned-list > li:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .certification-earned-list > li {
        margin-bottom: 10px;
    }
}

.certification-earned-list .certificate-download {
    display: inline-block;
    border: 0;
    outline: 0;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    margin-top: -1px;
    vertical-align: middle;
    background-image: url('../images/common-icon/icon-download-documents.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.certification-earned-list .certificate-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
}

@media only screen and (min-width: 768px) {
    .certification-earned-list .certificate-title {
        display: inline-block;
    }
}

.certification-earned-list .certificate-end {
    font-size: 16px;
    color: #1D2858;
    color: var(--primary-text-color);
}

.cepoints-earned-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #EBEDF5;
}

.cepoints-earned-wrapper .cepoints-earned-title {
    font-size: 18px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

.cepoints-earned-list {
    list-style-type: disc;
    padding-left: 30px;
}

.cepoints-earned-list > li {
    margin-bottom: 20px;
}

.cepoints-earned-list > li:last-of-type {
    margin-bottom: 0;
}

.cepoints-earned-list .cepoints-earned-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.cepoints-earned-list .cepoints-earned-wrap .topic-title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
}

@media only screen and (min-width: 992px) {
    .cepoints-earned-list .cepoints-earned-wrap .topic-title {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }
}

.progress-section .progress-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    margin-bottom: 30px;
}

.progress-section-heading {
    margin-bottom: 20px;
}

.progress-section .export-report {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    position: relative;
    padding-right: 20px;
}

.progress-section .export-report::after {
    content: '';
    width: 1em;
    height: 1.5em;
    background-image: url('../images/common-icon/icon-export-report.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.progress-report-section {
    position: relative;
}

.progress-report-section .fixed-header {
    padding: 0 60px 0 115px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: none;
}

    .progress-report-section .fixed-header table thead > tr > th {
        font-size: 12px;
        font-weight: 700;
        color: #1D2858;
        color: var(--primary-text-color);
        text-transform: uppercase;
        border-top: 1px solid #EBEDF5;
        border-bottom: 1px solid #EBEDF5;
        padding: 15px 5px;
        background-color: #fff !important;
    }

.progress-section-table {
    table-layout: fixed;
    margin-bottom: 0;
}

.progress-section-table thead.fix-header {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    display: table;
}

.progress-section-table thead > tr > th {
    font-size: 12px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    text-transform: uppercase;
    border-top: 1px solid #EBEDF5;
    border-bottom: 1px solid #EBEDF5;
    padding: 15px 5px;
}

.progress-section-table .bottom-border {
    border-bottom: 1px solid #EBEDF5;
}

.progress-section-table .table-link {
    display: inline-block;
    color: #1D2858;
    color: var(--primary-text-color);
    text-decoration: none;
    padding-right:15px;
    word-break: break-word;
}

.progress-section-table .view-link {
    display: inline-block;
    color: #5877FF;
    color: var(--anchor-color);
    text-decoration: none;
}

.progress-section-table td {
    padding: 0;
    border: none;
}

.progress-section-table td.padding {
    padding: 5px 0;
}

.progress-section-table td.indent {
    padding-left: 15px;
}

.progress-section-table td.bottom-spacing {
    padding-bottom: 30px;
}

.progress-section-table .test-name {
    width: 270px;
}
.progress-section-table .completion {
    width: 100px;
}
.progress-section-table .completion-time {
    width: 120px;
}
.progress-section-table .assessment-name {
    width: 150px;
}
.progress-section-table .score {
    width: 75px;
}
.progress-section-table .pass-score {
    width: 95px;
}
.progress-section-table .orgAvg-score {
    width: 75px;
}
.progress-section-table .remedial-content {
    width: 60px;
}

/*.progress-section-table .indent .indent .test-name {
    width: 250px;
}*/

.progress-section-table .indent .level1 > tbody > tr.collapse-trigger > .test-name,
.progress-section-table .indent .level1-1 > tbody > tr.collapse-trigger > .test-name {
    width: 275px;
}

.progress-section-table .indent .indent > .level1 > tbody > tr.collapse-trigger > .test-name,
.progress-section-table .indent .indent > .level1-1 > tbody > tr.collapse-trigger > .test-name {
    width: 265px;
}

.progress-section-table .indent .indent > .level1-1 > tbody > tr.collapse-target .test-name {
    width: 245px;
}

.progress-section-table .indent .indent .level1-1  .level1-2 > tbody > tr.collapse-target .test-name {
    width: 237px;
}

.progress-section-table .indent .indent > .level1-2 .test-name {
    width: 240px;
}

.progress-section-table .indent > table .test-name {
    width: 260px;
}

.progress-section-table .test-name > .table-link {
    margin-left: 35px;
    position: relative;
}

.progress-section-table .test-name > .table-link::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #1D2858;
    background-color: var(--primary-text-color);
    border-radius: 50%;
    position: absolute;
    top: 0.5em;
    left: -15px;
}

.progress-section-table .table-section-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    padding: 20px 0;
}

.progress-section-table .title-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    padding-right: 10px;
}

.progress-section-table .accordionArrow {
    display: block;
    position: relative;
    padding-left: 20px;
}

.progress-section-table .accordionArrow::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('../images/common-icon/icon-accordionArrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 5px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.progress-section-table .collapse-trigger {
    cursor: pointer;
}

.progress-section-table .collapse-trigger.collapsed .accordionArrow::before {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.progress-section-table .collapse-trigger.open .accordionArrow::before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}

.progress-section-table .poor {
    color: #ff0000;
}

.progress-section-table .good {
    color: #17a500;
}

/* Progress table div base */

.progress-table {
    position: relative;
}

@media only screen and (max-width: 1140px) {
    .progress-table {
        overflow-y: hidden;
        overflow-x: auto;
    }
}

.progress-table-head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.progress-table-head.bordered > .progress-table-th {
    border-top: 1px solid #EBEDF5;
    border-bottom: 1px solid #EBEDF5;
}

.progress-table-head.table-primary-head.fix-header {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    z-index: 1;
}

@media (min-width:768px) {
    .progress-table-head.table-primary-head.fix-header {
        position: fixed;
        top: 0;
        left: 160px;
        right: 105px;
    }
}

.progress-table-tr {
    display: -ms-flexbox;
    display: flex;
}

.progress-table-tr .progress-table-td {
    /*border: 1px solid #EBEDF5;*/
}

.progress-table-head .progress-table-th {
    font-size: 12px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    padding: 15px 10px;
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    /*border: 1px solid #EBEDF5;*/
}

.table-primary-head {
    text-transform: uppercase;
}

.progress-table .test-name {
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    min-width: 250px;
}

.progress-table .version {
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    min-width: 50px;
}

.progress-table .completion {
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    min-width: 150px;
    text-align:left;
}

.progress-table-head .progress-table-th.completion {
    -ms-flex-pack: end;
    justify-content: flex-start;
}

.progress-table .completion-time {
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
    min-width: 130px;
}

.progress-table .assessment-name {
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
    min-width: 180px;
}

.progress-table .score {
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    min-width: 90px;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
}

.progress-table .pass-score {
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    min-width: 90px;
    /*padding-left: 0;*/
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
}

.progress-table .orgAvg-score {
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
    min-width: 130px;
    padding-left: 5px;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
}

.progress-table .progress-table-tr > .progress-table-td.orgAvg-score {
    text-align: left;
}

.progress-table .remedial-content {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    min-width: 100px;
}

.progress-table .padding {
    padding: 5px 10px;
}

.progress-table .indent {
    padding-left: 0;
}

.progress-table .bottom-spacing {
    padding-bottom: 30px;
}

.progress-table .bottom-border {
    border-bottom: 1px solid #EBEDF5;
}

.progress-table .table-link {
    display: inline-block;
    color: #1D2858;
    color: var(--primary-text-color);
    text-decoration: none;
    padding-right: 15px;
    word-break: break-word;
}

.progress-table .view-link {
    display: inline-block;
    color: #5877FF;
    color: var(--anchor-color);
    text-decoration: none;
}

.progress-table .test-name > .table-link {
    margin-left: 35px;
    position: relative;
}

.progress-table .test-name > .table-link::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #1D2858;
    background-color: var(--primary-text-color);
    border-radius: 50%;
    position: absolute;
    top: 0.5em;
    left: -15px;
}

.progress-table .table-section-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    padding: 20px 0;
}

.progress-table .title-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #1D2858;
    color: var(--primary-text-color);
    /*padding-right: 10px;*/
    word-break:break-word;
}

.progress-table .accordionArrow {
    display: block;
    position: relative;
    padding-left: 20px;
}

.progress-table .accordionArrow::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('../images/common-icon/icon-accordionArrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 5px;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.progress-table .collapse-trigger {
    cursor: pointer;
}

.progress-table .collapse-trigger.collapsed .accordionArrow::before {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.progress-table .collapse-trigger.open .accordionArrow::before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
}

.progress-table .poor {
    color: #D6504B;
}

.progress-table .good {
    color: #0A9400;
}

.indent > .level1 > .collapse-target > .progress-table-tr > .progress-table-td.test-name {
    padding-left: 20px;
}

.indent > .level1 .indent > .level1-1 > .collapse-trigger > .progress-table-tr > .progress-table-td.test-name {
    padding-left: 25px;
}

.indent > .level1 .indent > .level1-1 > .collapse-target .progress-table-tr > .progress-table-td.test-name {
    padding-left: 25px;
}

.level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 {
    margin-left: -10px;
    margin-right: -10px;
}

.level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 > .collapse-trigger > .progress-table-tr > .progress-table-td.test-name {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-width: 100%;
    padding-left: 0;
}

.level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 > .collapse-trigger > .progress-table-tr > .progress-table-td.test-name > .title-text.accordionArrow {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    transform: translateX(-10px);
}

.level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 > .collapse-target > .progress-table-tr > .progress-table-td.completion-time {
    display: none;
}

.level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 > .collapse-target > .progress-table-tr > .progress-table-td.assessment-name {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-width: 100%;
}

.level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 > .collapse-target > .progress-table-tr > .progress-table-td.score {
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    min-width: 90px;
}

.level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 > .collapse-target > .progress-table-tr > .progress-table-td.pass-score {
    display: none;
}

.level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 > .collapse-target > .progress-table-tr > .progress-table-td.orgAvg-score {
    display: none;
}

@media only screen and (min-width: 1140px) {
    .progress-table .test-name {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        min-width: 20%;
    }

    .progress-table .version {
        -ms-flex: 0 0 5%;
        flex: 0 0 5%;
        min-width: 5%;
    }

    .progress-table .completion {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        min-width: 10%;
    }

    .progress-table .completion-time {
        -ms-flex: 0 0 12%;
        flex: 0 0 12%;
        min-width: 12%;
    }

    .progress-table .assessment-name {
        -ms-flex: 0 0 17%;
        flex: 0 0 17%;
        min-width: 17%;
    }

    .progress-table .score {
        -ms-flex: 0 0 6%;
        flex: 0 0 6%;
        min-width: 6%;
    }

    .progress-table .progress-table-tr .score {
        padding: 5px 10px;
        text-align: left;
    }

    .progress-table .pass-score {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        min-width: 10%;
    }

    .progress-table .orgAvg-score {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        min-width: 10%;
    }

    .progress-table .remedial-content {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        min-width: 10%;
    }

    .level1 .progress-table-tr > .progress-table-td.assessment-name .level1-2 > .collapse-target > .progress-table-tr > .progress-table-td.score {
        -ms-flex: 0 0 36%;
        flex: 0 0 36%;
        min-width: 36%;
    }
   
}



    /* =============== Track Progress Page Style End =============== */
