/*
Eduexe Browser - v6.0.7 - 2023-04-19
Copyright 2023 Eduserwis Spj
All rights reserved
*/

/*
Eduexe Browser core styles
*/

body {
  overflow: hidden;
  font-family: Ubuntu, Arial, sans-serif;
  height: 100vh;
  font-size: 11pt;
  color: black;
  background-color: white;
}

#page {
  padding-left: 0;
  height: 100%;
  transition: all 0.5s ease;
}

#page.toggled {
  padding-left: 275px;
}

@media screen and (max-width: 575px) {
  #page.toggled {
    padding-left: 0px;
  }
}

.eduexe-page-container-full {
  height: 100vh !important
}

#eduexe-page-container {
  height: calc(100vh - 50px);
  max-width: 100vw;
}

#sidebar-wrapper {
  position: fixed;
  left: 275px;
  bottom: 0;
  top: 50px;
  width: 0;
  margin-left: -275px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #0075b8;
  transition: all 0.5s ease;
}

#page.toggled #sidebar-wrapper {
  width: 275px;
}

#page-content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#page-content-frame {
  width: 100%;
  display: block;
  padding-left: 0px;
  padding-right: 0px;
  border: none;
  height: 100%;
}

#page-content-topbar {
  padding: 0 15px;
  margin-bottom: 15px;
}

#eduexe-course-abstract {
  padding: 10px;
  color: #FFFFFF;
  font-size: 10pt;
  border-bottom: 2px solid white;
  display: none;
}

#eduexe-course-abstract-control {
  font-weight: bold;
  cursor: pointer;
}

#eduexe-course-abstract-text {
  display: none;
}

#eduexe-course-abstract-icon {
  display: none;
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
}

.sidebar-nav {
  width: 275px;
  padding: 0;
  list-style: none;
}

.sidebar-nav ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
}

.sidebar-nav li {
  line-height: 40px;
  cursor: pointer;
}

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 10pt;
  line-height: 2em;
  padding: 10px 20px 10px 10px;
  overflow: hidden;
  max-height: calc(4em + 16px);
}

.sidebar-nav .visible-sidebar-element {
  transition: opacity 0.3s linear, height 0.3s linear;
  opacity: 1;
  height: auto;
  box-sizing: border-box;
}

.sidebar-nav .hidden-sidebar-element {
  opacity: 0;
  padding: 0;
  height: 0;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: none;
}

.sidemenu-clickable-item {
  background-color: #0075b8;
  border-bottom: 2px solid white;
}

.sidemenu-clickable-item:hover:not(.selected-sco) {
  background-color: #0091e6;
}

.sidemenu-item-indent-1 {
  margin-left: 15px;
}

.sidemenu-item-indent-2 {
  margin-left: 30px;
}

.selected-sco {
  color: #00ebeb;
}

.sidemenu-opened-folder>a {
  padding: 16px 10px 16px 10px !important;
}

#eduexe-header {
  height: 50px;
  background-color: #ffffff;
  color: white;
  display: flex;
}

#eduexe-header-menu {
  float: left;
  height: 50px;
  width: 170px;
  display: flex;
  justify-content: flex-start;
}

#eduexe-header-menu img {
  margin: 5px 3px;
  height: 32px;
  cursor: pointer;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

#eduexe-header-title {
  height: 50px;
  width: calc(100% - 340px);
  text-align: center;
  vertical-align: middle;
  line-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333333;
  font-size: 14pt;
  padding: 0px 15px;
  margin: 0;
}

#eduexe-header-nav-container {
  height: 50px;
  padding-left: 0px;
  width: 170px;
  display: flex;
  justify-content: flex-end;
}

#eduexe-header-nav-container img {
  margin: 5px 3px;
  height: 32px;
  cursor: pointer;
  display: block;
}

#eduexe-header-menu #back-button {
  display: none;
}

.eduexe-header-side-space {
  width: 12px;
  height: 50px;
}

#show-topbars-fore {
  display: none;
  position: fixed;
  left: 3px;
  top: 3px;
  height: 32px;
  width: auto;
}

#wcag-toggle {
  display: none;
}

/* Styles for high-resolution mobile devices */
@media screen and (min-resolution: 1.5dppx) {
  #eduexe-page-container {
    height: calc(100vh - 65px);
  }

  #eduexe-header {
    height: 65px;
  }

  #eduexe-header-menu {
    width: 190px;
    height: 65px;
  }

  #eduexe-header-menu img {
    margin-left: 6px;
    height: 48px;
  }

  #eduexe-header-title {
    width: calc(100% - 380px);
    height: 65px;
    padding: 7px 15px;
  }

  #eduexe-header-nav-container {
    width: 190px;
    height: 65px;
  }

  #eduexe-header-nav-container>img {
    height: 48px;
    margin: 9px 6px 0px 1px;
  }

  #sidebar-wrapper {
    top: 65px;
  }

  .eduexe-header-side-space {
    height: 65px;
  }

  #show-topbars-fore {
    height: 48px;
  }
}

