@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Thin.ttf');
    font-weight: 100;
    font-style:normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-ThinItalic.ttf');
    font-weight: 100;
    font-style:italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.ttf');
    font-weight: 300;
    font-style:normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-LightItalic.ttf');
    font-weight: 300;
    font-style:italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.ttf');
    font-weight: 400;
    font-style:normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic.ttf');
    font-weight: 400;
    font-style:italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.ttf');
    font-weight: 500;
    font-style:normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-MediumItalic.ttf');
    font-weight: 500;
    font-style:italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.ttf');
    font-weight: 700;
    font-style:normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-BoldItalic.ttf');
    font-weight: 700;
    font-style:italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Black.ttf');
    font-weight: 900;
    font-style:normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-BlackItalic.ttf');
    font-weight: 900;
    font-style:italic;
}


body{
    font-family: 'Roboto', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color:#f4f5f7;
    color:#203558;
}

.main{
    margin-left:0;
}

.nav-expanded .main{
    margin-left:80px;
}

.navbar-menu-toggler-container{
    width:80px;
}

.main-nav{
    width:80px;
    left:-80px;
}

.nav-expanded .main-nav{
    left:0;
}

.main-nav .nav-item-text{
    display:none;
}

.main-nav{
    position: fixed;
    top: 126px;
    bottom: 0;
    z-index: 100;
    background-color: #fff;
    border-right: 1px solid #dbdbdb;
    overflow-y:auto;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav .nav-link{
    display:block;
    font-weight:500;
    color:#203558 !important;
    font-size:14px;
    padding:12px;
    text-align:center;
}

.main-nav .nav-link.dropdown-toggle::after{
    display:none;
}

.nav-show-submenu .main-nav{
    width:280px;
}

.nav-show-submenu .main-nav .nav-link{
    padding: 12px 18px 12px inherit;
    text-align: left;
}

.nav-show-submenu .main-nav .nav-item-text{
    display:inline-block;
}

.nav-show-submenu .main-nav .nav-item-icon{
    padding-right:12px;
}

.nav-show-submenu .nav-user-details-name{
    display:inline-block;
    margin-left:16px;
}

.nav-show-submenu .nav-user-details{
    padding: 20px 16px;
}

.main-nav .nav-item .nav-link{
    border-radius:20px;
    border:1px solid #fff;
}

.main-nav .nav-item.active .nav-link{
    background-color: #dfdee6;
    border:1px solid #dfdee6;
    color:#000 !important;
}

.main-nav .nav-item.active .nav-link{
    color:#203558;
}

.main-nav .nav-item-icon{
    color:#3f516f;
    font-size:18px;
}

.main-nav .nav-item .nav-link.show{
    border:1px solid #f3f3f3;
    border-bottom:0;
    transition: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color:#dfdee6;
}

.main-nav .nav-item.active .nav-link.show{
    background-color:#dfdee6;
}


.main-nav .dropdown-menu{
    position:relative !important;
    width:100% !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    transform:none !important;
    border-color:#f3f3f3 !important;
    background-color:#f3f3f3 !important;
    border-radius: 0 0 20px 20px !important;
    font-size: 14px !important;
    overflow:hidden !important;
}

.main-nav .dropdown-toggle{
    transition:none !important;
}

.dropdown-menu{
    z-index:999;
    -webkit-box-shadow: 0px 7px 8px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 7px 8px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 7px 8px 0px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,.05);
}

.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active{
    background-color:#85529c;
}


.dropdown-toggle:focus, .dropdown-toggle:active {
    outline: none !important;
}



.navbar{
    z-index:100;
    border-bottom:1px solid #a5a5a5;
}

.navbar-inner{
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 80%);
    color:#000;
    height:125px;
}

.navbar-menu-toggler{
    color:#000;
    background-color:transparent;
    border:none;
    cursor:pointer;
}

.navbar-logo{
    max-height:110px;
}

.navbar-logo img{
    height:100%;
    width:100%;
    max-height:110px;
    max-width:250px;
    object-fit: contain;
}


.navbar-user-avatar{
    width:32px;
    height:32px;
    line-height:32px;
    text-align:center;
    background-color:transparent;
    border:none;
    cursor:pointer;
    padding:0;
    color:#000;
    background-color: #fff;
    font-size:18px;
    border-radius:50%;
    margin:0;
}

.main-content, .card{
    background-color: #fff;
    border: 1px solid #eee;
    -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.10);
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 10%);
    border-radius: 20px;
}

.filters-container .card:last-of-type{
    margin-bottom: 1rem !important;
}

.main-content{
    padding:22px;
    margin-bottom: 1rem;
}

.main-content.col, .main-content.col-12{
    margin-right:0;
}

.card{
    padding:8px;
}

.page-header{
    margin-top:10px;
    margin-bottom:15px;
}

.page-title{
    font-size:26px;
    font-weight:500;
    margin-bottom:6px;
}

.page-subtitle{
    font-size:22px;
    font-weight:400;
    margin-bottom:6px;
}

.breadcrumb, .breadcrumb .breadcrumb-item.active, .breadcrumb a, .breadcrumb a:hover{
    color:#203558 !important;
    font-size:13px;
    text-decoration:none;
}

.breadcrumb a, .breadcrumb a:hover{
    text-decoration: underline;
}

.card-title{
    font-weight:600;
    font-size:18px;
}

.nav-user-details{
    background-color:#f4f5f7;
    padding:6px 4px;
    border-radius:20px;
    margin-bottom:15px;
}

.nav-user-impersonating{
    outline:1px solid #F44336;
}

.nav-user-details-avatar{
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    background-color:#fff;
    border-radius:50%;
    font-size:20px;
}

.nav-user-details-name{
    color:#5d6a83;
    font-size:16px;
    display:none;
}

.nav-user-details-name small{
    font-size:12px;
}

.form-group{
    margin-bottom:20px;
}

.form-control[type='color']{
    min-height:38px;
}

.form-control, .form-select{
    border-radius:6px;
    border-color:#ccc;
}

a:not(.btn, .dropdown-item), a:not(.btn, .dropdown-item):hover, a:not(.btn, .dropdown-item):active, a:not(.btn, .dropdown-item):visited{
    color:#203558;
}

.nav-link, .nav-link:hover, .nav-link:active, .nav-link:visited{
    color:#85529c;
}

.form-control-medium{
    width:100%;
}

.form-control-short{
    width:100%;
}

.form-control-extrashort{
    width:100%;
}

.field-message-error{
    color:#f44336;
    font-size:13px;
    margin-top:6px;
}

.form-section{
    border-bottom:1px dashed #555 !important;
    margin:40px auto;
    padding-bottom:24px;
}

.form-section:last-of-type{
    border-bottom: 0;
}

.form-section:first-of-type{
    margin-top:0;
}

.form-section-title{
    font-weight:bold;
    font-size:17px;
    margin-bottom:34px;
}

.required{
    color:#f44336;
    padding-left:4px;
}

.alert ul{
    margin:0;
    padding-left:1.25rem;
}

.sortable-drop-placeholder{
    border: 1px dashed #ccc;
    padding:2px 10px;
    background-color:#fbfbfb;
}

.unit-sortable-element-new, .activity-sortable-element-new, .add-row-item-new {
    position:relative;
    color: #85529c !important;
    font-size: 13px;
    background-color: #f7f7f7;
    padding: 0;
}

.unit-sortable-element-new a, .activity-sortable-element-new a, .add-row-item-new a{
    cursor: pointer;
}

.unit-sortable-element{
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    padding:16px 10px 16px 28px;
    background-color:#fff;
    margin:14px 0;
}

.unit-expand, .unit-expand:hover, .unit-expand:active, .unit-expand:visited{
    color:#85529c !important;
    text-decoration: none;
}

.activity-sortable-element{
    border-top:1px solid #e7e7e7;
    border-bottom:1px solid #e7e7e7;

    padding:10px 10px 10px 26px;
    font-size:15px;
    margin:8px 0;
}

.unit-sortable-element-actions, .activity-sortable-element-actions{
    margin-right:0;
    float:right;
    font-size:16px;
    color: #85529c;
    cursor:pointer;
}

.activity-sortable-element-actions{
    font-size:15px;
}

.unit-sortable-element-actions a:hover, .activity-sortable-element-actions a:hover{
    text-decoration: none;
}

.unit-sortable-element-actions i, .activity-sortable-element-actions i{
    padding-left:6px;
    cursor:pointer;
    color: #85529c;
}

.unit-sortable-element-actions i:hover, .activity-sortable-element-actions i:hover{
    color:#85529c;
}

.unit-sortable-element-move-icon, .activity-sortable-element-move-icon{
    cursor:move !important;
}

.unit-sortable-element-title{
    font-size:22px;
    font-weight:600;
    color: #85529c;
}

.activity-sortable-element-title{
    font-size:17px;
    font-weight:600;
}

.unit-sortable-element-description{
    font-size:14px;
    color: #757575;

}

