/**
 * Front page
 */
.page-index .top {
  height: 535px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
}
.page-index .top .inner {
  max-width: 590px;
  margin: 0 auto;
  padding: 135px 20px 20px;
  text-align: center;
}
.page-index .top h1 {
  font-size: 69px;
  line-height: 62px;
  font-weight: 900;
  text-shadow: -1px 1px 0 rgba(0,0,0,0.75);
  padding: 0;
  margin: 0;
}
.page-index .top .image-text {
  font-size: 16px;
  margin-top: 20px;
}
.page-index .top .actions {
  margin-top: 25px;
}
.page-index .top .actions .btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  height: 52px;
  min-width: 225px;
  border-radius: 26px;
}
.page-index .actions-mob {
  padding: 10px 20px;
  border-bottom: 1px solid #e3e3e3;
}


/**
 * Course view
 */
.course-view .overview .col-1 {
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  float: left;
  width: 560px;
}
.course-view .overview .col-2 {
  width: 560px;
  box-sizing: border-box;
  float: right;
  padding: 30px 55px 0 0;
}
.course-view .overview .col-2 .header {
  margin-bottom: 25px;
}
.course-view .overview .price {
  color: #5c5c5c;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 25px;
}
.course-view .overview .price .lowered {
  color: #ea0000;
}
.course-view .overview .actions {
  margin-bottom: 30px;
  text-align: left;
}
.course-view .overview .description {
  font-size: 16px;
}
.course-view .info {
  margin-top: 30px;
}
.course-view .info .text {
  float: left;
  width: 510px;
  font-size: 16px;
}
.course-view .info .list {
  overflow: hidden;
  position: relative;
  float: right;
  width: 500px;
  box-sizing: border-box;
  color: #fff;
  padding: 50px 60px 50px 80px;
}
.course-view .info .list:before {
  content: "";
  display: block;
  position: absolute;
  transform: skew(-45deg);
  transform-origin: top left;
  background: #fff;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
}
.course-view .info .list:after {
  content: "";
  display: block;
  position: absolute;
  transform: skew(-45deg);
  transform-origin: bottom left;
  background: #fff;
  bottom: 0;
  right: 0;
  height: 50px;
  width: 50px;
}
.course-view .info .list .title {
  font-size: 26px;
  font-weight: 700;
  border-bottom: 2px solid #fff;
  display: inline-block;
  line-height: 1.1;
  padding: 0 0 12px;
  margin: 0 0 10px;
}
.course-view .info .list .inner {
  font-size: 16px;
  font-weight: 600;
}
.course-view .info .list ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 10px;
}


/**
 * Course item
 */
.course-item .col-1 {
  margin-bottom: 30px;
}
.course-item .title {
  display: block;
  border: none;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin: 20px 0 10px;
}
.course-item .description {
  font-size: 16px;
}
.course-item .actions {
  margin-top: 30px;
  text-align: left;
}
.size-small .course-item {
  float: left;
  margin: 30px 0 30px 1.25%;
  width: 32.5%;
}
.size-small .course-item:nth-child(3n+1) {
  clear: both;
  margin-left: 0;
}
.size-small .course-item:nth-child(3-n) {
  margin-top: 0;
}
.size-medium .course-item {
  float: left;
  width: 49.5%;
  margin: 30px 0 30px 1%;
}
.size-medium .course-item:nth-child(2n+1) {
  clear: both;
  margin-left: 0;
}
.size-medium .course-item:nth-child(-n+2) {
  margin-top: 0;
}
.size-medium .course-item .col-2 {
  padding: 0 35px;
}
.size-medium .course-item .title {
  font-size: 36px;
}
.size-large .course-item .col-1 {
  float: right;
  width: 47%;
  margin: 0;
}
.size-large .course-item .col-2 {
  float: left;
  width: 47%;
}
.size-large .course-item .title {
  font-size: 36px;
}

/**
 * Course user
 */
