/* Build timestamp: 2026-05-08 22:51:28 */
.checkbox-container {
  position: relative;
  display: inline-block;
  /*-webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;*/
  float: left;
  margin: 0px;
  min-height: 22px;
  min-width: 22px;
  line-height: 22px;
  box-sizing: border-box;
}
/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  border: 0px none;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* Create a custom checkbox */
.checkbox-container .checkbox-image {
  position: relative;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  box-sizing: border-box;
  transition: all 0.2s linear !important;
}
.checkbox-container input[type="checkbox"] ~ .checkbox-image {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.checkbox-container input[type="radio"] ~ .checkbox-image {
  border-radius: 50%;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkbox-image:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-image:after,
.checkbox-container input.gray-square ~ .checkbox-image:after {
  display: block;
}
/* Focused checkbox */
.checkbox-container:focus {
  outline: none;
}
/* Style the checkmark/indicator for checkboxes */
.checkbox-container input[type="checkbox"].gray-square:not(:checked) ~ .checkbox-image:after {
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #777;
}
/* Style the checkmark/indicator for checkboxes */
.checkbox-container input[type="checkbox"]:checked ~ .checkbox-image:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Style the checkmark/indicator for radio buttons */
.checkbox-container input[type="radio"] ~ .checkbox-image:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.checkbox-container .checkbox-label-after {
  width: calc(100% - 22px);
  line-height: 22px !important;
  padding-left: 8px;
  box-sizing: border-box;
  float: left;
}
.checkbox-container input ~ .checkbox-image,
.checkbox-container input ~ .checkbox-label-after {
  cursor: pointer;
}
.checkbox-container input:disabled ~ .checkbox-image,
.checkbox-container input:disabled ~ .checkbox-label-after {
  cursor: default !important;
}
.checkboxTable {
  border: none;
  border-spacing: 0px;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.inlineCheckbox .checkboxTable,
.inlineCheckbox .checkbox-label-after,
.inlineCheckbox .checkboxTable td:nth-child(2) {
  width: auto !important;
}
.checkboxTable td {
  vertical-align: top;
}
.checkboxTable td:nth-child(2) {
  width: 100%;
  line-height: 22px !important;
}
.checkbox-container.white-checkbox input:checked ~ .checkbox-image {
  background-color: #FFF !important;
}

/* falling items */
.season-drop-global {
  position: fixed;
  font-size: 20px;
  z-index: -1;
  top: -30px;
  animation-timing-function: linear;
}
.season-drop-1 {
  -webkit-animation: season-drop 80s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-drop 80s infinite;
}
.season-drop-2 {
  -webkit-animation: season-drop 100s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-drop 100s infinite;
}
.season-drop-3 {
  -webkit-animation: season-drop 110s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-drop 110s infinite;
}
.season-drop-4 {
  -webkit-animation: season-drop 90s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-drop 90s infinite;
}
@keyframes season-drop {
  from {
    top: -30px;
  }
  100% {
    top: 103%;
  }
}
.season-drop-global-i {
  -webkit-animation: season-drop-i 8s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-drop-i 8s infinite;
  animation-timing-function: linear;
  margin-left: -10px;
  transform: rotate(20deg);
}
@keyframes season-drop-i {
  0% {
    margin-left: -10px;
    transform: rotate(20deg);
  }
  50% {
    margin-left: 10px;
    transform: rotate(-20deg);
  }
  100% {
    margin-left: -10px;
    transform: rotate(20deg);
  }
}
/* grows items */
.season-grow-global {
  position: fixed;
  z-index: -1;
  bottom: -1px;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.season-grow-global-i {
  font-size: 2px;
}
.season-grow-1 {
  -webkit-animation: season-grow 100s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-grow 100s infinite;
}
.season-grow-2 {
  -webkit-animation: season-grow 60s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-grow 60s infinite;
}
.season-grow-3 {
  -webkit-animation: season-grow 80s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-grow 80s infinite;
}
.season-grow-4 {
  -webkit-animation: season-grow 70s infinite;
  /* Safari 4.0 - 8.0 */
  animation: season-grow 70s infinite;
}
@keyframes season-grow {
  from {
    font-size: 2px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  90% {
    font-size: 30px;
    opacity: 1;
  }
  100% {
    font-size: 30px;
    opacity: 0;
  }
}

/**
  CSS for modal window.
 */
.full-loader-wrapper,
.page-loader-wrapper {
  display: none;
  /*Hidden by default*/
  position: fixed;
  /* Stay in place */
  z-index: 100;
  /* Sit on top */
  top: 0;
  left: 0;
  width: 100%;
  /* Full width */
  bottom: 0px;
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}
/* Modal Content/Box */
#main-loader-wrapper .full-loader-block {
  background-color: #fefefe;
  position: absolute;
  padding: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
  overflow: visible;
  box-sizing: border-box;
  width: 110px;
  height: 110px;
  text-align: center;
  font-size: 14px;
  top: 50%;
  left: 50%;
  margin-top: -55px;
  margin-left: -55px;
}
#main-loader-wrapper .full-loader-block i {
  font-size: 50px;
  margin: 15px auto;
}

/**
  CSS for input (texts, password, textareas...)
 */
input[type="file"],
input[type="text"],
input[type="number"],
input[type="password"],
.default-selectbox,
.catalog-list-type,
.my-courses-list-type {
  line-height: 16px;
  padding: 9px 7px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  outline: none;
  transition: all 0.2s linear !important;
}
input[type="file"] {
  line-height: 24px;
  padding: 5px 10px;
}
.default-selectbox {
  padding: 0px !important;
}
/*  login forms witch ico  */
input[type="text"].leftico,
input[type="password"].leftico {
  padding-left: 40px;
}
/* hover and focus effects */
input[type="text"]:hover,
input[type="password"]:hover,
input[type="file"]:hover,
textarea:hover,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="file"]:focus,
textarea:focus {
  cursor: auto;
}
input[type="submit"],
textarea,
input[type="text"],
input[type="number"] {
  -webkit-appearance: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="text"].search-txt,
input[type="text"].search-txt:hover,
input[type="text"].search-txt:focus {
  outline: none;
  border: none !important;
}
/* buttons in Edunio */
input[type="submit"],
input[type="button"],
.jqueryui .ui-dialog .ui-dialog-buttonpane button {
  height: 36px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 0px 20px 0px 20px;
  margin: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #CCC;
  -webkit-appearance: none;
  text-align: center;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  min-width: 100px;
  font-weight: normal;
}
textarea {
  vertical-align: top;
  font-family: inherit;
  resize: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  line-height: 16px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 9px 10px;
  outline: none;
  transition: all 0.2s linear !important;
  border: 1px #ddd solid;
  position: relative;
  color: #444;
  -webkit-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.03);
  box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.03);
}
.noBottomBorderRadius {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
/* Add button and button with ico */
.addButton,
.icoButton {
  height: 36px;
  line-height: 34px;
  box-sizing: border-box;
  padding-right: 8px;
  cursor: pointer;
  transition: all 0.2s linear;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.addButton:hover,
.addButton:focus,
.icoButton:hover,
.icoButton:focus {
  outline: none;
}
.addButton i,
.icoButton i {
  margin: 0px 8px;
}
.addButton {
  border: 1px solid #ff6600;
  color: #FFF;
  background-color: #ff6600;
}
/* custom button with ico */
.customButtonIco {
  height: 36px;
  line-height: 36px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s linear;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.resizeVertical {
  resize: vertical;
  transition: none !important;
}
.autocompleteSpan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 36px;
  float: left;
}

.basicLightbox {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.01;
  transition: opacity 0.4s ease;
  z-index: 1000;
  will-change: opacity;
}
.basicLightbox--visible {
  opacity: 1;
}
.basicLightbox__placeholder {
  max-width: 100%;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  z-index: 1;
  will-change: transform;
}
.basicLightbox__placeholder > iframe:first-child:last-child,
.basicLightbox__placeholder > img:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 95%;
  max-height: 95%;
}
.basicLightbox__placeholder > iframe:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child {
  pointer-events: auto;
}
.basicLightbox__placeholder > img:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child {
  width: auto;
  height: auto;
}
.basicLightbox--iframe .basicLightbox__placeholder,
.basicLightbox--img .basicLightbox__placeholder,
.basicLightbox--video .basicLightbox__placeholder {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.basicLightbox--visible .basicLightbox__placeholder {
  transform: scale(1);
}
.basicLightbox:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f00d";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  background: #000000;
  cursor: pointer;
  font-size: 40px;
  color: #FFFFFF;
  z-index: 100;
}
.basicLightbox .basicLightbox-img,
.basicLightbox .basicLightbox-iframe,
.basicLightbox .basicLightbox-video {
  max-width: 98%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.38);
}
.basicLightbox .basicLightbox-iframe {
  width: 98%;
  height: 98%;
}
.basicLightbox .basicLightbox--caption {
  text-align: center;
  padding: 10px;
  background: #000000;
  max-width: 98%;
  box-sizing: border-box;
}

