.sales-countdown {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  margin-top: 24px;
  margin-bottom: 24px;
}
.sales-countdown__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .sales-countdown__wrapper {
    width: 100%;
  }
}
.sales-countdown__inner {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #F86262;
  border-radius: 10px;
  padding: 10px 24px;
}
@media screen and (max-width: 767px) {
  .sales-countdown__inner {
    width: 100%;
    justify-content: center;
    padding: 11px 15px;
  }
}
.sales-countdown__inner > * {
  margin-right: 3px;
  margin-bottom: 2px;
}
.sales-countdown__description {
  padding-left: 28px;
  position: relative;
  font-weight: bold;
  font-style: normal;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .sales-countdown__description {
    width: 100%;
    align-self: center;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
    margin-bottom: 8px;
    line-height: 18px;
  }
  .sales-countdown__description::before, .sales-countdown__description::after {
    display: inline-block;
    content: "";
    width: 100%;
    height: 2px;
    background-image: url(../images/triangle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-grow: 1;
    position: relative;
  }
  .sales-countdown__description::before {
    left: -15px;
  }
  .sales-countdown__description::after {
    right: -15px;
    transform: rotate(180deg);
  }
}
.sales-countdown__description-icon {
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/badge-dollar.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .sales-countdown__description-icon {
    display: inline-block;
    position: static;
    margin-right: 4px;
    transform: none;
    vertical-align: middle;
    flex-shrink: 0;
  }
}
.sales-countdown__item {
  font-weight: normal;
  line-height: 20px;
  color: #F86262;
}
@media screen and (max-width: 767px) {
  .sales-countdown__item {
    font-weight: bold;
    line-height: 18px;
  }
}
.sales-countdown .timeout {
  display: inline-block;
  white-space: nowrap;
  margin-left: 5px;
}

.sales-countdown.sales-countdown--tag {
  margin-bottom: 40px;
}
.sales-countdown.sales-countdown--tag .sales-countdown__inner {
  position: relative;
  width: 100%;
  justify-content: center;
  padding: 11px 15px;
  flex-wrap: nowrap;
  gap: 8px;
  border: none;
}
@media screen and (max-width: 767px) {
  .sales-countdown.sales-countdown--tag .sales-countdown__inner {
    flex-wrap: wrap;
    padding: 10px 10px;
    gap: 4px;
  }
}
.sales-countdown.sales-countdown--tag .sales-countdown__inner::before, .sales-countdown.sales-countdown--tag .sales-countdown__inner::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(../images/triangle.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-grow: 1;
  position: absolute;
}
.sales-countdown.sales-countdown--tag .sales-countdown__inner::before {
  top: 0px;
  left: -16px;
}
.sales-countdown.sales-countdown--tag .sales-countdown__inner::after {
  bottom: 0px;
  right: -16px;
  transform: rotate(180deg);
}
.sales-countdown.sales-countdown--tag .sales-countdown__description:before, .sales-countdown.sales-countdown--tag .sales-countdown__description:after {
  display: none;
}
