.main {
  display: flex;
  flex-direction: column;
  justify-content: center;

  &__container {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;

    @media (max-height: $h-media-x) {
      padding-top: 10px;
      padding-bottom: 10px;
    }

    &::before {
      content: '';
      background: url("../image/shazam.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 5%;
      left: 0;
    }

    &::after {
      content: '';
      background: url("../image/shazam2.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 40px;
      height: 30px;
      position: absolute;
      top: 15%;
      right: 0;
    }
  }

  &__title {
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2; /* 126.316% */
    color: $c-black;
    text-align: center;
    margin-bottom: 30px;

    @media (max-height: $h-media-x) {
      font-size: 26px;
      margin-bottom: 15px;
    }


    span {
      color: $c-primary;
      font-size: 30px;
      font-style: normal;
      font-weight: 900;
      line-height: 38px; /* 126.667% */
      text-transform: uppercase;

      @media (max-width: $h-media-y) {
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 30px;
      }
    }
  }

  &__button {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  &__subTitle {
    text-transform: uppercase;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px;
    margin-bottom: 20px;

    span {
      text-transform: lowercase;
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
    }

    @media (max-height: $h-media-x) {
      font-size: 18px;
      margin-bottom: 10px;

      span {
        font-size: 16px;
      }
    }
  }

  &__link {
    text-decoration: none;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: $c-white;
    width: 100%;
    padding: 20px 15px;
    border-radius: 44px;
    background: $c-primary;
    text-align: center;
    margin-bottom: 10px;

    @media (max-width: $h-media-y) {
      font-size: 15px;
      padding: 10px 15px;
      max-width: 300px;
      margin: 0 auto 10px;
    }
  }

  &__pay {
    text-align: center;
    color: $c-black;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: .7;
    margin-bottom: 10px;
  }

  &__back {
    font-size: 15.982px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    border: $c-black 1px solid;
    color: $c-black;
    width: max-content;
    margin: 0 auto;
    padding: 5px 20px;
    border-radius: 100px;
    opacity: .7;

    @media (max-height: $h-media-x) {
      font-size: 12px;
    }
  }


  &__decoration {
    display: block;
    object-fit: contain;
    width: 100%;
    padding: 10px 0;

    @media (max-height: $h-media-x) {
      max-height: 300px;
    }
  }
}

.decoration {
  &.container {
    padding: 0;
  }
}

.radio__btns {
  display: flex;
  justify-content: center;
  gap: 10px;

  label {
    cursor: pointer;

    span {
      border-radius: 63.788px;
      border: 0.638px solid #781C88;
      color: #333;
      padding: 5px 20px;
      font-size: 11.615px;
      font-style: normal;
      font-weight: 500;
      line-height: 15.309px;
      background: #FFFFFF;
    }

    input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
    }

    input:checked ~ span {
      color: #FFFFFF;
      background: linear-gradient(90deg, #761B86 0%, #B22AC9 100%);
    }
  }
}