@import url(https://fonts.googleapis.com/css?family=Oswald:300,400,500,700|Roboto:400,500);
@import url('https://fonts.googleapis.com/css?family=Bai+Jamjuree|Chathura|Homenaje|Jura|Lekton|Rajdhani|Ruluko|Saira+Condensed|Share+Tech+Mono|Strait|Sunflower:300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #868e96;
    --gray-dark: #343a40;
    --primary: #2c84dd;
    --secondary: #868e96;
    --success: #77c13a;
    --info: #17a2b8;
    --warning: #f98437;
    --danger: #d9534f;
    --light: #f8f9fa;
    --dark: #1d2126;
    --accent: #ed0b4c;
    --primary-light: #9cf;
    --breakpoint-xs: 0;
    --breakpoint-i8: 374px;
    --breakpoint-i8-plus: 413px;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1366px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

    /*Title fonts*/
    --font-family-1: 'Rajdhani', sans-serif;
    --font-family-2: 'Chathura', sans-serif;
    --font-family-3: 'Nunito Sans', sans-serif;;
}


body {
    margin: 0;
    font-family: Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-size: .99rem;
    font-weight: 400;
    line-height: 1.5;
    color: #303840;
    text-align: left;
    background-color: #f5f7fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: white;        
    counter-reset: course-overview question-section sidebar-mainsection-counter;
    /*overflow-y: hidden;*/
    /*counter-reset: counter-name;*/
    /*overflow-y: scroll;*/

}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    /*font-family: var(--font-family-1);*/
    font-family: Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-weight: 500;
    line-height: .9;
    color: inherit;
}

h1 {
    /*font-size: 2.827rem*/
    font-family: Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-size: 3.5rem;
}

h2 {
    font-size: 1.999rem
}

h3,
h4 {
    font-size: 1.414rem
}

h5,
h6 {
    font-size: 1rem
}
h1,
h2,
h3,
h4,
h5,
h6 {
    
}
a {
    /*color: rgba(48, 56, 64, .7);*/
    text-decoration: none;
    background-color: transparent
    color: black;
}
pre {
    background-color: hsla(0,0%,98%,1);
    padding: 1rem;
    margin: 0;
    /*overflow-x: scroll;*/
    overflow-x: auto;
}
.linux-output,
.similar-to-pre-tag.linux-output {
    font-family: 'Ubuntu Mono', monospace;
    background: rgb(45, 9, 34);
    color: white;
}
#answerArea.linux-output {
    padding: 15px 0px 15px 45px;
    width: calc(100% - 60px);
    position: relative;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
}
#answerArea.linux-output::selection {
    background-color: rgba(255, 255, 255, 0.996);
    color: rgb(45, 9, 34);
}
.linux-answer-wrapper {
    position: relative;
}
.linux-answer-wrapper::before {
    content: "$";
    position: absolute;
    left: 20px;
    top: 11px;
    color: white;
    font-family: 'Ubuntu Mono', monospace;
    background: transparent;
    z-index: 100000000;
    font-weight: 550;
    font-size: 1.1rem;
}
.similar-to-pre-tag {
    width: calc(100% - 2rem);
    padding: 1rem 1rem .2rem 1rem;
    background: hsla(0,0%,98%,1);
    overflow-x: auto;
    margin: 0;
    border: none;
    font-size: .99rem;
    height: auto;
    resize: none;
    white-space: pre;
    line-height: 1.5;
}
pre.gray-border,
.similar-to-pre-tag.gray-border {
    border: 1px solid #ddd;
}
code {
    font-size: 87.5%;
    color: #e83e8c;
    background-color: #f4f4f4;
    word-break: break-word;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: 1em
}

table {
  table-layout: fixed;
  border: 1px solid #e3e3e3;

  border-collapse: collapse;

}

tbody tr:nth-child(odd){
  background-color: #fff;
}

tbody tr:nth-child(even){
  background-color: #f4f4f4;
}

th, td {
  padding: 5px 10px;
}

figure {
  border: 1px solid #ddd;
  border-radius: 4px;


  text-align: center;
  font-style: italic;
  font-size: smaller;
  text-indent: 0;

  margin: 0.5em;
  padding: 0.5em;
}

/*figure:hover {
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
*/

.notes-highlight {
    background-color: #e7f3fe; 
    border-left: 6px solid #2196F3; 
    margin-bottom: 15px; 
    padding: 4px 12px;"
}

.body-wrapper {	
	/*padding-top: 70px;*/
	min-height: 100%;
	width: 100%;
	display: grid;
	grid-template-rows: auto 50px;
	grid-template-columns: 1fr 10px 9fr;
	grid-template-areas: "sidebar gutter content";
	overflow: hidden;
}
.grid-header {
	grid-area: header;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	width: 100%;
	padding-left: 15%;
	padding-right: 15%;
	border-bottom: 2px solid rgba(156, 156, 156, 0.3);
	position: sticky;
	top: 0;
	background: white;
}
.grid-header .header-content {
}
.collapse-expand-icon {
	
	display: inline-block;

}
.collapse-expand-icon.open {    
}

/*#expand-icon:hover {
    color: blue;
    cursor: pointer;
}*/

.a-grid-header {
	
	display: grid;
	grid-template-columns: 2fr 1fr;
	align-items: center;
	/*width: 100%;*/
	padding-left: 10%;
	padding-right: 10%;
	border-bottom: 1px solid rgba(156, 156, 156, 0.3);
	/*position: fixed;
	top: 0;*/
	background-color: white;
	height: 70px;
    min-height: 70px;
	z-index: 1;
}
.grid-content {
	grid-area: content;    
}
.breadcrumb-content {
    width: 100%;
}
.breadcrumb-link {
    display: inline-block;
    /*width:auto;*/
    max-width: 20px;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: rgba(48, 56, 64, .7);
    max-width: 20%;
    transition: color .1s ease-out;
} 
.breadcrumb-link:hover {
    color: rgba(0,0,0,0.8);
    cursor: pointer;
}
.entity-link-course-view-page:hover {
    cursor: pointer;
}
.breadcrumb-seperation {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
}
.content-area-below-navbar {
    grid-template-rows: 13fr 2fr;
    display: grid;
    /*min-height: 100%;*/
    height: calc(100vh - 106px);
    overflow-x: hidden;
    overflow-y: auto;
    /*background: #f9f9f9;*/
    background: #ffffff;
}

.grid-footer {
	grid-area: footer;
	background: rgba(0,0,0,0.1);
	z-index: 2;
	display: flex;
	justify-content: center;
}
.grid-sidebar {
	grid-area: sidebar;
	width: 50px;
	transition: all .2s ease-out;
	position: relative;
	padding-bottom: 200px;
	z-index: 3;
}


/*Course-content-links*/
/*.grid-sidebar:not(.active) .a-sticky::-webkit-scrollbar{
  background-color: white;
  width: 12px;
}*/


.default-profile-pic {
    color: rgb(166, 40, 250);
    border-radius: 50%;
    background-color: rgba(130, 130, 130, 0.1);
    padding: 10px;
    -o-transition:.2s;
    -ms-transition:.2s;
    -moz-transition:.2s;
    -webkit-transition:.2s;
    transition:.2s;
}
.default-profile-pic:hover{
    color: white;
    background-color: #4100b3;
    cursor: pointer;
}
.dropdown-item:hover{
    color:#4100b3;
    background-color: rgba(143, 79, 255, 0.1);

}



.abstract-box {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    width: 80%;
    margin-left: 10%;
    background: #fafafa;
    margin-top: 15px;
}
.abstract-box-title {
    font-weight: 500;
    margin: 8px 15px 5px 15px;
}


.abstract-box .abstract-box-content {
    max-height: 60px;
    color: rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
    margin: 5px 15px 5px 15px;

}
.abstract-box .abstract-box-content.shown {
    max-height: 999px;
    height: auto;
    color: black;
    
}

