.promo-counter{
text-align:center;
margin-bottom:16px;
    
}

.flexRow{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
}


.counter{
  position: relative;
   height: 64px;
    width: 64px;
     margin: auto;
     perspective: 400px;
    font-family: "Times New Roman";
    font-size:29px;
	font-weight:600;
	color:#FFCCFC
}

.topBackBox{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  z-index: 2;
  background-color: #f7f7f7;
 border-radius: 8px 8px 0 0 ;
//box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.innerBox{
  height: 200%;
  text-align: center;
  display: flex;
  justify-content:center;
  align-items:center;
}

.bottomBackBox{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
 border-radius: 8px;


}

.bottonInnerBox{
  text-align: center;
  display: flex;
  justify-content:center;
  align-items:center;
  height: 100%;
}


.box{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 3; 
  background-color: white;
          // transition: transform 1s;
          // transform: rotateX(180deg);
          animation-duration: 1s;
  animation-name: rotate;
   animation-iteration-count: infinite;
  // animation-direction: alternate;
  animation-timing-function: cubic-bezier(0, 1, 1, 1);
  transform-origin: 0% 0%;
  //transform-style: preserve-3d;
  overflow: hidden;
   border-radius: 0 0 8px 8px;
//border-left:1px solid white;

}

.inner{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200%;
  text-align: center;
  display: flex;
  justify-content:center;
  align-items:center;
  // transform: scale(1, -1)

}

@keyframes rotate {
  0% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

@media screen and (max-width: 1200px){
}