/**
  CSS for modal window.
 */
.modal-wrapper {
  display: none;
  /*Hidden by default*/
  position: fixed;
  /* Stay in place */
  z-index: 11;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  bottom: 0px;
  /* Full height */
}
/* Modal Content/Box */
.modal-wrapper .modal {
  margin: auto;
  padding: 0;
  animation-name: animatetop;
  animation-duration: 0.4s;
  overflow: visible;
  top: 50%;
}
.modal-wrapper .modal::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
}
/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/* Modal Header */
.modal-header {
  padding: 2px 16px;
  color: white;
  overflow: hidden;
  text-align: left;
  padding: 11px 13px 10px 13px;
  position: relative;
  font-size: 20px;
  white-space: nowrap;
}
.modal-header .modal-header-content {
  font-size: 30px;
  float: left;
  margin: 24px 0px 10px 0px;
  position: relative;
  min-width: 0px;
  display: inline-block;
}
.modal-header .modal-header-content-animation {
  animation: modal-header-leftright 5s infinite alternate ease-in-out;
}
.modal-header .modal-header-close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 8px 8px 0px 0px;
  padding: 3px;
  z-index: 1;
  text-align: center;
}
@keyframes modal-header-leftright {
  0%,
  20% {
    transform: translateX(0%);
  }
  80%,
  100% {
    transform: translateX(var(--x-coord));
  }
}
/* Modal Body */
.modal-body {
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  padding: 2px 15px;
  margin: 10px 0px 10px 0px;
}
/* Modal Footer */
.modal-footer {
  padding: 4px 15px 10px 4px;
  text-align: right;
}
.modal-header:before,
.modal-header:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.modal-background-title {
  position: absolute;
  opacity: 0.05;
  font-size: 120px;
  left: -30px;
  top: -50px;
  right: 0px;
  white-space: nowrap;
  overflow: hidden;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
}
/* Confirm modal properties */
#confirm-modal {
  overflow: hidden !important;
}
.confirm-modal-body-content {
  position: relative;
  margin: 30px auto 20px auto;
}
#confirm-modal:before {
  font-family: 'Font Awesome 5 Pro';
  left: -45px;
  position: absolute;
  top: 0px;
  font-size: 200px;
  z-index: 0;
  display: block;
  font-weight: 300;
  content: "\f059";
}
#study-reports-modal-body:before {
  font-family: 'Font Awesome 5 Pro';
  left: -45px;
  position: absolute;
  top: 0px;
  font-size: 200px;
  z-index: 0;
  display: block;
  font-weight: 300;
  content: "\f0ce";
}
/* Size of modals. */
.max-size-modal {
  max-width: 1550px;
  width: 98%;
}
.very-large-size-modal {
  width: 1100px;
}
.large-size-modal {
  width: 900px;
}
.medium-size-modal {
  width: 800px;
}
.small-size-modal {
  width: 500px;
}
.tiny-size-modal {
  width: 300px;
}
.confirm-size-modal {
  width: 400px;
}