.course-user .empty {
  padding: 245px 0 150px;
  text-align: center;
  margin: 0 auto;
  max-width: 620px;
  background: url("../images/icon_tomes_large.png") no-repeat center 170px;
}
.course-user .empty .title {
  font-weight: 300;
  font-size: 38px;
  line-height: 1.1;
}
.course-user .empty .text {
  margin: 10px 0 35px;
}
.course-user .collapsible > .title {
  padding-top: 30px;
}
.course-user .collapsible.collapsed .min,
.course-user .collapsible .max {
  display: none;
}
.course-user .collapsible.collapsed .max {
  display: inline;
}
.course-user .collapsible > .title h2:after {
  content: "";
  display: inline-block;
  margin-top: -4px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-left: 10px;
  background: url("../images/icon_minus_black.png") no-repeat center center;
}
.course-user .collapsible.collapsed > .title h2:after {
  background-image: url("../images/icon_plus_black.png");
}
.user-course {
  background: #fff;
  margin-top: 6px;
}
.user-course:first-child {
  margin-top: 0;
}
.user-course .col-1 {
  float: left;
  box-sizing: border-box;
  width: 920px;
  padding: 38px 40px 0;
}
.user-course .col-1 .image {
  float: left;
  width: 365px;
  position: relative;
}
.user-course.is-done .col-1 .image:before,
.user-course.is-failed .col-1 .image:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  z-index: 2;
}
.user-course.is-done .col-1 .image:after,
.user-course.is-failed .col-1 .image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.45);
}
.user-course.is-done .col-1 .image:before {
  background-image: url("../images/icon_check_green_large.png");
}
.user-course.is-failed .col-1 .image:before {
  background-image: url("../images/icon_times_red_large.png");
}
.user-course .col-1 .info {
  float: right;
  width: 425px;
  box-sizing: border-box;
  padding: 20px 0 0 0;
}
.user-course .col-1 .info .title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}
.user-course .col-1 .info .description {
  font-size: 16px;
}
.user-course .col-1 .info .actions {
  margin-top: 20px;
  text-align: left;
}
.user-course .col-2 {
  float: right;
  width: 280px;
  min-height: 300px;
  background: #f7f7f7;
}
.user-course .col-2 .detail {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  box-sizing: border-box;
  text-transform: uppercase;
  padding: 24px 5px 24px 75px;
  border-bottom: 1px solid #e3e3e3;
  background-position: 30px center;
  background-repeat: no-repeat;
}
.user-course .col-2 .detail:last-child {
  border-bottom-width: 0;
}
.user-course .col-2 .detail.study-time {
  background-image: url("../images/icon_clock.png");
}
.user-course .col-2 .detail.exams-done {
  background-image: url("../images/icon_pencil.png");
}
.user-course .col-2 .detail.time-left {
  background-image: url("../images/icon_calendar.png");
}
.user-course .col-2 .detail.content-status-duration {
  background-image: url("../images/icon_clock.png");
}
.user-course .col-2 .detail.content-status-scheduled {
  background-image: url("../images/icon_calendar.png");
}
.user-course .col-2 .detail.content-status-live {
  background-image: url("../images/icon_play.png");
}


/**
 * Course study
 */
