.p-0 {
    padding: 0px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-1 {
    padding-top: 5px !important;
}

.pt-2 {
    padding-top: 10px !important;
}

.pt-3 {
    padding-top: 15px !important;
}

.pt-4 {
    padding-top: 20px !important;
}

.pt-5 {
    padding-top: 25px !important;
}

.pt-6 {
    padding-top: 30px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pr-1 {
    padding-right: 5px !important;
}

.pr-2 {
    padding-right: 10px !important;
}

.pr-3 {
    padding-right: 15px !important;
}

.pr-4 {
    padding-right: 20px !important;
}

.pr-5 {
    padding-right: 25px !important;
}

.pr-6 {
    padding-right: 30px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.pl-1 {
    padding-left: 5px !important;
}

.pl-2 {
    padding-left: 10px !important;
}

.pl-3 {
    padding-left: 15px !important;
}

.pl-4 {
    padding-left: 20px !important;
}

.pl-5 {
    padding-left: 25px !important;
}

.pl-6 {
    padding-left: 30px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-1 {
    padding-bottom: 5px !important;
}

.pb-2 {
    padding-bottom: 10px !important;
}

.pb-3 {
    padding-bottom: 15px !important;
}

.pb-4 {
    padding-bottom: 20px !important;
}

.pb-5 {
    padding-bottom: 25px !important;
}

.pb-6 {
    padding-bottom: 30px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mt-1 {
    margin-top: 5px !important;
}

.mt-2 {
    margin-top: 10px !important;
}

.mt-3 {
    margin-top: 15px !important;
}

.mt-4 {
    margin-top: 20px !important;
}

.mt-5 {
    margin-top: 25px !important;
}

.mt-6 {
    margin-top: 30px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-1 {
    margin-bottom: 5px !important;
}

.mb-2 {
    margin-bottom: 10px !important;
}

.mb-3 {
    margin-bottom: 15px !important;
}

.mb-4 {
    margin-bottom: 20px !important;
}

.mb-5 {
    margin-bottom: 25px !important;
}

.mb-6 {
    margin-bottom: 30px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-1 {
    margin-right: 5px !important;
}

.mr-2 {
    margin-right: 10px !important;
}

.mr-3 {
    margin-right: 15px !important;
}

.mr-4 {
    margin-right: 20px !important;
}

.mr-5 {
    margin-right: 25px !important;
}

.mr-6 {
    margin-right: 30px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-1 {
    margin-left: 5px !important;
}

.ml-2 {
    margin-left: 10px !important;
}


/* Absolute Center Spinner */

.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}


/* Transparent Overlay */

.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}


/* :not(:required) hides these rules from IE9 and below */

.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    /* -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0; */
    box-shadow: #98ceff 1.5em 0 0 0, #98ceff 1.1em 1.1em 0 0, #98ceff 0 1.5em 0 0, #98ceff -1.1em 1.1em 0 0, #98ceff -1.5em 0 0 0, #98ceff -1.1em -1.1em 0 0, #98ceff 0 -1.5em 0 0, #98ceff 1.1em -1.1em 0 0;
}


/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}


/* @media only screen and (min-width: 991px) {
    .ml-md-2 { margin-left: 10px !important;}
} */

.ml-3 {
    margin-left: 15px !important;
}

.ml-4 {
    margin-left: 20px !important;
}

.ml-5 {
    margin-left: 25px !important;
}

.ml-6 {
    margin-left: 30px !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

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

.justify-content-start {
    justify-content: start !important;
}

.justify-content-end {
    justify-content: end !important;
}

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


/*updated on 9/18/2019*/

.lms-tab .box-title .btn {
    margin-bottom: 10px;
    padding: 8px 22px;
}

.custom-modal .btn-link {
    color: #888;
    text-decoration: none;
    font-size: 16px;
}

.custom-modal .btn-link:hover {
    color: #888;
    text-decoration: none;
}

.custom-modal .modal-body {
    padding: 20px 25px 25px;
}

.custom-modal .modal-header {
    padding: 15px 25px;
    border-color: #e0e0e0 !important;
}

.submit-btn-group {
    margin-bottom: 0;
    margin-top: 20px;
}

.custom-modal .submit-btn-group .btn {
    padding: 10px 25px;
}


/*------*/

.course-detail-inc {
    margin-bottom: 20px;
}

.course-detail-inc .course-info {
    border: 1px solid #ddd;
    padding: 10px;
}

.course-detail-inc .course-info li {
    float: left;
    width: 16%;
    list-style-type: none;
}

.course-detail-inc .course-info p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.course-detail-inc .course-info label {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.course-detail-inc .course-info p:first-child {
    margin: 0;
    font-weight: 400;
    color: #555;
}

.mr10 {
    margin-right: 10px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.clearfix {
    overflow: auto;
}

.page-list-row .list-type i {
    color: #1a72ba;
}

.exam-list-row .list-type i {
    color: #f35627;
}


/* .exam-list-row{background: #eff7fc !important;} */


/*-- NC MS --*/

td a {
    color: #555;
}

.confirm-modal .modal-header {
    border-bottom: none;
}

.confirm-modal .modal-content {
    border-radius: 3px;
}

.confirm-modal h4 {
    font-size: 22px;
    color: #1d1d21;
    margin-top: 22px;
    font-weight: 700;
}

.confirm-modal p {
    font-size: 16px;
    color: #1d1d21;
}

.confirm-modal .submit-btn-group {
    margin-top: 33px;
}

.confirm-modal .modal-body {
    padding: 30px;
}

.submit-btn-group button.btn.btn-default {
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 115px;
    margin: 0px 1px;
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    line-height: 24px;
    transition: all 0.3s;
}

.submit-btn-group button.btn.btn-default:hover {
    background-color: #2c6f96;
    color: #fff;
}

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

.back-link {
    font-size: 14px;
    font-weight: 400;
    color: #3d8aba;
    display: flex;
    align-items: center;
}

.back-link i {
    padding-right: 6px;
}

.full-width-modal {
    padding-right: 0px !important;
}

.full-width-modal .modal-header {
    border-bottom-color: #e5e7ea;
}

span.list-icon {
    background-color: #1d6bb3;
    color: #fff;
    border-radius: 3px;
    padding: 3px;
    font-size: 14px;
    margin-right: 15px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

span.list-icon i.fa-list-ul {
    border: 1px solid #fff;
    padding: 3px 2px 1px 1px;
    font-size: 11px;
    border-radius: 2px;
    float: left;
    line-height: 9px;
}

span.list-icon i {
    font-size: 14px;
}

.full-width-modal .modal-dialog {
    height: 100%;
    width: 100%;
    margin: 0px auto;
}

.modal.full-width-modal .modal-content {
    height: 100%;
    border-radius: 0px;
}

.full-width-modal .modal-body {
    padding: 0px;
    height: calc(100% - 56px);
    display: flex;
    background-color: #f5f7fb;
}

.full-width-modal.assign-course .modal-body {
    overflow: auto;
    padding-bottom: 30px;
}

.full-width-modal .modal-body .modal-left-content {
    padding: 30px;
    width: calc(100% - 638px);
    overflow-y: auto;
}

.modal-right-aside {
    width: 100%;
    max-width: 638px;
    float: right;
    height: 100%;
    overflow-y: auto;
    padding: 30px;
    padding-top: 20px;
    border-left: 1px solid #e5e7ea;
    background-color: #fff;
}

.modal-right-aside .form-group input {
    border: 1px solid #f5f7fb;
    background-color: #f5f7fb;
    height: auto;
    padding: 8px 12px;
    line-height: 22px;
    font-size: 15px;
    color: #888;
}

.modal-right-aside .form-group input:focus {
    border-color: #3c8dbc;
}

.clear {
    clear: both;
}


/* checkbox Css */

.checkbox {
    padding-left: 20px;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    min-height: 15px;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 2px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 0px;
    padding-top: 0px;
    font-size: 11px;
    border-radius: 2px;
    color: #fff;
    background-color: #00a860;
    text-align: center;
    line-height: 17px;
}


/* .checkbox input[type="checkbox"] {  opacity: 0; } */

.checkbox input[type="checkbox"]:focus+label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked+label::after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

.checkbox input[type="checkbox"]:disabled+label {
    opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled+label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}

.checkbox.checkbox-inline {
    margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked+label::before {
    background-color: #428bca;
    border-color: #428bca;
}

.checkbox-primary input[type="checkbox"]:checked+label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked+label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked+label::after {
    color: #fff;
}


/* End checkbox Css */

.card {
    border: 1px solid #e6e6e6;
    margin-bottom: 6px;
    padding: 20px;
}

.card a[aria-expanded="true"] {
    font-weight: 600;
    color: #000;
}

.card a[aria-expanded="1"] {
    font-weight: 600;
    color: #000;
}

.card h5 {
    margin: 0px;
}

.card h5 a {
    font-size: 14px;
    color: #888888;
    line-height: 17px;
    font-weight: 600;
}

.card .checkbox {
    outline: none;
    margin: 0px;
    float: left;
}

.card-header {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.card-header h5 i {
    float: right;
    color: #777;
}

.card-block {
    display: inline-block;
    width: 100%;
    padding: 10px;
    padding-bottom: 0px;
}

.card-block ul {
    list-style: none;
    margin: 0px;
    padding: 0px 0px 0px 15px;
}

.card-block ul li {
    list-style: none;
    padding: 5px 5px 5px 25px;
    position: relative;
    font-size: 14px;
    color: #000;
    text-align: left;
}

.card-block ul li:before {
    content: "\f111";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    color: #cccccc;
    position: absolute;
    left: 0px;
    z-index: 1;
    top: 9px;
}

p.correct-ans {
    padding-top: 10px;
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    padding-left: 20px;
}

.modal-right-aside label {
    font-size: 18px;
    color: #000;
}

.center-col {
    width: 100%;
    max-width: 802px;
    margin: auto;
}

.added-questions-col {
    padding-top: 10px;
}

.added-questions-col .card-header {
    position: relative;
}

.added-questions-col h4 {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.added-questions-col .card {
    background-color: #fff;
}

span.icon svg {
    width: 10px;
    margin-right: 20px;
    height: 10px;
}

.added-questions-col .card h5 a {
    display: flex;
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.added-questions-col span.close-circle {
    display: inline-block;
    float: right;
    margin-right: 10px;
    font-size: 20px;
    color: #e04e38;
    position: absolute;
    right: 7px;
    top: -3px;
}

span.close-circle i {
    color: #e98373;
}

.added-questions-col .card-block ul {
    padding: 0px 0px 0px 20px;
}

.addNew-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.addNew-content form {
    padding: 20px 0px;
}

.addNew-content textarea {
    resize: none;
}

.upload-field {
    border: 1px dashed #c0cdd5;
    padding: 15px;
    position: relative;
    background-color: #fff;
}

.upload-field input[type="file"] {
    position: absolute;
    opacity: 0;
    z-index: 9;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.addNew-content small {
    float: right;
    font-size: 13px;
    color: #888;
}

.attachments {
    width: 100%;
    display: inline-block;
    padding-top: 5px;
}

span.attachment {
    background-color: #fff;
    padding: 8px 25px 8px 8px;
    float: left;
    min-width: 252px;
    display: flex;
    color: #555;
    position: relative;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    margin: 5px 5px 5px 0px;
}

button.btn.btn-close {
    position: absolute;
    right: 8px;
    background-color: transparent;
    padding: 0px;
    color: #888;
}

span.attachment img,
span.attachment svg {
    margin-right: 10px;
}

.upload-field-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.upload-field-box button.upload-icon {
    border: none;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    color: #777;
    background-color: #f2f4f8;
}

.upload-field-box h5 {
    font-size: 15px;
    margin: 0px;
    padding: 5px 0px;
}

.upload-field-box p {
    font-size: 13px;
    margin: 0px;
    padding: 0px 0px 5px 0px;
    color: #888888;
}

.remove-file {
    position: absolute;
    top: 12px;
    right: 10px;
    cursor: pointer;
}

.viewsecmodal.full-width-modal .modal-body .modal-left-content {
    width: calc(100% - 390px);
    padding: 0;
}

.viewsecmodal .modal-right-aside {
    width: 390px;
}

.viewsecmodal .modal-right-aside .list-group li i {
    margin-right: 10px;
}

.viewsecmodal .modal-right-aside .list-group li i.fa-file-o {
    color: #1a72ba;
}

.viewsecmodal .modal-right-aside .list-group li i.fa-list-alt {
    color: #f35627;
}

.viewsecmodal .modal-right-aside .list-group li.active i.fa-file-o,
.viewsecmodal .modal-right-aside .list-group li.active i.fa-list-alt {
    color: #fff;
}

.full-width-modal .modal-right-aside .list-group-item {
    margin-bottom: 10px;
    padding: 0;
    cursor: pointer;
}

.full-width-modal .modal-right-aside .list-group-item a {
    color: #333;
    display: block;
    padding: 15px;
}

.full-width-modal .modal-right-aside .list-group-item.active a {
    color: #fff;
}

.full-width-modal .modal-right-aside .list-group-item:hover {
    background-color: #337ab7;
    border-color: #337ab7;
}

.full-width-modal .modal-right-aside .list-group-item:hover a,
.full-width-modal .modal-right-aside .list-group-item:hover i {
    color: #fff !important;
}

.page-view-title {
    background: #fff;
    text-align: center;
    padding: 30px 30px 100px;
    position: relative;
}

.page-view-title h3 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

.page-view-title a {
    position: absolute;
    font-size: 16px;
}

.page-view-title a.prev-page i {
    margin-right: 10px;
    font-size: 14px;
}

.page-view-title a.prev-page {
    left: 30px;
    bottom: 20px;
    color: #333;
    transition: all 0.3s;
    z-index: 111;
}

.page-view-title a.prev-page:hover {
    color: #337ab7;
}

.page-view-title a.prev-page.disable-link {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.page-view-title a.next-page {
    position: absolute;
    right: 30px;
    bottom: 20px;
    color: #333;
    transition: all 0.3s;
    z-index: 111;
}

.page-view-title a.next-page.btn-success {
    background: #37ba77 !important;
}

.page-view-title a.next-page.btn-success:hover {
    background: #27a866 !important;
}

.page-view-title a.next-page:hover {
    color: #337ab7;
}

.page-view-title a.next-page i {
    margin-left: 10px;
    font-size: 14px;
}

.page-view-title a.next-page.disable-link {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.page-view-title.page-view-bottom {
    position: relative;
    bottom: 0px;
    width: 100%;
    background: none;
    padding: 30px;
}

.fancy-btn-area a {
    background: #2666b1 !important;
    color: #fff !important;
    padding: 8px 0px;
    width: 120px;
}

.fancy-btn-area a:hover {
    background: #0d498e !important;
}

.fancy-btn-area a.disable-link {
    background: #d6d6d6 !important;
    color: #404040 !important;
}

.viewsecmodal .main-page-content .view-container iframe {
    max-width: 100%;
    width: 100%;
    height: 440px;
}

.viewsecmodal .main-page-content {
    max-width: 992px;
    padding: 0px 100px;
    min-height: 250px;
}

.viewsecmodal .main-page-content .view-container {
    text-align: center;
}

.main-page-content {
    max-width: 792px;
    margin: -75px auto 0;
    position: relative;
    z-index: 99;
}

.editor-content-here {
    margin-top: 30px;
    color: #333;
}

.editor-content-here h4 {
    font-size: 20px;
    font-weight: 600;
}

.editor-content-here p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 23px
}

.attachment-files {
    margin-top: 40px;
}

.attachment-files h5 {
    font-size: 18px;
}

.file-block .card {
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    padding: 10px;
}

.file-block .card img {
    width: 30px;
    margin-right: 10px;
}

.file-block .card i {
    position: relative;
    top: 7px;
    right: 3px;
    cursor: pointer;
}

.attached-file-preview {
    margin-top: 40px;
    width: 100%;
}

.attached-file-preview video {
    width: 100%;
}

.attached-file-preview p {
    font-size: 16px;
    font-weight: 500;
}

.attached-file-preview iframe {
    border: 0;
}

.attached-file-preview:last-child {
    margin-bottom: 40px;
}

.view-container .button-wrapper a.btn-outline-dark {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    transition: all 0.3s;
}

.view-container .button-wrapper a.btn-outline-dark i {
    margin: 0px 5px;
}

.view-container .button-wrapper a.btn-outline-dark:hover {
    border: 1px solid #337ab7;
    background: #337ab7;
    color: #fff;
}

.viewsecmodal .added-questions-col .carousel1.slide {
    margin: 0px 0px 10px 0px;
}

.viewsecmodal .added-questions-col .carousel1.slide .carousel-inner .card {
    min-height: 250px;
}

.view-container .button-wrapper a {
    color: #888;
}

.view-container .button-wrapper a.next-page i {
    margin-left: 10px;
}

.view-container .button-wrapper a.prev-page i {
    margin-right: 10px;
}

.view-container .button-wrapper {
    text-align: center;
}

.view-container .button-wrapper span {
    display: inline-block;
    line-height: 34px;
    font-weight: 600;
    font-size: 16px;
}

.assign-wrapper {
    width: 817px;
    margin: 40px auto 0;
}

.cont-wrap {
    width: 817px;
    margin: 40px auto 0;
}

.assign-wrapper .form-group select[multiple] {
    height: 130px;
}

.assign-wrapper .form-group select[multiple] option {
    font-size: 16px;
    padding: 6px;
}

.blockHeader {
    margin-bottom: 10px;
}

.blockHeader label {
    display: inline-block;
}

.blockHeader input {
    width: 280px;
    float: right;
    padding-left: 28px;
}

.blockHeader i {
    left: 8px;
    top: 9px;
    position: absolute;
}

.select-list-wrapper {
    border: 1px solid #b7b7b7;
    background-color: #fff;
    border-radius: 3px;
}

.select-list-wrapper .selectAll {
    background-color: #f5f7fb;
    border-bottom: 1px solid #b7b7b7;
}

.select-list-wrapper .checkbox {
    margin: 0;
}

.select-list-wrapper .checkbox label {
    padding-left: 10px;
}

.select-list-wrapper .checkbox label:after,
.select-list-wrapper .checkbox label:before {
    width: 19px;
    height: 19px;
}

.select-list-wrapper .checkbox label:after {
    background-color: #1d6bb3;
    padding-top: 2px;
    font-size: 13px;
}

.select-list-wrapper .list-group-item {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.select-list-wrapper .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
}

.select-list-wrapper .list-group-item:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
}

.search-outer {
    position: relative;
}

.search-outer i {
    color: #999;
}

.confirm .modal-dialog {
    max-width: 500px;
}

.confirm .modal-dialog .modal-content {
    border-radius: 3px;
}

.confirm .modal-header {
    border-bottom: 0;
}

.confirm h4 {
    font-size: 22px;
    color: #1d1d21;
}

.confirm p {
    font-size: 16px;
    color: #1d1d21;
}

.row-completating {
    background-color: #fee9e6;
}

.form-filter {
    border: 1px solid rgba(210, 214, 222, 0.5);
}

.form-filter label {
    font-size: 13px;
    min-width: 86px;
}

.form-filter .form-control {
    display: inline-block;
    width: 100%;
    max-width: 240px;
}


/* View page */


/* course internal pages */

table .btn-primary {
    background-color: #00bded;
    border: #00a9d5;
}

table .btn-primary:hover,
table .btn-primary:active,
table .btn-primary.hover,
table .btn-primary:focus,
table .btn-primary:active:focus,
table .btn-primary:active:hover {
    background-color: #08afda;
    border: #08afda;
}

table.table-striped>tbody>tr.row-course-current {
    background-color: #ffffd7;
}

.all-assign-exam .exam-list-row {
    background-color: #fff !important;
}

table .text-success {
    color: #00a860 !important;
}

table .text-not-viewed {
    color: #fb9d37 !important;
}

.full-page-single-div .modal-body {
    background-color: #f5f7fb;
    padding: 0!important;
}

.full-page-single-div div.exam-page-content {
    padding: 0;
    max-width: 100%;
}

.exam-page-content h4 {
    color: #000;
    font-size: 20px;
    font-weight: 400;
}

.view-exam-result .exam-page-view-title {
    padding-left: 0px;
    padding-right: 0;
}

div.full-page-single-div.full-width-modal .modal-body .modal-left-content {
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.view-exam-result .page-view-title {
    padding-bottom: 30px;
}

.view-exam-result .page-view-title p {
    font-size: 18px;
}

.view-exam-result .page-view-title h4 {
    font-size: 19px;
    color: #00a860;
}

.answer-ul {
    padding-left: 0;
    list-style-type: none;
}

.answer-ul li {
    font-size: 15px;
    background-color: #fff;
    /* border-bottom: 1px solid #fff; */
    margin-bottom: 1px;
}

.result-text {
    font-size: 22px;
    color: #00a860;
}

.answer-ul li span {
    color: #fff;
}

.answer-ul li.wrong-answer {
    background-color: #f9d7da;
}

.answer-ul li.right-answer {
    background-color: #d2eddb;
}

.answer-ul li.correct-answer {
    background-color: #dddddd;
}

.answer-ul li.right-answer,
.answer-ul li.wrong-answer {
    padding-left: 20px;
    position: relative;
}

.answer-ul li.wrong-answer:before,
.answer-ul li.right-answer:before {
    position: absolute;
    ;
    left: 8px;
    top: 13px;
    font-family: fontAwesome;
}

.answer-ul li.wrong-answer:before {
    content: '\f00d';
    color: #f35627;
}

.answer-ul li.right-answer:before {
    content: '\f00c';
    color: #00a860;
}

.answer-ul li label {
    padding: 12px;
    margin-bottom: 0;
    font-weight: normal;
}

.answer-ul li span {
    float: right;
    padding: 5px 10px;
    background: rgba(0, 0, 0, .2);
    min-width: 130px;
    text-align: center;
    margin-top: 7px;
    margin-right: 10px;
}

td a.btn.btn-xs {
    min-height: 22px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

td a.btn.btn-xs i {
    margin-right: 4px;
}

.question-option {
    padding-left: 0;
    list-style-type: none;
}

.question-option li {
    display: flex;
    justify-content: space-around;
}

.question-option li input {
    margin-bottom: 10px;
    border-radius: 3px;
}

.question-option li div:nth-child(1) {
    width: 6%;
    min-width: 47px;
    font-size: 16px;
    font-weight: 600;
}

.question-option li div:nth-child(2) {
    width: 88%;
}

.question-option li div:nth-child(3) {
    width: 6%;
    min-width: 61px;
}

.question-option li div:nth-child(3) i {
    width: 100%;
    font-size: 21px;
    line-height: 40px;
    height: 40px;
    text-align: center;
}

.question-option li div:nth-child(3) i.fa-minus {
    color: #ff5858;
}

.question-option li div:nth-child(3) i.fa-plus {
    color: #00a860;
}

.modal-body .form-control {
    color: #000;
    font-weight: 400;
}

.modal-body input.form-control {
    height: 40px;
}

.modal-body select.form-control {
    height: 40px;
}

.modal-body textarea.form-control {
    height: 93px;
    resize: vertical;
}

select.form-control,
select {
    cursor: pointer;
}

.fa.fa-close,
.fa.fa-times,
.modal-header .close {
    height: 20px;
    width: 20px;
    display: inline-block;
    opacity: 1;
}


/*.fa.fa-close:before, .modal-header .close:before, .fa.fa-times:before { content: ''; background-image:url(../img/close.png); background-repeat:no-repeat; background-position: center; display: inline-block; vertical-align: middle; top: -2px; position: relative; height: 24px; width: 24px;}*/


/* custom radio */


/* .radio-custom {opacity: 0;position: absolute;   } */

.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
    outline: none;
}

.radio-custom-label {
    position: relative;
}

.radio-custom+.radio-custom-label:before {
    content: '';
    background: #fff;
    border: 2px solid #888;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
    line-height: 14px;
    font-weight: 400;
}

.radio-custom+.radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked+.radio-custom-label:before {
    background-color: #37ba77;
    border-color: #37ba77;
}

.radio-custom:checked+.radio-custom-label:after {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #fff;
    position: absolute;
    left: 3px;
    top: 2px;
    font-weight: normal;
}

.radio-custom:focus+.radio-custom-label {
    outline: none;
    /* focus style */
}


/*--- Sanjay css code start ---------*/

.cs-upload-field .upload-field .dropzone {
    overflow: hidden;
    cursor: pointer;
    position: absolute;
    left: 0px;
    top: 0px;
    margin: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
}

.cs-upload-field .upload-field .upload-field-box {
    width: 100%;
}

.cs-upload-field .uploaded-files span,
.cs-upload-field .uploaded-files a {
    color: #444;
}

.cs-upload-field .previews,
.cs-upload-field.previews {
    display: flex !important;
    flex-wrap: wrap !important;
}

.cs-upload-field .previews .dz-processing,
.cs-upload-field .previews .dz-processing,
.cs-upload-field .previews .dz-image-preview {
    background-color: #fff !important;
    padding: 8px 35px 8px 8px !important;
    float: left !important;
    min-width: 252px !important;
    /* display: flex !important;  @SH*/
    display: flex;
    align-items: center !important;
    color: #555 !important;
    position: relative !important;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1) !important;
    margin: 0px 8px 8px 0px !important;
    width: calc(50% - 8px);
}

.cs-upload-field .previews .type-doc {
    background-color: #fff !important;
    padding: 8px 35px 8px 8px !important;
    float: left !important;
    min-width: 252px !important;
    display: flex !important;
    align-items: center !important;
    color: #555 !important;
    position: relative !important;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1) !important;
    margin: 0px 8px 8px 0px !important;
    width: calc(50% - 8px);
}

.cs-upload-field .previews .type-xls {
    background-color: #fff !important;
    padding: 8px 35px 8px 8px !important;
    float: left !important;
    min-width: 252px !important;
    display: flex !important;
    align-items: center !important;
    color: #555 !important;
    position: relative !important;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1) !important;
    margin: 0px 8px 8px 0px !important;
    width: calc(50% - 8px);
}

.cs-upload-field .previews div.dz-error {
    background-color: #ffe7e7 !important;
    padding: 8px 35px 8px 8px !important;
    float: left !important;
    min-width: 252px !important;
    display: center !important;
    align-items: flex-start !important;
    color: #555 !important;
    position: relative !important;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1) !important;
    margin: 0px 8px 8px 0px !important;
    width: calc(50% - 8px);
}

.cs-upload-field .previews .type-doc .onyx-dropzone-info,
.cs-upload-field .previews .type-doc .onyx-dropzone-info {
    padding-top: 0 !important;
}

.cs-upload-field .dz-preview .dz-error-message span {
    color: #ff6e6e;
    font-size: 12px;
}

.cs-upload-field .preview-container .previews .onyx-dropzone-info {
    padding-top: 0 !important;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.cs-upload-field .preview-container .previews .onyx-dropzone-info>.thumb-container {
    display: flex !important;
    align-items: center !important;
    width: 25px !important;
    max-width: 25px !important;
    height: 20px;
    overflow: hidden;
}

.cs-upload-field .preview-container .previews .onyx-dropzone-info>.thumb-container img {
    max-width: 100%;
}

.cs-upload-field .preview-container .previews .onyx-dropzone-info>.details {
    position: inherit !important;
    flex: inherit !important;
    max-width: 100% !important;
    padding-left: 6px;
}

.cs-upload-field .dz-preview .dz-progress {
    position: absolute;
    bottom: -0px;
    margin: 0px;
    left: -0px;
    border-radius: 0px;
    height: 2px;
    width: 100%;
}

.cs-upload-field .previews .actions .fa-times:before {
    content: "\f00d" !important;
}

.cs-upload-field .preview-container .previews .onyx-dropzone-info .actions {
    right: 5px !important;
    text-align: center !important;
    text-align: center !important;
    position: absolute !important;
    top: 50% !important;
    line-height: 1 !important;
    transform: translateY(-50%) !important;
}

.cs-upload-field .preview-container .previews .onyx-dropzone-info .actions a:hover {
    text-decoration: none !important;
}

.cs-upload-field .preview-container .previews .onyx-dropzone-info .actions a:hover i {
    opacity: 0.7 !important;
}

.cs-upload-field .preview-container .previews .onyx-dropzone-info .actions .fa-times {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 24px !important;
    font-size: 16px !important;
    color: #b9b9b9 !important;
    font-weight: normal !important;
    margin: 0px !important;
}

.cs-upload-field #warnings {
    display: none !important;
}

.cs-upload-field .previews .dz-processing.dz-complete .dz-progress {
    animation: inherit !important;
}

.content .table-striped>tbody>tr:nth-of-type(odd) {
    background: #f3f7f8;
}

.content .table-bordered>thead>tr>th {
    border-color: #eaebef;
    font-size: 14px;
}

.content .table-bordered>tbody>tr>td {
    border-bottom: 0px;
    border-right: 1px solid #f0f0f0;
    font-size: 14px;
}

.action-td a {
    margin: 2px 0px;
}

.page-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 10px 0px;
    width: 100%;
}

.page-heading .box-title {
    margin: 0px;
    color: #000;
    font-weight: 600;
}

body .modal-backdrop.in {
    opacity: .1;
}

.form-group .form-control {
    border-color: #d2d6de;
    border-radius: 3px;
}

.custom-modal .modal-content {
    border-radius: 4px;
}

.modal-header {
    position: relative;
}

.modal-header .close {
    position: absolute;
    right: 18px;
    margin: auto;
    top: 0px;
    bottom: 0px;
}

.modal-header .close i {
    font-size: 20px;
}

.btn-icon {
    display: inline-flex;
}

.btn-icon i {
    font-size: 22px;
    margin: 0px 8px 0px 0px;
}

.orange-text {
    color: #f4a025;
}

.cs-btn-group .btn-success {
    background: #37ba77;
    border: 0px;
    font-size: 16px;
    min-width: 120px;
    transition: all 0.3s;
}

.cs-btn-group .btn-success:hover {
    background: #27a866;
}

.cs-btn-group .btn:focus {
    outline: none;
}

.cs-btn-group .btn-link {
    transition: all 0.3s;
}

.cs-btn-group .btn-link:hover {
    opacity: 0.7;
}

.cs-radio-check {
    position: relative;
    margin: 0px 0px 20px 0px;
}

.cs-radio-check .radio-custom {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    margin: 0px;
    cursor: pointer;
    opacity: 0;
    z-index: 1;
}

.top-error-msg .alert {
    margin-top: 15px;
}

.confirm-modal .modal-header .close {
    right: 12px;
    top: 12px;
    outline: none;
}

:focus {
    outline: none !important;
}

.added-questions-col .card h5 a .fa-caret-up,
.added-questions-col .card h5 a .fa-caret-down {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0px 0px 0px 5px;
    position: absolute;
    right: -6px;
    top: 4px;
    /* transform: rotate(180deg); */
}


/* .added-questions-col .card h5 a.collapsed .fa-caret-up, .added-questions-col .card h5 a.collapsed .fa-caret-down{ transform: rotate(180deg); } */

.modal-left-content .card-header {
    padding-right: 45px;
}

.modal-right-aside .card-header {
    padding-right: 25px;
    position: relative;
    cursor: pointer;
}

.modal-right-aside .card-header h5 i {
    position: absolute;
    top: 0px;
    right: 0px;
}

.add-question-toggle {
    position: fixed;
    right: 0px;
    top: 100px;
    background: #1d6bb3;
    width: 30px;
    height: 40px;
    border-radius: 3px 0px 0px 3px;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

body .add-question-toggle i {
    font-size: 20px;
}

.pdf-preview p {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
}

label.error {
    font-weight: 400;
}

.carousel
/*slider */

{
    position: relative;
}

.carousel .carousel-indicators
/* indicator wrapper*/

{
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    /* this is for indicators  */
}

#headcarousel_container .carousel-indicators li
/* indicators*/

{
    flex-grow: 1;
    /* make all indicator li similarly stretched */
    height: 40px;
    border-radius: 2px;
}

#headcarousel_container .carousel-indicators li.active {
    background-color: rgba(251, 222, 87, 0.5);
    /* changes indicators color when it is active*/
}

.carousel .carousel-inner .item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.spinner {
    stroke: #5f80ea;
    fill: #5f80ea;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0px;
}

.spinner svg {
    width: 30px !important;
    height: 30px !important;
    margin: 0px 10px 0px 0px;
}

.spinner span {
    color: #5f80ea;
}

.spinner-loader-svg {
    animation: rotate 0.8s linear infinite;
    -webkit-animation: rotate 0.8s linear infinite;
    -moz-animation: rotate 0.8s linear infinite;
    width: 174px;
    height: 174px;
    position: relative;
}


/**MULTISELECT **/

.multiselect-container {
    position: static!important;
}

#assignCourse .dropdown-toggle {
    display: none!important;
}

.multiselect-container {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow-y: auto!important;
    max-height: 200px!important;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.spinner-loader-svg .path {
    stroke-dasharray: 170;
    stroke-dashoffset: 20;
}

.attachment-files img {
    max-width: 100%;
}

.select-box-area {
    display: block;
    position: relative;
    border: 1px solid #b7b7b7;
    padding: 0px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
}

.select-box-area .btn-group {
    width: 100% !important;
}

.select-box-area .multiselect-container.dropdown-menu {
    width: 100%;
    box-shadow: none;
    border: 0px;
    border-radius: 0px;
    max-height: 260px !important;
    height: 210px !important;
}

.select-box-area.full-search-select-area .multiselect-container.dropdown-menu {
    padding-top: 0px;
    margin-top: 85px;
}

.select-box-area .multiselect-container.dropdown-menu li {
    position: relative;
    margin: 3px 0px;
}

.select-box-area .multiselect-container.dropdown-menu li a label {
    padding: 3px 10px 3px 40px;
}

.select-box-area .multiselect-container.dropdown-menu li a {
    background: transparent;
    color: #333;
}

.select-box-area .multiselect-container.dropdown-menu li.multiselect-item.multiselect-all {
    background: #f5f7fb;
    margin: 0px;
    padding: 5px 0px;
    border-bottom: 1px solid #dedede;
}

.select-box-area .multiselect-container.dropdown-menu input[type="checkbox"] {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0px;
}

.select-box-area .multiselect-container.dropdown-menu .checkbox:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #979797;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 0px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 2px;
    width: 16px;
    height: 16px;
    /* transition: all 0.3s; */
    position: absolute;
    left: 14px;
    top: 6px;
}

.select-box-area .multiselect-container.dropdown-menu li.active .checkbox:before {
    background: #1d6bb3;
    border-color: #1d6bb3;
}

.select-box-area .multiselect-container.dropdown-menu .checkbox:after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    /* transition: all 0.3s; */
    position: absolute;
    left: 19px;
    top: 8px;
}

.select-box-area .multiselect-container.dropdown-menu li.active .checkbox:after {
    opacity: 1;
}

.select-box-area .multiselect-container.dropdown-menu .multiselect-item.filter {
    background: #f5f7fb;
    margin: 0px;
    padding: 5px;
    position: absolute;
    width: 100%;
    left: 0px;
    z-index: 1;
    top: 0;
}

.select-box-area.full-search-select-area .multiselect-container.dropdown-menu .multiselect-item.multiselect-all {
    position: absolute;
    left: 0px;
    width: 100%;
    z-index: 1;
    top: 48px;
}

.select-box-area.full-search-select-area .multiselect-container.dropdown-menu .multiselect-item.multiselect-all label {
    position: inherit;
}

.select-box-area.full-search-select-area .multiselect-container.dropdown-menu .multiselect-item.multiselect-all label:before {
    margin-top: 2px;
}

.select-box-area.full-search-select-area .multiselect-container.dropdown-menu .multiselect-item.multiselect-all label:after {
    margin-top: 2px;
}

.select-box-area.full-search-select-area .multiselect-container.dropdown-menu .multiselect-item.multiselect-all a {
    display: inline-block;
}

.select-box-area.full-search-select-area .multiselect-container.dropdown-menu .multiselect-item.multiselect-all input {
    width: 86px;
    left: 13px;
    height: 19px;
    top: 4px;
}

.select-box-area.full-search-select-area .multiselect-container.dropdown-menu .multiselect-item.multiselect-all .selectallcount {
    position: absolute;
    right: 10px;
}

.select-box-area .multiselect-container.dropdown-menu .multiselect-item.filter .input-group {
    position: relative;
    margin: 0px;
}

.select-box-area .multiselect-container.dropdown-menu .multiselect-item.filter .input-group .input-group-addon {
    border-radius: 4px 0px 0px 4px;
}

.select-box-area .multiselect-container.dropdown-menu .multiselect-item.filter .input-group .multiselect-search {
    border-radius: 0px 4px 4px 0px;
}

.select-box-area .multiselect-container.dropdown-menu .multiselect-item.filter .input-group .input-group-btn {
    position: absolute;
    right: 15px;
    top: 10px;
}

.select-box-area .multiselect-container.dropdown-menu .multiselect-item.filter .input-group .input-group-btn .multiselect-clear-filter {
    background: none;
    width: auto;
    padding: 0px;
    border: 0px;
    opacity: 0.4;
}

.cs-btn-group.search-btn-assign {
    clear: both;
    margin: 10px 0px 0px;
    text-align: right;
}

.border-0 {
    border: 0px !important;
}

td.action-td {
    white-space: nowrap;
}

.modal-header .modal-title {
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.form-group .form-control.select {
    cursor: pointer;
}

.question-option li .form-check.cs-radio-check {
    margin: 0px 0px 0px 0px;
}

.question-option li .form-check.cs-radio-check label {
    font-weight: 600;
    font-size: 14px;
    color: #6f6f6f;
}

.custom-modal.full-width-modal .modal-dialog {
    height: 100vh;
    overflow: hidden;
}

.custom-modal.full-width-modal .modal-dialog .addNew-content {
    margin-top: 0px !important;
    padding-top: 15px;
}

.overflow-hidden {
    overflow: hidden!important;
}

.start-exam-block {
    max-width: calc(820px - 30px);
    margin: 0px auto;
    border: 1px solid #ebebeb;
    padding: 20px 20px;
    text-align: center;
    background: #fff;
    z-index: 2;
    top: -70px;
    position: relative;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.1);
}

.start-exam-block p {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    margin: 20px 0px 30px 0px;
    line-height: 32px;
}

.start-exam-block .btn {
    background: #2666b1;
    text-transform: uppercase;
    width: 100%;
    max-width: 300px;
    border: 1px solid #2666b1;
    font-weight: 600;
    font-size: 14px;
    height: 46px;
    line-height: 46px;
    padding: 0px 40px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.start-exam-block .btn:hover {
    border: 1px solid #2666b1;
    background: #134c90;
}

.start-exam-block .btn i {
    margin: 0 0 0 5px;
    font-weight: normal;
}

.btn.dark-blue-btn {
    background: #1c6bb3;
    width: auto;
    border: 1px solid #1c6bb3;
    font-weight: 400;
    font-size: 14px;
    height: 34px;
    line-height: 32px;
    padding: 0px 25px !important;
    transition: all 0.3s;
    max-width: inherit;
}

.btn.dark-blue-btn:hover,
.btn.dark-blue-btn:focus {
    border: 1px solid #104d85;
    background: #104d85;
}

.no-content-block {
    display: block;
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    border: 1px solid #ddd;
    position: relative;
    margin: 0px 0px 20px 0px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.no-content-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 30px 0 5px 0;
}

.no-content-block p {
    font-size: 16px;
    font-weight: 400;
    color: #868686;
}

.no-content-block i {
    width: 60px;
    height: 60px;
    background: #fbb;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    color: #1b1b1b;
}

.course-info-flex {
    display: flex;
}

div.wrapper {
    overflow: initial;
}

.nowrap-text {
    white-space: nowrap !important;
}

.inner-p-list-outer {
    max-width: 500px;
    width: 60%;
}

.inner-p-list-outer .inner-p-list {
    display: flex;
    /* max-width: 500px; */
}

.inner-p-list-outer .inner-p-list i {
    margin: 2px 8px 0px 0px;
}

/* ms changes */
.question-area .submit-btn-group .btn.btnDisabled {
    background-color: #d6d6d6;
    border-color: #d6d6d6;
    cursor: not-allowed;
}
.question-area .submit-btn-group .btn.btnDisabled:hover, .question-area .submit-btn-group .btn.btnDisabled:focus {
    background-color: #d6d6d6;
    border-color: #d6d6d6;
    opacity: 0.8;
    color: #555555;
    box-shadow: none;
}

.question-area .submit-btn-group a.nextpage {
    background: #fff;
    border-color: #d6d6d6;
    color: #8a8a8a;
    box-shadow: none;
}
.question-area .submit-btn-group a.nextpage:hover {
    background: #1d6bb3;
    border-color: #1d6bb3;
    color: #fff;
}
.question-option li .form-check.cs-radio-check {
    margin: 0px 0px 0px 0px;
    width: auto;
    display: inline-block;
}

.question-option ul li span {
    overflow: hidden;
    min-height: 100%;
}

.content .table-bordered>thead>tr>th {
    white-space: nowrap;
}

.nav-tabs-custom>.nav-tabs>li>a {
    cursor: pointer !important;
}

.right-heading-mlt-btn {
    display: flex;
}

.select-box-area .multiselect-container.dropdown-menu li a .selectallcount {
    float: right;
    font-weight: 400;
    opacity: 0.7;
    font-size: 14px;
}

.spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0px;
}

.spinner .spinner-loader-svg {
    width: 30px !important;
    height: 30px !important;
    margin: 0px 10px 0px 0px;
    animation: rotate 0.8s linear infinite;
    -webkit-animation: rotate 0.8s linear infinite;
    -moz-animation: rotate 0.8s linear infinite;
    position: relative;
}

.spinner .spinner-loader-svg .path {
    stroke-dasharray: 170;
    stroke-dashoffset: 20;
}

.spinner span {
    color: #1d1d21;
    font-size: 13px;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.move-handel {
    cursor: move !important;
}

.card.question_card_main {
    padding: 0;
    position: relative;
}

.card.question_card_main .checkbox {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
}

.card.question_card_main .card-header {
    padding: 20px 20px 20px 46px;
    z-index: 1;
}

.card.question_card_main .card-header a {
    display: flex;
    justify-content: space-between;
}

.card.question_card_main .card-header a i {
    position: relative;
}

.card.question_card_main .card-block {
    padding: 10px;
    padding-top: 0;
}

@media only screen and (max-width: 1368px) {
    body .page-view-title h3 {
        font-size: 20px;
    }
    body .start-exam-block p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1200px) {
    body .course-info-flex {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 991px) {
    body .start-exam-block {
        max-width: calc(100% - 30px);
        margin: 0px 15px;
        width: 100%;
    }
    body .start-exam-block p {
        margin: 10px 0px 20px 0px;
        line-height: normal;
    }
    .add-exam-modal .modal-right-aside {
        padding: 15px;
        width: 350px;
        position: fixed;
        right: -350px;
        overflow: auto;
        height: calc(100% - 56px);
        top: 56px;
        transition: all 0.3s;
    }
    .full-width-modal.add-exam-modal .modal-body .modal-left-content {
        padding: 15px;
        width: 100%;
    }
    body .add-question-toggle {
        display: flex;
    }
    body .add-exam-modal .modal-right-aside.slide {
        right: 0px;
    }
    body .add-exam-modal .modal-right-aside.slide .add-question-toggle {
        right: 350px;
    }
    body .full-width-modal .addNew-content .center-col {
        padding: 0px 15px;
    }
}

@media only screen and (max-width: 767px) {
    body .page-heading {
        flex-direction: column;
    }
    body .page-heading .left-heading {
        width: 100%;
        margin: 0px 0px 15px 0px;
    }
    body .page-heading .right-heading {
        width: 100%;
        margin: 0px 0px 0px 0px;
    }
    body .course-detail-inc .course-info {
        display: flex;
        flex-wrap: wrap;
    }
    body .course-detail-inc .course-info li {
        width: 33.33%;
        margin: 0px 0px 10px 0px;
    }
    body .course-detail-inc .course-info li:last-child {
        margin: 0px;
    }
}