.abstract-box .abstract-box-content::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: visible;
    content: "";
    background: linear-gradient(to top,
                 rgba(250, 250, 250,1) 0%,
                 rgba(250, 250, 250,0) 100%);
}
.abstract-box .abstract-box-content.shown::after {
    visibility: hidden;
}
.abstract-box-view-more {
    margin: 5px 15px 5px 15px;
    color: rgba(145, 145, 145,1);
}
.abstract-box-view-more:hover {
    cursor: pointer;
}

.abstract-turnable-chevron {
    -webkit-transition: -webkit-transform .2s linear;
    -moz-transition:    -moz-transform .2s linear;
    -o-transition:      -o-transform .2s linear;
    -ms-transition:     -ms-transform .2s linear;
    transition:         transform .2s linear;
}
.abstract-turnable-chevron.up {
    -moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
}


.abstract-wrapper {
    height: 0;
    visibility: hidden;
    max-height: 40px;
    overflow: hidden;
}
.abstract-wrapper.active {
    max-height: 10000px;
}

.abstract-wrapper.shown {
    border: 1px solid purple;
    width: 80%;
    margin-left: 10%;
    display:block;
    height: auto;
    visibility: visible;

}
.abstract-wrapper .abstract-title-box {
    display: flex;
    width: 100%;
    padding: 10px;    
    cursor: pointer;
}

.abstract-wrapper .hint-title {
    color: #757575;
}

.abstract-wrapper .hint-title:hover {
    background: rgba(181, 181, 181, 0.2);
    color: #4d4d4d;
}

.abstract-wrapper .abstract-title-box:nth-child(2) {
}
.abstract-box .turnable-chevron {
    -webkit-transition: -webkit-transform .2s linear;
    -moz-transition:    -moz-transform .2s linear;
    -o-transition:      -o-transform .2s linear;
    -ms-transition:     -ms-transform .2s linear;
    transition:         transform .2s linear;
}
.abstract-box .turnable-chevron.down {
    -moz-transform:rotate(90deg);
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg);
}
.abstract-wrapper .abstract-content {
    visibility:hidden;
    height: 0px;
    color: black;
}
.abstract-wrapper.active .abstract-content {
    visibility: visible;
    min-height: 10px;
    height: auto;
    padding: 15px;
}

.nested-hint-wrapper {
    height: 0;
    visibility: hidden;
    max-height: 40px;
    margin-bottom: 10px;
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 1px 6px 1px rgba(0,0,0,0.12)
}
.nested-hint-wrapper.active {
    max-height: 10000px;
}
.nested-hint-wrapper.course-view {
    max-height: 60px;
}
.nested-hint-wrapper.shown {
    width: 80%;
    margin-left: 10%;
    display:block;
    height: auto;
    visibility: visible;
}
.nested-hint-wrapper .nested-hint-title-box {
    display: flex;
    width: 100%;
    padding: 10px;    
    cursor: pointer;
}

.nested-hint-wrapper .hint-title {
    color: #757575;
}

.nested-hint-wrapper .hint-title:hover {
    background: rgba(181, 181, 181, 0.2);
    color: #4d4d4d;
}

.nested-hint-wrapper .nested-hint-title-box:nth-child(2) {
}
.nested-hint-box .turnable-chevron {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: -webkit-transform .2s linear;
    -moz-transition:    -moz-transform .2s linear;
    -o-transition:      -o-transform .2s linear;
    -ms-transition:     -ms-transform .2s linear;
    transition:         transform .2s linear;
}
.nested-hint-box .turnable-chevron.down {
    -moz-transform:rotate(90deg);
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg);
}
.nested-hint-title-box .turnable-chevron.down.hundredeighty {
    -moz-transform:rotate(270deg);
    -webkit-transform:rotate(270deg);
    transform:rotate(270deg);
}
.nested-hint-wrapper .nested-hint-content {
    visibility:hidden;
    height: 0px;
    color: black;
}
.nested-hint-wrapper.active .nested-hint-content {
    visibility: visible;
    min-height: 10px;
    height: auto;
    padding: 15px;
}

.main-section-content {
    margin-bottom: 10px;
}
.main-section-content.hidden-main-section{
display: none;    
}
.main-section-title {
    width: 100%;
    /*padding: 7px 20px 7px 20px;*/
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 7px;
    padding-bottom: 7px;
}
.main-section-title .ms-chevron-box {
    display: inline-block;
    margin-right: 15px;
    margin-left: 15px;
}
.main-section-title:hover {
    background: rgba(181, 181, 181, 0.2);
    cursor: pointer;
}
.main-section-title::before {
    counter-increment: course-overview;
    content: counter(course-overview);
    position: absolute;
    border: 1px solid #d4d4d4;
    left: -2.3em;
    top: .2em;
    background: #f5f7fa;
    font-family: Oswald, Helvetica Neue, Arial, sans-serif;
    font-weight: 500;
    font-size: 1.414rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-section-title-span {
    display: inline-block;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: var(--font-family-1)
}
.main-section-box {
    margin-bottom: 20px;
    margin-left: 2%;
    margin-right: 2%;
    border: 1px solid #ccc;
}

.main-section-boxes-wrapper {
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
}
.entity-line-coursepage {
    display: flex;
    align-items: center;
    padding: 2px 20px 2px 20px
    line-height: 1.5;
    font-size: 1rem;
    font-family: Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    text-decoration: none;
}
.entity-title-column {
    flex: 7;
    color: rgba(48, 56, 64, .7);
    font-weight: 500;
}
.entity-completed-column {
    flex: 1;
    display: flex;
    justify-content: center;

}
.entity-line-coursepage:hover {
    background: rgba(181, 181, 181, 0.2);
}
.zero-percent-completed {
    color: #e0e0e0;
    font-size: 0.95rem;
}
.entity-line:hover .zero-percent-completed {
    color: #808080;
}
.entity-started-percent {
    color: #999999;
}
.main-section-title-chevron-wrapper {
    background: purple;
    padding: 5px;
    color: white;
    text-align: center;
    width: 30px;
    height: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 1.4rem
}
.subsections-title {
    margin: 20px 5% 2px 5%;
}
.subsection-list {
    display: flex;
    flex-direction: column;
    margin-left: 5%;
    margin-right: 5%;
}
.abstract-chevron-box {
    background: purple;
    padding: 2px;
    color: white;
    text-align: center;
    width: 20px;
    height: 20px; 
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 0.9rem
}
.course-overview-top-boxes-wrapper {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.course-overview-top-box {
    border: 1px solid gray;
    flex-basis: calc(50% - 20px);
    border: 1px solid #ebeff2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-overview-top-box:first-child {
    margin-right: 10px;
}
.course-overview-top-box:last-child {
    margin-left: 10px;
}
.courseoverview-top-boxes-inner {
    display: block;
    text-align: center;
    padding: 1rem
}
.courseoverview-top-box-title {
    display: block;
    color: rgba(48, 56, 64, .7)
}
.courseoverview-top-box-subtitle {
    display: block;
    font-weight: 500;
    font-size: 1.125rem
}
.entity-icon-column {
    flex: 1;
    display: flex;
    justify-content: center;
    
}
.entity-completetd-column {
    display: flex;
    justify-content: center;
    flex: 1;
    align-items: center;
    padding-top: auto;
    padding-bottom: auto;
}

.checkmark2 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  stroke-width: 6;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  /* animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both; */
}

    
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  stroke-width: 6;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}

.circle {
  position: relative;
  top: 5px;
  left: 5px;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #ffffff;
}

