.woocommerce-cart .flash_sale-wrap{
  margin-bottom: 20px;
}

.flash_sale-wrap{
  height: 85px;
}
.flash_sale {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
}
.admin-bar .flash_sale {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .flash_sale {
    top: 46px;
  }
}
.flash_sale:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #e58c27;
}

.flash_sale video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0.75;
  pointer-events: none;
}

.flash_sale__title{
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
}
.flash_sale__title:before{
  content: '';
  width: 16px;
  height: 16px;
  background: url(./dist/img/fi_4715089.svg) center/contain no-repeat;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
.flash_sale__descr{
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}
.flash_sale__progress{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  position: relative;
}
.flash_sale__progress-itm{
  background: #fff;
  border-radius: 8px;
  padding: 2px 2px 2px 4px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.1;
  color: #1B2632;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.flash_sale__progress-itm.active{
  background-color: #e58c27;
  color: #fff;
}

.flash_sale__progress-discount{
  background: #F3C352;
  border-radius: 5px;
  padding: 3px;
  color: #1B2632;
}
.flash_sale__progress-bar{
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 100%;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.flash_sale__progress-bar span{
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .flash_sale__title{
    font-size: 18px;
    line-height: 20px;
  }
  .flash_sale__title:before{
    width: 20px;
    height: 20px;
  }
  .flash_sale__descr{
    font-size: 14px;
  }
  .flash_sale__progress-itm{
    font-size: 13px;
  }
  .flash_sale__progress-discount{
    font-size: 12px;
  }
  .flash_sale-wrap{
    height: 92px;
  }
  .woocommerce-cart .flash_sale-wrap{
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {

}

@media (min-width: 1200px) {
  .flash_sale-wrap{
    height: 46px;
  }
  .flash_sale .container{
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .flash_sale__descr{
    margin-top: 0;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .flash_sale__progress{
    margin-top: 0;
    width: 482px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .flash_sale__progress-itm{
    font-size: 15px;
    padding: 2px 2px 2px 7px;
    gap: 6px;
    border-width: 2px;
  }
  .flash_sale__progress-discount{
    font-size: 13px;
    padding: 4px;
  }
  .flash_sale__progress-bar{
    height: 2px;
    margin-top: -1px;
  }
}