/* Timer */
.timer-wrapper {
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 20px 20px;
  margin-top: 20px;
  .offer_head{
    margin-top: 0;
  }
}
.timer-text {
  font-size: 14px;
  font-family: BentonSans-Bold;
  color: #000;
  margin: 3px 0 0;
}
.timer {
  display: flex;
  color: #000;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 327px;
  margin-left: -10px;
  margin-bottom: 7px;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
  padding: 10px 11px;

  &::after {
    background-color: #FF8D6D;
    height: 39px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: -1;
    content: "";
    border-radius: 8px 8px 0 0;
  }
}
.timer-container {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  width: 30px;
  height: 38px;
  border-radius: 4px;
  position: relative;
}
.timer-item::after {
  content: ":";
  position: absolute;
  top: 10px;
  right: -7px;
  color: #000;    
}
.timer-item:last-child::after {
  display: none;
}
.timer-value {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
    font-family: BentonSans-Bold;
}
.timer-label {
  font-size: 8px;
font-family:Bentonsans-Medium;
margin-top: 2px;
}
.banner_figure img{
  max-width: 261px;
}
.card_info .h3_cardname{
  margin-top: 0px;
}
.card_info{
  margin-top: -39px;
}
.figure_wrap{
  margin-top: -77px;
}
.banner_card_section {
  gap: 23px;
}
@media screen and (max-width: 992px) {

  .card_info{
    margin-top:0;
  }
  .timer-item::after {
    top: 5px;
  }
  
  .timer {
    gap: 5px;
    justify-content: center;
    margin-bottom: 4px;
    align-items: center;
    flex-flow: column;
    width:fit-content;
    margin-left:0;
    margin-top:16px;
    padding: 6px 15px;

    &::after {
      height: 57px;
      border-radius: 8px ;
    }
  }
} 