.circle-border {
  position: relative;
  text-align: center;
  width: 55px;
  height: 55px;
  margin-left: 30%;
  border-radius: 100%;
  background-color: #E53B3B;
  background: linear-gradient(270deg, black 50%, transparent 50%), linear-gradient(0deg, black 50%, lightgray 50%)
}
.hint-menu {
    height:0px;
    display: none;
}
.hint-menu.hint-menu-expanded {
    height:auto;
    display: block;
    margin-top: 25px;
    transition: ease-in-out 1s;
}
.hint-box:hover {
    cursor: pointer;
}
.expand-chevron {
    -webkit-transition: -webkit-transform .2s linear;
    -moz-transition:    -moz-transform .2s linear;
    -o-transition:      -o-transform .2s linear;
    -ms-transition:     -ms-transform .2s linear;
    transition:         transform .2s linear;        
}
.expand-chevron.down {
        -moz-transform:rotate(-90deg);
        -webkit-transform:rotate(-90deg);
        transform:rotate(-90deg);
}

/*Course-nav boxes on student-take-course-page*/
.course-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 0
}

.course-nav:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 1px);
    height: 2px;
    background-color: #61009e;
    /*opacity: .2;*/
    z-index: -1
}

.course-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 100px;
    background-color: #f5f7fa
}

.course-nav a .material-icons {
    font-size: 2rem;
    color: purple
}

.material-icons.purple-colored {
    font-size: 2rem;
    color: purple
}

.course-nav .active {
    position: relative;
    z-index: 0
}

.course-nav .active:before {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    left: -2px;
    top: -2px;
    background-color: hsla(0, 0%, 100%, .2);
    z-index: -1;
    position: absolute;
    content: "";
    border-radius: 100px
}

.course-nav .active .material-icons {
    color: #ed0b4c
}

/*QUIZ MODULE*/
.purple-hover{
	padding: 1px 2% 1px 9%;
}
.purple-hover a{
        color: rgba(120, 120, 120, 0.8);
}
.purple-hover:hover{
        background-color: rgba(143, 79, 255, 0.1);
        font-size: 16px;
        
}
.purple-hover:hover a {
        color:#4100b3;
}
/*CHECKBOX*/
.custom-checkbox-toggle {
    width: 3rem;
    height: 1.5rem;
    padding-left: 0
}

.custom-checkbox-toggle .custom-control-label {
    position: relative;
    width: 100%;
    height: 100%;
    font-weight: 400
}

.custom-checkbox-toggle .custom-control-label:after,
.custom-checkbox-toggle .custom-control-label:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    transition: all .2s ease;
    border-radius: 1.5rem
}

.custom-checkbox-toggle .custom-control-label:before {
    width: 100%;
    height: 100%;
    background-color: #e3ebf6
}

.custom-checkbox-toggle .custom-control-label:after {
    width: 1.5rem;
    height: 100%;
    -webkit-transform: scale(.8);
    transform: scale(.8);
    background-color: #fff
}
.custom-control-input {

    float: right;
    margin-top: 5px
}
.custom-checkbox-toggle .custom-control-input:checked~.custom-control-label:after {
    right: 0;
    left: 1.5rem;
    background-color: #fff;
}

.custom-checkbox:hover {
    cursor: pointer;
    background: #fffad9;
}
.custom-checkbox label:hover {
    cursor: pointer;
}
.custom-checkbox {
    display: flex;
    width: 100%;
    padding-right: 40px;
    transition: all .1s ease-out;
    
}
.custom-checkbox.selected {
    background: #fffad9;
    color: #943b00;
}
.custom-checkbox.correct-answer-submitted,
.custom-checkbox.selected.correct-answer-submitted {
    background: #e7ffd9;
    color: #246100;
}
/*Quiz module*/
.quiz-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.quiz-not-completed-circle {
    font-size:19.5px;
    color: rgba(79, 79, 79, 0.4)
}
.quiz-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}
.quiz-introduction-text {
    display: flex;
    justify-content: center
}
.quiz-begin-button-wrapper {
    display: flex;
    justify-content: center
}
.quiz-question-content-wrapper {
    display: flex;
    flex-direction: column;
    padding-left: 10%
}
.next-prev-wrapper {
    font-size: 1.3rem;
    font-weight: 0;
    color: rgba(80,80,80,0.4);

}
.next-prev-button {
    /*padding: 2px 10px 2px 10px;*/
    padding: .25rem .375rem;
    display: flex;
    align-items: center;
    margin-top:2px;
    /*background: #ececec;*/
    /*color: rgba(80,80,80,0.6);*/
    color: #676767;
    font-weight: 200;
    font-size: .9rem;
    /*Prevent from selecting the content*/
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
}
.next-prev-button:hover {
    color: rgba(80,80,80,0.8);
    background: #dfdfdf;
    cursor: pointer;
    position: relative;
}
.next-prev-button-deactivated {
    /*padding: 2px 10px 2px 10px;*/
    padding: .25rem .375rem;
    display: flex;
    align-items: center;
    color: rgba(80,80,80,0.6);
    font-weight: 200;
    cursor: not-allowed;
    font-size: .9rem;
    margin-top: 2px;

    /*Prevent from selecting the content*/
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
}



/* Next-prev-button-tooltip*/
.next-prev-button::after {
    position: absolute;
    display: block;
    transition: transform ease-out 0.2s;
    content: attr(data-tooltip);
    background: rgba(0,0,0,0.3);
    top: 110%;
    font-size: .85rem;    
    padding: 4px;
    border-radius: 0;
    white-space: nowrap;
}
.next-prev-button.next::after {
    right: -5%;
}
.next-prev-button.prev::after {
    right: -105%;
}
.next-prev-button:hover::after {
    /*transform: translateY(10%);*/
    color: white;
}

.next-prev-icon-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    /*margin-top: 3px;*/
}
.chevron-np {
    /*The bas of the chevron in the 
      next/prevv buttons*/
    height: 12px;
    width: 12px;
    
    border-width: 1px 1px 0 0;
    border-style: solid;
    /*border-color: rgba(80,80,80,0.6);*/
    color: #676767;

}
.chevron-np.right {
    /*pointing the chevron to the right*/
    transform: rotate(45deg);
}
.chevron-np.left {
    transform: rotate(-135deg);
}
.next-prev-text-wrapper {
    flex: 4;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-bottom:2.6px;
}

