.content-reloj {
    text-align: center;

  }

  .countdown-timer {
    animation: fadeIn 2s ease-in-out;
    align-items: center;
    /* background-color: #131a2b; */
    border-radius: 0px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 8px;
    text-align: left;
    text-transform: uppercase;
    width: 100%;

  }

  .countdown-timer .countainer-ul {
    display: flex;
    justify-content: space-evenly;
  }

  .countdown-timer-ul {
    border-radius: 25px;
    color: #00468F;
    margin: auto auto 15px auto;
    position: relative;
    text-align: center;
    transition: opacity 0.7s ease-in-out;
    position: relative;
    width: 100%;
  }

  .countdown-timer-ul .deadline-label {
    color: #fff;
    font-size: 12px;
    margin-bottom: 5px;
    margin-right: 10%;
    text-align: right;
    text-transform: uppercase;
  }

  .countdown-timer .date-item {
    background-color: #00468F;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    width: 88px;
  }

  .countdown-timer ul {
    margin-bottom: 0px;
    padding: 0px;
  }

  .countdown-timer ul li span {
    display: block;
    font-size: 3rem;
  }

  .dos-puntos {
    font-size: 5rem;
  }

  .countdown-timer li {
    display: inline-block;
    font-size: 1em;
    list-style-type: none;
    padding: 0.2rem;
    text-transform: uppercase;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @media only screen and (max-width: 980px) {

    .countdown-timer {
      width: 100%;
    }

    .countdown-timer li {

      font-size: 0.8rem;
      padding: 0.2rem;
    }

    .countdown-timer ul li span {
      display: block;
      font-size: 2rem;
    }

    .countdown-timer .date-item {
      background-color: #000000;
      border-radius: 5px;
      color: #fff;
      text-align: center;
      font-size: 1.2rem;
      width: 60px;
    }
  }