/* (A) MATERIAL ICONS */
.material-icons {
  font-size: 28px;
  color: #fff;
}

/* (B) WRAPPER */
#video-wrap {
  display: flex;
  /* flex-wrap: wrap;
  align-items: center; */
  border: 1px solid #41e1e1d6;
  border-radius: 7px;
}

/* (C) VIDEO */
#vVid {
  width: 100%;
}

.video-playlist {
  background-color: #282323;
  border-radius: 6px 0 0 6px;
}

.video-list-wrapper {
  border: 1px solid #b248485e;
  height: 78%;
  width: 96%;
  margin-left: 5px;
  margin-right: -2px;
  padding-left: 3px;
  margin-top: 5px;
  border-radius: 0 0 5px 5px;
}

.video-cron-wrapper {
  border: 1px solid #b248485e;
  height: 19%;
  width: 96%;
  margin-left: 5px;
  margin-right: -2px;
  padding-left: 3px;
  margin-top: 5px;
  border-radius: 5px 5px 0 0;
}

.video-player {
  padding: 0;
  background-color: #100e0e;
  border-radius: 0 6px 6px 0;
}

.video-container {
  padding: 0;
  border-radius: 0 6px 6px 0;
  display: grid;
  /* grid-template-columns: 250px 1fr;
  grid-template-rows: 150px 1fr; */
}

#video-player-01 {
  grid-area: 1 / 1 / 1 / 1;
  border-radius: 0 6px 6px 0;
}

#video-player-02 {
  grid-area: 1 / 1 / 2 / 2;
  border-radius: 0 6px 6px 0;
}

#loading-video {
  grid-area: 1 / 1 / 1 / 1;
  border-radius: 0 6px 6px 0;
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

video.onTop {
  z-index: 8888;
}

video.hidden {
  opacity: 0;
}

/* (D) PLAY/PAUSE BUTTON */
.btn.player-control {
  padding: 10px;
  margin: 10px 0;
  width: 38px;
  height: 38px;
  background-color: #3babb06b;
  border: 1px solid #c23f4367 !important;
  color: #dfdddd;
}

/* (E) TIME */
#vCron {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 65px;
  font-weight: bold;
  color: #f5f1f1f7;
  margin: 0 0px;
  font-family: "Oswald";
}

#vCron #footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96%;
  line-height: 53px;
  text-align: center;
  font-size: 21px;
  color: #f5f1f1f7;
  margin: -50px 5px -46px 5px;
  text-transform: uppercase;
  background: #d95252c7;
  font-weight: normal;
  border-radius: 0 0 5px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#video-list #header {
  position: absolute;
  top: 0;
  left: 0;
  width: 96%;
  line-height: 53px;
  text-align: center;
  font-size: 21px;
  color: #f5f1f1f7;
  margin: 0;
  text-transform: uppercase;
  background: #d95252c7;
  font-weight: normal;
  font-family: "Oswald";
  margin: 5px;
  border-radius: 5px 5px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#video-list-items {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 21px;
  color: #f5f1f1f7;
  text-transform: uppercase;
  font-weight: normal;
  font-family: "Oswald";
}

/* (F1) RANGE SLIDERS */
/* (F1) HIDE DEFAULT */

input[type=range] {
  -webkit-appearance: none; /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 10px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 1; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 18px; /* Set a specific slider handle width */
  height: 18px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

input[type=range]::-moz-range-thumb {
  width: 18px; /* Set a specific slider handle width */
  height: 18px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

/* #video-wrap input[type="range"] {
  box-sizing: border-box;
  appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background: 0;
} */
/* #video-wrap input[type="range"]::-webkit-slider-thumb {
  appearance: none;
} */

/* (F2) CUSTOM SLIDER TRACK */
#video-wrap input[type=range]::-webkit-slider-runnable-track {
  background: #626262;
  border-radius: 10px;
}
#video-wrap input[type=range]::-moz-range-track {
  background: #626262;
  border-radius: 10px;
}

/* (F3) CUSTOM SLIDER BUTTON */
#video-wrap input[type=range]::-webkit-slider-thumb {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 0;
  background: #fff;
}
#video-wrap input[type=range]::-moz-range-thumb {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 0;
  background: #fff;
}

/* (G) SEEK BAR */

#vSeekWrap {
  width: 92%;
  display: inline-block;
  margin-bottom: 2px;
}
#vSeek {
  width: 100%;
  height: 0px;
}

/* (H) VOLUME */
#vVolume {
  width: 100px;
}
#vVolIco {
  margin: 0 10px;
}

/* (I) PLAYLIST */
#video-list {
  color: #f9f9f9f7;
  padding: 0;
}
.vRow {
  cursor: pointer;
  padding: 2px 8px;
  text-align: left;
  font-family: 'Oswald';
  font-size: 16px;
  text-transform: initial;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vRow.now {
  color: #41e1e1d6;
}
.vRow.vBlock {
  padding: 2px 30px;
  font-size: 13px;
}

#exercise-info {
  position: absolute;
  background: #11141491;
  width: 100%;
  height: 95px;
  bottom: 0px;
  color: #41e1e1d6;
  font-size: 26px;
  text-transform: uppercase;
  font-family: 'Oswald';
  font-weight: 400;
  z-index: 9998;
  padding-left: 16px;
  line-height: 155px;
}

#next-exercise-message {
  position: absolute;
  background: #11141491;
  padding-left: 20px;
  padding-right: 10px;
  line-height: 48px;
  bottom: 95px;
  left: 0px;
  color: #e5efefd6;
  font-size: 22px;
  text-transform: uppercase;
  font-family: 'Oswald';
  font-weight: 400;
  z-index: 9998;
  /* padding-right: 60px; */
  opacity: 0;
}

#student-values {
  position: absolute;
  /* background: #11141491; */
  width: 100%;
  line-height: 101px;
  bottom: 14px;
  color: #41e1e1d6;
  font-size: 54px;
  text-transform: uppercase;
  font-family: 'Oswald';
  font-weight: 600;
  z-index: 9998;
  padding-left: 15px;
  text-align: left;
}

#exercise-timer {
  position: absolute;
  width: 90px;
  line-height: 90px;
  top: 0px;
  left: 0px;
  color: white;
  font-size: 52px;
  font-weight: bold;
  border-radius: 45px;
  text-align: center;
  margin: 5px;
  z-index: 9998;
  box-shadow: 4px 4px 6px 1px rgb(0 0 0 / 32%);
}

#exercise-timer.turquoise {
  background: #41e1e1d6;
}

#exercise-timer.red {
  background: #e15441d6;
}

video.grayscale {
  filter: grayscale(1);
  -webkit-filter: grayscale(1); 
  filter: grayscale(100%); 
}

.timer-wrapper {
	position: absolute;
	width: 400px;
	height: 400px;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: row;
}

.timer-container {
	flex: 1;
	padding: 0 20px;
}

.ml4 {
  position: absolute;
  font-weight: 900;
  font-size: 4.5em;
  z-index: 9999;
  /* color: #48cece; */
  -webkit-text-stroke: 0.01em #000000af;
  text-align: center;
  width: 100%;
  top: 50%;
  bottom: 50%;
  opacity: 0;
}
.ml4 .letters {
  position: absolute;
  margin: auto;
  left: 0;
  top: -0.7em;
  right: 0;
  opacity: 0; 
  text-align: center;
  width: 100%;
}
.ml4.go {
  color: #48cece;
}
.ml4.stop {
  color: #d95252c7;
}

@media (min-width: 1600px) {
  .vRow {
    font-size: 20px;
}
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .video-list-wrapper {
    height: 74%;
  }

  .video-cron-wrapper {
    height: 22%;
  }

}

@media (min-width: 1200px) and (max-width: 1400px) {
  .video-list-wrapper {
    height: 71%;
  }

  .video-cron-wrapper {
    height: 25%;
  }

}