/***********************************/
.profile-dropdown-menu {
    display: block;
    position: absolute;
    left: -80%;
    top: 15px;
    width: 200px;
    height: 0;
    background: white;
    border: none;
    transition: transform .2s ease-out,
                opacity .15s ease-out;
    overflow: hidden;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
}
.profile-dropdown-menu div.dropdown-item,
.profile-dropdown-menu div.dropdown-title  {
    display: none;
}
.profile-dropdown-menu.shown {
    border: 1px solid #dfdfdf;
    height: auto;
    display: block;
    transform: translateY(25px);
    opacity: 1;
    z-index: 10;
}
.profile-dropdown-menu.shown div.dropdown-item,
.profile-dropdown-menu.shown div.dropdown-title {
    display: block;
}
.slick-arrow {
    height: 30px;
    width: 30px;
    /*border: 1px solid #ccc;*/
    color: #ccc;
    background: white;
    border-radius: 50%;
    cursor: pointer;

    /*Prevent from selecting the content*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/************************************************/
/****************** Week slide ******************/
/************************************************/

.week-slider-slide {
    /*Prevent from selecting the content*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #f5f7fa
}
.week-slider-slide:hover {
    cursor:pointer;
}
.week-slider-slide.hover {
    background-color: #E3E3E3;
    transition: background 0.2s ease-out;
}
#next-slide.slick-arrow .chevron-np,
#prev-slide.slick-arrow .chevron-np{
    transition: all 0.2s ease-out;
}
#next-slide .chevron-np,
#prev-slide .chevron-np{
    width: 25px;
    height: 25px;
}
#next-slide.slick-arrow:hover .chevron-np,
#prev-slide.slick-arrow:hover .chevron-np{
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: rgba(80,80,80,0.9);
}
.week-carousel .slide-gray-background {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 100px;
    
}
.week-carousel .slide-gray-background .material-icons {
    color: #696969;
    transition: color 0.2s ease-out;

}
.week-carousel .slide-gray-background:hover .material-icons {
    color: #909090;

}
.week-summary-single-week:first-of-class {
    position: absolute;
    height: 5px;
    background-color: red;
    content: "";
    top: 50%;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
}
.slick-slide:first-of-type::before {
    position: absolute;
    height: 3px;
    background-color: #ccc;
    content: "";
    top: 49%;
    left: 10%;

    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    z-index: -1;
}
.slick-slide:last-of-type::after {
    position: absolute;
    height: 3px;
    background-color: #ccc;
    content: "";
    top: 49%;
    right: 10%;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    z-index: -1;
}
.slick-slide:not(:first-of-type):not(:last-of-type)::before {
    position: absolute;
    height: 3px;
    background-color: #ccc;
    content: "";
    top: 49%;
    left: 0;

    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    z-index: -1;
}

.slick-slide {
    position: relative;
}
/************************************/
/********* Session-end-modal ********/
/************************************/

.lesson-menu-item{

}
.lesson-menu-item:hover{
    background-color: rgba(153, 153, 153, 0.2);
    background: rgba(153, 153, 153, 0.2);
}
.expand-one
{
    cursor:pointer;
}
.expand-one:hover{
    color: #6e007c !important;
}
.video-text{
    outline: 1px solid rgba(20, 155, 0, 0.5);
    background-color: rgba(30, 232, 0, 0.3);
}
.light-gray-hover:hover{
    background-color: rgba(66, 66, 66, 0.1);
}



.header-icons-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-top:10px;
}
.header-profile-wrapper {
    position: relative;
    margin-right: 8px;
    padding-right: 8px;
    line-height: 1;
    font-size:.9rem
}
.form-control {
    display: block;
    width: calc(100% - 1.5rem);
    height: calc(2.5rem + 2px);
    padding: .5rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #303840;
    background-color: #edf0f2;
    background-clip: padding-box;
    border: 1px solid #edf0f2;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}
.form-control:focus {
    color: #303840;
    background-color: white;
    border-color: #9ac4ef;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(44, 132, 221, .25)
}
.btn-accent {
    color: #fff;
    background-color: #00c648;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}
.btn-accent:hover {
    cursor: pointer;
    background: #38DB74;
}
.course-boxes-container.a {
    color: black;
}
.course-box {
    box-shadow: 0 2px 8px 0px rgba(0,0,0,0.15);
    transition: 200ms ease-in-out;
}
.course-box:hover {
    box-shadow: 0 2px 8px 2px rgba(0,0,0,0.2);
}
.course-box:hover span.box-title {
}
span.box-title {
    display: block;
    text-align: center;
    color: black;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #616161;
}
.go-to-course-link:hover {
    text-decoration: underline;
}

/********************************************/
/************ support tickets ***************/
/********************************************/
.other-users-message-wrapper {
    margin-top: 15px;
    display: block;
    /*margin-left: 30px*/
}
.other-users-message-wrapper .other-users-username {
    margin-left: 10px;
    font-weight: 500;
    color: rgba(0,0,0,0.8);
    display: inline-block;
}
.other-users-message-wrapper .other-users-date {
    font-size: 0.8rem;
    color: #959595;
    margin-left: 10px;
}
.other-users-message-wrapper .other-users-message {
    box-shadow: 0 2px 8px 0px rgba(0,0,0,0.15);
    max-width: 80%;
    width: auto;
    padding: 10px;
    background: white;
    color: #505050;
}
.reply-area {
    display: block;
    background: white;
    z-index: 2;
    height: calc(35% - 10px);
    padding-top: 10px;
}
.send-chat-message-button-wrapper {
    display: flex;
    align-items: center;
    width: calc(100% - 20px);
    height: 30%;
    padding-left: 20px;
}
.send-chat-message-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
    margin-bottom: 2%;
    max-height: 40px;
    height: 100%;
    width: 95px;
    color: white;
    background: #BF00DE;
    transition: background .15s ease-out;
}
.send-chat-message-button:hover {
    cursor: pointer;    
} 
.hover:hover {
    cursor: pointer;
}
.support-ticket-message-grid-wrapper {
    /*min-height: 78vh;*/
    height: calc(100% - 103px);
    /*max-height: 78vh*/
    display: grid;
    grid-template-columns: 8fr 2fr;
}
.support-ticket-message-grid-wrapper .support-ticket-message-grid {
    height: 100%;
    border: 1px solid #e7e7e7;
    overflow-y: hidden;
    /*width: 80%;*/
}
.support-ticket-message-grid-wrapper .support-ticket-info {
    /*width:20%;*/
    height: 100%;
    border-top: 1px solid #e7e7e7;
    /*border-right: 1px solid #e7e7e7;*/
    border-bottom: 1px solid #e7e7e7;

}
.my-own-message-wrapper {
    display: block;
    margin-top: 10px;
    /*margin-right: 30px;*/
}
.my-own-message-wrapper .my-profile-name {
    margin-left: 10px;
    font-weight: 500;
    color: rgba(0,0,0,0.8);
}
.my-own-message-wrapper .my-message-date {
    font-size: 0.8rem;
    color: #959595;
    margin-left: 10px;
}
.my-own-message-wrapper .my-own-message {
    box-shadow: 0 2px 8px 0px rgba(0,0,0,0.15);
    max-width: 80%;
    width: auto;
    padding: 10px;
    background: rgba(189, 87, 255,0.12);
    color: #505050;
}
.my-own-message-wrapper .my-message-top-line {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.height-80 {
    height:80%;
}
.height-70 {
    height: 70%;
}
.height-20 {
    height: 12%;
}
.height-30 {
    height: 10%;
}
#message-area {
    transition: height .2s ease-out;
    overflow-y: scroll;
    /*border-bottom: 1px solid #e7e7e7;*/
    padding: 30px;
    overflow-y: scroll;
    position: relative;
    height: calc(65% - 60px);

}
#reply-area {
    transition: height .2s ease-out;
}
.message-list::-webkit-scrollbar,
#message-area::-webkit-scrollbar {
    width: 13px;
}
.message-list::-webkit-scrollbar-thumb,
#message-area::-webkit-scrollbar-thumb{
  background: rgba(100,100,100, 0.2);
  transition: background .3s ease-out;

}
.message-list::-webkit-scrollbar-thumb:hover,
#message-area::-webkit-scrollbar-thumb:hover{
  background: rgba(100,100,100, 0.4);
  transition: background .3s ease-out;
}
.active-message {   
    border-left: 4px solid purple;
}
.message-in-list:hover {
    cursor: pointer;
    background: #F5F0F9;
}
.my-message-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    /*height: 0;*/
    animation: main .25s;
    transform-origin: 100% 0;
}
.my-message-wrapper.full-height {
    /*transform: scale(1);*/
    overflow: visible;  
}

