/* TABS */
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}
/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}
/* BOTON SUBIR ARCHIVOS */
/* #yourBtn {
  position: relative;
  font-family: calibri;
  width: 150px;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px dashed #BBB;
  text-align: center;
  background-color: #DDD;
  cursor: pointer;
} */
#yourBtn {
  position: relative;
  font-family: calibri;
  width: 150px;
  padding: 10px;
  border-radius: 5px;
  border: 1px dashed #BBB;
  text-align: center;
  background-color: #DDD;
  cursor: pointer;
}
/* DIV HORARIOS */

.range_hour{
  padding:10px; 
  margin: 2px 6px;
  border:1px solid #2B3035; 
  background-color: white;
  width: 70px;
  /* width: 95%; */
  height: 60px;
  box-shadow: 2px 2px 5px #999;
  display: none;
  /* font-size:small;     */
} 
/* hover de los div(horarios) del calendario */
.range_hour:hover{
  background-color: #ccc;
  cursor: pointer;
}

.range_hour_selected {
  /* color: var(--color-bg-calendar); */
  background-color: #ccc;
  border: 2px solid red;
  /* box-shadow: 0 0 0 2px green inset; */
  /* margin: 0 3px; */
}
/* estilo para horarios(divs) en calendario */
.range_hour_disabled {
/* background-color: lightgray ; */
color: lightgray;
pointer-events: none;
}
.range_hour_disabled_exp {
  /* background-color: lightgray ; */
  color: lightgray;
  pointer-events: none;
  }