#notify-panel-wrapper {
  position: fixed;
  top: 30px;
  z-index: 900;
  text-align: center;
  width: 40%;
  min-width: 200px;
}
#notify-panel-wrapper .notify-panel-helper {
  max-width: 496px;
  margin: auto;
}
#notify-panel-wrapper .close-button {
  width: 20px;
  height: 20px;
  float: right;
  text-align: center;
  position: absolute;
  right: 0px;
  color: #FFF;
  font-family: Verdana;
  font-size: 12px;
  line-height: 20px;
  display: block;
  padding: 2px 2px 2px 2px;
  cursor: pointer;
}
#notify-panel-wrapper .close-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#notify-panel-wrapper .content {
  position: relative !important;
  width: 100%;
  float: left;
  text-align: left !important;
  margin-bottom: 4px !important;
  box-sizing: border-box;
  font-size: 10px !important;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
#notify-panel-wrapper .content p {
  margin: 0px !important;
  float: left !important;
  text-align: left !important;
  box-sizing: border-box !important;
  font-size: 14px !important;
  width: 100% !important;
  line-height: 20px;
  padding: 20px 20px 20px 50px !important;
}
#notify-panel-wrapper .content-success {
  background: #01b050 !important;
  border: 1px solid #01b050;
  color: #fff !important;
}
#notify-panel-wrapper .content-success:before {
  content: "\f00c";
  font-weight: 700;
  font-family: "Font Awesome 5 Pro";
  left: 15px;
  position: absolute;
  top: 15px;
  font-size: 24px;
  color: #fff !important;
}
#notify-panel-wrapper .content-error {
  background: #ec1c25 !important;
  border: 1px solid #ec1c25;
  color: #fff !important;
}
#notify-panel-wrapper .content-error:before {
  content: "\f071";
  font-weight: 700;
  font-family: "Font Awesome 5 Pro";
  left: 15px;
  position: absolute;
  top: 15px;
  font-size: 24px;
  color: #fff !important;
}
#notify-panel-wrapper .content-info {
  background: #ff7f28 !important;
  border: 1px solid #ff7f28;
  color: #fff !important;
}
#notify-panel-wrapper .content-info:before {
  content: "\f05a";
  font-weight: 700;
  font-family: "Font Awesome 5 Pro";
  left: 15px;
  position: absolute;
  top: 15px;
  font-size: 24px;
  color: #fff !important;
}

body.organizationalStructure {
  padding: 15px;
  font-size: 17px;
}
.organizationalStructure h1 {
  font-size: 20px;
}
.organizationalStructure .firstUl {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px 0px;
}
.organizationalStructure ul {
  margin: 0px;
  padding: 0px 0px 10px 20px;
}
.organizationalStructure li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.organizationalStructure li:before {
  content: "-";
  /* Insert content that looks like bullets */
  padding-right: 8px;
  color: blue;
  /* Or a color you prefer */
}
.organizationalStructure .cursorPointer {
  cursor: pointer;
}
.organizationalStructure .hyperlink {
  text-decoration: underline;
}

#course-player {
  min-width: 946px;
  max-width: 1240px;
  margin: 6px auto 15px auto;
  border-spacing: 0px;
  padding: 0px;
  border: 0;
  border-collapse: separate;
}
#course-player tbody,
#course-player tr {
  border-spacing: 0px;
  padding: 0px;
  border: 0;
  margin: 0;
}
#course-player #course-player-window,
#course-player #course-right-panel {
  vertical-align: top;
  border-spacing: 0px;
  padding: 0px;
  margin: 0;
}
#course-player #course-player-window,
#course-player td.div_courseWindow {
  margin: 0;
  height: 600px;
  border: none;
  text-align: left;
  vertical-align: top;
  padding: 0px;
}
#course-player #course-player-window {
  max-width: 1550px;
  overflow: auto;
}
#course-player-window iframe {
  min-height: 600px;
  min-width: 800px;
  transition: 0.2s linear all;
}
#course-player-window2 {
  vertical-align: top;
}
#course-player-window2 iframe {
  min-height: 600px;
  width: 100%;
  transition: 0.2s linear all;
}
#course-right-panel div.button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-left: 6px;
  margin-bottom: 6px;
  float: right;
  box-sizing: border-box;
  padding: 0px 0px 0px 0px;
}
#course-right-panel div.button i {
  font-size: 17px;
  line-height: 40px;
  width: 100%;
}
#course-right-panel div.button:hover {
  cursor: pointer;
}
#course-right-panel {
  width: 46px;
  margin: 0px;
  overflow: hidden;
}
div#filesMenu a,
div#filesMenu a:visited,
div#courseMenuUl a,
div#courseMenuUl a:visited {
  text-decoration: none;
}
div#filesMenu a:hover,
div#courseMenuUl a:hover {
  text-decoration: underline;
}
.courseMenuLinks {
  min-width: 340px;
}
div#filesMenu .courseMenuLinks img,
div#courseMenuUl .courseMenuLinks img,
div#filesMenu .courseMenuLinks i,
div#courseMenuUl .courseMenuLinks i {
  float: left;
  margin: auto 5px auto 0px;
}
.player-crossroad-content {
  width: 50%;
  box-sizing: border-box;
  padding: 0px 12px 0px 0px;
  float: left;
  position: relative;
}
.player-crossroad-content .block {
  position: relative;
  margin: 0px 0px 12px 0px;
}
.player-crossroad-content .linked:hover {
  cursor: pointer;
}
.player-crossroad-content .vertical-line {
  height: calc(100% - 20px);
  width: 2px;
  position: absolute;
  left: 28px;
  top: 0px;
}
.player-crossroad-content .lessonDetail {
  width: 100%;
}
.player-crossroad-content .lessonDetail td {
  vertical-align: middle;
  text-align: left;
}
.player-crossroad-content .lessonDetail i {
  font-size: 22px;
}
.player-crossroad-content .lessonDetail .firstLine {
  font-size: 11px;
  color: #bbb;
}
.player-crossroad-content .lessonDetail .secondLine {
  font-size: 18px;
}
.player-crossroad-content .lessonDetail .thirdLine {
  font-size: 11px;
}
.player-crossroad-content2 {
  width: 50%;
  box-sizing: border-box;
  padding: 0px;
  float: right;
  text-align: left;
}
.player-crossroad-content2 .block {
  min-height: 200px;
  box-sizing: border-box;
}
.player-crossroad-content2 h1 {
  font-size: 20px;
  font-weight: normal;
  padding: 0px;
  margin: 6px 0px 20px 0px;
}
.player-crossroad-content2 .courseInfo {
  width: 100%;
}
.player-crossroad-content2 .courseInfo td {
  padding: 0px;
  border-collapse: collapse;
  border-spacing: 0px;
  vertical-align: top;
}
.player-crossroad-content2 .courseInfo .progress {
  height: 20px;
  background-color: #808080;
}
.player-crossroad-content2 .courseInfo .progress div {
  background-color: #22b14c;
  height: 20px;
  width: 0px;
  transition: all 1.2s ease-in-out;
}
.player-crossroad-content2 ul.end-lesson-menu {
  padding: 0px;
  margin: 0px;
  width: 160px;
  float: left;
}
.player-crossroad-content2 ul.end-lesson-menu li {
  list-style-type: none;
  line-height: 24px;
  background: #23b14d;
  width: 160px;
  float: left;
  display: inline-block;
  margin: 0px 0px 17px 0px;
  padding: 0px;
  box-sizing: border-box;
  border: none !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
}
.player-crossroad-content2 ul.end-lesson-menu li:hover {
  background: #1f9943;
}
.player-crossroad-content2 div.buttonNormal {
  line-height: 68px;
  text-decoration: none;
  display: block;
  height: 68px;
  width: 160px;
  text-align: center;
  color: #FFF !important;
}
.player-crossroad-content2 div.buttonNormal2 {
  line-height: 24px;
  text-decoration: none;
  display: block;
  width: 160px;
  text-align: center;
  color: #FFF !important;
  padding: 22px 0px 22px 0px;
}

