/*

Author: Edwiza Solutions Pvt. Ltd.

*/


/*=====Font Imports=====*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700,800,900');

/*=====Variables=====*/
:root {
    --primary-color: #60ddc9;
    --secondary-color: #4fb4d6;
    --primary-hover-color: #222d32;
    --warning-color: #f59524;
    --danger-color: #ff3f57;
    --success-color: #5cb85c;
    --primary-gradient-h: linear-gradient(to right, #60ddc9 , #4fb4d6);
    --primary-gradient-v: linear-gradient(to bottom, #60ddc9 , #4fb4d6);
    --primary-gradient-h-alpha: linear-gradient(to right, rgba(96,221,201,0.9), rgba(79,180,214,0.9));
    --primary-font: 'Montserrat', sans-serif;
    --fade-black-color: #6f7071;
    --icon-color: #b8c7ce;
    --content-color: #3d464d;
    --fade-content-color: #919ba4;
    --grey-hover-color: #f5f5f5;
    --grey-background-color: #f5f9fa;
    --border-color: #f1f1f1;
    --border-color-v2: #dee1e2;
    --primary-transition: all 0.3s ease-in-out;
    --card--shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.16);
    --shadow-ref: 7px 0 30px rgba(0, 0, 0, 0.5);
}

/*=====Overrides=====*/

.modal {
    overflow-y: auto;
}
.modal-open {
     overflow: auto;
}
.modal-open[style] {
    padding-right: 0px !important;
}
.modal.fixed {
    padding-right: 0 !important;
}
.badge.is-small {
    display: inline-block;
    min-width: 10px;
    padding: 3px 5px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
}
@keyframes animation-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*=====Helpers=====*/
.is-hr {  
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid var(--border-color-v2);
}
.vanish {
    visibility: hidden;
}
.no-padding {
    padding: 0 !important;
}
.no-margin {
    margin: 0 !important;
}
.is-responsive {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.is-inline {
    display: inline !important;
}
.is-inlineblock {
    display: inline-block !important;
}
.has-border {
    border: 1px solid var(--border-color-v2);
}
.has-dashedborder {
    border: 1px solid var(--border-color-v2);
}
.has-dashedborder-black {
    border: 1px dashed var(--content-color)
}
.is-block {
    display: block !important;
}
.is-pointer {
    cursor: pointer;
}
.paddingtop-xs {
    padding-top: 10px;
}
.paddingtop-sm {
    padding-top: 20px;
}
.paddingtop-md {
    padding-top: 35px;
}
.paddingtop-lg {
    padding-top: 70px;
}
.margintop-xs {
    margin-top: 10px;
}
.margintop-sm {
    margin-top: 20px;
}
.margintop-md {
    margin-top: 35px;
}
.margintop-lg {
    margin-top: 70px;
}
.marginleft-xs {
    margin-left: 10px;
}
.marginleft-sm {
    margin-left: 20px;
}
.marginleft-md {
    margin-left: 35px;
}
.marginleft-lg {
    margin-left: 70px;
}
.clear {
    clear: both;
}
.elemmarginsep-xs {
    margin-right: 10px;
}
.elemmarginsep-sm {
    margin-right: 20px;
}
.is-flex {
    display: flex;
    flex-wrap: wrap;
}
.is-column {
    flex-direction: column;
}
.is-flexright {
    justify-content: flex-end;
}
.is-flexleft {
    justify-content: flex-end;
}
.is-flexcenter {
    justify-content: center;
}
.is-flexcenterboth {
    align-items: center;
    justify-content: center;
}
.is-white {
    color: #fff;
}
.is-black {
    color: var(--content-color);
}
.is-extrabold {
    font-weight: 800
}
.is-bold {
    font-weight: 700;
}
.is-semibold {
    font-weight: 600;
}
.is-medium {
    font-weight: 500;
}
.is-regular {
    font-weight: 400;
}
.is-light {
    font-weight: 300;
}
.is-extralight {
    font-weight: 200;
}
.has-whitebg {
    background-color: #fff;
}
.has-greybg {
    background-color: var(--grey-background-color);
}
.has-primarybg {
    background-color: var(--primary-color);
}
.has-warningbg {
    background-color: var(--warning-color);
}
.has-dangerbg {
    background-color: var(--danger-color);
}
.has-warning-color {
   color: var(--warning-color) !important;
}
.has-danger-color {
    color: var(--danger-color) !important;
}
.has-successbg {
    background-color: var(--success-color);
}
.has-secondarybg {
    background-color: var(--secondary-color) !important;
}
.has-primary-color {
    color: var(--primary-color) !important;
}
.has-secondary-color {
    color: var(--secondary-color) !important;
}
.has-nomargin {
    margin: 0 !important;
}
.has-nopadding {
    padding: 0 !important;
}
.has-nopaddingleft {
    padding-left: 0;
}
.has-nopaddingright {
    padding-right: 0;
}
.has-nopaddingtop {
    padding-top: 0;
}
.has-nopaddingbottom {
    padding-bottom: 0;
}
.has-shadow {
    box-shadow: var(--card--shadow);
}
/*=====Overrides=====*/
.alert.is-primary {
    background-color: var(--primary-color);
    color: #fff;
}
.alert.is-primary .close {
    color: #fff;
    opacity: 0.6;
}
.alert.is-primary .close:hover {
    opacity: 1;
}
.alert.is-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}
.alert.is-secondary .close {
    color: #fff;
    opacity: 0.6;
}
.alert.is-secondary .close:hover {
    opacity: 1;
}
.alert.is-white {
    background-color: #fff;
    color: var(--content-color);
    border: 1px solid var(--border-color-v2);
}
.alert.is-white .close {
    color: var(--content-color);
    opacity: 0.6;
}
.alert.is-white .close:hover {
    opacity: 1;
}
.checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline {
    margin-left: 0;
}
/*=====Global & Theming=====*/
a {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
body {
    font-family: var(--primary-font);
    color: var(--content-color);
}
h1,h2,h3,h4,h5,h6 {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
}
a:-webkit-any-link {
    cursor: pointer;
    text-decoration: none;
}
a:focus, a:hover {
    text-decoration: none;
}
input[type=checkbox], 
input[type=radio] {
    margin: 0;
    cursor: pointer;
}
label input[type=radio] {
    margin-top: 3px;
}
label input[type=checkbox] {
    margin-top: 3px;
}

input.disabled {
    background-color: #F0F0F0!important;
    cursor: not-allowed!important;
}

.main-panel-dash {
    width: calc(100% - 75px);
    min-height: calc(100vh - 50px);
    position: absolute;
    top: 50px;
    left: 75px;
}
.main-panel-dash.padding {
    padding: 20px 20px 50px 20px;
}
.main-panel-fluid {
    width: 100%;
    min-height: 100vh;
}
.panel-form {
    width: 100%;
    height: 40px;
    display: block;
    box-shadow: none;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--content-color);
    font-family: var(--primary-font);
    background-color: var(--grey-background-color);    
    border-radius: 6px;
    border: 1px solid var(--border-color-v2);
    transition: all 0.3s ease-in-out;
}
.panel-form::placeholder {
    color: var(--fade-content-color);
    font-size: 14px;
}   
.panel-form::-webkit-input-placeholder {
    color: var(--fade-content-color);
    font-size: 14px;
}
.panel-form:focus {
    outline: 0;
    border: 1px solid var(--primary-color);
}
.input:-webkit-autofill {
    background-color: var(--grey-background-color) !important;
    background-image: none !important;
    color: var(--content-color) !important;
}
.panel-label {
    font-weight: 500;
    font-size: 13px;
}
.panel-label a {
    color: var(--primary-color);
    font-weight: 600;
}
.panel-label input[type=checkbox] {
    margin-top: 3px;
}
.panel-link {
    font-size: 13px;
    color: var(--fade-content-color);
    font-weight: 300;
    display: inline-block;
    margin-bottom: 10px;
}
.panel-link:hover {
    color: var(--primary-color);
}
.panel-inst {
    font-size: 13px;
    color: var(--fade-content-color);
    font-weight: 300;
}
.panel-inst a {
    font-weight: 600;
    color: var(--primary-color);
}
.button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    outline: 0;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}
.button.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.button:active,
.button:focus {
    outline: 0;
}
.button.is-warning {
    background-color: #f0ad4e;
    border: 1px solid #f0ad4e;
    color: #fff;
}
.button.is-info {
    background-color: #31b0d5;
    border: 1px solid #31b0d5;
    color: #fff;
}
.button.is-danger {
    background-color: #d9534f;
    border: 1px solid #d9534f;
    color: #fff;
}
.button.is-warning:hover,
.button.is-info:hover,
.button.is-danger:hover {
    background-color: var(--primary-hover-color);
    border: 1px solid var(--primary-hover-color);
}
.button.is-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
.button.is-secondary {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
}
.button.is-primary:hover,
.button.is-secondary:hover {
    background-color: var(--primary-hover-color);
    border: 1px solid var(--primary-hover-color);
}
.button.is-gradient {
    background: var(--primary-gradient-h);
    border: 1px solid var(--primary-color);
}
.button.is-gradient:hover {
    background: var(--primary-hover-color);
    border: 1px solid var(--primary-hover-color);
}
.button.is-ghost {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}
.button.is-ghost {
    color: var(--content-color);
    background-color: #fff;
    border-color: #fff;
}
.button.is-normal {
    background-color: #fff;
    border: 1px solid #ccc;
    color: var(--content-color);
}
.button.is-normal:hover {
    background-color: var(--grey-hover-color);
}
.button.is-small {
    padding: 3px 6px;
    font-size: 12px;
}
.button.is-medium {
    padding: 4px 8px;
}
.button.has-margin {
    margin-right: 10px;
}
.toggle-button {
    border: none;
    outline: 0;
    background-color: rgba(0,0,0,.15);
    font-size: 15px;
    padding: 0 10px;
}
.toggle-button:focus {
    outline: 0;
}
.toggle-button i {
    font-size: 17px;
}
.toggle-button.is-white {
    color: #fff;
}
.toggle-button.is-white:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
/*----Icon Button----*/
.icon-button {
    border: none;
    outline: 0;
}
.icon-button.is-black {
    color: var(--content-color);
}
.icon-button.is-black:hover {
    color: var(--primary-color) !important;
}
.icon-button.is-black:hover p {
    color: var(--primary-color);
    transition: var(--primary-transition);
}
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--content-color);
}
.has-marginhead {
    margin-top: 18px;
    margin-bottom: 10px;
}
.content {
    font-size: 14px;
    color: var(--content-color);
}
.content.is-white {
    color: #fff;
}
.content.is-light {
    font-weight: 300;
}
.content.is-regular {
    font-weight: 400;
}
.content.is-medium {
    font-weight: 500;
}
.content.is-semibold {
    font-weight: 600;
}
.content.is-bold {
    font-weight: 700;
}
.content.is-large {
    font-size: 18px;
}
.content.is-normal {
    font-size: 16px;
}
.content.is-small {
    font-size: 12px;
}
.content.is-fade {
    color: var(--fade-content-color);
}
.content.is-fadeblack {
    color: var(--fade-black-color);
}
.content.is-italic {
    font-style: italic;
}
.link {
    color: var(--primary-color);
    transition: var(--primary-transition);
}
.link:hover {
    text-decoration: underline;
}
.link.is-primary {
    color: var(--primary-color);
}
.link.is-secondary {
    color: var(--secondary-color);
}
.link.is-white {
    color: #fff;
}
.link.is-white:hover {
    color: rgba(255, 255, 255, 0.9)
}
.link.is-normal {
    font-size: 16px;
}
.link.is-large {
    font-size: 18px;
}
.link.is-small {
    font-size: 12px;
}
.link.is-light {
    font-weight: 300;
}
.link.is-regular {
    font-weight: 400;
}
.link.is-medium {
    font-weight: 500;
}
.link.is-semibold {
    font-weight: 600;
}
.h1.is-white,
.h2.is-white,
.h3.is-white,
.h4.is-white,
.h5.is-white,
.h6.is-white {
    color: #fff;
}
.h1.is-light,
.h2.is-light,
.h3.is-light,
.h4.is-light,
.h5.is-light,
.h6.is-light {
    font-weight: 300;
}
.h1.is-regular,
.h2.is-regular,
.h3.is-regular,
.h4.is-regular,
.h5.is-regular,
.h6.is-regular {
    font-weight: 400;
}
.h1.is-medium,
.h2.is-medium,
.h3.is-medium,
.h4.is-medium,
.h5.is-medium,
.h6.is-medium {
    font-weight: 500;
}
.h1.is-semibold,
.h2.is-semibold,
.h3.is-semibold,
.h4.is-semibold,
.h5.is-semibold,
.h6.is-semibold {
    font-weight: 600;
}
.h1.is-bold,
.h2.is-bold,
.h3.is-bold,
.h4.is-bold,
.h5.is-bold,
.h6.is-bold {
    font-weight: 700;
}

