.main {
  position: relative;

  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 322px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: url("../image/main_bg.png") no-repeat center;
    background-size: contain;
    z-index: 1;
  }

  &__content {
    height: 100%;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;

    img {
      display: block;
      object-fit: contain;
      width: 100%;
    }
  }

  &__title {
    padding: 50px 0;
    text-align: center;
    color: $c-white;
    font-size: 14px;
    font-weight: 400;
    max-width: 360px;
    margin: 0 auto;

    &--normal {
      display: block;
    }

    &--agree {
      display: none;
    }
  }

  &__normal {
    z-index: 2;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  &__agree {
    display: none;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    justify-content: space-between;

    .main__button {
      margin-bottom: 8px;
    }
  }

  &__price {
    font-size: 14px;
    color: $c-white;
    text-align: center;
    margin-bottom: 20px;
    position: relative;

    &::before {
      content: '';
      left: -15px;
      right: -15px;
      top: 0;
      bottom: 0;
      z-index: 1;
      position: absolute;
      background: rgba(185, 183, 183, 0.3);
      height: 100%;
    }

    span {
      position: relative;
      z-index: 2;
      opacity: .6;
    }
  }

  &__button {
    color: $c-white;
    position: relative;
    border: none;
    padding: 20px 5px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.92px;
    max-width: 290px;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 27px;
    box-shadow:  0px 4px 4px 0px rgba(0,0,0,0.25);
    background: linear-gradient(180deg, #751984FF 0%,#AF29C6FF 100%);

    &Absolute {
      position: absolute;
      top: 0;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: normal;
    }

    &Price {
      position: absolute;
      top: calc(100% + 5px);
      font-size: 14px;
      right: 0;
      letter-spacing: normal;
      color: $c-gray;
    }
  }

  &__promo {
    position: relative;
    z-index: 2;
    color: $c-white;
    text-align: center;
    margin-bottom: 40px;
    margin-top: auto;

    p {
      font-size: 20px;
      line-height: 24px;

      &.text {
        font-size: 14px;
        line-height: 16.8px;
      }
    }

    h2 {
      width: 411px;
      height: 45px;
      top: 523px;
      left: 0px;
      font-size: 32px;
      color: #FFFFFF;
      line-height: 38.4px;
      text-align: center;
      text-shadow:  0px 4px 4px  rgba(0,0,0,0.25);
    }
  }

  &__slug {
    color: $c-black;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 30px;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
  }
}