/*
    DEMO STYLE
*/
:root {
    --tutor-text-size: 16px;
    --tutor-color-white: #ffffff;
    --tutor-color-success: #24A148;
    --tutor-color-success-rgb: 36, 161, 72;
    --tutor-color-warning: #ED9700;
    --tutor-color-warning-rgb: 237, 151, 0;
    --tutor-color-danger: #F44337;
    --tutor-color-danger-rgb: 244, 67, 55;
    --tutor-color-secondary: #41454F;
    --tutor-color-subdued: #5B616F;
    --tutor-color-muted: #757c8e;
    --tutor-color-gray: #e3e5eb;
    --tutor-color-gray-10: #eff1f6;

        --tutor-color-primary: #3e64de;
    --tutor-color-primary-rgb: 62, 100, 222;
    --tutor-color-primary-hover: #395bca;
    --tutor-color-primary-hover-rgb: 57, 91, 202;
    --tutor-body-color: #677ba2;
    --tutor-body-color-rgb: 103, 123, 162;
    --tutor-border-color: #cdcfd5;
    --tutor-border-color-rgb: 205, 207, 213;
    --tutor-color-gray: #e3e5eb;
    --tutor-color-gray-rgb: 227, 229, 235;
}




.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 1rem;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 350px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #28af76;
    /* color: #fff; */
    transition: all 0.3s;
    box-shadow: 2px 0px 10px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 2px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 0px 10px 0px rgba(0,0,0,0.75);
}

#sidebar.active {
    margin-left: -350px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #2eb97e;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: none;
    position: absolute;
    /* top: 50%; */
    /* left: 20px; */
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #444444 !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 350px);
    padding: 40px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -350px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - 250px);
    }
    #sidebarCollapse span {
        display: none;
    }
}



/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/

.progress_circle {
  width: 150px;
  height: 150px;
  background: none;
  position: relative;
}

.progress_circle::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #eee;
  position: absolute;
  top: 0;
  left: 0;
}

.progress_circle>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress_circle .progress-left {
  left: 0;
}

.progress_circle .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 6px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress_circle .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress_circle .progress-right {
  right: 0;
}

.progress_circle .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.progress_circle .progress-value {
  position: absolute;
  top: 0;
  left: 0;
}



.btn-link:hover {
    color: #2eb97e;
    text-decoration:none !important;
    background-color: transparent;
    border-color: transparent;
}



.tutor-form-check-circle[checked] {
    border-color: #24A148;
    background-color: #24A148;
}






.curriculum-form-check-input {
    display: inline-block;
    vertical-align: top;
    background-color: var(--tutor-color-white);
    width: 20px;
    height: 20px;
    margin-top: 4px;
    margin-left: 3px;
    border: 2px solid var(--tutor-border-color);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    color-adjust: exact;
    outline: none !important;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    transition: 300ms;
    box-shadow: 0 0 0 0 rgba(var(--tutor-color-primary-rgb), 0.1);
    flex: 0 0 auto;
    border-radius: 50%;
}


.curriculum-form-check-input[type=checkbox]:checked {
    border-color: var(--tutor-color-primary);
    background-color: var(--tutor-color-primary);
    background-image: url(ok.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-color: #24A148;
    background-color: #24A148
}


.locked {
    border-color: var(--tutor-color-primary);
    background-color: var(--tutor-color-primary);
    background-image: url(lock.svg) !important;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-color: #F44336 !important;
    background-color: #F44336 !important;
}


.tablesidebar {
    font-size: 13px !important;
}


.tablemain {
    font-size: 13px !important;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0rem !important;
}


.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0rem !important;
    background-color: transparent;
}


.btn-link {
    text-decoration:none !important;
    font-weight: 400;
    color: #000 !important;
    background-color: transparent;
}


.card-header {
    padding: .5rem 0rem !important;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}



.video-responsive {
    position: relative;
    width: 100%;
    height: 0;
    display: contents;
    overflow: hidden;
}

.video-responsive iframe {
    border-radius: 1rem;
}

.plyr__video-embed {
    border-radius: 1rem;
    box-shadow: -1px -1px 17px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: -1px -1px 17px 0px rgba(0,0,0,0.75);
-moz-box-shadow: -1px -1px 17px 0px rgba(0,0,0,0.75);
}



.lecture-content-inner-video {
    position: relative;
    height: calc(100vh - 85px) !important;
    width: 100%;
}

.table td{
    cursor: pointer;
}

object {
    position: relative;
    height: calc(100vh - 85px) !important;
}

@media (max-width: 575.98px) {
.lecture-content-inner-video {
    height: auto !important;
}

.video-responsive iframe {
    position: relative;
    /* width: 100vw; */
    height: 55vw;
}
}


.btn-info {
    color: #fff;
    background-color: #2eb97e !important;
    border-color: #2eb97e !important;
}



h2 {
    font-size: 25px !important;
    font-weight: 700;
    line-height: 50px;
}

p {
    margin: 0;
    padding: 0;
    line-height: 28px;
    font-size: 14px !important;
}

#timer {
    position: absolute;
    top: 0px;
    height: 5px;
    width: 100%;
    left: 0px;

}
.progress-sm {
  background: #f8f9fa;
  height: 5px;
  transition: 0.25s;
  border-radius: 0rem;

}

.activelesson {
    background-color: #e8e8e8 !important;
}

@media (max-width: 575px) {
    h1 {
        font-size: 30px !important;
        line-height: 30px;
    }
}
/*
*
* ==========================================
* AUDIO PLAYER
* ==========================================
*
*/


.audio-player {
  height: 70px;
  width: 100%;
  background: #444;
  box-shadow: 0 0 20px 0 #000a;
  font-family: arial;
  color: white;
  font-size: 0.75em;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.audio-player .timeline {
  background: white;
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #0008;
}
.audio-player .timeline .progress {
  background: #2eb97e;
  width: 0%;
  height: 100%;
  transition: 0.25s;
  border-radius: 0rem;
}
.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 20px;
}
.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audio-player .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  left: 0;
  height: 0;
  width: 0;
  border: 7px solid #0000;
  border-left: 13px solid white;
}
.audio-player .controls .toggle-play.play:hover {
  transform: scale(1.1);
}
.audio-player .controls .toggle-play.pause {
  height: 15px;
  width: 20px;
  cursor: pointer;
  position: relative;
}
.audio-player .controls .toggle-play.pause:before {
  position: absolute;
  top: 0;
  left: 0px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
  position: absolute;
  top: 0;
  right: 8px;
  background: white;
  content: "";
  height: 15px;
  width: 3px;
}
.audio-player .controls .toggle-play.pause:hover {
  transform: scale(1.1);
}
.audio-player .controls .time {
  display: flex;
}
.audio-player .controls .time > * {
  padding: 2px;
}
.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-slider {
  position: absolute;
  left: -3px;
  top: 24px;
  z-index: -1;
  width: 0;
  height: 15px;
  background: white;
  box-shadow: 0 0 20px #000a;
  transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: #2eb97e;
  height: 100%;
  width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}


.text-right {
    text-align: right;
}