#acfw_admin_app .advanced-gift-cards-page-upsell {
  margin: auto;
  max-width: 1000px;

  .page-header {
    margin-bottom: 2em;
    text-align: center;

    .acfw-logo {
      margin: 0;
    }

    h1 {
      margin: 1rem auto 1.5rem auto;
      font-size: 2.2em;
      line-height: 1.2;
      font-weight: 600;
    }

    p {
      max-width: 850px;
      margin: 0 auto 1em;
      font-size: 1.2em;
      line-height: 1.5em;
    }
  }

  .features-list {
    align-items: center;
    justify-content: center;
    margin-bottom: 2em;

    .image {
      text-align: right;

      img {
        max-width: 224px;
      }
    }

    .content {
      font-size: 1.1em;

      li {
        margin-bottom: 0.9em;
      }
    }
  }

  .plugin-step {
    display: flex;
    max-width: 650px;
    border: 1px solid #d5d5d5;
    background: #ffffff;
    font-size: 16px;
    margin: 0 auto 2rem;
    box-shadow: 0 0 15px rgb(0 0 0 / 5%);

    .step-count {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 15%;
      background: #f5f5f5;
      border-right: 1px solid #d5d5d5;

      span {
        display: inline-block;
        width: 55px;
        height: 55px;
        border-radius: 50px;
        line-height: 1.75em;
        text-align: center;
        background: #cccccc;
        font-size: 1.75em;
        font-weight: bold;
        color: #ffffff;
      }
    }

    .inner-content {
      flex: 85%;
      text-align: left;
      padding: 1rem 1.5rem;

      .title {
        font-size: 20px;
      }

      .description {
        margin: 0 0 1em;
        font-size: 0.9em;
      }

      .ant-btn {
        padding: 4px 10px;
        width: 100%;
        max-width: 217px;
        height: 40px;
        text-align: center;
        line-height: 2.5em;
        font-size: 1.1em;
        font-weight: 600;
        background: #1393A6;
        color: #fff;
        border: 0;
        border-radius: 0;

        &:hover, &:active {
          background: #0b7a8b;
          outline: 0;
          box-shadow: none;
        }
      }
    }

    &.blocked {
      position: relative;

      &:after {
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(rgba(240, 240, 241, 0.3), rgba(240, 240, 241, 0.8));
      }

      .inner-content {

        .ant-btn {
          background: #CCCCCC;
        }
      }
    }
  }
}

@media screen and (max-width: 600px) {
  #acfw_admin_app .advanced-gift-cards-page-upsell {
    .features-list {
      flex-flow: row wrap;
  
      .ant-col {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
      }
  
      .image {
        text-align: center;
      }
    }
  }
}