.promocode {
  position: relative;
  display: grid;
  grid-template-columns: min(100%, 740px);
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--accent);
  isolation: isolate;
  border-radius: 10px;
}
@media (min-width: 740px) {
  .promocode {
    row-gap: 36px;
    padding: 36px;
  }
}
@media (min-width: 740px) and (max-width: 1199.98px) {
  .promocode {
    padding: 36px 20px;
  }
}
@media (max-width: 739px) {
  .promocode {
    row-gap: 14px;
    padding: 26px 14px;
  }
}
.promocode::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
}
@media (min-width: 740px) {
  .promocode::before {
    background: linear-gradient(180deg, transparent 0%, var(--black) 100%);
  }
}
@media (max-width: 739px) {
  .promocode::before {
    background: linear-gradient(180deg, transparent 0%, var(--black) 72%);
  }
}
@media (min-width: 1200px) {
  .promocode::after {
    position: absolute;
    inset: 0;
    display: var(--theme-1, block) var(--theme-2, none);
    pointer-events: none;
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='439' height='182' fill='none'%3E%3Cg fill='%23EAECF8' opacity='.1'%3E%3Cpath d='M158.6 182H90.74L0 91 90.73 0h67.88L67.88 91l90.73 91Z'/%3E%3Cpath d='M252.07 182H184.2L93.46 91 184.2 0h67.88l-90.73 91 90.73 91Z'/%3E%3Cpath d='M345.54 182h-67.88l-90.73-91 90.73-91h67.88L254.8 91l90.73 91Z'/%3E%3Cpath d='M439 182h-67.88l-90.73-91 90.73-91H439l-90.73 91L439 182Z'/%3E%3C/g%3E%3C/svg%3E") top -20px right -30px/439px 182px no-repeat, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='439' height='182' fill='none'%3E%3Cg fill='%23EAECF8' opacity='.1'%3E%3Cpath d='M280.4 182h67.87L439 91 348.27 0H280.4l90.73 91-90.73 91Z'/%3E%3Cpath d='M186.93 182h67.88l90.73-91L254.8 0h-67.88l90.73 91-90.73 91Z'/%3E%3Cpath d='M93.46 182h67.88l90.73-91-90.73-91H93.46l90.73 91-90.73 91Z'/%3E%3Cpath d='M0 182h67.88l90.73-91L67.88 0H0l90.73 91L0 182Z'/%3E%3C/g%3E%3C/svg%3E") bottom -20px left -30px/439px 182px no-repeat;
  }
}
@media (min-width: 740px) {
  .promocode:has(.promocode_bg) {
    padding-top: 230px;
  }
}
@media (max-width: 739px) {
  .promocode:has(.promocode_bg) {
    padding-top: 140px;
  }
}
.promocode_bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -2;
  width: auto;
  margin-inline: auto;
}
@media (min-width: 740px) {
  .promocode_bg {
    height: 370px;
  }
}
@media (max-width: 739px) {
  .promocode_bg {
    height: 248px;
  }
}
.promocode_content {
  display: grid;
  text-align: center;
}
@media (min-width: 740px) {
  .promocode_content {
    row-gap: 20px;
  }
}
@media (max-width: 739px) {
  .promocode_content {
    row-gap: 10px;
  }
}
.promocode_field {
  display: grid;
  grid-auto-flow: column;
  column-gap: var(--margin-block);
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background-color: var(--black);
  border: solid 2px var(--white);
  border-radius: 10px;
}
@media (min-width: 740px) {
  .promocode_field {
    padding: 20px;
  }
}
@media (max-width: 739.98px) {
  .promocode_field {
    padding: 10px 14px;
  }
}
.promocode_text {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  transition: color 0.25s ease-in-out;
}
.promocode_text:has(+ [disabled]) {
  color: var(--yellow-400);
}
@media (min-width: 740px) {
  .promocode_text {
    column-gap: 10px;
  }
}
@media (max-width: 739.98px) {
  .promocode_text {
    column-gap: 6px;
  }
  .promocode_text svg {
    width: 28px;
    height: 28px;
  }
}