/* Small mobile devices */
@media screen and (max-width: 410px) {
  #eduexe-header-title {
    width: 0px;
    display: none;
  }

  #eduexe-header-menu {
    width: 50%;
  }

  #eduexe-header-nav-container {
    width: 50%;
  }
}

.eduexe-loader {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 100;
}

.eduexe-loader .eduexe-loader-content {
  display: table-cell;
  width: 200px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
}

.eduexe-loader .eduexe-loader-content .eduexe-loader-logo img {
  width: 200px;
  margin-bottom: 40px;
}

.eduexe-loader .eduexe-loader-content .eduexe-loader-animation {
  margin: 0 auto;
  animation: eduexe-loader-animation-def .7s linear infinite;
  border: 3px solid white;
  border-top: 3px solid #fb841f;
  border-radius: 50%;
  height: 75px;
  width: 75px;
}

#eduexe-header-test-timer {
  position: fixed;
  color: black;
  background: rgba(255, 255, 255, 0.7);
  right: 20px;
  top: 70px;
  padding: 6px 10px 6px 10px;
  z-index: 100;
  font-size: 11pt;
  display: none;
  text-align: right;
}

.topbar-sco-title-container {
  max-width: 50%;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-slide-number-container {
  max-width: 50%;
  padding-left: 10px;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-audioguide-number-container {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  float: right;
}

.topbar-audioguide-number-container img {
  height: 16px;
  margin-right: 5px;
  position: relative;
  top: -1px;
}


/* Loader animations */
@-webkit-keyframes eduexe-loader-animation-def {
  to {
    border-top-color: #fb841f;
    transform: rotate(360deg);
  }
}

@keyframes eduexe-loader-animation-def {
  to {
    border-top-color: #fb841f;
    transform: rotate(360deg);
  }
}

.eduexe-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  background-color: rgb(48, 48, 48);
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}

.eduexe-modal-window {
  width: 650px;
  height: 650px;
  margin: auto;
  background-color: white;
  color: black;
  position: relative;
}

.eduexe-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px;
  padding-top: 12px;
  width: 100%;
  height: 50px;
  background-color: #33b1ea;
  font-size: 14pt;
  z-index: 102;
}

.eduexe-modal-close {
  position: absolute;
  top: 4px;
  right: 15px;
  cursor: pointer;
  font-size: 20pt;
  font-weight: bold;
  z-index: 103;
}

.eduexe-modal-close:hover,
.eduexe-modal-close:active {
  color: gray;
}

.eduexe-modal-content {
  position: absolute;
  top: 50px;
  left: 0px;
  height: 600px;
  width: 650px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 101;
}

#course-download-modal-container {
  padding: 25px 25px;
  text-align: center;
  height: 400px;
  overflow-y: hidden;
}

#course-download-modal .eduexe-modal-window {
  height: 450px;
}

#course-download-modal-container p {
  margin-bottom: 20px;
}

#course-download-modal-access-code {
  font-size: 14pt;
}

#course-download-modal-session-start, #course-download-modal-session-end-info {
  color: gray;
}

.download-badges {
  height: 55px;
  margin: 25px 10px;
  display: inline-block;
}

#access-code-copy-icon {
  height: 24px;
  display: inline-block;
  margin: 0px 10px;
  cursor: pointer;
}

#connection-warning-modal-container,
#connection-lost-modal-container {
  padding: 25px 25px;
  text-align: center;
  height: 280px;
  overflow-y: hidden;
}

#connection-warning-modal .eduexe-modal-window,
#connection-lost-modal .eduexe-modal-window  {
  height: 330px;
}

#connection-warning-modal-container p,
#connection-lost-modal-container p {
  margin-bottom: 20px;
}

#connection-warning-modal-container img,
#connection-lost-modal-container img {
  height: 64px;
  display: inline-block;
  margin-bottom: 20px;
}

#inactivity-warning-modal-container {
  padding: 25px 25px;
  text-align: center;
  height: 260px;
  overflow-y: hidden;
}

#inactivity-warning-modal .eduexe-modal-window  {
  height: 310px;
}

#inactivity-warning-modal-container p {
  margin-bottom: 20px;
}

#inactivity-warning-modal-container img {
  height: 48px;
  display: inline-block;
  margin-bottom: 20px;
}

#connection-warning-modal-counter,
#inactivity-warning-modal-counter {
  font-weight: bold;
}

@media screen and (max-width: 649px) {
  .eduexe-modal {
    padding: 0 !important;
  }

  .eduexe-modal-window {
    width: 100% !important;
    height: 100% !important;
  }

  .eduexe-modal-content {    
    width: 100% !important;
	height: calc(100% - 50px) !important;
  }
}

#eduexe-header-nav-container img:focus {
  outline: 0;
}

#eduexe-header-menu img:focus {
  outline: 0;
}

#eduexe-header-title:focus {
  outline: 0;
}

.sidemenu-item a:focus {
  outline: 0;
}