.activity-sortable-element-description{
    font-size:13px;
    color: #757575;
}

.unit-header {
     padding: 10px 20px 10px 20px;
     background: #f7f7f7;
     border: 1px solid #ccc;
     font-size: 18px;
     font-weight: 400;
     margin-top: 25px;
 }

.course-arrow {
    color: #85529c;
    float: right;
    margin-top: 5px;
}

.unit-box {
    border: 1px solid #ccc;
    border-top:0;
    padding: 0 20px 0 20px;
}

.unit-description {
    font-size: 16px;
    line-height: 1.5em !important;
    padding-top: 0px;
    padding-bottom: 10px;
    font-weight: 300;
}

.activity-title {
    margin-bottom: 5px;
}

.unit-activity-container {
    font-size: 18px;
    padding-top:25px;
    border-top: 1px solid #f0f0f0;
    font-weight: 400;
}

.activity-type-description {
    margin-bottom: 10px;
    font-size: 16px;
}

.activity-icon {
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 15px;
}

.activity-status-message {
    color: #002a4d;
    font-weight: bold;
    font-size: 13px;

}

.status-message-3 {
    color: #4caf50;
}

.status-message-4 {
    color: #f44336;
}

.status-message-5 {
    color: #ff9800;
}

.public-course-sidebar-item{
    background-color:#85529c;
    color:#fff;
    padding:4px 16px;
    border-radius:3px;
    margin-bottom:26px;
    position:relative;
    overflow: hidden;
}

.public-course-sidebar-item-link:hover {
    text-decoration: none;
}

.public-course-sidebar-item-green {
    background-color: #4caf50;
}

.public-course-sidebar-item-orange {
    background-color: #f7645a;
}

.public-course-sidebar-item-red {
    background-color: #f44336;
}

.public-course-sidebar-item-body{
    position:relative;
    z-index:1;
}
.public-course-sidebar-item-title{
    font-weight:500;
    font-size:30px;
    text-shadow: 1px 1px #000;
}

.public-course-sidebar-item-text{
    text-shadow: 1px 1px #000;
    color:#fff !important;
    font-weight:400 !important;
    font-size:22px !important;
}

.public-course-sidebar-item-background-graphics{
    position:absolute;
    color: rgba(255, 255, 255, 0.45);
    z-index:0;
}

.public-course-sidebar-feature-list .public-list > ul{
    margin-left:17px;
    margin-top:20px;
}

.public-course-sidebar-feature-list .public-list > ul li{
    font-size:16px !important;
    line-height:24px;
}

.public-course-sidebar-feature-list .public-list ul>li>i{
    color:#85529c;
    font-size:10px;
    padding-top:4px;
}

.public-course-sidebar-dates-text{
    font-size:120%;
    margin-top:-0px;
}

.public-course-sidebar-dates-icon-marker{
    font-size:38px;
    padding-top:4px;
    padding-right:4px;
}

.public-course-sidebar-dates-icon-calendar{
    font-size:34px;
    padding-top:4px;
}

.status-small-screen {
    margin-bottom: 25px;
    display: none;
}

.removeanswer-enabled, .removeitem-enabled, .removeband-enabled{
    font-size:20px;
    color:#f44336;
    padding-top:8px;
    cursor:pointer;
}
.removeanswer-disabled, .removeitem-disabled, .removeband-disabled{
    font-size:20px;
    color:#ccc;
    padding-top:8px;
    cursor:default;
}
.sortanswer-enabled, .sortitem-enabled{
    font-size:20px;
    color:#85529c;
    cursor:pointer;
}
.sortanswer-disabled, .sortitem-disabled{
    font-size:20px;
    color:#ccc;
    cursor:default;
}

.disabledRemoveSubmission {
    float:right;
    margin-left:10px;
    color:#ccc;
}
.removeSubmission {
    float:right;
    margin-left:10px;
    color:#f44336;
}
.removeSubmission:hover {
    color:#f44336;
}

.submission-file-container {
    border: 1px solid rgb(222, 226, 230);
    padding:0.75rem;
    margin-bottom: 26px;
    font-size:14px;
}

.submission-file-container-title{
    font-size:16px;
    font-weight:500;
    margin-bottom:16px;
}

.stickytableapplied th {
  background: #FFF;
}

.multiFilePickerClearRow, .file-picker-row-clear {
    float: left;
    text-align: center;
    padding:6px 9px;
    width: 10%;
    border-radius: .25rem;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    margin-left: -1px;
    text-decoration:none !important;
    background-color:#85529c;
    border: 1px solid #85529c;
    color:#fff !important;
}
.multiFilePickerRow, .file-picker-row {
    width:90%;
    float:left;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.removeMultiFilePickerRow, .file-picker-row-remove {
    color:#f44336 !important;
    text-decoration:none;
}

.removeMultiFilePickerRow:hover, .file-picker-row-remove:hover {
    color: #f44336 !important;
    text-decoration:none;
}

.contentelement-container{
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 160px;
}

.divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.jagged-border{
    height:13px;
    background:url("/ui/assets/images/elearning/jagged.png") repeat-x left bottom;
}

.contentelement-scaled{
    font-size:13px;
}

.contentelement-scaled p {
    margin-bottom:3px;
}

.contentelement-scaled .player_multichoicebody{
    padding:8px;
    margin:0;
}

.contentelement-scaled .player_multichoice_text{
    margin:5px 0 10px 0;
}

.contentelement-scaled.player_multichoice{
    margin:0;
}

.contentelement-scaled.player_multichoice h2 {
    font-size: 13px !important;
    padding: 5px 8px;
}

.contentelement-scaled.player_activity{
    -webkit-box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
    -moz-box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
}

.contentelement-scaled.player_assessment{
    -webkit-box-shadow: 0 0 0 0 rgba(133, 82, 156, 0.5);
    -moz-box-shadow: 0 0 0 0 rgba(133, 82, 156, 0.5);
    box-shadow: 0 0 0 0 rgba(133, 82, 156, 0.5);
}

.contentelement-scaled.asside-container{
    padding:8px;
    margin:0;
}

.contentelement-scaled .asside-title img{
    height: 14px !important;
    width: 14px !important;
    margin-right:3px;
}
.contentelement-scaled .asside-title{
    font-size:14px !important;
    margin-bottom:6px;
    padding-bottom:6px;
}

.contentelement-scaled .gallery-list{
    margin:0;
    padding:0;
}

.contentelement-scaled .gallery-list .glyphicon{
    margin-top: 50%;
    font-size: 18px;
    color:#fff;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
    padding-top: 5px;
}

#hotspotscontainer{
    margin-top:30px;
}

#backgroundimagecontainer{
    max-width:100%;
}

.hotspotrow{
    border:1px solid #ddd;
    padding:16px;
}

.hotspotrow .removeitem{
    float:right;
    margin-top:-15px;
    margin-right:-7px;
}

.hotspotrow .hotspotimgpreview{
    overflow: hidden;
    margin-bottom:16px;
}

.hotspotrow .hotspotimgpreview img{
    max-width:inherit !important;
}

#imagematchscontainer{
    margin-top:30px;
}

.imagematchrow{
    border:1px solid #ddd;
    padding:16px;
}

.imagematchrow .removeitem{
    float:right;
    margin-top:-15px;
    margin-right:-7px;
}

.imagematchrow .imagematchimgpreview{
    overflow: hidden;
    margin-bottom:16px;
}

.imagematchrow .imagematchimgpreview img{
    max-width:inherit !important;
}

#imagematch-data>div{
    margin:auto;
}

#imagematch-data .select-areas-delete-area{
    width:20px;
    height:20px;
}

.imagematch-label-btn-outer{
    width:40%;
    margin-right:40px;
    margin-bottom:30px;
}

.imagematch-label-btn{
    background-color:transparent;
    border:none;
    display:flex;
    align-items: center;
    padding:0;
    cursor:pointer;
}

.imagematch-label-btn-circle{
    color:#fff;
    height:40px;
    width:40px;
    line-height:40px;
    text-align:center;
    border-radius:50%;
    margin-right:10px;
    font-weight:500;
    opacity:0.5;
}

.player_imagematch_assessment .imagematch-label-btn-circle{
    background-color:#85529c;
}

.player_imagematch_activity .imagematch-label-btn-circle{
    background-color:#4caf50;
}

.imagematch-label-btn-text{
    color:#000;
}

.imagematch-spot-btn{
    color:#fff;
    height:100%;
    width:100%;
    line-height:100%;
    border-radius:50%;
    font-weight:500;
    padding:0;
    opacity:0.5;
    border:3px solid #fff;
    cursor:pointer;
}

.player_imagematch_assessment .imagematch-spot-btn{
    background-color:#85529c;
}

.player_imagematch_activity .imagematch-spot-btn{
    background-color:#4caf50;
}

.imagematch-btn-fill{
    opacity:1;
}

.contentelement-pagebreak-container{
    text-align: center;
    padding-bottom:10px;
}