body {
  margin: 0px;
  padding: 0px;
}
img {
  border: none;
}
#menu {
  width: 200px;
  float: left;
  overflow-y: scroll;
  overflow-x: hidden;
}
#menu ul {
  margin: 5px 0px 5px 10px;
  padding: 0px;
}
#menu ul li {
  color: #222;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  list-style-type: none;
}
#menu ul li a,
#menu ul li a:visited {
  color: #444;
  font-family: Arial;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
}
#menu ul li a:hover {
  text-decoration: underline;
}
iframe {
  width: 1000px;
  height: 600px;
  border: 0px;
  float: left;
}

#body-wrapper #right-col {
  width: 335px;
  float: right;
}
div#right-col h1,
div#right-col h2,
div#right-col h3,
div#right-col h4,
div#right-col h5,
div#right-col h6 {
  margin: 2px 0px 2px 0px;
  padding: 0px;
  height: auto;
  line-height: normal;
  font-weight: bold;
}
div#right-col table,
div#right-col table tr td,
div#right-col table tr th {
  border: 1px solid #000;
  border-collapse: collapse;
  padding: 2px 4px 2px 4px;
}
div#right-col-info-wrapper,
div#right-col-help-wrapper,
div#right-col-helpdesk-wrapper,
div#right-col-ecerts-wrapper {
  float: left;
  margin-top: 15px;
  width: 100%;
  box-sizing: border-box;
}
div#right-col p {
  margin-top: 0px;
}
div#right-panel-info,
div#right-panel-help,
div#right-panel-ecerts,
div#right-panel-helpdesk {
  text-align: left;
  margin-bottom: 0px;
  min-height: 50px;
  width: 100%;
  float: left;
  box-sizing: border-box;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  margin-top: 0px;
}
div#right-panel-info,
div#right-panel-help,
div#right-panel-helpdesk {
  padding: 20px 15px;
}
div#right-panel-ecerts {
  padding: 20px 0px;
}
div#right-panel-info,
div#right-panel-help {
  z-index: 0;
}
div#right-panel-info:before,
div#right-panel-help:before,
div#right-panel-helpdesk:before,
div#right-panel-ecerts:before {
  font-family: 'Font Awesome 5 Pro';
  left: -45px;
  position: absolute;
  bottom: -20px;
  font-size: 200px;
  color: #000;
  z-index: -1;
  display: block;
  color: rgba(0, 0, 0, 0.06);
  position: relative;
  width: 1px;
  height: 1px;
}
div#right-panel-ecerts:before {
  content: "\f1c1";
  font-weight: 300;
}
div#right-panel-help:before {
  content: "\f05a";
  font-weight: 300;
}
div#right-panel-info:before {
  font-weight: 300;
  content: "\f059";
}
div#right-panel-helpdesk:before {
  font-weight: 900;
  content: "\f040";
}
div#right-panel-help a,
div#right-panel-help a:visited,
div#right-panel-info a,
div#right-panel-info a:visited {
  text-decoration: underline;
}
div#right-panel-help a:hover,
div#right-panel-info a:hover {
  text-decoration: none;
}
div#right-panel-help img,
div#right-panel-info img {
  margin: 0px 0px 5px 0px;
  float: left;
}
div#right-panel-info img.icon,
div#right-panel-help img.icon {
  margin: 0px 0px 5px 0px;
}
div#right-panel-ecerts-content table,
div#right-panel-ecerts-content table td {
  border: 0px !important;
  border-spacing: 0px;
}
div#right-panel-ecerts-content table td:first-child {
  padding-left: 15px;
}
div#right-panel-ecerts-content table td:last-child {
  padding-right: 15px;
}

