.popup-window.coupon-dialog {
  position: fixed !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  font: inherit;
  background: none;
}
.popup-window.coupon-dialog .dialog-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  width: auto;
  margin: 0.5rem;
  min-height: calc(100% - 1rem);
}
@media (min-width: 576px) {
  .popup-window.coupon-dialog .dialog-wrapper {
    min-height: calc(100% - 3.5rem);
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
.popup-window.coupon-dialog .dialog-wrapper .dialog-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #006072;
  background: #ffffff;
}
.popup-window.coupon-dialog .modal-body {
  padding: 0;
}
.popup-window.coupon-dialog .modal-content {
  border-radius: 0;
}
.popup-window.coupon-dialog .popup-window-titlebar {
  padding: 1rem;
  height: auto;
  background-color: #afe2e3;
  border-bottom: 1px solid #006072;
}
.popup-window.coupon-dialog .popup-window-titlebar > div {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.popup-window.coupon-dialog .popup-window-titlebar .dialog-title {
  font-size: 16px;
  font-weight: bold;
  color: #006072;
}
.popup-window.coupon-dialog .popup-window-titlebar .popup-close {
  display: flex;
  width: calc(25px + 2rem);
  height: calc(25px + 2rem);
  margin-top: -1rem;
  margin-right: -1rem;
  margin-bottom: -1rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  align-self: flex-start;
}
.popup-window.coupon-dialog .popup-window-titlebar .popup-close svg {
  display: inline-block;
  width: 14px;
  height: 14px;
  fill: #006072;
}
.popup-window.coupon-dialog .popup-window-titlebar .popup-close:hover svg {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  transform: scale(1.15);
}
.popup-window.coupon-dialog.empty-content .popup-window-titlebar {
  border-bottom: none;
}
.popup-window.coupon-dialog .popup-window-buttons {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  border-top: 1px solid #006072;
  gap: 15px;
}
.popup-window.coupon-dialog .popup-window-buttons .popup-window-button {
  font: inherit;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  display: block;
  text-align: center;
  line-height: 20px;
  padding: 13px 15px;
  margin: 0;
  border: none;
  border-radius: 0;
  width: 100%;
  height: auto;
  color: #000000;
  box-shadow: none;
}
.popup-window.coupon-dialog .popup-window-buttons .popup-window-button.popup-window-button-accept {
  background: #eef0f1;
  border: 1px solid #ededed;
}
.popup-window.coupon-dialog .popup-window-buttons .popup-window-button.popup-window-button-accept:hover {
  background-color: #006072;
  border-color: #006072;
  color: #ffffff;
}
.popup-window.coupon-dialog .popup-window-buttons .popup-window-button.popup-window-button-cancel {
  background: none;
  color: #006072;
  text-decoration: underline;
}
.popup-window.coupon-dialog .coupon-picture {
  width: 100%;
  height: auto;
}
.popup-window.coupon-dialog .coupon-description {
  padding: 2rem;
}

.product-promocode {
  display: inline-flex;
  border: 0.5px solid #afe2e3;
  cursor: pointer;
  color: #afe2e3;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 8px;
  font-size: 12px;
  margin-bottom: 10px;
  max-width: 100%;
  overflow: hidden;
}
.product-promocode:hover {
  border-top-right-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
  border-color: #006072;
  color: #006072;
  transition: all 0.3s ease 0s;
}
.product-promocode:hover span:first-child {
  flex-shrink: 0;
  transition: all 0.3s ease 0s;
}
.product-promocode span {
  display: inline-block;
  padding: 1px 7px;
  overflow: hidden;
  flex-shrink: 0;
  white-space: nowrap;
}
.product-promocode span:first-child {
  background-color: #afe2e3;
  color: #006072;
  border-right: 2px dotted #ffffff;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-page-promocode .product-promocode {
  font-size: 14px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 10px;
}
.product-page-promocode .product-promocode span {
  padding: 5px 10px;
}