.contentelement-pagebreak-text{
    padding:10px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    background-color: #fff;
    border-bottom: 1px solid #333;
    width: 100%;
    text-align: center;
}

.contentauthoring-item:hover .contentelement-pagebreak-text{
    background-color: #fafafa;
}

.contentelement-pagebreak-line{
    border-bottom:1px solid #ccc;
    width:100%;
    text-align: center;
    margin-top:-12px;
}
.contentelement-scaled .player_orderbody{
    padding:8px;
    margin:0;
}

.contentelement-scaled .player_order_text{
    margin:5px 0 10px 0;
}

.contentelement-scaled.player_order{
    margin:0;
}

.contentelement-scaled.player_order h2 {
    font-size: 13px !important;
    padding: 5px 8px;
}

.player_order_sortable  {
    list-style-type: none;
    padding-inline-start: 20px
}

.player_order_sortable li {
    border-radius: 4px;
    border: 1px solid #000;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0px 2px 2px rgba(0,0,0,.4);
}

.player_order_sortable li.assessment {
    background-color: rgb(247,247,250);
}

.player_order_sortable li.activity {
    background-color: rgb(247,250,247);
}

.contentelement-scaled .player_truefalsebody{
    padding:8px;
    margin:0;
}

.contentelement-scaled .player_truefalse_text{
    margin:5px 0 10px 0;
}

.contentelement-scaled.player_truefalse{
    margin:0;
}

.contentelement-scaled.player_truefalse h2 {
    font-size: 13px !important;
    padding: 5px 8px;
}

