/** @format */

/* common css  */
* {
  margin: 0;
  outline: 0;
  padding: 0;
}
img {
  border: 0;
  vertical-align: middle;
}
li,
ul {
  list-style: none;
}
a {
  text-decoration: none;
}

/* font family import  */
@font-face {
  font-family: Bebas-Regular;
  src: url(../fonts/Bebas-Regular.ttf);
}
@font-face {
  font-family: Made_Tommy_Bold;
  src: url(../fonts/Made_Tommy_Bold.otf);
}
@font-face {
  font-family: Made_Tommy_Regular;
  src: url(../fonts/Made_Tommy_Regular.otf);
}
h3 {
  line-height: 33px;
  font-size: 1.875rem;
  font-family: Bebas-Regular;
}
h6 {
  color: #fff;
  font-size: 1rem;
  line-height: 22px;
  letter-spacing: 1px;
  font-family: Made_Tommy_Bold;
}
p, div {
  color: #6d6e6e;
  font-size: 0.75rem;
  font-family: Bebas-Regular;
}
label {
  color: #6d6e6e;
  font-size: 0.5rem;
  text-transform: uppercase;
  font-family: Made_Tommy_Regular;
}

/* countdown part css  */

.countdown-look {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.countdown {
  /*transform: scale(2);*/
  width: 420px;
  text-align: center;
  position: relative;
}
.countdown::after {
  top: 0;
  left: 0;
  position: absolute;
}
.countdown::after {
  top: -29.5px;
  left: -51px;
  width: 119px;
  height: 191px;
  content: "";
  position: absolute;
  background: url(../images/3.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.countdown::before {
  top: -6px;
  right: -95px;
  width: 167px;
  height: 168px;
  content: "";
  position: absolute;
  background: url(../images/2.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.countdown .header-title {
  height: 23px;
  margin-bottom: 15px;
  background-color: #7fbf42;
}
.countdown .bottom-title {
  height: 23px;
  margin-top: 15px;
  background-color: #fbaf62;
}
.countdown .timer .timer-title p span {
  color: #7fbf42;
}
.countdown .timer .timer-counter {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  min-height: 54px;
}
.countdown .timer .timer-counter .timer-counter-num {
  margin: 0 2px;
}
.countdown .timer .timer-counter .timer-counter-num .counter-num {
  display: flex;
}
.countdown .timer .timer-counter .timer-counter-num .counter-num .num {
  width: 25px;
  margin: 0 2px;
  height: 36px;
  color: #b3b3b3;
  border-radius: 3px;
  position: relative;
  background: rgb(65, 64, 66);
  background: linear-gradient(180deg, rgba(65, 64, 66, 1) 0%, rgba(35, 31, 32, 1) 100%);
}
.countdown .timer .timer-counter .timer-counter-num .counter-num .num::after {
  left: -1.3px;
  top: 53%;
  width: 3px;
  height: 5px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background: url(../images/timer-counter-side-shape.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.countdown .timer .timer-counter .timer-counter-num .counter-num .num::before {
  right: -1.2px;
  top: 53%;
  width: 3px;
  height: 5px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background: url(../images/timer-counter-side-shape.svg);
  background-repeat: no-repeat;
  z-index: 1;
  background-size: contain;
}
.countdown .timer .timer-counter .timer-counter-num .counter-num .num h3 {
  color: #bcbcbc;
  text-shadow: 1px 0px 0px #fff;
}
.countdown .timer .timer-counter .timer-counter-num .counter-num .num h3::after {
  right: 0px;
  top: 55%;
  width: 100%;
  height: 4px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background: url(../images/border-shape.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.countdown .timer .timer-counter .timer-counter-num .counter-num .num h3 span {
  color: #fbaf62;
}