@keyframes main {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.my-message-style {
    box-shadow: 0 2px 8px 0px rgba(0,0,0,0.15);
    max-width: 80%;
    width: auto;
    padding: 10px;
    background: rgba(189, 87, 255,0.12);
    color: #505050;
}
.reply-field {
    height: calc(100% - 30px);
    width: calc(100% - 30px);
    border: none;
    padding: 15px;
    overflow-y: auto;
    /*resize: none;*/
    outline: none;
    line-height: 22px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.12);
    position: absolute;
    left: 0;
    top: 0;
}
.quotedTextInMessage {
    margin: 10px; 
    padding: 20px;
    position: relative;
}
.quotedTextInMessage::before {
    content: '\201C';
      position: absolute;
      top: -0.2rem;
      left: -0.15em;
      color: darken(white, 7%);
      font-size: 4rem;
      z-index: 2;
}
.quotedTextInMessage::after {
    content: '\201D';
      position: absolute;
      bottom: -2.4rem;
      right: -0.15rem;
      color: darken(white, 7%);
      font-size: 4rem;
      z-index: 2;
}
.back-button {
    color: rgba(0,0,0,0.6);
}
.back-button:hover {
    transition: color .2s ease-out;
    color: #855299;
}
.fixedChatIcon {
    position: fixed;
    top: 30%;
    right: 20px;
    background: gray;
    /*z-index: -1;*/
    padding: 8px;
    background: #ececec;
    color: #676767; 
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    z-index: 10;
    display: none;
}
.fixedChatIcon:hover {
    cursor: pointer;
    background: #DFDFDF;
}
.fixedChatIcon::before {
    content: attr(data-tooltip);
    position: absolute;
    top: 0;
    left: -210px;
    color: magenta;
    max-width: 180px;
    min-width: 150px;
    width: auto;
    transform: scale(0);
    background: #494949;
    color: white;
    padding: 10px;
    transform-origin:top left;
}
.fixedChatIcon:hover::before {
    transform: scale(1);
    transition: transform .2s ease-out;
    transform-origin: left;
    transform-origin:top right;
}
/*
.chatIcon {
    color: rgba(0,0,0,0.35);
    padding: 3px;*/
    /*opacity: 0;*/
    /*
    transition: opacity 1s ease-out;
    position: absolute;
    left: -5%;
    top: -1%;
}
.chatIcon.visibleChatIcon {
    opacity: 1;
    transition: opacity 1s ease-out;
}
.chatIcon:hover {       
    background: #ececec;
    color: #676767;
    border-radius: 50%;
    cursor: pointer;
}
/*.chatIcon::before {
    content: "gg";
    background: red;
    opacity: 0.2;
    height: 100px;
    width: 100px;
    left: -10px;
    top: -10px;
}*/
/*
.chatIcon::after {
    content: "Ask about this section in a new support ticket";
    position: absolute;
    top: -160%;
    left: 50px;
    color: magenta;
    max-width: 180px;
    min-width: 150px;
    width: auto;
    transform: scale(0);
    background: #494949;
    color: white;
    padding: 10px;
}
.chatIcon:hover::after {
    transform: scale(1);
    transition: transform .2s ease-out;
    transform-origin: left;
}
*/
#popupWindow {
    animation: fadeIn ease .5s;
      -webkit-animation: fadeIn ease .5s;
      -moz-animation: fadeIn ease .5s;
      -o-animation: fadeIn ease .5s;
      -ms-animation: fadeIn ease .5s;
}

@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
.popupButtonRow {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 12%;
    margin-top: 5px;
}
.popupSubmitButton {
    height: 100%;
    width: auto;
    padding: 8px 16px;
    background: #BF00DE;
    color: white;
    transition: background 0.1s ease-out;
    position: relative;
}
.popupSubmitButton:hover {
    cursor: pointer;
    background: #DD55F4;
    transition: background 0.1s ease-out;
}
.quotedText {
    position: relative;
    background: white;
    /*padding: 0 50px;*/
    max-height: 500px;
    /*overflow-y: auto;
    overflow-x: hidden;*/
    display: block
}
.quotedText-text-part {
    position: relative;
    background: white;
    padding: 0 50px;
    max-height: 300px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: block
}
.quotedText::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: -0.19rem;
    color: darken(white, 7%);
    font-size: 4rem;
    z-index: 2;
}
.quotedText::after {
    content: '\201E';
      position: absolute;
      bottom: 0rem;
      right: 1.15rem;
      color: darken(white, 7%);
      font-size: 4rem;
      z-index: 2;
}
.startSupportTicketTextArea {
    height: auto;
    min-height: 100px;
    width: calc(100% - 30px);
    padding: 15px;
    overflow-y: auto;
    resize: none;
    outline: none;
    margin-top: 4%
}
.enters-sends-message {
    width: 100%;
    font-size: .85rem;
    color: gray;
    content: "Enter sends the message";
    text-align: right;

}
.highestBackgroundOfPopup {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popupWindowCloseIcon {
    position: absolute;
    top: 20px;
    right: 20px;
}
.popupWindowCloseIcon {
    cursor: pointer;
}
.popupWindowCloseIcon svg {
    height: 25px;
    width: 25px;
}
.popupWindowCloseIcon svg .cancel-icon {
    stroke-width: 1;
    stroke: #A7A7A7;
    transition: stroke-width 0.15s ease-out;
}
.popupWindowCloseIcon:hover svg .cancel-icon {
    stroke-width:1.5;
    stroke: #5F5F5F;
    transition: stroke-width 0.15s ease-out;
}
.popupBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    top: 0;
    left: 0;
    z-index: 10;
}
#popupWindow {
    position: absolute;
    width: auto;
    min-width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: auto;
    box-shadow: 0 2px 8px 2px rgba(0,0,0,0.2);
    z-index: 11;
    background: white;
    padding: 30px;
    max-width: 50%;
    max-height: 60%;
    overflow-y: auto;
    z-index: 12;
}
/*****************************************/
/*************** Dashboard ***************/
/*****************************************/



.dashboard-course-name {
    font-size: 1.4rem;
    padding: 8px;
    font-size: 2.5rem;
    line-height: 2rem;
    font-family: var(--font-family-1);
    font-weight: 500;
    color: white;
    display: block;
}

@media (min-width:120px) {
    .dashboard-course-name {
        font-size: 1.3rem;
    }
    .breadcrumb-seperation {
        display: inline-block;
    }
    .breadcrumb-wrapper {
        display: none; 
        min-width:100%;       
    }

    .content-area {
        max-width: 72vw;
        min-width: 72vw;
    }
}

@media (min-width:700px) {
    .content-area {
        max-width: 67vw;
        min-width: 67vw;
    }
    .course-title h1 {
        font-size: 3.5rem;
    }
}

@media (min-width:900px) {
    .dashboard-course-name {
        font-size: 1.3rem;
    }
    .breadcrumb-wrapper {
        display: flex;        
    }
    .content-area {
        max-width: 65vw;
        min-width: 65vw;
    }
    .course-title h1 {
        font-size: 3.5rem;
    }
}

@media (min-width:1000px) {
    .dashboard-course-name {
        font-size: 1.35rem;
    }
    .content-area {
        max-width: 63vw;
        min-width: 63vw;
    }
    .course-title h1 {
        font-size: 3.7rem;
    }
}

@media (min-width:1100px) {
    .dashboard-course-name {
        font-size: 1.4rem;
    }
    .content-area {
        max-width: 60vw;
        min-width: 60vw;
    }
    .course-title h1 {
        font-size: 3.9rem;
    }
}

@media (min-width:1200px) {
    .dashboard-course-name {
        font-size: 1.6rem;
    }
    .content-area {
        max-width: 56vw;
        min-width: 56vw;
    }
    .course-title h1 {
        font-size: 4rem;
    }
}

@media (min-width:1300px) {
    .dashboard-course-name {
        font-size: 1.8rem;
    }
    .content-area {
        max-width: 53vw;
        min-width: 53vw;
    }
    .course-title h1 {
        font-size: 4.15rem;
    }
}

@media (min-width:1400px) {
    .dashboard-course-name {
        font-size: 2rem;
    }
    .content-area {
        max-width: 47vw;
        min-width: 47vw;
    }
    .course-title h1 {
        font-size: 4.25rem;
    }
}

@media (min-width:1515px) {
    .dashboard-course-name {
        font-size: 2.4rem;
    }
    .content-area {
        max-width: 44vw;
        min-width: 44vw;
    }
    .course-title h1 {
        font-size: 4.35rem;
    }
}
@media (min-width:1515px) {
    .course-title h1 {
        font-size: 4.5rem;
    }
    .content-area { /* a4 page with 1 cm margin in each side */
        max-width: 20cm;
        min-width: 20cm;
    }
}

.learning-entity p {
    /*user-select: none;*/
    position: relative;

}
.learning-entity p::before {
    /* 
       This pseudo element is there to help the
       question-icon not disappear when you hover
       a p-element
    */
    content: "";
    position:absolute;
    top: -5%;
    left: -5%;
    background: transparent;
    width: 5%;
    height: 110%;
    opacity: 0.0;
}
.learning-entity p:hover::before {
    opacity: 0.1;
    transition: opacity 0.3s ease-out;
}
.learning-entity p:hover {
    cursor: text;
    transition: color 0.3s ease-out;
}