.player_truefalse_row {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.player_truefalse_row:last-child {
    border-bottom-style: none;
}

.contentelement-scaled .player_matchbody{
    padding:8px;
    margin:0;
}

.contentelement-scaled .player_match_text{
    margin:5px 0 10px 0;
}

.contentelement-scaled.player_match{
    margin:0;
}

.contentelement-scaled.player_match h2 {
    font-size: 13px !important;
    padding: 5px 8px;
}

.player_match_item {
    border: 1px solid;
}

.player_match_item.assessment {
    border-color: #85529c;
}

.player_match_item.activity {
    border-color: #4caf50;
}

.player_match_item.droppable {
    border-radius: 0 4px 4px 0;
    background: linear-gradient(90deg, #aaa 5%, #fff 0);
}

.player_match_item.droppable.matched.assessment {
    background: linear-gradient(90deg, #85529c 5%, #fff 0);
}

.player_match_item.droppable.matched.activity {
    background: linear-gradient(90deg, #4caf50 5%, #fff 0);
}

.player_match_item.draggable {
    border-radius: 4px 0 0 4px;
    box-shadow: 0px 2px 2px rgba(0,0,0,.4);
    background: linear-gradient(90deg, #fff 95%, #aaa 0);
}

.player_match_item.draggable.matched.assessment {
    background: linear-gradient(90deg, #fff 95%, #85529c 0);
}

.player_match_item.draggable.matched.activity {
    background: linear-gradient(90deg, #fff 95%, #4caf50 0);
}

.contentelement-scaled.panel-group{
    margin-bottom:10px;
}

.contentelement-scaled .panel{
    margin-left:4px;
    margin-right:4px;
}

.contentelement-scaled .panel-title{
    font-size:14px;
}

.contentelement-scaled .imagematch-label-btn-circle{
    width:26px; 
    height:26px; 
    line-height:26px;
}

.contentauthoring-item{
    background-color:#fff;
    padding: 16px;
    margin: 0;
    border-radius:4px;
    position:relative;
    border:1px solid #fff;
}

.contentauthoring-item:hover{
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius:20px;
}

.contentauthoring-item h1{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 21px;
}

.contentauthoring-item h2{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
}

.contentauthoring-item h3{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 17px;
}

.contentauthoring-item .custom-list-action-group{
    position:absolute;
    z-index:999;
    top:12px;
    right:12px;
    background-color:transparent;
    opacity:0;
    transition: opacity 0.5s ease;
}

.contentauthoring-item:hover .custom-list-action-group{
    opacity:1;
}

.contentauthoring-item-element-type{
    position:absolute;
    z-index:999;
    top:12px;
    right:104px;
    font-size:13px;
    font-weight:bold;
    border: 1px solid #343a40;
    border-right:0;
    background-color: #fff;
    color:#333;
    padding:5px 10px 5px 8px;
    border-radius:3px 0 0 3px;
    opacity:0;
    transition: opacity 0.5s ease;
}

.contentauthoring-item:hover .contentauthoring-item-element-type{
    opacity:1;
}

.contentauthoring-item-element-loading{
    position:absolute;
    z-index:999;
    top:12px;
    right:12px;
    font-size:13px;
    font-weight:bold;
    border: 1px solid #343a40;
    background-color: #343a40;
    color:#fff;
    padding:5px 17px;
    border-radius:3px;
}

.contentauthoring-new-item{
    padding:2px 0;
    color:#767676;
    background-color:transparent;
    position:relative;
    text-align:center;
    margin:35px 0 15px 0;
}

.contentauthoring-new-item .dropdown-menu{
    left:-60px !important;
}

.contentauthoring-new-item-add-btn{
    color: #aeaeae !important;
    display:inline-block;
    text-align:center;
    font-size:16px;
    width:28px;
    height:28px;
    line-height:28px;
    cursor:pointer;
    border:1px solid #b7b7b7;
    border-radius:50%;
    background-color:#fff;
}

.contentauthoring-new-item-line{
    border-bottom:1px dashed #c2c2c2;
    width:100%;
    height:1px;
    margin-bottom:-15px;
}

.select-areas-delete-area {
    height: 20px;
    width: 20px;
}

.pseudo-label{
    margin-bottom: 0.5rem;
    display:block;
}

.enrolment-progress-container{
    border-radius:4px;
    padding:20px;
    overflow: hidden;
    position:relative;
}

.enrolment-progress-icon{
    position:absolute;
    right:0;
    margin-top:-25px;
    margin-right:-60px;
}

.enrolment-progress-icon .enrolment-progress-fa {
    font-size:160px;
}

.enrolment-progress-title{
    font-size:21px;
    line-height:26px;
    margin-bottom:10px;
}

.enrolment-progress-description{
    font-size:16px;
}

.enrolment-progress-primary{
    border:1px solid #85529c;
    color:#555;
}

.enrolment-progress-primary .enrolment-progress-icon .enrolment-progress-fa{
    color:#85529c;
}

.enrolment-progress-success{
    border:1px solid #4caf50;
    color:#555;
}

.enrolment-progress-success .enrolment-progress-icon .enrolment-progress-fa{
    color:#4caf50;
}

.enrolment-progress-danger{
    border:1px solid #f44336;
    color:#555;
}

.enrolment-progress-danger .enrolment-progress-icon .enrolment-progress-fa{
    color:#f44336;
}

.card-tutor{
    min-width: 200px;
}

.tutor-mark-btn{
    border-radius:4px;
    padding:2px;
    cursor: pointer;
    text-align:center;
}

.tutor-mark-btn:hover{
    text-decoration:none;
}

.tutor-mark-btn-primary{
    background-color:#85529c;
    border:1px solid #85529c;
    color:#fff;
}

.tutor-mark-btn-primary:hover{
    background-color: #d5c4dd;
    color:#000;
}

.tutor-mark-btn-light{
    background-color:#e2e6ea;
    border:1px solid #caced2;
    color:#333;
}
.tutor-mark-btn-light:hover{
    background-color: #caced2;
    color:#333;
}

.unit-edit-btn{
    border-radius:4px;
    padding:2px;
    cursor: pointer;
    text-align:center;
}

.unit-edit-btn:hover{
    text-decoration:none;
}

.unit-edit-btn-primary{
    background-color:#85529c;
    border:1px solid #85529c;
    color:#fff;
}

.unit-edit-btn-primary:hover{
    background-color: #d5c4dd;
    color:#000;
}

.unit-edit-btn-light{
    background-color:#e2e6ea;
    border:1px solid #caced2;
    color:#333;
}
.unit-edit-btn-light:hover{
    background-color: #caced2;
    color:#333;
}

.online-assessment-question-container{
    border:1px solid #ced4da;
    padding: 0.75rem;
    margin-bottom:46px;
}

.online-assessment-question-title{
    font-size:17px;
    font-weight:bold;
    margin-bottom:16px;
}

.online-assessment-question-remove{
    cursor:pointer;
    color:#f44336;
}

.online-assessment-question-remove-disabled{
    cursor:default;
    color:#ccc;
}

.online-assessment-question-add{
    text-align:center;
    padding:0.75em;
    border:1px solid #ced4da;
}

.offline-assessment-submission-remove{
    color:#f7645a;
    cursor:pointer;
}

.offline-assessment-submission-remove-disabled{
    cursor:default;
    color:#ccc;
}

.course-overview-header{
    background: #f7f7f7;
    padding:16px 20px;
    border:1px solid #ccc;
    border-bottom: 6px solid #555;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.custom-file-label-with-url{
    position:absolute;
    z-index:999;
    right:80px;
    padding-left:93px;
    width:100%;
    white-space: nowrap;
    overflow-x:hidden;
    text-overflow: ellipsis;
}

.custom-file{
    white-space: nowrap;
    overflow: hidden;
}

.list-item{
    border:0;
    border-bottom:1px solid rgb(222, 226, 230);
    background-color:#fefefe;
    border-radius:0;
    -webkit-box-shadow: 0 2px 1px 0 rgb(0 0 0 / 0%);
    -moz-box-shadow: 0 2px 1px 0 rgba(0,0,0,0);
    box-shadow: 0 2px 1px 0 rgb(0 0 0 / 0%);
    margin-bottom:20px;
    font-size:14px;
}

/* .list-item a:not(.list-item-footer-link, .list-footer-expand-btn){
    text-decoration: none;
} */

.list-item a{
    text-decoration:none;
}

.list-item-footer a{
    text-decoration: underline;
}

.list-item-heading{
    padding: 10px;
    background-color:transparent;
}

.list-item-avatar{
    font-weight:500;
    font-size:30px;
    border-radius:50px;
    height: 50px;
    width: 50px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    text-transform: uppercase;
    cursor: default;
    margin-bottom:10px;
    background-color:#85529c;
    color: #fff;
}

.list-item-avatar-disabled {
    background-color: #969696 !important;
}

.list-item-title {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 18px;
}

.list-item-description {
    color: #7d7d7d;
    margin-bottom: 15px;
}

.list-item-footer{
    text-align:right;
    background-color:transparent;
    padding:10px;
    border-top:0;
}

.list-item-footer-link {
    white-space: nowrap;
    padding-left: 20px;
    color:#383838;
    font-size:13px;
    font-weight: normal;
}

.list-footer-expand-btn {
    white-space: nowrap;
    padding-left: 5px;
    color: #383838;
    font-size: 13px;
    font-weight: normal;

}

.list-item-section {
    color: #7d7d7d;
    margin:16px;
}

.custom-action-dropdown-btn {
    width: 30px;
    border: none;
    background: #fafafa;
    color: #383838;
}

.list-item-label {
    font-weight: bold;
    margin-right: 7px;
}

.list-item-body{
    border-top:1px solid #e4e4e4;
}

.list-item-ul {
    padding-left: 0;
}

.list-item-ul li {
    margin-bottom: 0;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 0;
    list-style-type: none;
    display: inline-block;
}

.list-item-ul li .list-item-label {
    margin-right: 4px;
}

.list-item-badges {
    margin-top:10px;
}

.list-item-body .list-item-badges {
    padding:0 16px 16px 16px;
    line-height:27px;
    margin-top:18px;
}

.list-item-badge {
    border-radius:20px;
    padding:4px 20px;
    font-size: 75%;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    background: #fff;
    min-width: 50%;
    margin-bottom: 3px;
}

.list-ul{
    margin:0;
    padding:0;
    list-style:none;
}

.list-ul .list-item{
    border-bottom:0;
    margin:0;
    padding:12px;
    font-size:16px;
    margin:-12px -12px 0 -12px;
}

.table{
    font-size:14px;
    border-top:0;
}
.table td, .table th{
    padding-top:18px;
    padding-bottom:18px;
}
thead{
    font-weight:500;
    font-size:16px;
    color:#333;
}
.table>:not(:first-child){
    border-top:1px solid rgb(222, 226, 230);
}

.bg-primary{
    background-color:#85529c !important;
    color:#fff !important;
}

.bg-secondary{
    background-color:#b47eb7 !important;
    color:#fff !important;
}

.bg-success{
    background-color:#4caf50 !important;
    color:#fff !important;
}

.bg-danger{
    background-color:#f44336 !important;
    color:#fff !important;
}

.bg-warning{
    background-color:#ff9800 !important;
    color:#000 !important;
}

.bg-info{
    background-color:#2196f3 !important;
    color:#fff !important;
}

.bg-default{
    background-color:#777 !important;
}

.color-primary{
    color:#85529c !important;
}

.color-secondary{
    color:#b47eb7 !important;
}

.color-success{
    color:#4caf50 !important;
}

.color-danger{
    color:#f44336 !important;
}

.color-warning{
    color:#ff9800 !important;
}

.color-info{
    color:#2196f3 !important;
}

.alert-primary{
    background-color:#85529c;
    border-color:#85529c;
    color:#fff;
}

.alert-primary a, .alert-primary a:hover, .alert-primary a:active, .alert-primary a:visited{
    color:#fff;
}

.alert-secondary{
    background-color:#b47eb7;
    border-color:#b47eb7;
    color:#fff;
}

.alert-secondary a, .alert-secondary a:hover, .alert-secondary a:active, .alert-secondary a:visited{
    color:#fff;
}

.alert-success{
    background-color:#4caf50;
    border-color:#4caf50;
    color:#fff;
}

.alert-success a, .alert-success a:hover, .alert-success a:active, .alert-success a:visited{
    color:#fff;
}

.alert-danger{
    background-color:#f44336;
    border-color:#f44336;
    color:#fff;
}

.alert-danger a, .alert-danger a:hover, .alert-danger a:active, .alert-danger a:visited{
    color:#fff;
}

.alert-warning{
    background-color:#ff9800;
    border-color:#ff9800;
    color:#000;
}

.alert-warning a, .alert-warning a:hover, .alert-warning a:active, .alert-warning a:visited{
    color:#000;
}

.alert-info{
    background-color:#2196f3;
    border-color:#2196f3;
    color:#fff;
}

.alert-info a, .alert-info a:hover, .alert-info a:active, .alert-info a:visited{
    color:#000;
}

.btn{
    border-radius:20px;
    font-weight:400;
    padding:2px 30px;
    font-size:16px;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
}

.btn.disabled, .btn:disabled{
    cursor:default;
}

.btn-lg{
    padding:4px 60px;
    font-size:20px;
}

.btn-sm{
    padding:1px 15px;
    font-size:12px;
}

.btn.btn-link{
    border-radius:0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-link, .btn-link:hover, .btn-link:active, .btn-link:visited{
    color:#85529c;
    text-decoration:underline;
}

.btn-primary{
    background-color:#85529c;
    border-color:#85529c;
    color:#fff;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary.disabled, .btn-primary:disabled{
    background-color:#d5c4dd;
    border-color:#d5c4dd;
    color:#000;
    box-shadow: none;
}

.btn-secondary{
    background-color:#b47eb7;
    border-color:#b47eb7;
    color:#fff;
}

.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus, .btn-secondary.disabled, .btn-secondary:disabled{
    background-color:#e5d3e6;
    border-color:#e5d3e6;
    color:#000;
    box-shadow: none;
}

.btn-success{
    background-color:#4caf50;
    border-color:#4caf50;
    color:#fff;
}

.btn-success:hover, .btn-success:active, .btn-success:focus, .btn-success.disabled, .btn-success:disabled{
    background-color:#7acc7d;
    border-color:#7acc7d;
    color:#000;
    box-shadow: none;
}

.btn-danger{
    background-color:#f44336;
    border-color:#f44336;
    color:#fff;
}

.btn-danger:hover, .btn-danger:active, .btn-danger:focus, .btn-danger.disabled, .btn-danger:disabled{
    background-color:#f7645a;
    border-color:#f7645a;
    color:#000;
    box-shadow: none;
}

.btn-warning{
    background-color:#ff9800;
    border-color:#ff9800;
    color:#000;
}

.btn-warning:hover, .btn-warning:active, .btn-warning:focus, .btn-warning.disabled, .btn-warning:disabled{
    background-color:#f1b861;
    border-color:#f1b861;
    color:#000;
    box-shadow: none;
}

.btn-info{
    background-color:#2196f3;
    border-color:#2196f3;
    color:#fff;
}

.btn-info:hover, .btn-info:active, .btn-info:focus, .btn-info.disabled, .btn-info:disabled{
    background-color:#83beee;
    border-color:#83beee;
    color:#000;
    box-shadow: none;
}

.btn-default{
    color: #fff;
    background-color: #a7a7a7;
    border-color: #a7a7a7;
}

.btn-default:hover, .btn-default:active {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.toggle.btn{
    border-radius: 0.25rem;
}

.toggle.btn .btn{
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
}

.toggle-off.btn{
    padding-left:18px !important;
}

.toggle-on.btn {
    padding-right: 18px !important;
}

.bd-highlight .btn-primary{
    background-color:#2196f3;
    border-color:#2196f3;
    color:#fff;
}

.marker{
    width:10px;
    height:10px;
    border-radius: 50%;
    display:inline-block;
    margin-bottom:2px;
    margin-right:8px;
}

.marker-default{
    background-color:#CCC;
}

.marker-success{
    background-color:#4caf50;
}

.marker-primary{
    background-color:#85529c;
}

.marker-danger {
    background-color: #f44336;
}

.list-item-badge-default {
    border: 1px solid #5a666e;
    color: #5a666e;
}

.list-item-badge-primary {
    border: 1px solid #85529c;
    color: #85529c;
}

.list-item-badge-success {
    border: 1px solid #4caf50;
    color: #4caf50;
}

.list-item-badge-warning {
    border: 1px solid #ff9800;
    color: #ff9800;
}

.list-item-badge-info {
    border: 1px solid #2196f3;
    color: #2196f3;
}

.list-item-badge-danger {
    border: 1px solid #f44336;
    color: #f44336;
}

.pagination li{
    background-color:#5a666e;
    color:#fff;
    padding:3px;
    margin-right:3px;
    display:block;
    min-width:30px;
    text-align:center;
    border-radius:3px;
}

.pagination li.active{
    cursor:default;
    background-color:#85529c;
}

.pagination a, .pagination a:hover, .pagination a:visited, .pagination a:active{
    color:#fff;
    text-decoration:none;
}

.dropdown-item.active, .dropdown-item:active, .dropdown-item:hover{
    background-color:#85529c;
    color:#fff;
}

.filters-container{
    display:none;
}

.filters-container-show{
    display:block !important;
}

.main-login {
    background-color:#85529c;
    height:100vh;
    width:100%;
    display: grid;
    place-items: center;
}


.login-logo img{
    width:100%;
    height:100%;
    max-width:300px;
    max-height:150px;
    object-fit: contain;
}

.login-box{
    background-color:#fff;
    width:100%;
    max-width:475px;
    border-radius:20px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.75);
    -moz-box-shadow: 0 0 30px 0 rgba(0,0,0,0.75);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.75);
}

.main-login-big .login-box{
    text-align:center;
    max-width:80%;
    height: 80vh;
}

.login-logo{
    margin-bottom:26px;
}

.main-login-big .login-logo img{
    margin-bottom:100px;
}

.nav-tabs-custom{
    border:0;
    margin-left:-12px;
    font-size:14px;
}

.nav-tabs{
    font-size:14px;
}

.nav-tabs-custom .nav-item{
    position:relative;
}

.nav-tabs-custom .nav-item:first-of-type::after{
    content: '';
    position:absolute;
    bottom:-20px;
    left:0;
    right:0;
    height:20px;
    background-color:#fff;
    border-left:1px solid #eeeeee;
    border-top:1px solid #eeeeee;
    z-index:1;
}

.nav-tabs-custom .nav-link{
    background-color:#fafafa;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.nav-tabs .nav-link, .nav-tabs .nav-link.active{
    color:#203558 !important;
}

.nav-tabs-custom .nav-link, .nav-tabs-custom .nav-link.active{
    border-color:#eeeeee;
}

.nav-tabs-custom .nav-link.active{
    border-bottom:0;
}

.nav-tabs-custom .nav-link.active::after{
    content: '';
    position:absolute;
    bottom:-1px;
    left:0;
    right:1px;
    height:4px;
    background-color:#fff;
    z-index:98;
    border-left:1px solid #eeeeee;
}

.datepicker{
    font-size:12px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    z-index:10000 !important;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active {
    color: #fff;
    background-color: #85529c;
    border-color: #85529c;
}

.datepicker table tr td.active.active.focus, .datepicker table tr td.active.active:focus, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.highlighted.active.focus, .datepicker table tr td.active.highlighted.active:focus, .datepicker table tr td.active.highlighted.active:hover, .datepicker table tr td.active.highlighted:active.focus, .datepicker table tr td.active.highlighted:active:focus, .datepicker table tr td.active.highlighted:active:hover, .datepicker table tr td.active:active.focus, .datepicker table tr td.active:active:focus, .datepicker table tr td.active:active:hover {
    color: #000;
    background-color: #d5c4dd;
    border-color: #d5c4dd;
}

.bootbox-close-button{
    background: transparent;
    border:none;
    float:right;
    font-size:20px;
}

.form-check-input:checked {
    background-color: #85529c;
    border-color: #85529c;
}

.user-avatar-big{
    width:90px;
    height:90px;
    border-radius:50%;
    border:1px solid #ccc;
    overflow: hidden;
}

.table-hover>tbody>tr:hover>*, .list-item:hover, .main-nav .nav-item:not(.active):hover{
    background-color:#f5f5f5;
}

.list-item-no-hover:hover {
    background: #FFF !important;
}

.main-nav .nav-item:not(.active):hover{
    border-radius:20px;
}

.collapsible{
    background-color: #fff;
    margin: 24px 0 !important;
}

.collapsible:not(.active):hover{
    background-color:#f5f5f5;
    transition:background-color 0.3s ease;
    border-radius:20px;
}

.collapsible-header{   
    color: #212529;
    padding:8px 12px;
    margin-bottom:0;
}

.collapsible-title{
    font-size: 1rem;
    margin-bottom:0;
}

.collapsible-header p{
    font-weight:400;
    font-size:14px;
    margin-top:5px;
    margin-bottom:0;
}

.collapsible.active .collapsible-header{
    background-color:#7c7c7c;
    color:#fff;
    border-top-left-radius: 20px;
    border-top-right-radius:20px;
}

.collapsible-button{
    padding-right: 1rem;
    font-size: 1rem;
    color: inherit;
    background-color: transparent;
    border: 0;
}

.collapsible-body .collapsible-button{
    color:#212529;
}

.collapsible-button-arrow[data-action='close'] {
    display:none;
}

.collapsible-button-arrow[data-action='open'] {
    display:block;
}

.collapsible.active .collapsible-button-arrow[data-action='close'] {
    display:block;
}

.collapsible.active .collapsible-button-arrow[data-action='open'] {
    display:none;
}

.collapsible-body{
    padding:20px 16px;
    display:none;
    background-color:#f7f7f7;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.unit-sortable-element{
    border:0;
    background-color: #fff;
    margin: 14px 0;
    padding:0;
}

.unit-sortable-element-new, .activity-sortable-element-new, .add-row-item-new {
    color: #949494 !important;
    font-size: 12px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position:relative;
}

.unit-sortable-element-new a:not(.dropdown-item), .unit-sortable-element-new a:not(.dropdown-item):hover, .unit-sortable-element-new a:not(.dropdown-item):active, .unit-sortable-element-new a:not(.dropdown-item):visited, .activity-sortable-element-new a:not(.dropdown-item), .activity-sortable-element-new a:not(.dropdown-item):hover, .activity-sortable-element-new a:not(.dropdown-item):active, .activity-sortable-element-new a:not(.dropdown-item):visited, .add-row-item-new a:not(.dropdown-item), .add-row-item-new a:not(.dropdown-item):hover, .add-row-item-new a:not(.dropdown-item):active, .add-row-item-new a:not(.dropdown-item):visited {
    color: #949494 !important;
    text-decoration: none;
}

.unit-sortable-element-new-inner, .activity-sortable-element-new-inner, .add-row-item-new-inner {
    position:absolute;
    background-color:#fff;
    bottom:-10px;
    margin:auto;
    padding:0 8px;
    display:inline-block;
    left:4px;
    text-decoration: underline;
}

.activity-sortable-element-new-inner{
    background-color:#f7f7f7;
}

.collapsible-body-item{
    border-top: 0;
    border-bottom: 0;
    padding: 10px;
    color:#000 !important;
    margin: 16px 0;
}

.activity-sortable-element.collapsible-body-item{
    background-color:#f7f7f7;
}

.unit-sortable-element.collapsible-body-item{
    background-color:#ffffff;
}

.activity-sortable-element-title{
    font-size: 14px !important;
    font-weight:500 !important;
}

.collapsible-extra-info{
    font-size:14px;
    font-weight:400;
    margin-top:10px;
}

.collapsible-extra-info strong{
    font-weight:500;
}

.form-actions{
    margin-top:2.5rem;
}

.tutor-avatar{
    width:70px;
    height:70px;
    line-height:70px;
    background-color:#555;
    color:#fff;
    font-size:34px;
    text-align:center;
    border-radius:50%;
    overflow:hidden;
}

.tutor-avatar-small {
    width:45px;
    height:45px;
    line-height:45px;
    background-color:#555;
    color:#fff;
    font-size:22px;
    text-align:center;
    border-radius:50%;
    overflow:hidden;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-stack-newline {
    margin-top: -8px;
}

.avatar-stack-item {
    background-color:#555;
    border: 2px solid #fff;
    color:#fff;
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
}

.avatar-stack-multi {
    margin-left: 8px;
}

.avatar-stack-item-multi {
    width: 44px;
    height: 44px;
    font-size: 20px;
    line-height: 36px;
    border-radius: 50%;
    margin-left: -8px;
}

.course-overview-title{
    font-size:24px;
    margin-bottom:0;
}

.course-overview-subtitle{
    font-size:18px;
    margin-bottom:0;
    font-weight:500;
}

.course-overview-progress{
    background-color:#d5c4dd;
    border-radius:0;
    height:5px;
}

.course-overview-progress .progress-bar{
    height:5px;
}

.course-overview-accordion-header .accordion-button{
    font-size:18px;
    margin-bottom:0;
    font-weight:500;
    color:#203558;
    padding:30px 16px;
}
.course-overview-accordion-header .accordion-button::after{
    margin-left: 0;
}

.course-overview-accordion-header .accordion-button:not(.collapsed){
    background-color:rgba(133, 82, 156, 0.1);
}

.course-overview-accordion-header .accordion-button:focus {
    border-color: #85529c;
    box-shadow: 0 0 0 0.25rem rgb(133 82 156 / 25%);
}

.course-overview-activity-type{
    font-weight:400;
    font-size:13px;
}

.course-overview-activity-name{
    font-weight:500;
    font-size:15px;
    margin-top:2px;
}

.course-overview-activity-body:not(:last-of-type){
    border-bottom:1px solid #e6e6e6;
    padding-bottom:14px;
    margin-bottom:10px;
}

.course-overview-activity-name a{
    text-decoration:underline;
}

.course-overview-accordion .accordion-body{
    background-color:#f7f7f7;
}

.player-header{
    font-size:20px;
    margin-bottom:0;
}

.player-tab-btn{
    background-color:#fff;
    margin:0;
    border:0;
    color:#203558;
    font-weight:bold;
    padding:12px;
    text-align:center;
    display: grid;
    justify-content: center;
    align-content: center;
    text-decoration:none;
}

.player-tab-btn-container:first-of-type .player-tab-btn{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.player-tab-btn-container:last-of-type .player-tab-btn{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.player-tab-btn:hover{
    background-color:#efefef;
}
.player-tab-btn.active{
    background-color:#dfdee6;
}

.player-content, .main-content-no-style{
    padding:0;
    background-color:transparent;
    border:0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.player-content .player-content-card{
    font-size:20px;
    font-weight:300;
}

.player-content .player-content-card .label-text{
    font-size:18px;   
    font-size:400;
}

.snippet-alert p {
    margin-bottom: 0;
}

/* SNACKBAR */
#snackbar {
    visibility: hidden;
    text-align: center;
    z-index: 9999;
    position: fixed;
    bottom: 30px;
    width:300px;
    left:0;
    right:0;
    margin:auto;
    background-color: #333;
    color: #fff;
}

#snackbar-content{
    min-width: 250px;
    display:inline-block;
    border-radius: 2px;
    padding: 16px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}






/* Multichoice player */

.outcome-icon{
    padding-right:5px;
}

.outcome-icon-passed{
    color:#518a52;
}

.outcome-icon-failed{
    color:#F25A29;
}

.overall-outcome{

}

.overall-outcome-icon-passed{
    color:#518a52;
}

.overall-outcome-icon-failed{
    color:#F25A29;
}

.outcome-text-passed{
    color:#518a52;
}

.outcome-text-failed{
    color:#F25A29;
}

/* FEEDBACK ALERT */
.player-alert{
    border-radius:4px;
    padding:20px;
    overflow: hidden;
    position:relative;
}
.player-alert-icon{
    position:absolute;
    right:0;
    margin-top:-38px;
    margin-right:-30px;
}
.player-alert-icon i {
    font-size:140px;
}
.player-alert-title{
    font-size:24px;
}
.player-alert-description{
    font-size:18px;
}
.player-alert-success{
    background-color: #fff;
    border:1px solid #518a52;
    color:#518a52;
}
.player-alert-danger{
    background-color: #fff;
    border:1px solid #F25A29;
    color:#F25A29;
}

.player-alert-primary{
    background-color: #fff;
    border:1px solid #0174bf;
    color:#0174bf;
}
/* end of FEEDBACK ALERT */


/* SMALL FEEDBACK ALERT */
.player-alert-sm{
    border-radius:4px;
    padding: 5px 20px 5px 20px;
    overflow: hidden;
    position:relative;
}
.player-alert-icon-sm{
    position:absolute;
    right:0;
    margin-top:-17px;
    margin-right:-28px;
    font-size: 44px;
}
.player-alert-icon-sm i {
    font-size:57px;
}
.player-alert-title-sm{
    font-size:20px;
}
.player-alert-container-success-sm {
    padding: 10px;
    margin-top: -2px;
    border: solid 1px #518a52
}

.player-alert-container-danger-sm {
    padding: 10px;
    margin-top: -2px;
    border: solid 1px #F25A29
}
/* end of SMALL FEEDBACK ALERT */









.quiz-correct-icon, .quiz-incorrect-icon{
    padding-left:3px;
}

.quiz-correct-text, .quiz-incorrect-text{
    padding-left:20px;
    font-size:13px;
    display:block;
}

.quiz-correct-icon, .quiz-correct-text{
    color:#518a52;
}

.quiz-incorrect-icon, .quiz-incorrect-text{
    color:orangered;
}



.assessment-question{
   
}

.assessment-sub-question{
    font-size:18px;
}

.assessment-answer{
    background-color:rgba(223, 222, 230, 0.35);
    padding:14px 20px;
    font-size:18px;
    margin-top:16px;
    border-radius:20px;
    margin-bottom:25px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    border: 1px solid rgb(33,37,41, 0.2);
}

.assessment-answer-link a{
    text-decoration: underline;
    font-weight: bold;
}

.assessment-feedback-readonly{
    background-color:#e9ecef;
    padding:14px 20px;
    font-size:18px;
    margin-top:16px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    margin-bottom:25px;
}

.assessment-question-label{
    font-weight:bold;
    color:#000;
    font-size:20px;
    float:left;
    margin-right:8px;
}

.assessment-question-text{
    font-weight:300;
    font-size:20px;
}

.assessment-question-text a{
    text-decoration: underline;
    font-weight: 400;
}

.assessment-question-details{
    margin-top:-10px;
    font-size:18px;
}

.assessment-question-file-icon{

}

.assessment-question-files{
    margin:0;
    padding-left:0px;
}

.assessment-question-files li{
    list-style: none;
}

.assessment-question-file:not(:last-of-type){
    margin-bottom:30px;
}

.assessment-question-file a{
    display:block;
}

.assessment-question-file-icon{
    width:40px;
    height:40px;
    line-height:40px;
    border-radius:50%;
    text-align:center;
    font-size:26px;
    color:#fff;
    background-color:#333;
}

.assessment-question-submissions{
    border-top:1px dashed #ccc;
    margin-top:30px;
    padding-top:30px;
}

.assessment-question-submission-name{
    font-weight:500;
    font-size:16px;
    margin-bottom:6px;
}

.assessment-question-file-name{
    text-decoration:underline;
    font-weight:500;
}

.question-label {
    font-size: 24px;
    color: rgb(33,37,41) !important;
}

.question-text {
    font-weight: 300;
    font-size: 20px;
}

.feedback-container{
    border: 1px solid rgba(32, 53, 88, 0.4);
    border-radius: 4px;
    padding: 14px 20px;
    font-size: 18px !important;
}

.multi-choice-feedback {
    font-size: 18px !important;
}

.select2-container{
    z-index:99;
}

.select2-container--open{
    z-index:1100;
}

.select2-results__option.select2-results__option--highlighted{
    background-color:#85529c !important;
    color:#fff !important;
}

.wysiwyg-underline{
    text-decoration: underline;
}

.dash-box-number{
    font-size:32px;
    font-weight:bold;
    margin-right:30px;
    line-height:42px;
    text-align:center;
    border-radius:20px;
    padding:16px;
    background-color:#85529c;
    color:#fff;
    min-width:160px;
}

.dash-box-text, .dash-box-text *{
    font-size:20px;
    font-weight:400;
    margin:0;
    padding:0;
}
.dash-title{
    font-size:22px;
    font-weight:400;
    margin:10px 0 30px 0;
}

.dash-inline-box{
    border-radius: 20px;
    padding: 16px;
    background-color: #85529c;
    color: #fff;
    width:100%;
}

.dash-inline-box:not(:last-of-type){
    margin-right:10px;
}

.dash-inline-box-title{
    font-size:18px;
}

.dash-inline-box-number{
    font-size: 32px;
    font-weight: bold;
}

.dash-table-box{
    border-radius: 20px;
    padding: 8px;
    background-color: #85529c;
    color: #fff;
    font-size:18px;
    text-align:center;
    font-weight:bold;
    min-width:60px;
}

.table-user-avatar{
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    background-color:#eee;
    border-radius:50%;
    font-size:20px;
}

.link-no-decoration{
    text-decoration:none !important;
}

.popover-close {
    position: relative; 
    float: right;
    text-decoration: none;
}

.dash-card-link{
    text-decoration: none;
}

.row-guttering {
    --bs-gutter-x: 1.5rem;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.list-item-flex-parent {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
}

.list-item-flex-container {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    word-wrap: break-word;
    min-width: 50%;
}

.list-item-flex-content {
    word-wrap: break-word;
    min-width: 50%;
}

.list-item-flex-content .list-item-description, .list-item-flex-content .custom-list-section {
    margin-bottom: 5px;
}

.player-alert-icon .player-alert-fa {
    font-size:140px;
}

.btn-popover{
    padding:3px;
    border-radius:50%;
    width:25px;
    height:25px;
    font-size:13px;
}

.enrol-header{
    min-height:135px;
    background-color:#fff;
    padding:30px;
}

.enrol-header img{
    max-height: 75px;
    max-width:335px;
    width:100%;
}

.enrol-hero{
    height:400px;
    display:grid;
    place-items: center;
    font-weight:bold;
    text-transform:uppercase;
    color:#fff;
    text-align:center;
    font-size:42px;
}

.enrol-side-content{
    background-color: #e5e4ed;
    padding:20px;
    border-top: 2px solid #85529c;
}

.enrol-main{
    border-left: 4px solid #85529c;
    padding-left:20px;
}

.enrol-main .btn-enrol-form{
    width:100%;
}

.enrol-body{
    background-color:#fff;
}

.enrol-title{
    font-size:26px;
    margin:6px 0 36px 0;
}

.enrol-tab {
    display: block;
    background-color: #f3f3f3;
    padding: 22px;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    margin-bottom: 20px;
    border: none;
    width: 100%;
}

.enrol-tab.enrol-tab-active {
    background-color: #85529c;
    color: #fff !important;
}

.enrol-tab-disabled {
    background-color: #d3d3d3 !important;
    color: #a1a1a1 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.6;
}

.enrol-tab:not(:last-of-type) {
    margin-right: 10px;
}

.enrol-main .form-group{
    margin-bottom:32px;
}

input[type="password"]::-ms-reveal, input[type="password"]::-ms-clear {
  display: none;
}

.custom-checkbox, .custom-radio {
    position: relative;
}

.custom-checkbox label, .custom-radio label, .custom-checkbox legend {
    display: inline-block;
    padding-left: 38px;
    font-weight:400;
}

.custom-checkbox legend {
    font-size: 16px;
}

.custom-checkbox input, .custom-radio input {
    height: 22px;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 22px;
}

.form-check-input:disabled~.form-check-label, .form-check-input[disabled]~.form-check-label {
    opacity: .3;
}

.custom-checkbox input + label::before {
    border-radius:2px;
    border: 1px solid;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    top: 0;
    width: 22px;
    color: #85529c;
}

.custom-checkbox input + label::after {
    content: "";
    opacity: 0;
    background-image: url("/ui/assets/images/check.svg");
    background-repeat: no-repeat;
    height: 15px;
    width: 15px;
    position: absolute;
    left: 4px;
    top: 4px;
    transition: opacity 0.2s ease-in-out;
}

.custom-radio input + label::before {
    border: 1px solid;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    top: 0;
    width: 22px;
    border-radius: 50%;
    color: #85529c;
}

.custom-radio input + label::after {
    content: "";
    opacity: 0;
    border: 6px solid;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 5px;
    transition: opacity 0.2s ease-in-out;
}

.custom-checkbox input:checked + label::after, .custom-radio input:checked + label::after {
    opacity: 1;
}

.custom-checkbox input:focus + label::before, .custom-radio input:focus + label::before {
    box-shadow: 0 0 0 3px rgba(133, 82, 156, 0.3);
    outline: 3px solid transparent;
}

.form-check-inline .custom-radio, .form-check-inline .custom-checkbox{
    margin-left: -1.5rem;
    margin-right:25px;
}

.form-check-inline:last-of-type  .custom-radio, .form-check-inline:last-of-type  .custom-checkbox{
    margin-right:0;
}

.hoverable{
    padding:4px;
}

.hoverable:hover{
    background-color: #f5f5f5;
}

.signature-pad--body {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.signature-image {
    max-width: 100%; 
    max-height: 200px;
}

.card-file .card-file-avatar-container{
    text-align:center;
    padding:0 16px 8px 16px;
    border-bottom:1px solid #ccc;
}

.card-file .card-file-avatar{
    width:90px;
    height:90px;
    line-height:90px;
    text-align:center;
    border-radius:50%;
    font-size:42px;
    margin:0 auto;
    background-color:#777;
    color:#fff;
}

.card-file .card-chevron{
    font-size:28px;
    color:#85529c;
}

.card-file .file-global{
    background-color:#85529c;
    color:#fff;
    font-size:11px;
    padding:1px 6px;
    border-radius:3px;
    font-weight:500;
}

.card-file a {
    text-decoration:none;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.line-clamp-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.line-clamp-7 {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.application-pdf-logo-container{
    display: flex; 
    max-height:300px;
     margin-bottom:60px;
}

.application-pdf-logo {
    max-width:100%; 
    max-height:100%; 
    object-fit: contain;
}

.application-pdf-aeblogo {
    max-width:100%; 
    max-height:100%; 
    object-fit: contain;
}

.application-pdf-section {
    padding-bottom: 24px;
}

.application-pdf-section h2 {
    font-size: 22px;
    margin-bottom: 48px;
    background-color: #85529c;
    color: #fff;
    padding: 5px 0 5px 10px;
}

.application-pdf-section h4, .application-pdf-section h6 {
    color: rgb(32, 53, 88);
}

.application-pdf-section p {
    color:#333;
}

.application-pdf-section h4 {
    font-size: 18px;
    margin-bottom: 34px;
}

.application-pdf-inner-section {
    border-bottom: 1px dashed rgb(32, 53, 88, 0.2) !important;
    margin-top: 40px;
    padding: 0 10px 18px 10px;
}

.application-pdf-inner-section:last-of-type {
    border-bottom: none !important;
    padding-bottom: 0;
}

.application-pdf-inner-section:first-of-type {
    margin-top:0;
}

.application-pdf-section th {
    color: rgb(32, 53, 88);
    font-weight: 500 !important;
    vertical-align: top;
}

.application-pdf-section tr {
    border-bottom: rgb(32, 53, 88, 0.1);
}
.application-pdf-section tbody tr:last-of-type {
    border-bottom: #fff !important;
}

.application-pfd-declaration {
    border: 1px solid rgb(32, 53, 88, 0.2);
    padding: 10px 25px;
}

.application-pdf-signature {
    width: 500px;
    display: block;
}

.application-pdf-signature-uploaded-text {
    float: left;
    font-size: 12px;
}

.enrol-finish-title {
    display: inline-block;
    font-size: 22px;
    margin-bottom: 14px;
}

.enrol-finish-section-edit {
    display: inline; 
    text-decoration: none;
    margin-left: 2px;
}

.singlerowfileupload-btn-td {
    width: 100%;
}

.border-left-question-fail{
    border-left: solid 4px #f44336;
    padding-left: 20px;
}

.border-left-question-pass{
    border-left: solid 4px #4caf50;
    padding-left: 20px;
}

.force-word-break {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.enrol-number-circle {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 1px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #000;
    color: #000;
}

.removefeedback-enabled{
    font-size:20px;
    color:#f44336;
    padding-top:8px;
    cursor:pointer;
}
.removefeedback-disabled{
    font-size:20px;
    color:#ccc;
    padding-top:8px;
    cursor:default;
}

.removeselectoption-enabled, .removeitem-enabled{
    font-size:20px;
    color:#f44336;
    padding-top:8px;
    cursor:pointer;
}
.removeselectoption-disabled, .removeitem-disabled{
    font-size:20px;
    color:#ccc;
    padding-top:8px;
    cursor:default;
}
.sortselectoption-enabled, .sortitem-enabled{
    font-size:20px;
    color:#85529c;
    cursor:pointer;
}
.sortselectoption-disabled, .sortitem-disabled{
    font-size:20px;
    color:#ccc;
    cursor:default;
}

.messaging-remove-user-btn{
    color: white;
    background: none;
    border: none;
    padding: 0 0 0 5px;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.moderation-history-item-light {
    background-color:rgba(223, 222, 230, 0.25);
    padding:14px 20px;
    border-radius:20px;
}

.moderation-history-item-dark {
    background-color:rgba(223, 222, 230, 0.45);
    padding:14px 20px;
    border-radius:20px;
}

.exemplar-alert {
    background-color: #fff;
    border:1px solid #6c757d;
    color:#6c757d;
}

.exemplar-alert-icon {
    position:absolute;
    right:0;
    margin-top:-65px;
    margin-right:-35px;
}
.exemplar-alert-icon i {
    font-size:130px;
}

.exemplar-alert-icon .player-alert-fa {
    font-size:130px;
}

.initial-assessment-label{
    display:none;
}

.initial-assessment-authoring.collapsible{
    background-color:#f5f1f7;
    border-radius:20px;
    margin: 0 0 16px 0 !important;
}

.initial-assessment-authoring.collapsible.active .collapsible-header{
    background-color:#85529c;
}

.initial-assessment-authoring .collapsible-body{
    background-color:#f5f1f7;
}

.initial-assessment-authoring .activity-sortable-element-new-inner{
    background-color:#f5f1f7;
}

.initial-assessment-authoring .activity-sortable-element.collapsible-body-item{
    background-color:#f5f1f7;
}

.initial-assessment-new{
    color: #949494 !important;
    font-size: 12px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.initial-assessment-new-inner{
    position: absolute;
    background-color: #fff;
    bottom: -10px;
    margin: auto;
    padding: 0 8px;
    display: inline-block;
    left: 4px;
    text-decoration: underline;
}

.initial-assessment-new a{
    color: #949494 !important;
}

.learner-activity-locked{
    background-color:#f3f3f3; 
    color:#aaa !important;
}

.activity-play a{
    text-decoration:none;
}

.activity-play-btn{
    width:40px;
    height:40px;
    padding-top:5px;
    border-radius:50%;
    text-align:center;
    font-size:22px;
    background-color:#85529c;
    color:#fff;
}

.activity-play-btn-locked{
    background-color:#e0e0e0;
    color:#a0a0a0;
}

.report-table {
    counter-reset: report-number;
}

.counter-item::before {
    counter-increment: report-number;
    content: counter(report-number);
}

.course-locked {
    color: #aaa !important;
}

.course-locked-lock-container{
    width:70px;
    height:70px;
    line-height:68px;
    font-size:34px;
    text-align:center;
    border-radius:50%;
    overflow:hidden;
    background-color: #f3f3f3;
}

.table-danger td {
    background-color:#f8d7da;
}

.table-warning {
    background-color:#fff3cd;
}

.apidocs-code-block { 
    margin-bottom:20px; 
    padding-left:15px; 
    padding-top:15px; 
    padding-bottom:15px;  
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background-color: #f4f5f7; 
}

.apidocs-section-target::before {
    content: '';
    display: block;
    height: 175px;
    margin-top: -175px;
    visibility: hidden;
}

.announcement-container {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.10);
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 10%);
    border-radius: 5px;
    margin-bottom: 1rem;
}

.disguised-link {
    text-decoration: none;
    cursor: default;
}

.text-danger {
    color: #f44336;
}

.options-list {
    list-style: none;
    padding-left: 0;
}

.option-item {
    display: inline-block;
    margin: 5px 3px !important;
    border-radius: 20px;
    font-weight: 400;
    font-size: 16px;
}

.option-label, .option-remove {
    display: inline-block;
    padding: 4px 14px;
}

.option-remove {
    border-left: 1px solid #ffffff;
}

.option-label-active {
    cursor: move;
}

.option-remove-active {
    cursor: pointer;
}

.reportbuilder-header{
    min-width: 250px;
}

.sortable-horizontalfix .ui-sortable-placeholder{
    margin-bottom: 0;
    padding-bottom: 0;
    height: 0 !important;

}

.sortable-horizontalfix .option-label-active{
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.sortable-horizontalfix .option-remove-active{
    margin-bottom: 0;
    padding-bottom: 0;
    margin-left: 2px;
    border: none;
    border-left: 1px solid #ffffff;
}

.reportbuilder-toggle-btn {
    padding: 2px 15px;
}

.savedreports-edit-link {
    font-size: 14px;
}

.btn-file-remove {
    border-top-right-radius: 5px; 
    border-bottom-right-radius: 5px;
}

#loading-container{
    position:fixed;
    top:0;
    bottom:0;
    left: 0;
    right:0;
    z-index:9999999;
    border-radius:3px;
    padding:78px 100px;
    background-color:#fff;
}

.related-courses-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.related-courses-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    max-height: 85vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    text-align: left;
}

.close-popup-btn {
    cursor: pointer;
    font-size: 28px;
    float: right;
    color: red;
    transition: color 0.3s;
}

.close-popup-btn:hover {
    color: darkred;
}

.course-list {
    text-align: center;
}

.course-item {
    margin-bottom: 15px;
    text-align: center;
}

.course-item small {
    font-size: 0.9rem;
    font-weight: 400;
    color: black;
}

.course-description {
    margin-top: 10px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.courses-container h4, .related-courses-content h4 {
    margin-bottom: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
    color: black;
}

.courses-container h5, .related-courses-content h5 {
    margin-bottom: 12px;
    text-align: center;
    font-weight: 500;
    color: black;
    text-decoration: underline;
    font-size: 1rem;
}

.course-name {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-size: 14px;
    transition: color 0.3s;
}

.course-name a {
    text-decoration: none;
    color: black;
}

.course-name a:hover,
.course-name a:focus {
    color: black;
}

.course-name::after {
    content: "Click to see more information";
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.course-name:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.courses-container {
    display: flex;
    gap: 0px;
    margin-bottom: 15px;
}

.level2-courses, .level3-courses {
    width: 48%;
    transition: width 0.3s ease;
}

.centered-course {
    width: 100% !important;
    text-align: center;
}

.divider {
    border-left: 2px solid #ccc;
    height: 100%;
    margin: 0 10px;
}

.course-description h5, .popup-course-description h5 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: black;
    margin-bottom: 10px;
    text-decoration: underline;
}

#dropdownCourses {
    margin-top: 20px;
    text-align: center;
}

#coursesDropdown {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    border: 2px solid #ccc;
    border-radius: 8px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    text-align: center;
}

#coursesDropdown:hover,
#coursesDropdown:focus {
    border-color: #85529c;
    background-color: #e9ecef;
    outline: none;
}

#coursesDropdown:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#coursesDropdown::-ms-expand {
    display: none;
}

#dropdownCoursesPopup {
    margin-top: 20px;
    text-align: center;
}

#coursesDropdownPopup {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    border: 2px solid #ccc;
    border-radius: 8px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    text-align: center;
}

#coursesDropdownPopup:hover,
#coursesDropdownPopup:focus {
    border-color: #85529c;
    background-color: #e9ecef;
    outline: none;
}

#coursesDropdownPopup:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#coursesDropdownPopup::-ms-expand {
    display: none;
}

#coursesDropdown option {
    padding: 12px;
    font-size: 16px;
}

.course-description {
    padding: 20px;
    margin-top: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
    text-align: left;
}

.course-description h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.course-description p {
    font-size: 14px;
    line-height: 1.5;
    color: black;
}

#dropdownCourses + .course-description {
    margin-top: 20px;
}

.close-description-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

.course-description {
    position: relative;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-top: 10px;
    display: none;
}

@media (min-width: 568px) {
    .card-tutor{
        min-width: 300px;
    }
}

@media (max-width: 767px) {
    .activity-icon {
        display: none;
    }
    .activity-description {
        margin-bottom: 10px;
    }
    .status-large-screen {
        display: none;
    }
    .status-small-screen {
        display: block;
    }


}

@media (min-width: 768px) {
    

    .form-control-medium{
        width:50%;
        min-width:200px;
    }
    
    .form-control-short{
        width:30%;
        min-width:200px;
    }

    .form-control-extrashort{
        width:10%;
        min-width:120px;
    }
    
    .enrol-tab{
        width: auto;
    }
}

@media (min-width: 992px) {
    
    .filters-container{
        display:block !important;
    }

    .list-item-badge{
        display:inline-block;
        line-height:11px;
    }

    .nav-expanded .main{
        margin-left:93px;
    }

    .main{
        margin-left:12px;
    }

    .main-content.col, .main-content.col-12{
        margin-right:0.9rem !important;
    }

    .enrol-main .btn-enrol-form{
        width:auto;
    }

    .singlerowfileupload-btn-td {
        width: 110px;
    }
    
}

@media (min-width: 1200px) {
    
    .dash-box-text, .dash-box-text *{
        font-size: 1.2vmax;
    }

    .dash-box-number{
        min-width:auto;
    }

    .dash-box-number{
        font-size: 2vmax;
        margin-right:5%;
    }

}

@media (min-width: 1400px) { 
    
    .main-nav{
        left:0;
    }

    .main{
        margin-left:92px;
    }

    .nav-expanded .main{
        margin-left:293px;
    }

    .nav-expanded .navbar-menu-toggler-container{
        width:280px;
    }

    .nav-expanded .main-nav{
        width:280px;
        left:0;
    }

    .nav-expanded .main-nav .nav-item-text{
        display:inline-block;
    }
        
    .nav-expanded .main-nav .nav-item-icon{
        padding-right:12px;
    }

    .nav-expanded .main-nav .nav-link.dropdown-toggle::after{
        display:inline-block;
    }

    .nav-expanded .main-nav .nav-link{
        padding:8px 18px;
        text-align:left;
    }

    .nav-expanded .nav-user-details-name{
        display:inline-block;
        margin-left:16px;
    }

    .nav-expanded .nav-user-details{
        padding:14px 16px;
    }

    .dash-inline-box-number {
        font-size: 1.2vmax;
    }

    .dash-inline-box-title {
        font-size: 0.8vmax;
    }
    
}

@media (min-width: 2000px) {
    
    .dash-box-text, .dash-box-text *{
        font-size: 22px;
    }

    .dash-box-number{
        font-size: 42px;
        margin-right:30px;
    }

}

