@font-face {
  font-family: 'f1';
  src: url("OffBit-101.ttf");
}

.tick {
  font-size: 1rem;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif; */
  font-family: 'f1';
  line-height: 65px;
}

.tick-flip-spacer {
  line-height: 54px !important;
}

.tick-flip {
  height: 90px !important;
}

.tick-label {
  font-size: 0.275em;
  text-align: center;
  color: gray;
  position: relative;
  top: -20px;
  letter-spacing: 4px;
}

.tick-group {
  margin: 0 0.25em;
  text-align: center;
  height: 108px;
}

.tick-credits {
  opacity: 0 !important;
}

.tick-flip-panel {
  /* color: rgb(162, 162, 162) !important; */
  color: rgb(0, 164, 0) !important;
  background-color: #1f1f1f !important;
}

.tick-flip-panel.off {
  /* color: rgb(162, 162, 162) !important; */
  color: yellow !important;
  background-color: red !important;
}

.tick-flip-panel.fixed {
  /* color: rgb(162, 162, 162) !important; */
  color: yellow !important;
  background-color: green !important;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 40px;
  padding: 0;
  text-align: center;
  font-size: 20px;
}

/* Para Chrome, Safari y Opera (basados en WebKit) */
body::-webkit-scrollbar {
  display: none;
  /* Ocultar la barra de desplazamiento */
}

/* Para Firefox */
body {
  scrollbar-width: none;
  /* Oculta la barra de desplazamiento */
}

/* Para Internet Explorer y Edge */
body {
  -ms-overflow-style: none;
  /* Oculta la barra de desplazamiento */
}


h1 {
  margin: 20px;
}

.info-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 40px;
  margin-bottom: 20px;
  font-size: 18px;
}

.info {
  background-color: #1f1f1f;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.info p {
  margin: 0;
}

.url-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 40px;
  margin-bottom: 20px;
}

.url-item {
  padding: 10px;
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 5px;
  display: grid;
  cursor: pointer;
  gap: 4px;
}

.url-status {
  font-weight: bold;
}

.online {
  color: rgb(0, 164, 0);
}

.checking {
  color: orange;
}

.countdown {
  font-size: 18px;
  font-weight: bold;
  color: #ff9800;
}

.offline {
  color: yellow;
  animation: anim 2s infinite;
}

@keyframes anim {

  0%,
  100% {
    background-color: rgb(255, 0, 0);
  }

  50% {
    background-color: rgb(84, 1, 1);
  }

}

/* .url-item.showInfo {
    grid-template-columns: repeat(2, 1fr);
  } */

.url-item.showInfo .url-status {
  display: none;
}

.url-item.showInfo .domain-info {
  display: block !important;
}

.domain-info {
  display: none;
}

input,
select {
  background-color: #121212;
  color: white;
  padding: 7px 10px;
  border-radius: 10px;
}

.total-time {
  grid-template-columns: repeat(5, 1fr);
  background-color: black;
  padding: 10px;
  width: calc(100% - 20px);
  border-radius: 5px;
  gap: 0px;
}

.total-time-item {
  border-right: 1px solid #333;
  display: grid;
  cursor: pointer;
  gap: 4px;
}

.total-time-item:last-child {
  border-right: none;
}

.total-time-item .text {
  text-transform: uppercase;
  font-size: 11px;
  color: rgb(149, 148, 148);
  letter-spacing: 1.5px;
}

#anios,
#meses,
#dias,
#horas,
#minutos {
  font-size: 28px;
  color: yellow;
  font-family: monospace;
}

@media (max-width:700px) {

  .info-container,
  .url-list {
    grid-template-columns: auto;
  }

  .total-time {

    grid-template-columns: repeat(3, 1fr);
  }
}

.info-table {
  border-collapse: collapse;
  text-align: left;
  zoom: 0.6;
}

.info-table tr {
  border: 1px solid gray;
}

.info-table td,
.info-table th {
  padding: 3px 10px;
}

.info-table th {
  background-color: gray;
  color: #111;
}

.info-table tr:first-child th {
  border-bottom: 2px dotted #afafaf;
}
