@font-face {
  font-family: HelveticaNeueLT;
  src: url(./HelveticaNeueLT.ttf);
}
body, html{
  height: 100%;
  width: 100%;
  color: #36465D;
  font-family: HelveticaNeueLT, serif;
  font-size: 16px;
  background-color: white;
}
input{
  height: 100%;
  width: 100%;
  border-radius: 8px;
  border: 1px solid black;
  box-sizing: border-box;
  padding: 8px;
  color: #36465D;
}
.menu{
  position: relative;
  top: 0;
  left: 0;
  height: 48px;
  width: 100%;
  border-bottom: 1px solid black;
  background-color: rgb(248, 248, 158);
}
.menu .dilogo{
  position: absolute;
  left: 32px;
  margin-top: 4px;
  vertical-align: middle;
  cursor:pointer
}
.menu .dilogo img{
  height: 40px;
}
.menu .titulo{
  position: absolute;
  left: 45%;
  width: 10%;
  top: 4px;
  vertical-align: middle;
}
.menu .titulo img{
  height: 40px;
}
.menu .logout{
  position: absolute;
  right: 32px;
  margin-top: 8px;
  vertical-align: middle;
  cursor:pointer;
  background-color: #C02942;
  color: white;
  padding: 4px 16px;
  border-radius: 8px;
}
.menu .logout{
  position: absolute;
  right: 32px;
  margin-top: 8px;
  vertical-align: middle;
  cursor:pointer;
  background-color: #C02942;
  color: white;
  padding: 4px 16px;
  border-radius: 8px;
}
.menu .logout:hover{
  background-color: red;
}
.menu .conjunto{
  position: absolute;
  right: 32px;
  top: 5px;
  font-size: 28px;
}
.menu .conjunto i:hover {
  color: red;
  cursor: pointer;
}
.left{
  position: absolute;
  top: 49px;
  left: 0;
  width: 150px;
  bottom: 0;
  border-right: 1px solid black;
  overflow: hidden;
}
.left .leftitem:hover{
  background-color: #e2e2e2;
}
.right{
  position: absolute;
  top: 48px;
  left: 151px;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
/*-------------- alerta --------------*/
.alerta {
  display: none;
  position: absolute;
  z-index: 3;
  top: 60px;
  left: 40%;
  text-align: center;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 8px;
  background-color: white;
  border: 1px solid #e2e2e2;
}
.alerta .msgalert {
  text-align: center;
}
/*-------------- carga --------------*/
.screenload {
  display: none;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.863);
}
.screenload .load {
  position: relative;
  margin-top: 60px;
  margin-left: 45%;
  width: 200px;
  text-align: center;
  padding-left: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 8px;
  background-color: white;
  border: 1px solid #e2e2e2;
}
.screenload .load .loader {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  color :#0000;
  overflow: hidden;
  animation: l9 5s infinite cubic-bezier(0.3,1,0,1);
}
.screenload .load .loader:before {
  content:"Cargando..."
}
@keyframes l9 {
  0%  {text-shadow: 0    0 #000, 11ch 0 #8A9B0F, 22ch 0 #C02942, 33ch 0 #00A0B0,44ch 0 #000}
  25% {text-shadow:-11ch 0 #000,  0ch 0 #8A9B0F, 11ch 0 #C02942, 22ch 0 #00A0B0,33ch 0 #000}
  50% {text-shadow:-22ch 0 #000,-11ch 0 #8A9B0F,  0ch 0 #C02942, 11ch 0 #00A0B0,22ch 0 #000}
  75% {text-shadow:-33ch 0 #000,-22ch 0 #8A9B0F,-11ch 0 #C02942,  0ch 0 #00A0B0,11ch 0 #000}
  100%{text-shadow:-44ch 0 #000,-33ch 0 #8A9B0F,-22ch 0 #C02942,-11ch 0 #00A0B0, 0ch 0 #000}
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider:before {
  -webkit-transform: translateX(36px);
  -ms-transform: translateX(36px);
  transform: translateX(36px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
input:checked + .slider {
    background-color: rgb(238, 238, 56);
}
input:focus + .slider {
    box-shadow: 0 0 1px rgb(238, 238, 56);
}