.course-study .box > .inside {
  padding-left: 155px;
  padding-right: 155px;
}
.course-study .intro h2 {
  padding-bottom: 0;
}
.course-study .intro .text {
  margin-top: 25px;
  float: left;
  width: 47%;
}
.course-study .intro .image {
  margin-top: 25px;
  float: right;
  width: 47%;
}
.course-study .course-done {
  text-align: center;
}
.course-study .course-done h2 {
  padding-bottom: 15px;
}
.course-study .chapters {
  padding: 45px 0 30px;
}
.course-study .chapter {
  border-bottom: 1px solid #e3e3e3;
}
.course-study .chapter:first-child {
  border-top: 1px solid #e3e3e3;
}
.course-study .chapter .header {
  padding: 15px 60px 15px 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.course-study .chapter.collapsible .header {
  background: url("../images/icon_minus_black.png") no-repeat right center;
}
.course-study .chapter.collapsed .header {
  background-image: url("../images/icon_plus_black.png")
}
.course-study .chapter .header .title {
  float: left;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 10px 40px 10px 0;
}
.course-study .chapter.passed .header .title {
  color: #22b01b;
  background: url("../images/icon_check_green.png") no-repeat right 9px;
}
.course-study .chapter.failed .header .title {
  color: #cd1919;
}
.course-study .chapter.passed .header .btn {
  background: #0aa702;
}
.course-study .chapter.failed .header .btn {
  background: #c80000;
}
.course-study .chapter .header .btn {
  float: right;
}
.course-study .chapter .details {
  box-sizing: border-box;
  padding: 30px 30px 40px;
  background: #f5f5f5;
  border-top: 1px solid #e3e3e3;
}
.course-study .chapter .details > .title {
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  padding-left: 25px;
  margin-bottom: 20px;
}
.course-study .chapter .sections {
  -moz-columns: 3 250px;
  -webkit-columns: 3 250px;
  columns: 3 250px;
}
.course-study .chapter .section {
  display: inline-block;
  padding-left: 25px;
  margin: 0 0 8px;
  box-sizing: border-box;
  width: 100%;
}
.course-study .chapter .section.passed {
  background: url("../images/icon_check_green_small.png") no-repeat left center;
}
.course-study .chapter .section .nr {
  font-weight: 600;
}

/**
 * Course extra material
 */
.course-extra-material .link-forum {

}

/**
 * Section study
 */
.study-nav {
  width: 380px;
  position: relative;
  float: right;
}
.study-nav .toggle {
  border-radius: 20px;
  border: 1px solid #b7b7b7;
  padding: 10px 16px;
  height: 20px;
  color: #000;
  line-height: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
.study-nav .toggle .inner {
  display: inline-block;
  max-width: 90%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.study-nav .toggle .fa {
  position: absolute;
  right: 15px;
  float: right;
  line-height: inherit;
}
.study-nav .root {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 1px;
  min-width: 100%;
  background: #fff;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  font-weight: 600;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.2s ease, visibility 0s 0.2s linear;
}
.study-nav.active .root {
  visibility: visible;
  opacity: 1;
  transition-delay: 0;
}
.study-nav .item .title {
  padding: 8px 15px;
  display: block;
  border: none;
  cursor: pointer;
}
.study-nav .item .title:hover {
  background: #f5f5f5;
}
.study-nav .depth-3 .title {
  padding-left: 30px;
  font-weight: 400;
}
.study-nav .depth-2 > .items {
  display: none;
}
.study-nav .depth-2.active > .items {
  display: block;
}
.study-nav .depth-3.active > .title {
  background: #eee;
}
.course-study-material .body {
  background: #fff;
  padding: 30px 0;
}
.course-study-material .body .content {
  padding: 0 150px 30px;
  font-size: 16px;
}
.course-study-material .body .col-1 {
  float: left;
  width: 45%;
}
.course-study-material .body .col-2 {
  float: right;
  width: 45%;
}
.course-study-material .body .form-wrapper {
  border-top: 1px solid #e3e3e3;
}
.course-study-material .pagination {
  margin: 0 150px;
  padding: 30px 0 75px;
  border-top: 1px solid #e3e3e3;
}
.course-study-material .pagination a {
  border: none;
  font-weight: 600;
}
.course-study-material .pagination .btn-prev {
  float: left;
  padding: 0 0 0 35px;
  background: url("../images/icon_arrow-left.png") no-repeat left center;
}
.course-study-material .pagination .btn-next {
  float: right;
  padding: 0 35px 0 0;
  background: url("../images/icon_arrow-right.png") no-repeat right center;
}
.section-slider {
  border: 1px solid #e3e3e3;
}
.section-slider audio {
  position: relative;
  width: 100%;
}
.section-slider.no-audio .slide {
  text-align: center;
}
.section-slider.has-audio .slides {
  position: relative;
  padding-bottom: 56.25%;
}
.section-slider.has-audio .slide {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #000;
  z-index: 0;
}
.section-slider.has-audio .slide.active {
  z-index: 1;
}
.section-slider .add-player {
  border-top: 1px solid #e3e3e3;
}

.section-slider.is-fullscreen {
  position: relative;
  background: #000;
  height: 100%;
  width: 100%;
  border: none;
}
.section-slider.is-fullscreen.hide {
  cursor: none;
}
.section-slider.is-fullscreen .slide {
  height: 100%;
  background-size: contain;
  background-color: #000;
}
.section-slider.is-fullscreen .add-player {
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transition: transform 0.3s ease;
}
.section-slider.is-fullscreen .add-player.hide {
  transform: translate3d(0, 100%, 0);
}
.section-slider.is-fullscreen .add-player:hover {
  transform: translate3d(0, 0, 0);
}


/**
 * Add player
 */
.add-player {
  height: 40px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  line-height: 20px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.add-player .play-pause {
  float: left;
  padding: 5px;
  cursor: pointer;
}
.add-player .play-pause > * {
  width: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}
.add-player .play .fa {
  position: relative;
  left: 2px;
}
.add-player .pause .fa {
  position: relative;
  left: 1px;
}
.add-player .pause,
.add-player.is-playing .play {
  display: none;
}
.add-player.is-playing .pause {
  display: block;
}
.add-player .timestamp {
  float: left;
  width: 110px;
  box-sizing: border-box;
  white-space: nowrap;
  padding: 10px;
}
.add-player .timestamp .duration:before {
  content: "/ ";
}
.add-player .timeline {
  position: absolute;
  left: 150px;
  right: 80px;
  top: 0;
  bottom: 0;
  padding: 15px 0;
}
.add-player .timeline .full {
  background: #e3e3e3;
  cursor: pointer;
}
.add-player .timeline .current {
  height: 10px;
  min-width: 1px;
  width: 1px;
  transition: width 0.1s linear;
}
.add-player .fullscreen {
  float: right;
  padding: 10px 5px;
  width: 20px;
  text-align: center;
  cursor: pointer;
}
.add-player .volume {
  float: right;
  position: relative;
  padding: 10px 5px;
  width: 20px;
  text-align: center;
}
.add-player .volume .icon {
  cursor: pointer;
}
.add-player.is-muted .volume .icon-unmuted,
.add-player .volume .icon-muted {
  display: none;
}
.add-player.is-muted .volume .icon-muted {
  display: inline-block;
}
.add-player .volume-slider {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  padding: 10px;
  background: #fff;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s linear, opacity 0.3s ease;
}
.add-player .volume.is-down .volume-slider,
.add-player .volume:hover .volume-slider {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.add-player .volume-slider .full {
  position: relative;
  height: 100px;
  background: #e3e3e3;
  cursor: pointer;
}
.add-player .volume-slider .current {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.add-player .ui,
.add-player.is-loaded .audio {
  display: none;
}
.add-player.is-loaded .ui {
  display: block;
}


/**
 * Exam
 */
.exam-wrap {
  position: relative;
  padding: 0 150px 30px;
}
.exam-wrap .has-passed {
  text-align: center;
  margin: -20px 0 20px;
  font-style: italic;
}
.exam-wrap .exam-locked {
  padding: 30px 50px;
  color: #A94442;
  background-color: #F2DEDE;
}
.form-examination .form-type-radios {
  padding: 30px 0;
  border-bottom: 1px solid #e3e3e3;
}
.form-examination .form-type-radios > .form-label {
  font-size: 16px;
  margin-bottom: 15px;
}
.form-examination .form-type-radios .form-input:after {
  content: "";
  display: block;
  clear: both;
}
.form-examination .radio-label {
  float: left;
  width: 49.5%;
  margin: 0 0 10px 1%;
  box-sizing: border-box;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.form-examination .radio-label:nth-child(2n+1) {
  clear: both;
  margin-left: 0;
}
.form-examination .radio-label .fa {
  display: none !important;
}
.form-examination .radio-label .label-inner {
  display: block;
  font-weight: 600;
  line-height: 20px;
  padding: 15px 20px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  color: rgba(0,0,0,0.6);
  transition: all 0.2s ease;
}
.form-examination .radio-label:hover .label-inner {
  background-color: #cdcdcd;
  border-color: #cdcdcd;
  color: #000;
}
.form-examination .radio-label input:checked ~ .label-inner {
  color: #fff;
}
.form-examination .form-item.correct .radio-label input:checked ~ .label-inner {
  background-color: #22b01b;
  border-color: #22b01b;
  color: #fff;
}
.form-examination .form-item.wrong .radio-label input:checked ~ .label-inner {
  background-color: #c80000;
  border-color: #c80000;
  color: #fff;
}
.form-examination .form-item .radio-label input:disabled ~ .label-inner {
  background-color: #ebebeb;
  color: #888;
}
.form-examination .form-type-radios .form-icon-error,
.form-examination .form-type-radios .form-input-error {
  display: none;
}
.form-examination .form-type-actions {
  margin: 30px 0 0;
  text-align: center;
  position: relative;
}
.form-examination.graded .form-type-submit,
.form-examination .form-name-result {
  display: none;
}
.form-examination.graded .form-name-result {
  display: block;
}
.form-examination .form-type-actions .form-type-submit {
  margin: 20px 0 0;
  display: block;
}
.form-examination .is-passed .form-type-actions .form-type-submit {
  height: 0;
  overflow: hidden;
  margin: 0;
  transform: scale(0.01);
  transition: margin 0.3s ease, height 0.3s ease, transform 0.15s 0.15s ease-in;
}
.form-examination.has-started .is-passed .form-type-submit {
  height: 40px;
  margin-top: 20px;
  transform: scale(1);
}
.form-examination .submit-text {
  font-size: 16px;
  font-weight: 700;
}
.form-examination .is-passed .submit-text {
  color: #22b01b;
}
.form-examination .form-name-result .btn {
  position: relative;
  z-index: 1;
  color: #fff;
}
.form-examination.passed .form-name-result .btn {
  background-color: #22b01b;
  border-color: #22b01b;
}
.form-examination.failed .form-name-result .btn {
  background-color: #c80000;
  border-color: #c80000;
}
.form-examination .result-text {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  color: #fff;
}
.form-examination .result-text > .inner {
  display: inline-block;
  padding: 10px 0;
}
.form-examination .result-text-passed > .inner {
  color: #22b01b;
}
.form-examination .result-text-failed > .inner {
  color: #c80000;
}
.form-examination.passed .result-text-passed,
.form-examination.failed .result-text-failed {
  animation: fade 0.5s ease forwards, fromabove 0.5s ease forwards;
}

/**
 * Home exam
 */
.course-home-exam .body .items {
  margin-bottom: 20px;
}
.course-home-exam .body .item {
  display: block;
  padding: 10px;
  border: 1px solid #e3e3e3;
  border-bottom-width: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.course-home-exam .body .item:last-child {
  border-bottom-width: 1px;
}
.course-home-exam .body .file {
  display: block;
  padding: 2px 0;
  border: none;
  transition: color 0.2s ease;
}
.course-home-exam .body .file:hover {
  color: #aaa;
}
.course-home-exam .body .item .fa {
  width: 18px;
}
.course-home-exam .body .btn-rect {
  cursor: pointer;
}
.course-home-exam .body .btn-rect:hover {
  background: #313131;
  color: #fff;
  border-color: #313131;
}
.course-home-exam .home-exam-status-20.is-passed-1 {
  color: #22b01b;
}
.course-home-exam .home-exam-status-20.is-passed-0 {
  color: #cd1919;
}

.form-home-exam .form-type-file .form-item {
  margin: 20px 0 0;
  padding: 80px 0 20px;
  position: relative;
}
.form-home-exam .form-type-file .form-item.has-value {
  margin: 0;
  padding: 0 0 0 20px;
  border: 1px solid #e3e3e3;
  border-top-width: 0;
}
.form-home-exam .form-type-file .form-item.has-value:first-child {
  border-top-width: 1px;
}
.form-home-exam .form-type-file .form-input {
  position: static;
}
.form-home-exam .form-file-upload:after {
  content: "";
  display: block;
  clear: both;
}
.form-home-exam .form-file-upload {
  text-align: center;
}
.form-home-exam .form-file-upload-button {
  min-width: 0;
  position: relative;
  z-index: 1;
  background: #fff;
  color: #000;
}
.form-home-exam .form-file-upload-button:hover {
  background: #313131;
  color: #fff;
}
.form-home-exam .form-file-drop {
  margin: 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  padding: 45px 0 0;
  background: url("../images/icon_paper.png") no-repeat center 15px;
}
.form-home-exam .form-file-extensions {
  display: none;
}
.form-home-exam .form-type-file .form-item-loader {
  margin: 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  padding: 45px 0 0;
  text-align: center;
}
.form-home-exam .form-file-preview-name {
  border: none;
  padding-left: 0;
  text-align: left;
  background: transparent;
  color: inherit;
}
.form-home-exam .form-file-remove-button {
  float: right;
  min-width: 0;
  border: none;
  width: 52px;
  padding: 0;
  background: none;
}
.form-home-exam .form-file-remove-button:hover {
  color: #D43F3A;
}
.form-home-exam .form-type-file .form-input-error {
  display: none;
}
.form-home-exam .sent {
  animation: fade 0.5s ease forwards;
}
.form-home-exam .sent .actions {
  margin-top: 20px;
}


/**
 * Webinar watch
 */
.video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.webinar-watch .box-top .is-live > .inner {
  border: 1px solid #c6c6c6;
  padding: 0 11px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.webinar-watch .box-top .is-live > .inner:before {
  content: "";
  display: inline-block;
  background: #d00;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 1px;
}
.webinar-watch .col-1 {
  width: 63.7%;
  margin-right: 0.1%;
}
.webinar-watch .col-2 {
  width: 35.2%;
}
.webinar-watch .box .col-1:nth-child(n) {
  padding: 35px;
}
.webinar-watch .box .col-2:nth-child(n) {
  padding: 0;
}
.webinar-watch .col-2 > .title {
  font-size: 18px;
  font-weight: 700;
  padding: 17px 28px;
  border-bottom: 1px solid #ebebeb;
}
.webinar-watch .col-2 > .title .fa {
  float: right;
  border: 0;
  opacity: 0.8;
  line-height: 1.5;
  cursor: pointer;
}
.webinar-watch .countdown {
  font-size: 16px;
}
.webinar-watch .countdown #live-time {
  font-size: 18px;
  font-weight: 700;
}
.webinar-watch .live-ready {
  font-size: 18px;
  font-weight: 700;
}
.webinar-watch .inactive {
  display: none;
}

.extra-material {
  border: 1px solid #d4d4d4;
}
.extra-material:nth-child(n+2) {
  margin-top: 25px;
}
.extra-material > .title {
  font-weight: 700;
  font-size: 18px;
  padding: 17px 28px;
}
.extra-material .material {
  border-top: 1px solid #d4d4d4;
  padding: 17px 28px;
}
.extra-material .material a {
  border: none;
  display: block;
}
.extra-material .material a .fa {
  width: 20px;
}

.webinar-live .countdown {
  margin-top: 10px;
}
.form-webinar-live {
  margin-top: 10px;
}
.form-webinar-live .form-item {
  margin: 0 10px 0 0;
  float: left;
}

/**
 * Chat
 */
.chat-messages {
  box-sizing: border-box;
  height: 430px;
  padding: 25px 20px;
  overflow: auto;
}
.chat-message {
  font-size: 15px;
  margin: 0 0 15px;
}
.chat-message .info {
  font-weight: 700;
}
.chat-message.color-0 .info { color: rgba(0,0,0,0.7); }
.chat-message.color-1 .info { color: #000; }
.chat-message.color-2 .info { color: #8300fe; }
.chat-message.color-3 .info { color: #db6c00; }
.chat-message.color-4 .info { color: #2e8e1b; }
.form-chat-message {
  position: relative;
  padding: 15px 20px;
  border-top: 1px solid #ebebeb;
}
.form-chat-message.loading .form-name-submit {
  pointer-events: none;
  opacity: 0.3;
}
.form-chat-message .form-loader {
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 46px;
  margin: 0;
  width: 46px;
  left: auto;
}
.form-chat-message .form-item {
  margin: 0;
  float: left;
  padding: 0;
  border: none;
}
.form-chat-message .form-name-text {
  width: 85%;
}
.form-chat-message .form-name-submit {
  width: auto;
  float: right;
}
.form-chat-message .form-input-error {
  position: absolute;
  left: 0;
  bottom: 100%;
  background: #A94442;
  color: #fff;
  padding: 5px 10px;
  white-space: nowrap;
}
.form-chat-message .form-icon-feedback {
  display: none !important;
}
.form-chat-message .form-textfield {
  height: 46px;
  max-height: 134px;
  padding: 11px 18px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  resize: none;
  background: #f3f3f3;
  border-color: #d4d4d4;
}
.form-chat-message .btn {
  width: 46px;
  line-height: 46px;
  height: 46px;
  min-width: 0;
  padding: 0;
  font-weight: normal;
  border-width: 0px;
  text-align: center;
  border-radius: 50%;
}
.form-chat-message .form-submit {
  font-family: FontAwesome;
  font-size: 20px;
}
.naked .chat {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto 77px;
  height: 100vh;
}
.naked .chat-messages {
  height: auto;
}
.chat .chat-login {
  padding: 15px 20px;
  border-top: 1px solid #ebebeb;
}


/**
 * Checkout
 */
.cart-checkout {
  font-size: 16px;
  font-weight: 700;
}
.cart-checkout .items {
  border-collapse: collapse;
  width: 100%;
}
.cart-checkout .item {
  border-top: 1px solid #ebebeb;
  padding: 12px 0;
}
.cart-checkout .item td {
  vertical-align: middle;
  padding: 0;
}
.cart-checkout .item .image {
  width: 105px;
}
.cart-checkout .item .title {
  padding: 10px 10px 10px 25px;
}
.cart-checkout .item .title a {
  border: none;
}
.cart-checkout .item .price {
  text-align: right;
  padding-right: 10px;
  width: 1px;
  white-space: nowrap;
}
.cart-checkout .item .remove {
  width: 12px;
  min-width: 12px;
  background: url("../images/icon_times.png") no-repeat center center;
  cursor: pointer;
}
.cart-checkout .summation {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #ebebeb;
}
.cart-checkout .summation .row:first-child td {
  padding-top: 20px;
}
.cart-checkout .summation .row:nth-last-child(2) td {
  padding-bottom: 20px;
}
.cart-checkout .summation .row:last-child {
  background: #ebebeb;
}
.cart-checkout .summation .row:last-child td {
  padding-top: 11px;
  padding-bottom: 11px;
  background: #ebebeb;
}
.cart-checkout .summation td {
  padding: 3px;
}
.cart-checkout .summation .row .title {
  padding-left: 20px;
}
.cart-checkout .summation .row .amount {
  padding-right: 20px;
  text-align: right;
  width: 1px;
  white-space: nowrap;
}

.form-order-checkout .none,
.form-order-checkout .inactive {
  display: none;
}
.form-order-checkout .email-info {
  display: block;
  font-weight: 600;
  margin: 0 0 5px;
}
.form-order-checkout .form-name-user-login,
.form-order-checkout .form-name-user-register {
  animation: fade 0.2s ease;
}
.form-order-checkout .form-name-user-continue {
  text-align: center;
}
.form-order-checkout.loading:after {
  content: "\f021";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: center;
  margin-top: 10px;
  animation: fa-spin 1s infinite linear;
}
.form-order-checkout .form-label {
  color: rgba(0,0,0,0.7);
}
.form-order-checkout .form-name-payment-service {
  clear: both;
  padding: 30px 0 0;
}
.form-order-checkout .form-name-payment-service > .form-label {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0 25px;
  margin: 0;
}
.form-order-checkout .form-name-payment-service .radio-label {
  border: 1px solid #ebebeb;
  border-top-width: 0;
  color: #000;
  position: relative;
}
.form-order-checkout .form-name-payment-service .radio-label:first-child {
  border-top-width: 1px;
}
.form-order-checkout .form-name-payment-service .radio-label .fa {
  display: none;
}
.form-order-checkout .form-name-payment-service .radio-label .title {
  float: left;
  font-size: 16px;
  font-weight: 700;
  margin: 15px 0 0 52px;
}
.form-order-checkout .form-name-payment-service .radio-label .radio-icon-checked {
  display: block;
  position: absolute;
  top: 16px;
  left: 19px;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  padding: 4px;
  border: 1px solid #bbb;
  border-radius: 50%;
}
.form-order-checkout .form-name-payment-service .radio-label .radio-icon-checked:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.form-order-checkout .form-name-payment-service .radio-label input:checked ~ .radio-icon-checked:before {
  opacity: 1;
}
.form-order-checkout .form-name-payment-service .radio-label .logo {
  float: right;
  margin-right: 20px;
  font-size: 0;
}
.form-order-checkout .form-name-payment-service .radio-label .logo .middle-class {
  height: 50px;
}
.form-order-checkout .form-name-payment-service .radio-label .description {
  clear: both;
  border-top: 1px solid #ebebeb;
  padding: 12px 22px;
}
.form-order-checkout .form-type-actions {
  clear: both;
  padding: 20px 0 0;
}
.form-order-checkout .form-type-actions .form-item {
  text-align: center;
}
.form-order-checkout .btn {
  text-transform: uppercase;
}


/**
 * Order complete
 */
.order-complete {
  padding: 200px 0;
  max-width: 630px;
  margin: 0 auto;
  text-align: center;
}
.order-complete h1 {
  font-size: 38px;
  font-weight: 300;
  margin: 35px 0 5px;
  padding: 0;
}
.order-complete .text {
  font-size: 16px;
}
.order-complete .actions {
  margin-top: 30px;
}
.helper {
  position: relative;
  background: url("../images/helper_center.png") no-repeat center top;
  width: 89px;
  height: 107px;
  margin: 0 auto;
}
.helper .bubble {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 20px;
  background: rgba(0,0,0,0.15);
  border-radius: 20px;
  padding: 12px 25px;
  font-size: 16px;
  box-sizing: border-box;
  white-space: nowrap;
  transform-origin: left top;
  transform: rotateZ(-8deg);
}
.helper .bubble:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  width: 0;
  margin-top: -7px;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 11px solid rgba(0,0,0,0.15);
}


/**
 * Messages
 */
.message-index > .inside:nth-child(n) {
  padding: 0;
}
.messages {
  position: relative;
}
.messages:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  background: #e3e3e3;
  top: 0;
  bottom: 0;
  right: 70%;
}
.messages .btn-new {
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  padding: 34px 28px;
  /* background-image: url("../images/icon_new.png"); */
  background-repeat: no-repeat;
  background-position: 95% center;
  cursor: pointer;
}
.messages #list {
  max-height: 537px;
  overflow: auto;
}
.messages #thread {
  box-sizing: border-box;
  overflow: hidden;
}
.messages #thread .empty {
  margin-top: 150px;
  padding: 125px 0;
  text-align: center;
  background: url("../images/icon_notification_huge.png") no-repeat center top;
}
.messages #thread .empty-title {
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 10px;
}
.messages #thread .items {
  overflow: auto;
  height: 459px;
}
.messages .col1 {
  float: left;
  width: 30%;
  box-sizing: border-box;
  border-right: 1px solid #ebebeb;
}
.messages .col1:before {
  content: "";
  display: block;
  position: absolute;
  border-right: 1px solid #ebebeb;
  top: 0;
  left: 0;
  width: 30%;
  bottom: 0;
  background: #fbfbfb;
  box-sizing: border-box;
  z-index: 0;
}
.messages .col1 > * {
  position: relative;
  z-index: 1;
}
.messages .col2 {
  float: right;
  width: 70%;
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s ease;
}
.messages .col2.file-drag {
  opacity: 0.5;
  background: #c4e8eb;
}
.messages .message-item {
  position: relative;
  border-bottom: 1px solid #ebebeb;
  color: rgba(0,0,0,0.8);
  font-size: 16px;
  padding: 20px 28px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.messages .message-item.active {
  color: #000;
  background: #fff;
}
.messages .message-item.active .text,
.messages .message-item.active .user {
  font-weight: 700;
}
.messages .message-item .fa {
  margin-right: 5px;
}
.messages .message-item .title {
  font-size: 16px;
}
.messages .message-item .date {
  font-style: italic;
  margin-top: 5px;
}
.messages .message-item .num-unread {
  position: absolute;
  top: 15px;
  right: 20px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  width: 20px;
  font-size: 12px;
  line-height: 20px;
}
.messages .message-date {
  clear: both;
  margin: 20px 0;
  text-align: center;
  color: #333;
}
.messages .message {
  clear: both;
  margin: 0 20px 20px;
  max-width: 70%;
}
.messages .message .bubble {
  border-radius: 15px;
  overflow: hidden;
  font-size: 16px;
  padding: 15px 20px;
  position: relative;
  background: #ebebeb;
}
.messages .message .bubble:before {
  content: "";
  display: block;
  width: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 7px solid #ebebeb;
  position: absolute;
  bottom: 15px;
  right: 100%;
}
.messages .message .bubble p {
  margin: 5px 0 0;
}
.messages .message .bubble p:first-child {
  margin-top: 0;
}
.messages .message.is-user .bubble {
  background: #c1eac4;
}
.messages .message.is-user .bubble:before {
  border-right-color: #c1eac4;
}
.messages .message.is-sender {
  float: right;
}
.messages .message.is-sender .bubble {
  background: #c1e7ea;
}
.messages .message.is-sender .bubble:before {
  border-left: 7px solid #c1e7ea;
  border-right: none;
  left: 100%;
  right: auto;
}
.messages .message a.file {
  display: block;
  line-height: 0;
}
.messages .message a.file.is-image {
  border: none;
}
.messages .message .sender {
  font-style: italic;
  margin-top: 5px;
  font-size: 14px;
}
.messages #thread .title {
  font-size: 16px;
  font-weight: 700;
  padding: 34px 35px;
  border-bottom: 1px solid #ebebeb;
}
.messages #thread .btn-back {
  float: right;
  margin-top: -10px;
  display: none;
}
.messages #thread .btn-close {
  float: right;
  width: 20px;
  height: 20px;
  background: url("../images/icon_times.png") no-repeat center center;
  cursor: pointer;
}
.messages #thread.loading {
  padding-top: 100px;
  text-align: center;
}
.messages #thread .loader {
  font-size: 24px;
}
.form-message-send {
  position: relative;
  display: none;
  padding: 15px 20px;
  border-top: 1px solid #ebebeb;
}
.col.active .form-message-send {
  display: block;
}
.form-message-send.loading .form-name-submit {
  pointer-events: none;
  opacity: 0.3;
}
.form-message-send .form-loader {
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 46px;
  margin: 0;
  width: 46px;
  left: auto;
}
.form-message-send .form-item {
  margin: 0;
  float: left;
  padding: 0;
  border: none;
}
.form-message-send .form-name-text {
  width: 85%;
}
.form-message-send .form-name-file-id {
  margin-right: 10px;
}
.form-message-send .form-name-file-id,
.form-message-send .form-name-submit {
  width: auto;
  float: right;
}
.form-message-send .form-input-error {
  position: absolute;
  left: 0;
  bottom: 100%;
  background: #A94442;
  color: #fff;
  padding: 5px 10px;
  white-space: nowrap;
}
.form-message-send .form-type-file .form-item-loader {
  width: 46px;
  line-height: 46px;
  text-align: center;
}
.form-message-send .form-icon-feedback,
.form-message-send .form-file-extensions,
.form-message-send .form-file-drop,
.form-message-send .form-file-preview {
  display: none !important;
}
.form-message-send .form-textfield {
  height: 46px;
  max-height: 134px;
  padding: 11px 18px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  resize: none;
  background: #f3f3f3;
  border-color: #d4d4d4;
}
.form-message-send .btn {
  width: 46px;
  line-height: 46px;
  height: 46px;
  min-width: 0;
  padding: 0;
  font-weight: normal;
  border-width: 0px;
  text-align: center;
  border-radius: 50%;
}
.form-message-send .form-file-upload-button {
  color: #313131;
  background: none;
  font-size: 32px;
  transform: rotateZ(270deg);
}
.form-message-send .form-file-upload-button:hover {
  color: #000;
}
.form-message-send .form-submit {
  font-family: FontAwesome;
  font-size: 20px;
}


/**
 * Forum
 */
.forum-course .header .right .mobile {
  display: none;
  font-size: 24px;
  line-height: 40px;
  cursor: pointer;
}
.forum-wrap {
  max-width: 890px;
  margin: 0 auto;
}
.forum-wrap .empty {
  text-align: center;
  padding: 50px 0;
  font-size: 16px;
}
.forum-wrap .empty .fa {
  font-size: 60px;
  margin-bottom: 20px;
}
.forum-wrap .empty .title {
  font-size: 38px;
  font-weight: 300;
}
.forum-wrap .empty .btn {
  margin-top: 30px;
}
.forum-item {
  position: relative;
  padding: 35px 40px;
  font-size: 16px;
  line-height: 22px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.forum-wrap .thread {
  display: block;
  border: none;
  margin-top: 30px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.forum-wrap .thread:first-child {
  margin-top: 0;
}
.thread:hover {
  color: #fff;
}
.forum-item .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.forum-item .posted {
  font-weight: 700;
  margin-top: 10px;
}
.forum-item .posted-teacher {
  font-size: 14px;
}
.forum-item .parent {
  font-weight: 600;
  font-size: 14px;
  border-bottom-width: 1px;
  border-bottom-type: solid;
  margin-bottom: 10px;
  cursor: pointer;
}
.forum-item .date {
  position: absolute;
  top: 10px;
  right: 15px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(0,0,0,0.4);
}
.forum-item.focus .date {
  color: #000;
  transition: color 0.2s ease;
}
.forum-item .text {
  margin-right: 190px;
}
.forum-post {
  background-color: #ebebeb;
}
.forum-post.focus {
  background-color: #e3f9e2;
}
.forum-post.not-op {
  margin-top: 5px;
}
.forum-post .icons {
  display: inline-block;
}
.forum-fa {
  color: rgba(0,0,0,0.3);
}
.forum-post .icons .icon {
  margin-left: 5px;
}
.forum-post.not-op.focus:before {
  border-bottom-color: #e3f9e2;
}
.forum-post.not-op:before {
  content: "";
  display: block;
  position: absolute;
  left: 45px;
  bottom: 100%;
  width: 0;
  height: 0;
  border-bottom: 11px solid #ebebeb;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  z-index: 3;
}
.forum-post.not-op:after {
  content: "";
  display: block;
  position: absolute;
  left: 43px;
  bottom: 100%;
  margin-bottom: 5px;
  width: 0;
  height: 0;
  border-bottom: 13px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  z-index: 2;
}
.forum-wrap > .actions {
  margin-bottom: 20px;
  text-align: right;
}
.forum-wrap .actions ~ .actions {
  margin-top: 20px;
  text-align: right;
}
.forum-item .actions {
  position: absolute;
  right: 40px;
  bottom: 25px;
}
.thread-reply {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 30px;
  width: 500px;
  box-sizing: border-box;
  background: #f4f4f4;
  border: 1px solid #e3e3e3;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: visibility 0s 0.2s linear, opacity 0.2s ease, transform 0.2s ease;
}
.thread-reply.active {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.thread-reply .close {
  background: url("../images/icon_times.png") no-repeat center center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
}
.thread-reply .reply-to {
  margin-bottom: 5px;
  cursor: pointer;
}
.thread-reply .form-type-actions {
  text-align: left;
}
.thread-reply .form-name-text {
  margin-top: 0;
}
.form-forum-thread-add .form-textarea,
.thread-reply .form-textarea {
  height: 150px;
}


/**
 * User settings
 */
.user-login ul.checklist {
  max-width: 290px;
  margin: 0 auto 30px;
}
.order-popup table,
.user-settings .order-history {
  border-spacing: 1px;
  background: #e3e3e3;
  width: 100%;
}
.order-popup table {
  margin-top: 20px;
}
.order-popup table.summation {
  width: 100%;
  max-width: 250px;
  float: right;
}
.order-popup table.summation tr:last-child {
  font-weight: 700;
}
.order-popup table td:last-child {
  width: 90px;
  text-align: right;
  white-space: nowrap;
}
.order-popup table td,
.user-settings .order-history th,
.user-settings .order-history td {
  background: #fff;
  padding: 10px;
  text-align: left;
}
.user-settings .order-history th {
  font-weight: 600;
}
.user-settings .order-history td {
  cursor: pointer;
}
.user-settings .order-history tr:hover td {
  background: #f5f5f5;
}
.order-popup .top .nr {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 15px;
}
.order-popup .top .col-1 {
  float: left;
  width: 45%;
}
.order-popup .top .col-2 {
  float: right;
  width: 45%;
}
.order-popup .field {
  margin-bottom: 5px;
}


/**
 * Error pages
 */
.error-text {
  text-align: center;
  padding: 0 0 40px;
  font-size: 16px;
}