.filmspace-listing-detail-page {
  .wpwl-form-card {
    //max-width: 40em;
  }

  .wpwl-form-registrations {
    margin-bottom: 0;
  }

  .wpwl-group {
    display: flex;
    justify-content: space-between;
    align-items: center;

    &::before {
      display: none !important;
    }
  }

  .wpwl-label {
    display: none !important;
  }

  .wpwl-control {
    &-cardNumber, &-cvv, &-brand {
      border: none;
      border-bottom: 2px solid $light-mint;
      border-color: $light-mint !important;
      color: $charcoal;
      height: 50px;

      &.wpwl-has-error {
        border-bottom: 2px solid $rose;
        border-color: $rose !important;
      }
    }

    &-cardNumber, &-cvv {
      padding: 11px 12px 0 12px;
    }

    &-brand {
      padding: 11px 12px 0 12px;
      width: 140px;
    }
  }

  .wpwl-brand-custom {
    display: none;
  }

  .wpwl-wrapper {
    width: 100%;
  }

  .wpwl-has-error, .wpwl-hint {
    border-color: $rose;
    color: $rose;
  }
}

.wpwl-has-error {
  border-bottom: 2px solid $rose;
}

.wpwl-group-registration {
  padding: 10px 12px;
  border: 2px solid $light-mint;
  border-radius: 4px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);

  label.wpwl-registration {
    position: relative;
    width: 100%;
    padding-left: 25px;

    input {
      display: none;
    }

    &::before {
      position: absolute;
      content: "";
      left: 0;
      top: 2px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid $mint;
      padding: 1px;
    }

    .wpwl-wrapper-registration-number {
      color: $mint;
      font-weight: bold;
      font-size: 14px;
    }

    .wpwl-wrapper-registration-holder {
      padding: 0;
      position: absolute;
      right: 12px;
      top: 2px;
    }

    .wpwl-wrapper-registration {
      color: $mint;
      padding-top: 2px;

      &-registrationId {
        padding-top: 0;
      }

      &-expiry {
        @include breakpoint(small only) {
          display: none;
        }
      }
    }
  }

  &.wpwl-selected {
    border-color: $light-mint;

    label.wpwl-registration {
      &::after {
        position: absolute;
        content: "";
        left: 4px;
        top: 6px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: $mint;
        padding: 1px;
      }
    }
  }
}

.wpwl-button-pay {
  color: white;
  background-color: $honey;
  width: 100%;
  margin: auto;
  border-radius: 4px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.06);
  border-color: $honey;
  transition: background-color .35s ease;

  &:hover {
    background-color: darken($honey, 15%);
    border-color: $honey;
    outline: none;
  }
}