/*

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: #20c380;
    --secondary-color: #36b7e1;
    --primary-hover-color: #333;
    --warning-color: #f59524;
    --danger-color: #ff3f57;
    --primary-gradient-v: linear-gradient(to top, #20c380 , #36b7e1);
    --primary-gradient-h: linear-gradient(to right, #20c380 , #36b7e1);
    --primary-gradient-h-alpha: linear-gradient(to right, rgba(32,195,128,0.9), rgba(54,183,225,0.9));
    --primary-font: 'Montserrat', sans-serif;
    --fade-black-color: #6f7071;
    --heading-color: #4e4e4b;
    --content-color: #5e5e5e;
    --fade-content-color: #919ba4;
    --grey-hover-color: #f5f5f5;
    --grey-background-color: #f5f9fa;
    --grey-background-alt : #f5f6f7;
    --border-color: #ccc;
    --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);
    --mat-shadow: 0 10px 21px #e7eeef;
    --shadow-ref: 7px 0 30px rgba(0, 0, 0, 0.5);
}

/*=====Global=====*/
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);
}
main {
    padding-top: 50px;
}

h1,h2,h3,h4,h5,h6 {
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    color: var(--heading-color);
}
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;
}
/*-----Back tp Top-----*/
#back-to-top {
    position: fixed;
    bottom: 70px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border: 0;
    text-decoration: none;
    transition: opacity 0.3s ease-out;
    transition: background-color 0.3s ease-out;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    opacity: 0;
}
#back-to-top:hover {
    background-color: var(--secondary-color);
}
#back-to-top.show {
    opacity: 1;
}
#back-to-top i {
  line-height: 40px;
  font-size: 18px;
}

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

.modal {
    overflow-y: auto;
}
.modal-open {
     overflow: auto;
}
.modal-open[style] {
    padding-right: 0px !important;
}
.modal.fixed {
    padding-right: 0 !important;
}

/*=====Animations=====*/
/*-----Fade-----*/

@keyframes animation-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*=====Helpers=====*/
.no-padding {
    padding: 0 !important;
}
.no-margin {
    margin: 0 !important;
}
.is-responsive {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.is-inline {
    display: inline;
}
.is-inlineblock {
    display: inline-block;
}
.is-block {
    display: block;
}
.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-greybg-alt {
    background-color: var(--grey-background-alt);
}
.has-primarybg {
    background-color: var(--primary-color);
}
.has-secondarybg {
    background-color: var(--secondary-color);
}
.has-primary-color {
    color: var(--primary-color) !important;
}
.has-danger-color {
    color: var(--danger-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;
}

/*=====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;
}


/*=====Components=====*/

/*-----Button-----*/
.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-white {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--content-color);
}
.button.is-white:hover {
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
    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-primary-inverse {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}
.button.is-primary-inverse:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--content-color);
}
.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;
}

/*------Navigation-----*/

.fe-nav {
    background-color: #fff;
}
.fe-dropdown {
    margin-right: 15px;
}
.fe-nav .navbar-nav>li>a {
    color: var(--content-color);
}
.fe-nav .navbar-nav>li>a:hover,
.fe-nav .navbar-nav>li>a.active {
    color: var(--primary-color);
}
.fe-nav .navbar-nav .open .fe-dropdown-menu>li>a {
    color: var(--content-color);
}
.fe-nav .navbar-nav .open .fe-dropdown-menu>li>a:hover { 
    color: var(--primary-color);
}
.fe-nav .navbar-nav .open .fe-dropdown-menu>li>a>i {
    font-size: 12px;
}
.fe-profile-dropdown-menu>li>a {
    color: var(--content-color);
}
.fe-profile-dropdown-menu>li>a:hover { 
    color: var(--primary-color);
}
.fe-brand {
    width: 140px;
    height: 50px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fe-brand span {
    font-weight: 600;
}
.fe-brand img {
    object-fit: cover;
    object-position: center center;
}
.fe-profile-dropdown {
    margin-left: 15px;
}
.fe-profile-button {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: none;
    outline: 0;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    bottom: 2px;
}
/*-----Divider-----*/ 
.fe-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}
/*-----Heading & Content-----*/