@media (min-width: 992px) and (max-width: 1200px) {
  #vCron {
    font-size: 45px;
  }
  .video-list-wrapper {
    height: 74%;
  }

  .video-cron-wrapper {
    height: 22%;
  }

  #video-list #header {
    font-size: 16px;
  }
  #vCron #footer {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  #vCron {
    font-size: 25px;
  }

  .video-list-wrapper {
    height: 75%;
  }

  .video-cron-wrapper {
    height: 21%;
  }

  #video-list #header {
    font-size: 16px;
  }

  #vCron #footer {
    font-size: 16px;
  }
}

.player-controls {
  padding-right: 60px;
  background: #0d0f0f;
}

.player-seek {
  height: 0px;
  margin-top: -19px;
}

/* Zoom custom styles  */
.zoom-container {
  padding: 45px 6px 5px 5px;
  text-align: center;
  background: #242424;
  border: 1px solid #4ed7dee1;
  position: absolute;
  right: 15px;
  top: 0;
  z-index: 10060;
  width: 255px;
  height: 100%;
  opacity: 1;
  border-radius: 0 5px 5px 0;
}
#zoom-container-wrapper {
  /* display: inline !important; */
}

.zmwebsdk-makeStyles-videoCustomize-8 {
  position: absolute !important;
  top: 6%;
  z-index: -1;
}

li[class*='zmwebsdk-makeStyles-actived-'] {
  outline: 2px solid #3babb0 !important;
}

/* .zmwebsdk-MuiButton-disableElevation {
  display: none !important;
} */

/* admit bar */
div#transition-popper{
  z-index: 10999 !important;
  /* top: -46px !important;
  left: 256px !important; */
}

div#transition-popper > div > div{
  background-color: #d95252c7 !important;
}

div:has(> div.zmwebsdk-makeStyles-paper-62) {
    z-index: 10000 !important;
}

.zmwebsdk-makeStyles-root-196 {
  background-color: #109fe099 !important;
}

/* participants popup */
.zoomtg-participants {
  z-index: 10000;
  position: absolute;
}

.zmwebsdk-MuiButton-containedSizeSmall {
  padding: 2px 12px;
  font-size: 0.8125rem;
  background-color: #fbf6f670;
}

.zmwebsdk-makeStyles-participantsCustomize-9 {
  z-index: 10000 !important;
  position: absolute !important;
}

.zmwebsdk-makeStyles-videoCustomize-8 {
  height: 94%;
}

/* .zmwebsdk-makeStyles-singleView-7 {
  height: 98%;
} */

.MuiPopper-root.css-0 {
  z-index: 10100 !important;
}

.css-1vu2yqv {
  position: absolute !important;
  right: 0 !important;
}

.MuiBox-root.css-8t7b42 {
  margin-top: 50px !important;
}

/* End of zoom custom styles */

#zoom-container-wrapper {
  height: 100%;
}

#zoom-buttons-container {
  height: 100%;
}

#start-meeting {
  height: 33px;
  top: 46%;
  left: 50%;
  -ms-transform: translate(-65%, -100%);
  transform: translate(-100%, -100%);
}

#zoom-loading {
  /* height: 33px;
  top: 46%; */
  -ms-transform: translate(-65%, -100%);
  transform: translate(-50%, 0);
  position: relative;
  width: 100%;
  color: white;
  display: inline;
}
#zoom-loading img {
  width: 100%;
}

.student-values {
  font-size: 16px !important;
  line-height: 20px;
  letter-spacing: -1.2px;
  font-weight: 600;
  color: white;
}

.student-values .left {
  text-align: right;
  display: inline-block;
  width: 50%;
}

.student-values .right {
  text-align: left;
  display: inline-block;
  width: 50%;
}

.switch-lateral-bar {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 3px;
  font-weight: 600;
}

.student-data {
  float: right;
  margin: 5px;
}

#student_data_modal .stage-label {
  text-align: right;
}

#student_data_stages_modal .stage-label {
  text-align: right;
}

