﻿.drm-offer-countdown{
  position:relative;
  z-index:60;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  width:100%;
  min-height:48px;
  padding:8px clamp(14px,4vw,48px);
  background:#ff4601;
  color:#fff;
  box-shadow:0 8px 26px rgba(0,0,0,.18);
  text-transform:uppercase;
}
.drm-countdown-copy{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  font-weight:900;
}
.drm-countdown-copy strong,
.drm-countdown-copy span{
  white-space:nowrap;
}
.drm-countdown-copy span{
  font-size:.78rem;
  opacity:.94;
}
.drm-countdown-clock{
  display:flex;
  align-items:center;
  gap:6px;
}
.drm-countdown-clock span{
  display:grid;
  min-width:48px;
  place-items:center;
  padding:4px 6px;
  background:#080808;
  color:#fff;
}
.drm-countdown-clock b{
  font-size:1rem;
  line-height:1;
}
.drm-countdown-clock small{
  margin-top:2px;
  font-size:.56rem;
  font-weight:900;
}
@media(max-width:760px){
  .drm-offer-countdown{
    flex-direction:column;
    gap:6px;
    min-height:auto;
    padding:9px 12px;
    text-align:center;
  }
  .drm-countdown-copy{
    flex-direction:column;
    gap:2px;
  }
  .drm-countdown-copy strong,
  .drm-countdown-copy span{
    white-space:normal;
  }
  .drm-countdown-clock span{
    min-width:42px;
  }
}
