.podcast-box-promo {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .6);
  top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  left: 0;
  backdrop-filter: blur(1px);
  z-index: 99;

  &.hidden {
    display: none;
  }

  &-inner {
    width: 350px;
    background: #000;
    position: relative;
    padding: 40px 10px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid;
    margin-top: 100px;

    .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-img {
      width: 100px;
      position: absolute;
      top: -61px;
      left: 50%;
      transform: translateX(-50%);
    }

    .promo-title {
      font-size: 22px;
      margin-bottom: 30px;
    }

    .percentage, .coupon {
      color: #F03B34;
      font-size: 30px;
      font-weight: bold;
    }

    .bf-banner{
      position: absolute;
      left: 0;
      width: 100%;
      height: 100px;
    }

    .coupon {
      border-top: 1px solid;
      border-bottom: 1px solid;
    }

    .discount-text{
      color: #FBBF00;
      font-size: 30px;
      font-weight: bold;
    }


    a {
      background: #FBBF00;
      color: #000;
      padding: 16px 25px;
      text-decoration: none;
      border-radius: 5px;
      display: inline-block;
      font-size: 17px;
      font-weight: bold;
      border: 1px solid;
    }

  }

}

.podcast-box-import-page {
  .podcast-box-promo {
    margin-left: -20px;
    width: calc(100% + 20px);
    top: 200px;
  }
}