.pre-header {
    background: hsla(0,0%,95%,1);
    color: hsla(0,0%,9%,1);
    font-size: 1.2rem;
    width: calc(100% - 2rem);
    font-family: var(--font-family-1);
    font-weight: 450;
    padding: .9rem 1rem;
}
.course-title {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center
}
.pre-header .programming-language {
    float:right;
}
.gray-background {
    background: red;
}
.gray-background.fade-out {
    background: blue;
    transition: background 3s ease-out;
}

.enabled-background-fade {
    position:absolute;
    background: rgba(0, 209, 24,0.2);
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
}
.enabled-background-fade.shown {
    visibility: visible;
    opacity: 1;
}
.content-area {
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    /*max-width: 35vw;
    min-width: 35vw;*/
    /*z-index: 2;*/
} 
.breadcrumb-wrapper {
    /*display: flex;*/
    align-items: center;
    font-size: 1rem;
}
.custom-modal {
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background-color: rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    display: none;
}
.custom-modal-content {
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    margin: 10% auto;
    padding: 5%;
    width: 60%;
    background: white;
    animation-name: modalopen;
    animation-duration: 1s;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.keep-me-logged-in-button {
    background: orange;
    padding: 8px 33px;
    color: white;
    font-size: 1.3rem;
    margin-right: 5px;
}
.keep-me-logged-in-button:hover {
    cursor: pointer;
    transition: color .2s, background .2s;
    background: #FFC34A;
}
.keep-me-logged-in-button:active {
    transform: translateY(1px);
    box-shadow: inset 0px 0px 3px #E49800;
}

.log-me-out-now-button {
    background: white;
    padding: 8px 33px;
    color: gray;
    font-size: 1.3rem;
    border: 1px solid gray;
    margin-left: 5px
}
.log-me-out-now-button:hover {
    cursor: pointer;
    transition: color .2s, background .2s;
    background: #e7e7e7;
    border: 1px solid #b8b8b8;
}
.log-me-out-now-button:active {
    transform: translateY(1px);
    box-shadow: inset 0px 0px 3px #C9C9C9;
}
/******************************************************/
/********************* Assignment *********************/
/******************************************************/
#submit-button:hover {
        cursor: pointer;
    }
    .menu-tab {
        height: 100%;
        padding: 10px;
    }
    .menu-tab.active {
        border-bottom: 4px solid purple;
    }
    
.quicklink {
    display: block;
    color: rgba(0,0,0,0.5);
    margin-top: 15px;
}
.quicklink i {
    color: rgba(0,0,0,0.4);
}
.quicklink:hover {
    color: purple;
    transition: color .2s ease-out;
}
.quicklink:hover i {
    color: purple;
    transition: color .2s ease-out;
}
.assignment-content {
    width:100%;
    display: block;
}
.dropzone .dz-preview .dz-image img{
        max-width:100%;
        object-fit: contain;
}
.assignment-content {
    border-bottom: 2px solid rgba(0,0,0,0.2);
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.assignment_submit_button {
    padding: 10px 30px;
    background: purple;
    color: white 
}
.assignment_submit_button:hover {
    cursor: pointer;
}
.inactive_submit_button {
    padding: 10px 30px;
    background: gray;
    color: darkgray;
}
.inactive_submit_button:hover {
    cursor: not-allowed;
}
.submitted-status-text {
    background: #00c648;
    color: white;
    padding: 7px;
    font-size: .8rem;
}
.not-submitted-status-text {
    background: #ECECEC;
    color: #8A8A8A;
    padding: 7px;
    font-size: .8rem
}
.assignment_file:hover {
    background: lightgray;
}

/** End Assignment **/

/*******************************************************/
/***************** Student take lesson *****************/
/*******************************************************/


.resolution-popup {
    position:absolute;
    visibility: hidden;
    background: rgba(0,0,0,0.7);
    height: 100px;
    width: 100px;
    top: 0;
    left: 0;
}
.resolution-popup.visible {
    visibility: visible;
}
.vjs-menu-item {
    color: white;

}
.resolution-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

/***************************************************/
/******************** Quiz page ********************/
/***************************************************/
.new-quiz-question-box {
    padding-bottom: 30px;
    margin-right: 15%;
    width: 100%;
    /*padding-left: 40px;*/
    max-width: 570px;
}
.new-quiz-question-box:not(:last-of-type) {
    border-bottom: 1.2px solid rgba(0,0,0,0.15);
}
.new-quiz-question-box:not(:first-of-type) {
    margin-top: 30px;
}
.question-content-wrapper-test {
    display: grid;
    grid-template-columns: 3fr 1fr;
    height: 0px;
    overflow: hidden;
    transition: height .5s ease-out;

}
.new-quiz-question-box.open .question-content-wrapper-test {
    height: auto;
    max-height: 2000px;

}
.question-title-new {
    position: relative;
    display: inline-block
    font-size: 1.2rem;
    font-weight: 500;
}
.new-quiz-question-box::before {
    counter-increment: question-section;
    content: counter(question-section);
    position: absolute;
    left: -15px;
    top:0;
}
/* End */

.dropdown-item {
    display: block;
    width: calc(100% - 2rem);
    padding: .8rem 1rem;
    clear: both;
    font-weight: 400;
    color: rgba(48, 56, 64, .7);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}
.dropdown-item:focus {
    color: rgba(48, 56, 64, .9);
    text-decoration: none;
    background-color: transparent
}
.resume-link {
    padding: 10px 30px;
    color: white;
    background: #BF00DE;
    transition: background .15s ease-out;
}
.resume-link:hover {
    background: #D14EE6;
    cursor: pointer;
}
.gray-background {
    background: red;
}
.gray-background.fade-out {
    background: blue;
    transition: background 3s ease-out;
}

.content-area {
    /*margin-left: 17%;
    margin-right: 17%;*/
    height: 100%;
    /*z-index: 2;*/
}

.dashboard-title-wrapper {
    flex: 4; margin-right: 12%;
    background-image: url('/static/assets/images/courses/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FFD500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; 
    position: relative;
}
.dashboard-title-wrapper:hover {
    cursor: pointer;
    overflow: hidden;
}
.dashboard-title-wrapper:hover .dashboard-course-name{
    transform: translateY(-15px)/* scale(0.9)*/;
    transition: transform .2s ease;
}
.dashboard-title-wrapper .dashboard-course-name{
    transition: transform .2s ease;
}
.dashboard-go-to-course {
    opacity: 0;
    display: block;
    position: absolute;
    bottom: 0;
    left: auto;
    right: auto;
    color: yellow;
    transition: transform .2s ease;
}
.dashboard-title-wrapper:hover .dashboard-go-to-course {
    opacity: 1;
    transform: translateY(-5px);
    transition: transform .2s ease-out,
                opacity .3s ease-out;
}
.dashboard-title-wrapper-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white;
    opacity: 0;
    transition: opacity .2s ease-out;
}
.dashboard-title-wrapper:hover .dashboard-title-wrapper-hover-bg {
    opacity: 0.1;
    transition: opacity .2s ease-out;
}
.icondropdown.support-tickets::after {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 17px;
    height: 17px;    
    /*content: attr(data-qty);*/
    font-size: .8rem;
    background: #FF5733;
    border-radius: 9px;
    text-align: center;
    color: white;
}
.new-support-tickets-notification {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 17px;
    height: 17px;    
    content: attr(data-qty);
    font-size: .8rem;
    background: #FF5733;
    border-radius: 9px;
    text-align: center;
    color: white;
    display:none;
}
.chat-row:hover {
        background: #f6f6f6;
}
#chatInList {
    opacity: 1;
    overflow: hidden;
    height: auto;
    transition: all .2s ease-out;
    background: red;
    color: blue;
    transform: scale(1);
}
.fadeOutMessage {
    transform: scale(0);
    transition: all .2s ease-out;
}
..support-overview-le-name {
    display: flex;
    padding: none;
}
.support-overview-le-name:hover {
    text-decoration: underline;
    color: #BF00DE;
}
.unread_messages {
    font-size: 1.05rem;
    font-weight: 500;
    color: #474747
}
.no_unread_messages {
    font-size: 1.05rem;
    /*font-weight: 500;*/
    color: gray;
}
.created_status {
    display:inline-block;
    background:#e5edfa;
    color:#648cec;
    padding: 4px 12px;
    border-radius:20px;
    text-align: center;
    margin-right:10px
}
.answered_status {
    display: inline-block;
    background: #cff1f0;
    color: #09b7ae;
    padding: 4px 12px;
    border-radius: 20px;
    text-align: center;
    margin-right: 10px;
}
.expired_status {
    display: inline-block;
    background: #fedfe5;
    color: #ff5a78;
    padding: 4px 12px;
    border-radius: 20px;
    text-align: center;
    margin-right: 10px;
}


