.c-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100001;
  background: rgba(0, 0, 0, 0.6);
  overflow: auto;
}
.c-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: initial;
  text-indent: -10000px;
  outline: none;
}
.c-popup__box {
  position: absolute;
  width: 536px;
  max-width: 90%;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50px;
}
.c-popup__image {
  height: auto;
  width: 60%;
  margin: 0 auto;
  display: block;
}
.c-popup__subtitle {
  font-size: 1.25em;
  text-align: center;
  text-transform: uppercase;
  color: #666666;
  margin: 30px 25px 0 25px;
}
@media (max-width: 575.98px) {
  .c-popup__subtitle {
    font-size: 1em;
  }
}
.c-popup__title {
  font-size: 2.375em;
  font-weight: bold;
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  margin: 0 25px 15px 25px;
}
@media (max-width: 575.98px) {
  .c-popup__title {
    font-size: 1.125em;
  }
}
.c-popup__text {
  font-size: 1.0625em;
  font-weight: 200;
  line-height: 1.58;
  text-align: center;
  color: #000000;
  margin: 0 25px 25px 25px;
}
.c-popup__coupon {
  display: block;
  border: 1px solid #DB291C;
  text-align: center;
  padding: 8px 12px;
  margin: 28px 0 0 0;
  transition: border-color 0.3s, background 0.3s;
  opacity: 1;
}
.c-popup__coupon.is-copy {
  border-color: #4caf50;
  background: #f2fff2;
}
.c-popup__coupon-text {
  font-size: 1.25em;
  color: #b61d24;
  display: block;
  text-transform: uppercase;
  transition: color 0.3s;
}
.is-copy .c-popup__coupon-text {
  color: #4caf50;
}
.c-popup__coupon-copy {
  font-size: 0.75em;
  font-weight: 500;
  color: #999999;
  display: block;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  transition: color 0.3s;
}
.is-copy .c-popup__coupon-copy {
  color: #4caf50;
}
.c-popup__box-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: url("../img/icon-close-popup.svg") no-repeat center center;
  background-size: contain;
  text-indent: -10000px;
  outline: none;
}