.h1.is-extrabold,
.h2.is-extrabold,
.h3.is-extrabold,
.h4.is-extrabold,
.h5.is-extrabold,
.h6.is-extrabold {
    font-weight: 800;
}
.h1.is-boldblack,
.h2.is-boldblack,
.h3.is-boldblack,
.h4.is-boldblack,
.h5.is-boldblack,
.h6.is-boldblack {
    font-weight: 900;
}
.h1.is-fade,
.h2.is-fade,
.h3.is-fade,
.h4.is-fade,
.h5.is-fade,
.h6.is-fade {
    color: var(--fade-content-color);
}   
.form-body .form-control {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border-color-v2);
}
.form-body .form-control.is-small {
    padding: 4px 5px;
    font-size: 13px;
    height: 30px;
}
/*=====Components=====*/


/*-----Top Navigation-----*/
.top-nav-contain {
    /*width: calc(100% - 50px);*/
    width: 100%;
    min-height: 50px;
    background: var(--primary-gradient-h);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
.top-nav {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 20px 0 20px;
}
.top-nav-left {
    flex-basis: 50%;
    display: flex;
    flex-wrap: wrap;
}
.top-nav-right {
    flex-basis: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.messages-icon {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 50px;
    height: 50px;
    padding: 0 18px 0 18px;
    position: relative;
}
.messages-icon:hover {
    background-color: rgba(0,0,0,0.2);
    color: #fff;
}
.messages-icon .message-alert {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--warning-color);
    border-radius: 50%;
    top: 13px;
    right: 12px;
}
.notification-icon {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 50px;
    line-height: 50px;
    padding: 0 18px 0 18px;
    position: relative;
}
.notification-icon:hover {
    background-color: rgba(0,0,0,0.2);
    color: #fff;
}
.notification-alert {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--danger-color);
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    line-height: 15px;
    box-shadow: 0 0 0 3px rgba(255,63,87,0.5);
    top: 10px;
    right: 8px;
}
.profile-menu {
    padding: 0 18px 0 18px;
    position: relative;
}
.profile-icon {
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.2);
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    position: relative;
    bottom: 2px;
}
.profile-icon:hover,
.profile-icon:active,
.profile-icon:focus {
    color: #fff;
    text-decoration: none;
    background-color: var(--primary-hover-color);
}
.profile-menu-draw {
    width: 300px;
    min-height: 200px;
    margin: 6px 0 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
    padding-bottom: 20px;
}
.user-card {
    width: 100%;
    min-height: 100px;
    background-color: #fcfcfc;
    border-bottom: 1px solid var(--border-color-v2);
    padding: 0;
    text-align: center;
    padding: 40px 0;
}
.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin: 0 auto;
    border: 3px solid var(--border-color-v2);
}
.avatar.is-large {
    width: 150px;
    height: 150px;
}
.avatar img {
    object-fit: contain;
    width: 100%;
    height : 100%;
    object-fit: cover;
}
.user-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--content-color);
    margin: 4px 0;
}
.user-card p {
    font-size: 12px;
    font-weight: 300;
    color: var(--fade-content-color);
    margin: 0;
}
.profile-menu-footer {
    padding: 20px 10px 0 10px;
}
/*-----Breadcrumbs-----*/
.breadcrumbs {
    background-color: transparent;
    margin-bottom: 0;
}
.breadcrumbs li a {
    color: var(--primary-color);
}
.breadcrumbs li a.active {
    color: var(--content-color);
}
/*-----Fixed Height Cards-----*/
.card {
    width: 100%;
    background-color: #fff;
    box-shadow: var(--card--shadow);
    position: relative;
}
.card.has-height-xs {
    min-height: 75px;
} 
.card.has-height-sm {
    min-height: 150px;
} 
.card.has-height-md {
    min-height: 200px;
} 
.card.has-height-lg {
    min-height: 350px;
} 
/*-----Info Box-----*/
.info-box {
    display: block;
    min-height: 90px;
    background: #fff;
    width: 100%;
    box-shadow: var(--card--shadow);
    border-radius: 2px;
    margin-bottom: 15px;
}
.info-box-icon {
    border-top-left-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 2px;
    display: block;
    float: left;
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 35px;
    line-height: 90px;
    color: #fff;
}
.info-box-content {
    padding: 5px 10px;
    margin-left: 90px;
    color: var(--content-color);
}
.info-box-text {
    text-transform: uppercase;
}
.info-box-number {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

/*-----Control List Buttons-----*/
.control-list-buttons {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.control-list-buttons li {
    list-style: none;
    margin-right: 10px;
}
.control-list-buttons li:last-child {
    margin-right: 0;
}
.control-list-buttons li a {
    color: var(--content-color);
    width: 35px;
    height: 35px;
    outline: 0;
    border-radius: 50%;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    line-height: 35px;
    display: inline-block;
}
.control-list-buttons li a:hover {
    background-color: var(--grey-hover-color);
}
/*-----Course Card-----*/
.course-card {
    width: 100%;
    min-height: 380px;
    box-shadow: var(--card--shadow);
    position: relative;
    padding-bottom: 30px;
}
.course-card.is-small {
    min-height: 10px;
    padding-bottom: 10px;
}
.course-card.is-small .course-card-report {
    padding: 5px 20px 0 0;
}
.course-card-cell {
    padding: 0 10px;
    margin-bottom: 15px;
}
.course-featured-image {
    width: 100%;
    height: 150px;
    background-color: var(--grey-hover-color);
    background: url('../images/misc/course-featured1.jpg')no-repeat center center;
    background-size: cover;
    position: relative;
}
.course-featured-image .checker {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.course-featured-image .checker.checker-input {
    width: 20px;
    height:20px;
    cursor: pointer;
}
.course-card-desc {
    padding: 0 10px;
    min-height: 85px;
}
.course-card-footer {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    width: 100%;
}

/*-----User Card-----*/

.user-block {
    width: 100%;
    min-height: 120px;
    box-shadow: var(--card--shadow);
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.user-block .checker {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.user-block-avatar {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.user-block-desc {
    flex: 3;
    padding: 25px 5px 10px 0;
}
.user-block-title {
    padding-left: 10px;
}
.avatar-icon {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 55px;
    font-size: 15px;
    font-weight: 600;
}
.avatar-icon img {
    object-fit: contain;
    width: 100%;
    height : 100%;
    object-fit: cover;
}
.course-block-controls ul {
    margin: 0; 
    padding: 0;
}
.course-block-controls ul li {
    display: inline-block;
    list-style: none;
}
/*-----Dashed Area-----*/
.dashed-area {
    width: 100%;
    min-height: 150px;
    border: 1px dashed var(--content-color);
    padding: 2%;
}
.dashed-area.has-height-xs {
    height: 200px;
    overflow: auto;
}
.dashed-area.has-height-sm {
    height: 250px;
    overflow-y: auto;
}
.dashed-area.has-height-md {
    height: 350px;
    overflow-y: auto;
}
/*-----Panels-----*/
.toggle-panel {
    width: 100%;
    border: 1px solid var(--border-color-v2);
}

.toggle-panel .toggle-panel-head {
    width: 100%;
    padding: 10px 10px;
    display: block;
    text-decoration: none;
}
.toggle-panel.is-primary .toggle-panel-head {
    background-color: var(--primary-color);
    color: #fff;
}
.toggle-panel.is-secondary .toggle-panel-head {
    background-color: var(--secondary-color);
    color: #fff;
}
.toggle-panel.has-height-md .toggle-panel-content-wrap {
    height: 450px;
    overflow: auto;
    padding: 10px 10px 30px 10px;
}
.toggle-panel.has-height-sm .toggle-panel-content-wrap {
    height: 350px;
    overflow: auto;
    padding: 10px 10px 30px 10px;
}
.toggle-panel-content {
    display: none;
}
/*-----Meters-----*/
.meter-rounded {
    width: 100%;
    position: relative;
}
.meter-rounded.is-success,
.meter-rounded.is-warning,
.meter-rounded.is-danger {
    background-color: #f3f3f3;
}
.meter-rounded.is-small {
    height: 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color-v2);
}
.meter-rounded .guage {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 12px;
    right: 0;
}
.meter-rounded.is-success .guage {
    background-color: #4CAF50;
}
.meter-rounded.is-warning .guage {
    background-color: var(--warning-color);
}
.meter-rounded.is-danger .guage {
    background-color: var(--danger-color);
}
/*-----Normal Area-----*/
.normal-area {
    width: 100%;
    border: 1px solid var(--border-color-v2);
}
/*-----User Status Icon-----*/
.user-status-icon {
    font-size: 12px;
}
.user-status-icon.is-green { 
    color: #5cb85c;
}
.user-status-icon.is-orange { 
    color: #f0ad4e;
}
.user-status-icon.is-disabled { 
    color: #5e5e5e;
}
/*-----Static List-----*/
.static-list {
    width: 100%;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}
.static-list li {
    list-style: none;
    display: block;
    border-bottom: 1px solid var(--border-color-v2);
    padding: 8px 15px;
    transition: background-color 0.3s ease-in-out;
}
.static-list.is-checkbox li label {
    padding: 15px 40px;
    margin: 0;
} 
.static-list.is-checkbox li:hover {
    background-color: var(--grey-hover-color);
}
.static-list.is-center li {
    text-align: center;
}
.static-list li:last-child {
    border-bottom: none;
}


/*-----Settings Panel-----*/
.settings-panel {
    width: 100%;
    min-height: 200px;
}
.settings-head {
    color: var(--content-color);
    font-size: 24px;
    font-weight: 400;
}
.settings-head-controls {
    text-align: right;
}
.bulk-actions {
    margin-right: 10px;
}
.settings-head {
    border-bottom: 1px solid var(--border-color-v2);
}
.settings-form-control {
    width: 100%;
    height: 40px;
    border: none;
    display: block;
    box-shadow: none;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--content-color);
    border: 1px solid transparent;
    font-family: var(--primary-font);
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid var(--border-color-v2);
    transition: all 0.3s ease-in-out;
}
.settings-form.disabled {
    pointer-events: none;
}
.settings-form-control.is-half {
    width: 50%;
}
.settings-form.disabled input[type=text],
.settings-form.disabled input[type=email],
.settings-form.disabled select,
.settings-form.disabled textarea {
    background-color: var(--border-color);
}
.settings-form.disabled button {
    opacity: 0.6 !important;
}

.settings-form-control:focus {
    outline: 0;
    border: 1px solid var(--primary-color);
}
textarea.settings-form-control {
    min-height: 150px;
}
.settings-tab>li.active>a,
.settings-tab>li.active>a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    border-bottom-color: transparent;
}
 .settings-tab>li>a {
     color: var(--content-color);
 }
 .settings-tab>li>a:hover,
 .settings-tab>li.active>a:focus {
     background-color: var(--primary-color);
     color: #fff;
     border-color: var(--primary-color);
 }
 .settings-tab>li>a:focus, 
 .settings-tab>li>a:hover,
 .settings-tab>li.active>a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
 }
/*-----Modules Area-----*/

.module {
    flex-basis: calc(50% - 15px);   
    margin-right: 15px;
}
.module:nth-child(even) {
    margin-right: 0;
}
.module-head {
    display:flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 35px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.module-handle {
    min-width: 40px;
    min-height: 35px;
    background-color: rgba(0,0,0,0.2);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.module-title {
    color: #fff;
    min-height: 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    font-size: 14px;
    flex: 13;
}
.module-toggler {
    min-width: 40px;
    min-height: 35px;
    flex: 1;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.module-content {
    width: 100%;
    padding: 3%;
    background-color: var(--grey-background-color);
    border: 1px solid var(--border-color-v2);
    display: none;
}
.module-controls {
    text-align: center;
}
.module-save {
    text-align: center;
}
.module-messages {
    width: 100%;
    min-height: 150px;
    border: 1px dashed var(--content-color);
    padding: 2%;
}
.module-message {
    width:100%;
    min-height: 100px;
    color: #fff;
}
.module-message-head {
    width: 100%;
    padding: 6px 15px;
    margin: 0;
    background-color:var(--primary-color);
}
.module-message-control {
    background-color: var(--grey-hover-color);
    border: 1px solid var(--border-color-v2);
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/*-----View Header-----*/

.view-header h3 {
    margin-bottom: 3px; 
}
.sub-header {
    border-bottom: 1px solid var(--border-color-v2);
}

/*-----Toggle Check-----*/
.toggle-check-input {
    width: 1px;
    height: 1px;
    position: absolute;
}
.toggle-check input[type="checkbox"] {
    margin: 4px 0 0 4px;
}
.toggle-check-text {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    background: #CCC;
    padding: 0.25em 0.5em 0.25em 2em;
    border-radius: 1em;
    min-width: 2em;
    color: #FFF;
    cursor: pointer;
    transition: background-color 0.15s;
}
.toggle-check-text:after {
    content: ' ';
    display: block;
    background: #FFF;
    width: 1em;
    height: 1em;
    border-radius: 1em;
    position: absolute;
    left: 0.3em;
    top: 0.40em;
    transition: left 0.15s, margin-left 0.15s;
}
.toggle-check-text:before {
    content: 'No';
}
.toggle-check-input:checked ~ .toggle-check-text {
    background: var(--primary-color);
    padding-left: 0.5em;
    padding-right: 2em;
}
.toggle-check-input:checked ~ .toggle-check-text:before {
    content: 'Yes';
}
.toggle-check-input:checked ~ .toggle-check-text:after {
    left: 100%;
    margin-left: -1.4em;
}

/*-----Search Box-----*/
.search-box {
    width: 75px;
    height: 50px;
    max-height: 50px;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 65px;
    color: var(--content-color);
    font-size: 16px;
}
.search-box:hover {
    background-color: var(--grey-hover-color);
    color: var(--content-color);
}
.search-area {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 99;
    animation-name: animation-fade;
    animation-duration: 0.8s;
    display: none;
    padding: 20px 30px;
}
.search-close {
    background: transparent;
    border: none;
    outline: 0;
    color: var(--content-color);
    font-size: 23px;
}
.search-close:hover,
.search-close:focus {
    outline: 0;
    color: var(--primary-color);
}
.search-content {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-area.on {
    display: block;
}
.search-form {
    width: 60%;
    margin: 0 auto;
}
.search-control {
    width: 100%;
    min-height: 40px;
    border: none;
    border-bottom: 1px solid var(--content-color);
    background-color: transparent;
    position: relative;
}
.search-control:focus {
    outline: 0;
}
.search-control::-moz-placeholder {
    font-size: 18px;
}
.search-control::-webkit-input-placeholder {
    font-size: 18px;
}
.search-control::placeholder {
    font-size: 18px;
}
.search-button{
    min-height: 40px;
}
/*-----Side Panel-----*/
.side-panel {
    width: 75px;
    height: calc(100vh - 50px);
    position: fixed;
    left: 0;
    z-index: 999 !important;
    top: 50px;
    background-color: #222d32;
    overflow: visible;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.side-panel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.side-panel-menu {
    list-style: none;
    margin: 0;
    padding:0;
}
.side-panel-menu li {
    list-style: none;
    text-align: center;
    position: relative;
}
.side-panel-menu li a {
    color: var(--icon-color);
    font-weight: 300;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 15px 0 15px 0;
    border-left: 3px solid transparent;    
}
.side-panel-menu li a span {
    display: block;
    font-size: 11px;
    margin-top: 3px;
}
.side-panel-menu li a:hover {
    background-color: #1e282c;
    border-color: var(--primary-color);
    color: #fff;
}
.side-panel-menu li a.active {
    background-color: #1e282c;
    border-color: var(--primary-color);
    color: #fff;
}
.side-panel-expand {
    width: 200px;
    max-width: 200px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 75px;
    display: none;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    border: 1px solid rgba(0,0,0,.15);
    z-index: 99999 !important;
}
.side-panel-expand ul {
    padding: 0;
    margin:0;
}
.side-panel-expand ul li {
    list-style: none;
    display: block;
    text-align: left;
}
.side-panel-expand ul li a {
    display: block;
    color: var(--icon-color);
    text-decoration: none;
    border: none;
    padding: 10px 0 10px 25px;
    text-align: left;
    color: var(--content-color);
    font-size: 13px;
}
.side-panel-expand ul li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}
/* .side-panel-menu li:hover .side-panel-expand {
    display: block;
} */
/*-----Preview Component-----*/

.preview-nav {
    width: 100%;
    min-height:35px;
    background: var(--primary-gradient-h);
    position: fixed;
    top: 0;
    left: 0;
}
.preview-contain {
    width: 100%;
    height: calc(100vh - 35px);
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
}
.preview-side-panel-left {
    width: 180px;
    height: calc(100vh - 35px);
    background-color: #eaeded;
    position: fixed;
    left: -180px;
    top: 35px;
    z-index: 2;
    transition: 0.3s all ease-in-out;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.module-sidebar.on {
    left: 0;
}
.preview-side-panel-right {
    width: 180px;
    height: calc(100vh - 50px);
    background-color: #eaeded;
    position: fixed;
    right: -180px;
    top: 35px;
    z-index: 3;
    transition: 0.3s all ease-in-out;
}
.resource-sidebar {
    padding: 20px 0;
}
.resource-sidebar.on {
    right: 0;
}
.module-toggle,
.resource-toggle {
    height: 100%;
    line-height: 35px;
}
.preview-title {
    margin: 0;
    padding: 0;
}
.preview-module-list {
    margin: 0;
    padding: 0;
}
.preview-module-list li {
    list-style: none;
    display: block;
} 
.preview-module-list li a {
    display: block;
    padding: 15px 5px;
    color: var(--content-color);
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #c9cece;
}
.preview-module-list li a:hover {
    background-color: var(--grey-hover-color);
}
.preview-module-list li a span.icon {
    margin-left:3px;
    font-size: 14px;
}
.preview-module-list li a span.icon.orange {
    color: #d58512;
}
.preview-module-list li a span.icon.green {
    color: #4CAF50;
}
.preview-player {
    width: 100%;
    border: none;
    height: calc(100vh - 50px);
}
.single-resource {
    padding: 15px 15px;
    border-bottom: 1px solid #c9cece;
}
/*=====Modals & Prompts=====*/
.prompt-modal .modal-content {
    border-radius: 0;
}
.prompt-modal .modal-header,
.prompt-modal .modal-footer {
    border: none;
}
.prompt-modal .modal-footer {
    text-align: center;
}
.prompt-modal .modal-header .close {
    font-size: 25px;
    outline: 0;
}
.default-modal .modal-content {
    border-radius: 0;
}
.default-modal .modal-header,
.default-modal .modal-footer {
    border: none;
}
.default-modal .modal-header .close {
    font-size: 25px;
    outline: 0;
}
.default-modal .modal-footer {
    text-align: center;
}

/*=====Pages=====*/

/*-----Startup-----*/

.login-wrap {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 0 20px;
}
.startup-panel {
    flex-basis: 500px;
    border-radius: 8px;
    box-shadow: var(--card--shadow);
}
.startup-panel.is-large {
    flex-basis: 650px;
}
.startup-panel-head {
    width: 100%;
    height: 150px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: url('../images/bg/startup-panel-bg.jpg')no-repeat center center;
    background-size: cover;
    position: relative;
}
.startup-panel-head .overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: var(--primary-gradient-h-alpha);
    display: flex;
    align-items: center;
    justify-content: center;
}
.startup-panel-body {
    padding: 20px 30px 10px 30px;
}
.login-helper {
    padding-top: 10px;
}
.signup-wrap {
    display: flex;
    flex-wrap: wrap;
}
.signup-cell {
    flex-basis: 285px;
    margin-right: 20px;
}
.signup-cell:last-child {
    margin-right: 0;
}

/*-----Course Management-----*/

.add-module-head {
    display: flex;
}
.add-module-menu,
.add-module-file-menu{
    width: 100%;
    border-radius: 0;
    margin: 8px 0 0;
}
.widget-select {
    display: inline;
    margin-right: 20px;
}
.wiz-course-modal {
    max-height: 400px;
    overflow-y: auto;
}
.wiz-course-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.wiz-course-card {
    flex-basis: calc(33.33% - 20px);
    box-shadow: var(--card--shadow);
    margin-right: 20px;
}
.wiz-course-card:nth-child(even) {
    margin-right: 0;
}
.wiz-course-thumb {
    width: 100%;
    height: 100px;
    background: url('http://via.placeholder.com/350x150')no-repeat center center;
    background-size: cover;
}
.wiz-course-desc {
    padding: 0 10px 15px 10px;
}
.course-featured-thumb {
    width: 175px;
    height: 100px;
}
/*-----Main Setting-----*/

.avatar-thumb {
    width: 150px;
    height: 150px;
    border-radius: 8px;
}
.avatar-thumb img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center center;
}
.cover-thumb {
    width: 100%;
    min-height: 250px;
    background: url('../images/misc/hero.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}
/*-----Reports-----*/