.assignment-file-upload {

    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.label-assignment-file {
    font-size: .85rem;
    color: #ABABAB;
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    flex-direction: column
}

.label-assignment-file:focus,
.label-assignment-file:hover {
    cursor: pointer;
    color: #8C8C8C;
}
.label-assignment-file.unavailable:hover {
    cursor: not-allowed;
}
#submit_assignment_form {
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#assignment-submission-area {
    position: relative;

}
#assignment-submission-area .loading-area2  {
    z-index: 101;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center

}
#assignment-submission-area .loading-area {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: white;
    opacity: .6;

}

/***********************************************************/
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
  display: none;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(126,0,179, 0.2);
  border-right: 1.1em solid rgba(126,0,179, 0.2);
  border-bottom: 1.1em solid rgba(126,0,179, 0.2);
  border-left: 1.1em solid #7e00b3;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.display-block {
    display: block;
}
.display-flex {
    display: flex;
}
.display-none {
    display: none;
}
.bottom-next-button-wrapper {
    /*margin-top: 30px;*/
    display: flex;
    justify-content: flex-end;
    width: 100%;
    /*position: absolute;
    bottom: 30px;
    right: 110px*/
}
.bottom-next-button-wrapper.hidden {
    display: none;
}
.crackme-warning-box {
    background: #fff1db;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    border-left: 6px solid #ea8600;
}
.download-crackme-button {
    width: auto;
    padding: 12px 24px;
    color: white;
    background: #cb45f7;
    border-radius: .25rem;
    display: flex;
    align-items: center;
    width: auto;
    transition: background .2s ease-out;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}
.download-crackme-button:hover {
    background: #d669fa;
    cursor: pointer;
}
.download-crackme-button:active {
    background: #862f9c;
}
.hint-paragraph {
    display: block;
    margin-bottom: 10px;
}
.autoplay-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
}
.autoplay-wrapper-black-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    background: rgba(0, 0, 0, 0.7);
}
#autoplay_loader_wrapper {
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#autoplay_loader_background {
    height: 84px;
    width: 84px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 100px;
    position: absolute;
    top: auto;
    left: auto;
    z-index: 1;
    transition: .2s ease-out;
}
#autoplay_loader_wrapper:hover #autoplay_loader_background {
    background: rgba(0, 0, 0, 0.7);
}
#autoplay_loader_wrapper::after {
    content: "\F04B";
    position:absolute;
    color: white;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2rem;
    z-index: 2;
}
/*#autoplay_loader_wrapper::before {
    
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    content: "";
    border-radius: 100px;
    z-index: 1;
    height: 84px;
    width: 84px;
    position: absolute;
    top: 39.9px;
    left: 171px;
    text-align: center;
    color: yellow;
    transition: background .2s ease-out;
}*/

#autoplay_loader_wrapper svg {
    z-index: 20;
    transition: .2s ease-out;
}

#autoplay_loader_wrapper:hover::before{
    background: rgba(0, 0, 0, 0.7);
    border-radius: 100px;
    transition: background .2s ease-out;
}
#autoplay_loader_wrapper:hover {
    cursor: pointer;
}
#autoplay_loader_wrapper svg {
    stroke: rgba(0, 0, 0, 0.4);
    transition: .2s ease-out;
}
#autoplay_loader_wrapper:hover svg {    
    cursor: pointer;
    transition: .2s ease-out;
    stroke: rgba(0, 0, 0, 0.7);
}

.next-video-cancel {
    padding: 10px 20px;
    position: absolute;
    top: auto;
    left: auto;
    bottom: -15px;
    right: auto;
    font-size: 1.3rem;
    user-select: none;
    transition: background .2s ease-out;
}
.next-video-disclaimer {
    position: absolute;
    bottom: -45px;
    left: auto;
    text-align: center;
    font-size: .8rem;
    color: white;
    user-select: none;
}
.disclaimer-item {
    text-align: left;
    padding-left: 10px;
    margin-top: 1px;
    margin-bottom: 1px;
}
.disclaimer-item.lp {
    padding-left: 20px;
}
.next-video-cancel:hover {
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.next-video-title {
    position: absolute;
    top: -40px;
    left: auto;
    bottom: auto;
    right: auto;
    user-select: none;
    text-align: center;
}
.auto_play_icon {
    position: absolute;
    top: 46%;
    left: 48.5%;
    font-size: 2rem!important;
}
.next-video-content-wrapper {
    width: 60%;
    height: 40%;
    max-width: 600px;
    max-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-js {

}
.video-js.vjs-fullscreen .next-video-title {
    top: 20px;
}
.video-js.vjs-fullscreen .next-video-cancel {
    bottom: 50px;
}

/******************* Toggle button for autoplay ***********************/

.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 14px;
}
.switch::after {
    content: "NB, enabling auto-play skips the quizzes, lecture notes and exercises, and instead starts the next video once the current one completes.";
    background: rgba(0,0,0,0.6);
    color: white;
    position: absolute;
    top: 20px;
    left: -110px;
    font-size: .8rem;
    width: 140px;
    padding: 7px;
    display: none;
    opacity: 0;
    transition: opacity .2s ease-out;
}
.switch:hover::after {
    opacity: 1;
    display: flex;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: -3px;
  bottom: -2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);

}

input:checked + .slider {
  background-color: #cb45f7;
}

input:focus + .slider {
  box-shadow: 0 0 1px #cb45f7;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.last-activity-line:hover {
    background: rgba(181, 181, 181, 0.2);
    cursor: pointer;
}
.course-view-bar {
    position: relative;
    width: 200px;
}
.course-view-bar::before {
    top:-5px;
    left: 0;
    height: 10px;
    width: 200px;
    background: rgba(184, 41, 194, 0.2);
    content: " ";
    position: absolute;
}
.course-view-bar-completed {
    top:-5px;
    left: 0;
    height: 10px;
    background: rgba(184, 41, 194, 0.7);
    content: " ";
    position: absolute;
}
.course_completion_text1 {
    flex: 1;
    align-items: center;
    display: flex;
    color: #757575;
    font-size: .85rem
}
.course_completion_text2 {
    margin-left: 5px;
    font-size: .85rem;
    color: #757575
}
.course_completion_column1 {
    flex: 1;
    align-items: center;
    display: flex
}
.course_completion_column2 {
    flex: 2;
    align-items: center;
    display: flex
}
.course_completion_type_line {
    display: flex;
    align-items: center
}
.question-box{
    position: fixed;
    /*top: -100px;*/
    left: 50%;
    background: white;
    width: auto;
    min-width: 500px;
    max-width: 700px;
    z-index: 1000000;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0px 25px 0px rgba(0,0,0,0.3);
    transform: translate(-50%, -50%)
}

.question-box.hidden-question-box {
    display: none;
}
.question-box.visible-question-box {
    display: block;
    animation-name: slide-in;
    animation-duration: .2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}