table.summaryTab {
  font-family: Arial;
  font-size: 10px;
  border: 1px solid #E2E2E2;
  border-collapse: collapse;
  background: #FFF;
  color: #000;
  float: left;
}
table.summaryTab th {
  font-weight: bold;
  min-width: 120px;
}
table.summaryTab td {
  white-space: nowrap;
}
table.summaryTab td.wrap {
  white-space: normal;
}
table.summaryTab td,
table.summaryTab th {
  border: 1px solid #E2E2E2;
  border-collapse: collapse;
  padding: 3px 5px 3px 5px;
  width: 120px;
  vertical-align: top;
  text-align: center;
}
table.summaryTab th.autoWidth,
table.summaryTab td.autoWidth {
  width: auto;
}
table.summaryTab th.uC {
  width: auto;
}
table.summaryTab tr.gray td,
table.summaryTab tr.gray th {
  background-color: #FAFAFA;
}
table.summaryTab tr td.white,
table.summaryTab tr th.white {
  background-color: #FFF;
}
table.summaryTab tr td.red,
table.summaryTab tr th.red {
  background-color: #fe3636;
}
table.summaryTab tr:hover td.red,
table.summaryTab tr:hover th.red {
  background-color: #EE2626;
}
table.summaryTab tr td.blue,
table.summaryTab tr th.blue {
  background-color: #ADF;
}
table.summaryTab tr:hover td.blue,
table.summaryTab tr:hover th.blue {
  background-color: #99CCEE;
}
table.summaryTab tr td.green,
table.summaryTab tr th.green {
  background-color: #7bf481;
}
table.summaryTab tr:hover td.green,
table.summaryTab tr:hover th.green {
  background-color: #6bE471;
}
table.summaryTab tr td.yellow,
table.summaryTab tr th.yellow {
  background-color: #fef236;
}
table.summaryTab tr:hover td.yellow,
table.summaryTab tr:hover th.yellow {
  background-color: #EeE226;
}
table.summaryTab tr:hover td {
  background-color: #F0F0F0;
}
div#head {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
table.summaryTab tr td.leftA,
table.summaryTab tr th.leftA,
.leftA {
  text-align: left;
}
div#name {
  width: 50%;
  margin: 0px;
  padding: 0px;
  float: left;
  text-align: left;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
}
div#date {
  width: 49%;
  margin: 0px 1% 0px 0px;
  padding: 0px;
  float: right;
  text-align: right;
  font-family: Arial;
  font-size: 14px;
}
div#legend {
  font-family: Arial;
  font-size: 11px;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
div#legend h2 {
  font-family: Arial;
  font-size: 14px;
}
div#legend span {
  float: left;
  margin: 2px;
  line-height: 16px;
}
.orangeBox,
.yellowBox,
.redBox,
.blueBox,
.greenBox,
.invisibleBox {
  min-width: 40px;
  width: 100%;
  box-sizing: border-box;
  height: 18px;
  color: #000;
  padding: 1px 5px 1px 5px;
  margin: 0px !important;
}
.orangeBox {
  background-color: #ffa22b;
}
.yellowBox {
  background-color: #fef236;
}
.redBox {
  background-color: #fa5c5c;
}
.blueBox {
  background-color: #AADDFF;
}
.greenBox {
  background-color: #7bf481;
}
.testResultBlock {
  overflow: auto;
}
.testResultTry,
#testResults {
  width: 975px;
  margin: 5px 0px;
  display: block;
  float: left;
  position: relative;
  padding: 0px 15px;
}
#testResults {
  padding-top: 10px;
  border-top: 1px solid #555;
}
#popupWindow {
  font-size: 14px;
  font-family: Arial;
}
.test-img {
  width: 280px;
  font-size: 10px;
  color: #444;
  margin: 0px 5px 0px 0px;
}
.test-otazka .answers {
  vertical-align: top;
}
.test-otazka {
  width: 665px;
  float: left;
}
.spatnaOdpoved {
  /*background: #ffbbbb; */
  color: #ee1b1b;
}
.spravnaOdpovedZel {
  color: #019e01;
}
.spravnaOdpoved {
  color: #019e01;
}
.testPlayer_answerBlock {
  max-width: 96%;
}
.testResultBlock p {
  float: left;
  text-align: justify;
  width: 659px;
  padding: 3px 3px 3px 3px;
  margin: 0px;
}
.testResultBlock ul {
  float: left;
  text-align: left;
  width: 665px;
  margin: 0px 0px 0px 0px;
  padding: 0px;
}
.testResultBlock ul li {
  float: left;
  list-style-type: none;
  width: 665px;
  text-align: left;
  margin: 0px;
  padding: 0px;
  line-height: 21px;
}
.testResultBlock ul li input[type=checkbox] {
  margin-right: 10px;
}
.test-separator {
  float: left;
  width: 960px;
  height: 1px;
  border-bottom: 1px solid #aaa;
  margin: 11px 0px 11px 0px;
}
/* tabulka s legendou */
table#legend {
  float: none;
  margin-bottom: 20px;
}
table#legend td,
table#legend th {
  text-align: left;
  font-family: Arial;
  font-size: 12px;
}
.ui-dialog-header-right-buttons {
  float: right;
  padding-right: 10px;
}
.fixed-dialog {
  position: fixed !important;
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
}
.report-mark-bg.overflowVisible {
  overflow: hidden !important;
}
.report-mark-bg .ui-dialog-title {
  margin: 0px !important;
}
.report-mark-bg:before {
  font-family: 'Font Awesome 5 Pro';
  left: -45px;
  position: absolute;
  top: 0px;
  font-size: 200px;
  color: #000;
  z-index: -1;
  display: block;
  font-weight: 300;
  content: "\f0ce";
  color: rgba(0, 0, 0, 0.02);
}
.jqueryui .ui-dialog {
  transition: 0.1s linear top !important;
}
/* title bar v jquery ui bez title */
.jqueryui .ui-dialog .ui-dialog-titlebar-no-title {
  padding: 0.7em 2px 0px 13px;
  position: relative;
}
.jqueryui .ui-dialog .ui-dialog-content-no-title {
  text-align: left;
  position: relative;
  border: 0;
  padding: 10px 15px 7px 15px;
  background: none;
  overflow: auto;
}
.jqueryui .ui-widget-header .ui-state-default {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.background_caption {
  position: absolute;
  opacity: 0.05;
  font-size: 120px;
  left: -30px;
  top: -50px;
  right: 0px;
  white-space: nowrap;
  overflow: hidden;
  z-index: -1;
}
.dialogBlock {
  width: 100%;
  box-sizing: border-box;
  padding: 0px 15px 5px 15px;
  margin: 0px 0px 0px 0px;
  height: 100%;
}
.overflowyAuto {
  overflow-y: auto !important;
}

#submenu-wrapper {
  height: 60px;
  box-sizing: border-box;
  width: 100%;
  float: left;
}
#submenu-wrapper #submenu-panel {
  width: 100%;
  float: left;
  line-height: 60px;
  height: 60px;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px 15px 0px 15px;
}
#submenu-wrapper .submenu-left-menu {
  margin: 0px;
  padding: 0px;
  float: left;
}
#submenu-wrapper .submenu-left-menu li {
  float: left;
  list-style-type: none;
  height: 46px;
  line-height: 46px;
  padding: 0px 15px 0px 15px;
  margin: 7px 5px 7px 0px;
  border-radius: 4px;
}

