
.banner-countdown, .banner-countdown * {
  box-sizing: border-box;
}
.banner-countdown{
  display: flex;
  background-color: var(--color-dark);
  padding: 12px 24px 16px;
  justify-content: center;
  border-top: 4px solid rgba(255, 156, 0, 1);
  min-height: 102px;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 800px) {
  .banner-countdown{
    padding: 12px 24px;
  }
}


  .banner-countdown.banner-countdown--fixed{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
/* @media screen and (min-width: 800px) {
  .banner-countdown.banner-countdown--fixed{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
} */

.banner-countdown__wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  padding: 0 35px;
  gap: 16px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .banner-countdown__wrapper{
    flex-direction: row;
    gap: 64px;
  }
}

.banner-countdown__info{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
/* @media screen and (min-width: 800px) {
  .banner-countdown__info{
    max-width: none;
  }
} */
.banner-countdown__info-title{
    max-width: 244px;
    text-align: center;
    margin: 0;
}
@media screen and (min-width: 800px) {
  .banner-countdown__info-title{
    text-align: left;
    max-width: none;
  }
}

.banner-countdown__count-down{
 display: flex;
 gap: 12px;
}

.banner-countdown__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(255, 204, 0, 1);
  padding: 12px 4px;
  width: 70px;
  height: 70px;
}

.banner-countdown__close-button{
  position: absolute;
  top: 12px;
  right: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}