.wptv-promo {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .6);
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  backdrop-filter: blur(1px);

  &.hidden {
    display: none;
  }

  &-inner {
    background: #000;
    position: relative;
    padding: 60px 30px 40px 30px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid;

    .close-promo {
      position: absolute;
      top: 0;
      right: 0;
      padding: 10px 12px;
      font-size: 30px;
      color: #fff;
      display: flex;
      align-items: center;
      border-radius: 50%;
      justify-content: center;
      cursor: pointer;
    }

    h3 {
      color: #fff;
    }

    .promo-title {
      font-size: 22px;
    }

    .percentage, .coupon {
      color: #F03B34;
      font-size: 30px;
      font-weight: bold;
    }


    a {
      background: #FBBF00;
      color: #000;
      padding: 16px 25px;
      text-decoration: none;
      border-radius: 5px;
      display: inline-block;
      margin-top: 30px;
      font-size: 17px;
      font-weight: bold;
      border: 1px solid;
    }

  }

}

.wptv_page_import-channels {
  .wptv-promo {
    margin-left: -20px;
    width: calc(100% + 20px);
  }
}