/* Support container */
.support-table {
  border: none;
  padding-left: 90px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.support-table th {
  font-weight: normal;
  text-align: left;
}
.support-table:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f4b0";
  font-size: 90px;
  position: absolute;
  left: -10px;
  top: -23px;
  font-weight: 300;
  transform: scaleX(-1);
}

/* The switch - the box around the slider */
.toggleSwitch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  outline: none;
}
/* Hide default HTML checkbox */
.toggleSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.toggleSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
  outline: none;
}
/* Focused checkbox */
.toggleSwitch:focus,
.toggleSlider:focus {
  outline: none;
}
.toggleSlider:before {
  position: absolute;
  content: "";
  height: 28px;
  width: 28px;
  left: 0px;
  bottom: 0px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}
/*input:focus + .toggleSlider {
  box-shadow: 0 0 1px #2196F3;
}*/
input:checked + .toggleSlider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Tooltip anchor — wraps the icon/control that triggers the global tooltip */
.tooltip-block {
  display: inline-block;
  cursor: pointer;
  position: relative;
}
/* Global singleton tooltip rendered into #tooltip-wrapper.
   Position is fixed so it escapes overflow:hidden parents (modals, GridStack,
   scroll containers) and computed in viewport coordinates by TooltipModel. */
.tooltip-content {
  z-index: 10001 !important;
  text-align: center;
  padding: 7px 15px;
  border-radius: 6px;
  line-height: 20px;
  box-sizing: border-box;
  display: block;
  position: fixed;
  min-width: 100px;
  max-width: 400px;
  pointer-events: auto;
}
/* Inline validation tooltip rendered next to form inputs — separate system,
   intentionally NOT migrated to the global wrapper (it is bound 1:1 to the
   input it validates, see uniInput.hbs). */
.errorTooltip {
  z-index: 100 !important;
  text-align: center;
  padding: 7px 15px 7px 25px !important;
  border-radius: 4px;
  line-height: 20px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  min-width: 100px;
  max-width: 400px;
  margin: 10px 0;
}
/* Šipka tooltipu */
.errorTooltip::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 10px;
  border-width: 6px;
  border-style: solid;
}
.errorTooltip::after {
  content: "\f071";
  font-weight: 700;
  font-family: "Font Awesome 5 Pro";
  left: 8px;
  position: absolute;
  top: 7px;
  font-size: 12px;
}