.question-box.visible-question-box.hidden-after-visible { 
    animation-name: slide-out;
    animation-duration: .2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}


@keyframes slide-in {
  0% {
    top: 0%;
    display: block;
  }
  100% {
    top: 50%;
  }
}

@keyframes slide-out {
    0% {
    top: 50%;
  }
  100% {
    display: none;
    visibility: hidden;
    top: 0%;
  }
}
.little-close-icon {
    fill: #bfbfbf;
    transition: fill .2s ease-out;
}
.little-close-icon:hover {
    cursor: pointer;
    fill: #737373;
}
#question-box-background {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index:100000
}
#question-box-background.visible-bg {
    display: block;
}

#send-question-textarea,
.question-box-radio-wrapper
 {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 2px solid transparent;
}

#send-question-textarea.shake-it,
.question-box-radio-wrapper.shake-it
 {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  display: inline-block;
  border: 2px solid red;
}

#send-question-textarea {
  border: 1px solid purple;
  box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: gray;
    transition: color .1s ease-out;
}
#send-question-textarea:focus {
    color: black;
    transition: color .1s ease-out;
}



@keyframes shake {
  10%,
  90% {
    transform: translate3d(-2px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(3px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-5px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(5px, 0, 0);
  }
}
.question-radio-line {
    transition: .1s ease-out;
    position: relative;
}
.question-radio-line label {
    display: block;
    width: calc(100% - 25px);
    padding: 5px 5px 5px 25px;
}
.question-radio-line:hover label {
    background: #fbe0ff;
    color: #8e119e;
}
.question-radio-line:hover,
.question-radio-line:hover label {    
    cursor: pointer;
}
.selected-question-type {
    background: #fbe0ff;
    color: #8e119e;    
}
.question-type-radio-button {
    position: absolute;
    left: 0;
    top: 7.5px;
}

.view-previous-answer {
    margin-right: 10px;
    height: auto;
    width: auto;
    color: white;
    position: relative;
    padding: 5px;
    border-radius: 3px;
}
.view-previous-answer.red {
    background: #ffa8ca;
    color: #9e003d;
}
.view-previous-answer.green {
    background: #d6ffcc;
    color: #358f1f;
}
.view-previous-answer:hover {
    cursor: pointer;
    color: purple;
}
/*.view-previous-answer:hover::before{
    display: block;
}
.view-previous-answer::before {
    position: absolute;
    display: none;
    content: attr(data-answer);
    top: 0px;
    left: 20px;
    background: black;
    color: white;
    height: auto;
    width: auto;
}*/

/*This one for when it is placed in top nav bar*/
/*.answer-popup {
    position: absolute;
    display: none;
    right: 103%;
    top: 0px;
    width: auto;
    height: auto;
    box-shadow: 0 1px 6px 1px rgba(0,0,0,0.12);
    z-index: 999999999999999999999999999999999999;
    background: white;
}*/
/* This one for when it is placed below the question*/
.answer-popup {
    position: absolute;
    display: none;
    left: calc(103% + 10px);
    top: 0px;
    width: auto;
    height: auto;
    box-shadow: 0 1px 6px 1px rgba(0,0,0,0.12);
    z-index: 999999999999999999999999999999999999;
    background: white;
}
.answer-popup.shown {
    display: block;
}
.hover-green {
    color: #737373;
    background:#ebeced;
    transition: .2s ease-out;
}
.hover-green:hover {
    color: #358f1f;
    background: #dbffe6;
    transition: none;
}
.hover-red {
    color: #737373;
    background:#ebeced;
    transition: .2s ease-out;
}
.hover-red:hover {
    color: #9e003d;
    background: #ffe6e6;
    transition: none;
}
.skip-back-button {
    position: absolute;
    height: 100%;
    background: rgba(255,255,255,0.1);
    width: 40%;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    transition: opacity .1s ease-out;
}
.skip-forward-button {
    position: absolute;
    height: 100%;
    background: rgba(255,255,255,0.1);
    width: 40%;
    top: 0;
    right: 0;
    opacity: 1;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    transition: opacity .1s ease-out;
}
/*.skip-back-button:hover,
.skip-forward-button:hover {
    opacity: 1;
}*/


.video-js #video_white_overlay,
.video-js #video_black_overlay,
.video-js .relative_video_overlay {
    display: none;
}
.video-js.vjs-has-started.vjs-user-inactive #video_white_overlay,
.video-js.vjs-has-started.vjs-user-inactive #video_black_overlay,
.video-js.vjs-has-started.vjs-user-inactive .relative_video_overlay {
    /*background: red;*/
    display: block;
    visibility: hidden;
    opacity: 0;

  -webkit-transition: visibility 1.0s, opacity 1.0s;
     -moz-transition: visibility 1.0s, opacity 1.0s;
      -ms-transition: visibility 1.0s, opacity 1.0s;
       -o-transition: visibility 1.0s, opacity 1.0s;
          transition: visibility 1.0s, opacity 1.0s;
}
.video-js.vjs-has-started.vjs-user-active #video_white_overlay,
.video-js.vjs-has-started.vjs-user-active #video_black_overlay,
.video-js.vjs-has-started.vjs-user-active .relative_video_overlay {
    /*background: red;*/
    display: block;
    visibility: visible;
    opacity: 1;

  /*-webkit-transition: visibility 1.0s, opacity 1.0s;
     -moz-transition: visibility 1.0s, opacity 1.0s;
      -ms-transition: visibility 1.0s, opacity 1.0s;
       -o-transition: visibility 1.0s, opacity 1.0s;
          transition: visibility 1.0s, opacity 1.0s;*/
}


.vjs-fade-out {
  display: block;
  visibility: hidden;
  opacity: 0;

  -webkit-transition: visibility 1.0s, opacity 1.0s;
     -moz-transition: visibility 1.0s, opacity 1.0s;
      -ms-transition: visibility 1.0s, opacity 1.0s;
       -o-transition: visibility 1.0s, opacity 1.0s;
          transition: visibility 1.0s, opacity 1.0s;

  /* Wait a moment before fading out the control bar */
  /*-webkit-transition-delay: 2s;
     -moz-transition-delay: 2s;
      -ms-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;*/
}
/* Testing removal of this one*/
/*.vjs-fade-out i {
  display: block;
  visibility: hidden;
  opacity: 0;

  -webkit-transition: visibility 1.0s, opacity 1.0s;
     -moz-transition: visibility 1.0s, opacity 1.0s;
      -ms-transition: visibility 1.0s, opacity 1.0s;
       -o-transition: visibility 1.0s, opacity 1.0s;
          transition: visibility 1.0s, opacity 1.0s;*/

  /* Wait a moment before fading out the control bar */
  /*-webkit-transition-delay: 2s;
     -moz-transition-delay: 2s;
      -ms-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;*/
}
.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
#video_white_overlay,
#video_black_overlay {

    z-index: 10;
}
.autoplay-wrapper2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
.autoplay-wrapper-black-bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    background: transparent;
}
.relative_video_overlay {
    position:relative;
    width:100%;
    height:100%;
}
.relative_video_overlay:hover {
    cursor: pointer;
}
.rewind_icon_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 40%;
    left: 20%;
    width: 15%;
    height: 15%;
    padding: 5%;
}
.skip_forward_icon_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 40%;
    right: 20%;
    width: 15%;
    height: 15%;
    padding: 5%;
}
.play_icon_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 40%;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 3rem;
    width: 15%;
    height: 15%;
    padding: 5%;
}
.play_icon_wrapper i {
    font-size: 3rem;
    /*transition: transform .1s ease-out;*/
}
.play_icon_wrapper:hover i {
    transform: scale(1.05);
    cursor: pointer;
}
.rewind_icon_wrapper img,
.skip_forward_icon_wrapper img {
    /*transition: transform .1s ease-out;*/
}
.rewind_icon_wrapper:hover img,
.skip_forward_icon_wrapper:hover img {
    transform: scale(1.05);
    cursor: pointer;
}