/* Count down for website v1.0 (10/12/2023) - (c) 2023, AllRoundRadio */

@font-face{
  font-family: 'digital-clock-font';
  src: url('font/TickingTimebombBB.ttf');
}

.CounterWpr{
  margin: 0;
  padding: 0;
  line-height: 0px;
  font-family: 'digital-clock-font';
}
html{
  font-size: 12px;
}
.CounterWpr{
  width: 270px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url('../img/counter-bg-3.jpg');
  color: #0388CF; /*FCE16E;*/
  background-size: 270px 200px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;

  position: absolute;
  top: 170px;
  right: 20px;

  float: none;
}

.counter{
  display: flex;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 28px;
  padding-left: 0px;
}
body>h2{
  font-size: 1.5rem;
  font-weight: 500;
  margin: 15px  0px;
}

.CounterWpr>p{
  margin-bottom: 20px;
  font-size: 1rem;
}
.counter .box{
  width: 80px;
  height: 70px;
  text-align: center;
  margin-right: -3px;
  position: relative;
}

.counter .box::after{
 /* content: ":"; */
  height: 50px;
  width: 10px;
  position: absolute;
  top:0;
  right: 0;
  font-size: 2.5rem;
}
.counter .box:last-of-type::after{
  display: none;
}

.counter .box h2{
  font-size: 2.5rem;
  font-weight: 500;
}

.form{
  margin-top: 20px;
}
.form input[type="text"]{
  width: 230px;
  padding: 10px;
  outline: none;
  border: 1px solid rgba(255,255,255,0.5);
  background-color: transparent;
  border-radius: 5px;
  color:white;
}
.form input[type="text"]::placeholder{
  color:rgba(255,255,255,0.7);
}
.form button{
  width: 120px;
  padding: 10px;
  border: none;
  border-radius: 30px;
  margin-left: 10px;
  background-color: cornflowerblue;
  color:white;
}

@media (min-width:576px) {
  html{
    font-size:18px ;
  }
  .counter .box{
    width: 100px;
    height: 100px;
  }
  .form input[type="text"]{
    width: 300px;
  }
}

@media (min-width:768px) {
  html{
    font-size:18px ;
  }
  .counter .box{
    width: 65px;
    height: 0px;
  }
  .form input[type="text"]{
    width: 340px;
  }
}