
.dxpv-box {
  margin: 18px 0 14px;
  border: 1px solid #00b95c;
  border-radius: 11px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.dxpv-box__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 14px 13px;
  background: #00bd5f;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.dxpv-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: #fff;
  color: #44ba46;
  font-family: "Font Awesome 6 Free";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.dxpv-box__icon::before {
  content: "\f559";
}

.dxpv-box__heading {
  min-width: 0;
}

.dxpv-box__title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.dxpv-box__subtitle {
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.dxpv-box__list {
  padding: 8px 5px;
  background: #f8fff9;
  border-radius: 0 0 10px 10px;
}

.dxpv-coupon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
}

.dxpv-coupon + .dxpv-coupon {
  border-top: 1px dashed #d6e8db;
}

.dxpv-coupon__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-top: 0;
  flex: 0 0 16px;
  background: transparent;
  color: #44ba46;
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.dxpv-coupon__check::before {
  content: "\f058";
}

.dxpv-coupon__content {
  min-width: 0;
  flex: 1;
}

.dxpv-coupon__main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  color: #333;
  line-height: 1.35;
}

.dxpv-coupon__description {
  min-width: 0;
}

.dxpv-coupon__info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dxpv-coupon__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  padding: 0;
  margin: 0;
  border: 1px solid #aaa;
  border-radius: 50%;
  background: #fff;
  color: #888;
  cursor: help;
  box-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: none;
  vertical-align: middle;
}

.dxpv-coupon__info::before {
  content: "i";
  display: block;
  line-height: 13px;
}

.dxpv-coupon__info:hover,
.dxpv-coupon__info:focus {
  border-color: #777;
  color: #555;
  outline: none;
  box-shadow: none;
}

.dxpv-coupon__tooltip {
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  z-index: 999;
  display: block;
  width: max-content;
  min-width: 190px;
  max-width: 280px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  color: #2d2d2d;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-35%) translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}

.dxpv-coupon__tooltip::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 26px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .04);
}

.dxpv-coupon__tooltip-line {
  display: block;
}

.dxpv-coupon__tooltip-line + .dxpv-coupon__tooltip-line {
  margin-top: 4px;
}

.dxpv-coupon__info-wrap:hover .dxpv-coupon__tooltip,
.dxpv-coupon__info-wrap:focus-within .dxpv-coupon__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-35%) translateY(0);
}

.dxpv-coupon__code-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  white-space: nowrap;
}

.dxpv-coupon__code-label {
  white-space: nowrap;
}

.dxpv-coupon__code {
  display: inline-block;
  padding: 1px 5px;
  border: 1px dashed #ee1d37;
  border-radius: 3px;
  background: #fff;
  color: #e3132d;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 849px) {
  .dxpv-coupon__code-wrap {
    margin-left: 0;
  }
}

@media (max-width: 549px) {
  .dxpv-box {
    margin-top: 14px;
  }

  .dxpv-box__header {
    padding: 13px 12px;
  }

  .dxpv-box__title {
    font-size: 15px;
  }

  .dxpv-box__subtitle,
  .dxpv-coupon {
    font-size: 13px;
  }

  .dxpv-coupon__tooltip {
    left: 8px;
    right: auto;
    min-width: 170px;
    max-width: calc(100vw - 70px);
    transform: translateX(0) translateY(4px);
  }

  .dxpv-coupon__tooltip::before {
    left: 18px;
  }

  .dxpv-coupon__info-wrap:hover .dxpv-coupon__tooltip,
  .dxpv-coupon__info-wrap:focus-within .dxpv-coupon__tooltip {
    transform: translateX(0) translateY(0);
  }
}
