.timer_box {
  background: linear-gradient(#6c68cb, #774ea5);
  color: #fff;
  border-radius: 5px;
  margin: 0 0 20px;
  padding: 30px 50px;
  text-align: center;
  position: relative;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.3);
}
.timer_box h3 {
  margin: 0 0 30px;
  text-align: center;
  color: #fff;
  font-family: yekan;
  font-size: 21px;
  font-weight: bold;
}
.timer_counter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
.each_counter {
  margin: 0 10px;
}
.each_counter_number {
  width: 120px;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 50%);
  display: block;
  text-align: center;
  font-size: 41px;
  line-height: 120px;
  margin: 0 0 10px;
  border-radius: 10px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  position: relative;
} 
.each_counter_number::before {
  content: '';
  width: 4px;
  height: 30px;
  background: #d8d8d8; 
  position: absolute;
  top: 45px;
  right: 0;
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 0 3px rgba(0,0,0,0.2);
}
.each_counter_number::after {
  content: '';
  width: 4px;
  height: 30px;
  background: #d8d8d8; 
  position: absolute;
  top: 45px;
  left: 0;
  border-radius:0 4px 4px 0;
  box-shadow: 2px 0 3px rgba(0,0,0,0.2);
}
.each_counter_title {
  display: block;
  font-size: 17px;
}


@media (max-width: 995px) {  
  .countdowns .timer_box{
    width: 100% !important;
    padding: 20px 10px;
  } 
  .countdowns .timer_box h3 {
      font-size: 17px;
      line-height: 29px;
  }
  .countdowns .each_counter_number {
    width: 85px;
    height: 85px;
    font-size: 28px;
    line-height: 85px;
  }
  .countdowns .each_counter_number::after, 
  .each_counter_number::before {
      top: 27px;
  } 
}

@media (max-width : 768px) { 
  .mod_cir_countdown .hide_sm{
      display: none;
  } 
}
@media (max-width : 580px) { 
  .timer_box{
      padding: 20px 10px;
  }
  .timer_box h3 {
      font-size: 17px;
      line-height: 29px;
    }
  .each_counter_number {
  width: 85px;
  height: 85px;
  font-size: 28px;
  line-height: 85px;
  }
  .each_counter_number::after, 
  .each_counter_number::before {
      top: 27px;
  }
}
.fix_timer {
  position: fixed !important;
  right: 23px !important;
  bottom: 50px !important;
  display: block;
  text-align: center;
  border-radius: 10px;
  background: #000;
  color: #fff;
  transition: all 0.2s linear;
  box-shadow: 0 3px 10px -3px rgba(0, 0, 0,0.8);
  cursor: pointer;
  user-select: none;
  z-index: 99;
  padding: 5px 10px;
  font-size: 13px;
  left: auto !important;
  top: auto !important;
}
.fix_timer > div {
  display: inline-block;
}