
.cupon {
  background-color: #FFA500;
  position: relative;
  overflow: hidden;
  padding: 13px;
  width: calc(100% - 20px);
  margin: 0 auto 20px;
  font-weight: 700;
}

.cupon__angle {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #fff;
}

.top-left {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.top-right {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.cupon__wrapper {
  width: 100%;
  border-radius: 20px;
  position: relative;
  display: flex;
  border: 2px solid #FF3A44;
  justify-content: center;
}

.cupon__sopy {
  writing-mode: vertical-rl;
  display: flex;
  color: #FF3A44;
  font-size: 11px;
  height: auto;
  position: absolute;
  left: 10px;
  top: -25px;
  transform: translateY(50%);
  font-weight: 1000;
}

.cupon__sopy--right {
  writing-mode: vertical-rl;
  position: absolute;
  right: 10px;
  left: auto;
  top: -25px;
  transform: translateY(50%) rotate(180deg);
}

.cupon__inner {
  padding: 2px 0 7px;
  margin: 0 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: calc(100% - 58px);
  align-items: center;
  border-right: 2px solid #FF3A44;
  border-left: 2px solid #FF3A44;
  text-align: center;
}

.cupon__heading {
  font-size: 18px;
  color: #fff;
}

.cupon__action {
  font-size: 18px;
  color: #FF3A44;
  text-transform: uppercase;
}

.cupon__info {
  font-size: 11px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (min-width: 481px) {
  .cupon {
    display: none;
  }
}

@media (max-width: 480px) {
  .cupon {
    display: flex;
  }
}