div.dashboard {
  box-sizing: content-box;
  max-width: 1615px;
  width: 100%;
  margin: 0px auto 0px auto;
}
div.dashboard-outerblock {
  position: relative;
  float: left;
  box-sizing: border-box;
  overflow: hidden;
}
div.dashboard-block-logo {
  position: relative;
  height: 100%;
  width: 100%;
  float: left;
}
div.dashboard-blockbg {
  box-sizing: border-box;
  position: relative;
  height: 100%;
  width: 100%;
  float: left;
  overflow: hidden;
}
div.dashboard-block {
  box-sizing: border-box;
  text-align: left;
  padding: 15px;
  position: relative;
  height: calc(100% - 42px);
  width: 100%;
  float: left;
  z-index: 0;
}
div.dashboard-news:before,
div.dashboard-calendar:before,
div.dashboard-manual:before,
div.dashboard-courses:before,
div.dashboard-stats:before,
div.dashboard-help:before,
div.dashboard-ecerts:before,
div.dashboard-invitation:before {
  font-family: 'Font Awesome 5 Pro';
  left: -20px;
  position: absolute;
  bottom: -20px;
  font-size: 200px;
  color: #000;
  z-index: -1;
  display: block;
}
div.dashboard-invitation:before {
  content: "\f0e0";
  font-weight: 300;
}
div.dashboard-ecerts:before {
  content: "\f044";
  font-weight: 300;
}
div.dashboard-news:before {
  content: "\f1ea";
  font-weight: 300;
}
div.dashboard-calendar:before {
  content: "\f073";
  font-weight: 300;
}
div.dashboard-calendar h2 {
  font-weight: bold;
}
div.dashboard-manual2:before {
  content: "\f558";
  font-weight: 300;
  font-size: 110px;
  bottom: 5px;
  left: 5px;
}
div.dashboard-courses:before {
  content: "\f390";
  font-weight: 300;
}
div.dashboard-stats:before {
  content: "\f201";
  font-weight: 300;
}
div.dashboard-help:before {
  content: "\f128";
  font-weight: 300;
}
div.dashboard-courses table,
div.dashboard-courses table th,
div.dashboard-courses table td,
div.dashboard-ecerts table,
div.dashboard-ecerts table th,
div.dashboard-ecerts table td {
  border-collapse: collapse;
  line-height: 30px;
}
div.dashboard-course-caption {
  text-align: left;
  line-height: 42px;
  border-bottom: 1px solid #ddd;
}
table.dashboardTable {
  width: 100%;
  margin: 0px;
  padding: 0px;
  border-collapse: separate;
  border-spacing: 0px;
}
table.dashboardTable > tbody > tr > td {
  vertical-align: top;
  padding: 0px;
  border-left: 10px solid transparent;
  border-top: 10px solid transparent;
}
table.dashboardTable > tbody > tr > td.no-left-border {
  border-left: 0;
}
div.dashboard-blockH1 {
  height: 145px;
}
div.dashboard-blockH2 {
  height: 300px;
}
/* GridStack 12 against the v10 stylesheet — without these the inter-tile
   margin doesn't apply (v12 emits CSS vars v10 doesn't consume) and h=1
   widgets render at zero height. */
#dashboard-grid .grid-stack-item {
  height: var(--gs-cell-height);
}
#dashboard-grid .grid-stack-item > .grid-stack-item-content {
  top: var(--gs-item-margin-top, 0);
  right: var(--gs-item-margin-right, 0);
  bottom: var(--gs-item-margin-bottom, 0);
  left: var(--gs-item-margin-left, 0);
  width: auto;
  height: auto;
  display: block;
  overflow: hidden;
}
/* Widget height policy:
    - `dashboard-widget-fixed` (config has `fixed_height = 1`, e.g. calendar):
      content fills the tile (`grid-stack-item-content` keeps top+bottom anchor
      = pixel-bound height); the chain of `height:100%` from the wrapper down
      reaches the inner `dashboard-scroll-area` so overflow scrolls in place.
    - `dashboard-widget-auto` (default — courses, invitedcourses, news, …):
      drop the `bottom` anchor on `grid-stack-item-content` so it stretches
      to its content's natural height instead of being pinned to the tile's
      `gs-h × cellHeight`. The widget renders all its rows; if that exceeds
      the tile slot the content extends downward (matches the legacy "no
      `blockH<N>`" behaviour and the user's expectation that auto widgets
      grow to content). The internal `dashboard-block`'s `calc(100% - 42px)`
      gets a sensible parent height because nothing else above it is bounded. */
#dashboard-grid div[id^="dashboard-widget-"].dashboard-widget-fixed {
  height: 100%;
}
#dashboard-grid div[id^="dashboard-widget-"].dashboard-widget-fixed > div.dashboard-outerblock {
  height: 100%;
}
#dashboard-grid div[id^="dashboard-widget-"].dashboard-widget-fixed .dashboard-scroll-area {
  overflow-y: auto;
  height: 100%;
}
/* Auto-height widgets — release the bottom anchor on the GridStack tile content
   so the widget's natural height drives the layout. */
#dashboard-grid .grid-stack-item:has(.dashboard-widget-auto) > .grid-stack-item-content {
  bottom: auto;
  overflow: visible;
}
#dashboard-grid .dashboard-widget-auto .dashboard-block {
  height: auto;
}