#student_data_modal .form-group {
  margin-bottom: 5px;
}

#student_data_modal .form-group.black{
  text-align: right !important;
}

#student_data_stages_modal .form-group {
  margin-bottom: 5px;
}

#student_data_modal .form-actions {
  margin-top: 30px;
}

#student_data_stages_modal .form-actions {
  margin-top: 30px;
}

#student_data_modal .stage-label label {
  margin-top: 7px;
  font-size: 14px;
}

#student_data_stages_modal .stage-label label {
  margin-top: 7px;
  font-size: 14px;
}

#student_data_modal .student-data-column label {
  text-align: center !important;
}

#student_data_stages_modal .student-data-column label {
  text-align: center !important;
}

#student_data_modal .close-student-data-modal {
  right: 0;
  position: absolute;
  margin-right: 10px;
  margin-top: -7px;
}

#student_data_stages_modal .close-student-data-stages-modal {
  right: 0;
  position: absolute;
  margin-right: 10px;
  margin-top: -7px;
}

#student_data_stages_modal .stage-label div.turquoise label {
  color: #2ca3a3d6;
  font-weight: 600;
}

#student_data_stages_modal .stage-label div.black label,
#student_data_modal div.black label {
  color: #1e1f1fd6;
  font-weight: normal;
}

#student_data_modal .student-data-subtitle {
  color: #ffffff;
    font-weight: 600;
    font-size: 20px;
}
.student-data-content .row {
     width: 100%;
    margin-left: 0;
    padding-top: 2px;
    padding-bottom: 0px;
    border-radius: 5px;
    margin-right: 0;
}
.student-data-content .row.selected {
  background: #75f3c93b;
}
#all_student_data_stages_modal .modal-dialog {
    top: 110px;
    left: 5%;
}
.all-student-data-content {
  min-height: 110px;
}
.blockUI.blockMsg.blockElement {
  width: 100% !important;
}
span.past-class {
  font-size: 16px !important;
  line-height: 30px;
  font-weight: bold;
  letter-spacing: -1.2px;
  background: #efe917ab;
  padding: 9px 14px 6px 14px;
  border-radius: 7px;
  margin: 10px 0px 10px 10px;
} 

i.stage-arrow {
  line-height: 30px;
}
i.stage-arrow.turquoise {
  color: #3babb0;
}

@media (min-width: 768px) {
  #student_data_modal .modal-dialog {
      width: 660px;
      margin: 30px auto;
  }

  #student_data_stages_modal .modal-dialog {
    width: 500px;
    margin: 30px auto;
  }
}

#student_data_modal .weight-repetition {
  padding: 0px 4px 0px 4px;
}

.audio-player {
  position: relative;
  /* width: 39px;
  height: 39px;
  background-color: #ff572200;
  border: 1px solid #ba6160;
  border-radius: 5px;
  padding: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: width 0.3sease;
  display: inline-block;
  /* bottom: -1px; */
}

.audio-player:hover {
  width: 140px; /* Ancho del control de audio al pasar el mouse */
}

.controls {
  display: flex;
  align-items: center;
}

#play-pause {
  background-color: #ba6160;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.volume-control {
  display: flex;
  align-items: center;
  overflow: hidden; /* Ocultar el control deslizante inicialmente */
}

#volume-icon {
  color: white;
  cursor: pointer;
}

#volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 0; /* Ancho inicial del control deslizante */
  height: 5px;
  margin-left: 20px;
  background: #d3d3d3;
  outline: none;
  opacity: 0;
  transition: width 0.3s ease; /* Transición suave para el ancho */
  position: fixed;
}

.audio-player:hover #volume-slider {
  width: 90px; /* Ancho del control deslizante al pasar el mouse */
  opacity: 0.7;
}

#volume-slider:hover {
  opacity: 1;
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #ba6160;
  cursor: pointer;
  border-radius: 50%;
}

#volume-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #ba6160;
  cursor: pointer;
  border-radius: 50%;
}