
@font-face {  font-family: "FX_LED";  src: url("https://cdn.jsdelivr.net/gh/codetheworld-io/static-files/FX-LED.TTF");  }


  .titfix-bar { position: fixed; top: 20px; left: 60px; font-family: kremlin; font-size: 2em; color: white; background: transparent; height: 32px; z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999; }

  .titfix-bar.night { color: #555; }


.fade-elementpro {
  opacity: 0;
  visibility: hidden; /* evita que ocupe espacio cuando está oculto */
  transition: opacity 0.6s ease, visibility 0.6s ease;
 /* position: fixed;
  bottom: 20px;
  right: 20px;
  background: #222;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  */
  pointer-events: none; /* evita que se cliquee cuando está invisible */
}

.fade-elementpro.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}



.fade-element {
  opacity: 0;
  visibility: hidden; /* evita que ocupe espacio cuando está oculto */
  transition: opacity 0.6s ease, visibility 0.6s ease;
 /* position: fixed;
  bottom: 20px;
  right: 20px;
  background: #222;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  */
  pointer-events: none; /* evita que se cliquee cuando está invisible */
}

.fade-element.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.datetime{
  position: fixed;
  right: 0;
  top: 0;
  color: #fff;
  background: #000;
  width: 250px;

  transition: 0.5s;
  transition-property: background, box-shadow;

  z-index: 99999999999999999999999999999999999;
}

.datetime.night { background: transparent; color: #555; }

.datetime:hover{
  background: #9f0000;
  box-shadow: 0 0 30px #9f0000;
}

.datetime.night:hover{
  background: #9f0000;
  box-shadow: 0 0 30px #9f0000;
  color: white;
}


.date{
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  font-family: "Segoe UI", sans-serif;

}

.time{
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "FX_LED";
  margin-top: -7px !important;
}

.time span:not(:last-child){
  position: relative;
  margin: 0 6px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
}

.time span:last-child{
  background: #9f0000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 7px;
  padding: 0 3px;
  border-radius: 3px;
  font-family: "Segoe UI", sans-serif;
}

.time.night span:last-child{
color: white;
}