.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--heading-color);
}
.has-marginhead {
    margin-top: 18px;
    margin-bottom: 10px;
}
.content {
    font-size: 14px;
    color: var(--content-color);
}
.content.is-caps {
    text-transform: uppercase;
}
.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 !important;
}
.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-caps,
.h2.is-caps,
.h3.is-caps,
.h4.is-caps,
.h5.is-caps,
.h6.is-caps {
    text-transform: uppercase;
} 
/*----Normal Form-----*/
.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;
}
/*-----Cover Elements-----*/
.cover-head {
    color: #fff;
    white-space: pre-line;
    word-wrap: break-word;
    padding: 10px 5px;
}
.cover-head.has-divider {
    border-bottom: 1px solid #fff;
}
.cover-head.is-lg {
    font-size: 60px;
}
.cover-head.is-md {
    font-size: 40px;
}
.cover-head.is-sm {
    font-size: 25px;
}
.cover-head.is-xs {
    font-size: 18px;
}
.cover-head.is-light {
    font-weight: 300;
}
.cover-head.is-regular {
    font-weight: 400;
}
.cover-head.is-medium {
    font-weight: 500;
}
.cover-head.is-semibold {
    font-weight: 600;
}
.cover-head.is-bold {
    font-weight: 700;
}
.cover-head.is-extrabold {
    font-weight: 800;
}
.cover-head.is-boldblack {
    font-weight: 900;
}
.cover-text {
    color: #fff;
    margin-top: 15px;
}
.cover-text.is-lg {
    font-size: 30px;
}
.cover-text.is-md {
    font-size: 25px;
}
.cover-text.is-sm {
    font-size: 18px;
}
.cover-text.is-xs {
    font-size: 15px;
}
.cover-text.is-light {
    font-weight: 300;
}
.cover-text.is-regular {
    font-weight: 400;
}
.cover-text.is-medium {
    font-weight: 500;
}
.cover-text.is-semibold {
    font-weight: 600;
}
.cover-text.is-bold {
    font-weight: 700;
}
.cover-text.is-extrabold {
    font-weight: 800;
}
.cover-text.is-boldblack {
    font-weight: 900;
}
.cover-scroller {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    text-align: center;
    color: #fff;
    line-height: 40px;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    outline: 0;
}
.cover-scroller:focus {
    color: #fff;
}
.cover-scroller:hover {
    background-color: #fff;
    color: var(--primary-color);
}


/*----Addon Form-----*/
.addon-form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 10px 6px 45px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--content-color);
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.3s ease-in-out;
}
.addon-form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
}
.addon-form-control[placeholder] {
    font-size: 13px;
    color: var(--fade-content-color)
}
.addon-group {
    position: relative;
}
.addon-group .addon {
    position: absolute;
    top: 14px;
    left: 15px;
    padding-right: 10px;
    border-right: 1px solid var(--border-color);
}
.addon-checkbox {
    border: 1px solid var(--border-color);
    background-color: none;
    width: 10px;
    height: 10px;
}
/*----Default Form Control-----*/
.default-form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 4px 10px 6px 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--content-color);
    background-color: #fff;
    background-image: none;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.3s ease-in-out;
}
.default-form-control:focus {
    outline: 0;
    border: 1px solid var(--primary-color);
}
/*----Sections-----*/

.section {
    width: 100%;
}
.section.is-body {
    min-height: calc(100vh - 50px);
}
.section.is-full {
    width: 100%;
    min-height: 100vh;
}
.section.is-cover {
    background-size: cover;
    background-position: center center;
}
.section.has-padding {
    padding: 40px 0;
}
/*-----Footer-----*/
.fe-footer {
    min-height: 60px;
    background-color: var(--primary-hover-color);
}

/*----Cards-----*/
.fe-card {
    width: 100%;
    min-height: 50px;
}
.fe-card.is-rounded {
    border-radius: 10px;
}
.fe-card.has-shadow {
    box-shadow: var(--card--shadow);
}
.fe-course-card {
    width: 100%;
    min-height: 420px;
    border: 1px solid var(--border-color);
    border-radius: 10px; 
}
.fe-course-card-image {
    width: 100%;
    height: 190px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-color: var(--grey-background-color);
    overflow: hidden;
    background: url('../images/misc/coursew-featured1.jpg')no-repeat center center;
    background-size:cover;
}
.fe-course-card-desc {
    padding: 5px 15px 0 15px;
    min-height: 120px;
}
.fe-course-card-footer {
    padding: 0 15px;
}
/*=====Pages=====*/

/*-----Landing Page-----*/
.fe-startup-cover {
    background: url('../images/bg/hero.jpg');
    padding: 0 20px;
}
.fe-startup-contain {
    min-height: 100vh;
}
.fe-startup-card {
    flex-basis: 40%;
    padding: 20px 45px;
}
.fe-cover-main {
    background: url('../images/bg/hero.jpg');    
    min-height: calc(100vh - 50px);
}

.fe-cover-main .fe-cover-caption {
    width: 100%;
    padding-top: 13%;
    text-align: center;
}
.startup-dropdown {
    top: 2px;
}
/*-----Courses Page-----*/
.fe-cover-courses {
    background: url('../images/bg/hero.jpg');    
    min-height: 300px;
}
.fe-cover-courses .fe-cover-caption {
    width: 100%;
    padding-top: 8%;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}
/*-----Enroll Page-----*/
.fe-cover-enroll {
    background: url('../images/misc/coursew-featured1.jpg');    
    min-height: 400px;
    position: relative;
}
.fe-cover-enroll .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}
.fe-cover-enroll .overlay .fe-cover-caption {
    width: 100%;
    padding-top: 8%;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}
.enroll-course-desc p {
    line-height: 24px;
}

/*-----Course Access Page-----*/
.fe-course-access {
    width: 100%;
    min-height: calc(100vh - 50px);
    background-color: var(--grey-background-color);
    padding: 50px 70px;
}
.fe-course-play {
    text-align: right;
}
.fe-coursepanel {
    width: 200px;
    height: calc(100vh - 50px);
    background-color: #222d32;
    position: fixed;
    top: 50px;
    left: -200px;
    transition: left 0.3s ease-in-out;
    z-index: 99;
}
.fe-coursepanel.on {
    left: 0;
}
.fe-coursepanel-toggle {
    width: 40px;
    height: 60px;
    background-color: #222d32;
    position: fixed;
    left: 0;
    top: 30%;
    border: none;
    outline: 0;
    color: #fff;
    text-align: center;
    line-height: 60px;
    transition: left 0.3s ease-in-out;
    z-index: 99;
}
.fe-coursepanel-toggle:focus {
    outline: 0;
}
.fe-coursepanel-toggle:hover {
    background-color: var(--primary-color);
}
.fe-coursepanel-toggle.on {
    left: 200px;
}
.fe-coursepanel-menu {
    margin: 0;
    padding: 0;
    margin-top: 20px;
}
.fe-coursepanel-menu li {
    display: block;
    list-style: none;
}
.fe-coursepanel-menu li a {
    display: block;
    width: 100%;
    border-right: 5px solid transparent;
    color: #fff;
    padding: 18px 25px;
}
.fe-coursepanel-menu li a.active {
    border-left: 5px solid var(--primary-color);
}
.fe-coursepanel-menu li a:hover {
    background-color: #1e282c;
}
.fe-module {
    width: 100%;
}
.fe-module-head {
    display: block;
    text-decoration: none;
    width: 100%;
    padding: 8px 10px;
    background-color: var(--secondary-color);
    border:  1px solid var(--secondary-color);
    border-bottom: none;
    color: #fff;
    font-weight: 600;
}
.fe-module-head:focus {
    color: #fff;
}
.fe-module-head:hover {
    color: #fff;
}
.fe-module-desc {
    padding: 15px 15px;
    border: 1px solid var(--border-color);
    border-top: none;
}
/*-----Course Preview-----*/
.fe-preview-nav {
    width: 100%;
    min-height:35px;
    background: var(--primary-gradient-h);
    position: fixed;
    top: 0;
    left: 0;
}
.fe-preview-contain {
    width: 100%;
    height: calc(100vh - 35px);
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
}
.fe-module-sidepanel {
    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);
}
.fe-module-sidepanel.on {
    left: 0;
}
.fe-resource-sidepanel {
    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;
}
.fe-resource-sidepanel.on {
    right: 0;
}
.fe-module-toggle,
.fe-resource-toggle {
    height: 100%;
    line-height: 35px;
    border: none;
    outline: 0;
    color: #fff;
    background-color: rgba(0,0,0,.15);
    font-size: 15px;
    padding: 0 10px;
}
.fe-module-toggle:hover,
.fe-resource-toggle:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
.fe-preview-title {
    margin: 0;
    padding: 0;
}
.fe-preview-module-list {
    margin: 0;
    padding: 0;
}
.fe-preview-module-list li {
    list-style: none;
    display: block;
} 
.fe-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;
}
.fe-preview-module-list li a:hover {
    background-color: var(--grey-hover-color);
}
.fe-preview-module-list li a span.icon {
    margin-left:3px;
    font-size: 14px;
}
.fe-preview-module-list li a span.icon.orange {
    color: #d58512;
}
.fe-preview-module-list li a span.icon.green {
    color: #4CAF50;
}
.fe-preview-player {
    width: 100%;
    border: none;
    height: calc(100vh - 40px);
}
.fe-single-resource {
    padding: 15px 15px;
    border-bottom: 1px solid #c9cece;
}
/*-----Checkout-----*/

.fe-checkout-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 21px #e7eeef;
    text-align: left;
    width: 100%;
    min-height: 100px;
    padding: 20px;
    overflow: auto;
}
.fe-checkout-coursethumb {
    width: 100%;
    min-height: 80px;
    background: url('../images/misc/course-featured1.jpg')no-repeat center center;
    background-size: cover;
    border-radius: 6px;
}
.fe-checkout-divider {
    width: 100%; 
    height: 1px;
    margin: 0 auto;
    background-color: var(--border-color-v2);
    margin-top: 10px;
    margin-bottom: 10px;
}