@font-face {font-family: "OpenSans";src: url('../fuentes/OpenSans-Regular.ttf');}
#cambiar-modo-noche{
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.3);
    top: 10px;
    left: 10px;
    background-image: url(../icons/moon.svg);
    background-size: 40px 40px;
    background-position: 15px 15px;
    background-repeat: no-repeat;
    border-radius: 50%;
    color: blue;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    fill: white;
    cursor: pointer;
}
#texto-cambiar-modo-noche{
    position: absolute;
    width: 280px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    top:10px;
    left: 90px;
    margin: auto;
  font-family: "OpenSans";
  padding: 10px;
  text-align: center;
  color: white;
}
@media only screen 
and (max-device-width : 1024px)  {
  #cambiar-modo-noche{
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.3);
    top: 25px;
    left: 25px;
    background-image: url(../icons/moon.svg);
    background-size: 70px 70px;
    background-position: 15px 15px;
    background-repeat: no-repeat;
    border-radius: 50%;
    color: blue;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    fill: white;
    cursor: pointer;
}
  #texto-cambiar-modo-noche{
    position: absolute;
    width: 350px;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.5);
    top:25px;
    left: 135px;
    margin: auto;
  font-family: "OpenSans";
  padding: 10px;
  text-align: center;
  color: white;
  font-size: 20px;
}
}
texto{
  position: absolute;
  width: 100%;
  height: 15px;
  top: 0px;
  font-size: 30px;
}
#day{
    position: absolute;
    width: 80px;
    height: 40px;
    background-image: url(../icons/day_2.svg);
    background-repeat: no-repeat;
    background-size: 80px 40px;
    left: 10px;
    top: 5px;
    cursor: pointer;
}
#division{
    position: absolute;
    width: 2px;
    height: 44px;
    background-image: url(../icons/division.svg);
    background-repeat: no-repeat;
    background-size: 2px 45px;
    left: 100px;
    top:3px;
}
#night{
    position: absolute;
    width: 80px;
    height: 40px;
    background-image: url(../icons/night_1.svg);
    background-repeat: no-repeat;
    background-size: 80px 40px;
    left: 120px;
    top: 5px;
    cursor: pointer;
}

#moon{
    position: absolute;
    width: 30px;
    height: px;
    background-image: url(../icons/moon.svg);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    left: 20px;
    top:20px;
}
.switch {
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 17px;
    left: 50px;
    top: 15px;
  }
  
  .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: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 17px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }