.adyen-checkout__field {
  margin-bottom: 16px;
  display: block;
}
.adyen-checkout__field--error input {
  color: #d10244;
  border-color: #d10244;
}
.adyen-checkout__field:last-child {
  margin-bottom: 0;
}
.adyen-checkout__helper-text,
.adyen-checkout__label__text {
  color: #00112c;
  padding-bottom: 8px;
  font-size: 0.81em;
  font-weight: 400;
  line-height: 13px;
  display: block;
}
.adyen-checkout__helper-text {
  color: #687282;
}
.adyen-checkout__label__text {
  transition: color 0.2s ease-out;
}
.adyen-checkout__label--focused .adyen-checkout__label__text {
  color: #06f;
}
.adyen-checkout__error-text {
  color: #d10244;
  align-items: center;
  margin-top: 4px;
  font-size: 0.75em;
  font-weight: 400;
  display: flex;
}
.adyen-checkout__spinner__wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}
.adyen-checkout__spinner__wrapper--inline {
  height: auto;
  margin-right: 8px;
  display: inline-block;
}
.adyen-checkout__spinner {
  border: 2px solid #06f;
  border-top-color: transparent;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  animation: 2s linear infinite rotateSpinner;
}
.adyen-checkout__spinner--large {
  width: 43px;
  height: 43px;
}
.adyen-checkout__spinner--small {
  width: 16px;
  height: 16px;
}
.adyen-checkout__spinner--medium {
  width: 28px;
  height: 28px;
}
@keyframes rotateSpinner {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.adyen-checkout__icon svg {
  fill: currentColor;
}
.adyen-checkout__open-invoice
  .adyen-checkout__input-wrapper--socialSecurityNumber
  + .adyen-checkout__error-text {
  max-width: 380px;
}
.adyen-checkout__radio_group + .adyen-checkout-input__inline-validation {
  display: none;
}
.adyen-checkout__radio_group__input {
  opacity: 0;
  position: absolute;
}
.adyen-checkout__radio_group__label {
  margin-bottom: 8px;
  padding-bottom: 0;
  padding-left: 24px;
  font-size: 0.81em;
  font-weight: 400;
  line-height: 16px;
  display: block;
  position: relative;
}
.adyen-checkout__radio_group__label:before {
  content: "";
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: border-color 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
}
.adyen-checkout__radio_group__label:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin: 0 auto;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  transform: scale(0);
  box-shadow: 0 1px 1px rgba(0, 15, 45, 0.25);
}
.adyen-checkout__radio_group__label:hover {
  cursor: pointer;
  border-color: #06f;
}
.adyen-checkout__radio_group__input:checked
  + .adyen-checkout__radio_group__label:before,
.adyen-checkout__radio_group__label--selected {
  background-color: #06f;
  border: 0;
  transition: all 0.3s ease-out;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.26);
}
.adyen-checkout__radio_group__input:checked
  + .adyen-checkout__radio_group__label:after {
  transform: scale(1);
}
.adyen-checkout__radio_group__label.adyen-checkout__radio_group__label--invalid:before {
  border: 1px solid #d10244;
}
.adyen-checkout__checkbox {
  display: block;
}
.adyen-checkout__checkbox__input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.adyen-checkout__checkbox__label {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #00112c;
  cursor: pointer;
  padding-left: 24px;
  font-size: 0.81em;
  font-weight: 400;
  line-height: 16px;
  display: inline-block;
  position: relative;
}
.adyen-checkout__checkbox__input + span:before {
  transform-origin: 100% 100%;
  content: "";
  opacity: 0;
  z-index: 1;
  border: 2px solid #fff;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 0 2px 1px;
  width: 6px;
  height: 11px;
  transition: opacity 0.2s ease-out;
  position: absolute;
  top: 2px;
  left: 1px;
  transform: rotate(37deg);
}
.adyen-checkout__checkbox__input:checked
  + .adyen-checkout__checkbox__label:before {
  opacity: 1;
}
.adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:after {
  content: "";
  z-index: 0;
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 3px;
  width: 16px;
  height: 16px;
  transition: background 0.15s ease-out, border 50ms ease-out,
    box-shadow 0.1s ease-out;
  position: absolute;
  top: 0;
  left: 0;
}
.adyen-checkout__checkbox__input--invalid
  + .adyen-checkout__checkbox__label:after {
  border: 1px solid #d10244;
}
.adyen-checkout__checkbox__input:checked
  + .adyen-checkout__checkbox__label:after {
  background-color: #06f;
  border: 1px solid #06f;
}
.adyen-checkout__checkbox__input:focus + span:after {
  border: 1px solid #06f;
  box-shadow: 0 0 0 2px #99c2ff;
}
.adyen-checkout__dropdown {
  width: 200px;
  max-width: 100%;
  font-size: 1em;
}
.adyen-checkout__dropdown--small {
  width: 130px;
}
.adyen-checkout__dropdown--large {
  width: 300px;
}
.adyen-checkout__dropdown__button {
  background: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 6px;
  outline: 0;
  width: 100%;
  height: 40px;
  padding: 9px 20px 9px 8px;
  font-size: 1em;
  line-height: 20px;
  transition: border 0.2s ease-out, box-shadow 0.2s ease-out;
}
.adyen-checkout__dropdown__button__icon {
  max-width: 40px;
  max-height: 26px;
  margin-right: 8px;
}
.adyen-checkout__dropdown__button--active,
.adyen-checkout__dropdown__button:active,
.adyen-checkout__dropdown__button:focus {
  border-color: #06f;
  box-shadow: 0 0 0 2px #99c2ff;
}
.adyen-checkout__dropdown__button--readonly,
.adyen-checkout__dropdown__button--readonly.adyen-checkout__dropdown__button--active {
  color: #00112c;
  cursor: not-allowed;
  background: #e6e9eb;
}
.adyen-checkout__dropdown__button--invalid {
  border-color: #d10244;
}
.adyen-checkout__dropdown__button__text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.adyen-checkout__dropdown__list {
  z-index: 2;
  border-radius: 6px;
  max-height: 360px;
  margin-top: 2px;
  box-shadow: 0 2px 7px rgba(0, 15, 45, 0.3);
}
.adyen-checkout__dropdown__element {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  cursor: pointer;
  word-break: break-word;
  border: 1px solid transparent;
  border-bottom-color: #e6e9eb;
  outline: 0;
  padding: 8px;
  font-size: 0.81em;
  line-height: 20px;
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
}
.adyen-checkout__dropdown__element:last-child {
  border-bottom: 0;
}
.adyen-checkout__dropdown__element:active,
.adyen-checkout__dropdown__element:focus,
.adyen-checkout__dropdown__element:hover {
  background: rgba(230, 233, 235, 0.6);
}
.adyen-checkout__dropdown__element:active,
.adyen-checkout__dropdown__element:focus {
  border-top-color: #06f;
  border-bottom-color: #06f;
}
.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active {
  background: rgba(0, 102, 255, 0.1);
}
.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active:active,
.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active:focus,
.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active:hover {
  background: rgba(0, 102, 255, 0.15);
}
.adyen-checkout__dropdown__element__icon {
  border-radius: 3px;
  max-width: 40px;
  max-height: 26px;
  margin-right: 8px;
}
.adyen-checkout__dropdown + .adyen-checkout-input__inline-validation {
  right: 32px;
}
.adyen-checkout__select-list {
  margin: 0;
  padding: 0;
}
.adyen-checkout__select-list__item {
  cursor: pointer;
  background: #fff;
  border: 1px solid transparent;
  border-bottom-color: #e6e9eb;
  outline: 0;
  width: 100%;
  padding: 9px;
  font-size: 1em;
  line-height: 20px;
  display: inline-block;
}
.adyen-checkout__select-list__item:first-child {
  border-top: 0;
}
.adyen-checkout__select-list__item:active,
.adyen-checkout__select-list__item:focus,
.adyen-checkout__select-list__item:hover {
  background: rgba(230, 233, 235, 0.6);
}
.adyen-checkout__select-list__item--selected {
  background: rgba(0, 102, 255, 0.1);
  font-weight: 500;
}
.adyen-checkout__select-list__item--selected:active,
.adyen-checkout__select-list__item--selected:focus,
.adyen-checkout__select-list__item--selected:hover {
  background: rgba(0, 102, 255, 0.15);
}
.adyen-checkout__input {
  color: #00112c;
  background: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 6px;
  outline: none;
  width: 200px;
  height: 40px;
  padding: 5px 8px;
  font-family: inherit;
  font-size: 1em;
  transition: border 0.2s ease-out, box-shadow 0.2s ease-out;
  display: block;
  position: relative;
}
.adyen-checkout__input:required {
  box-shadow: none;
}
.adyen-checkout__input-wrapper {
  display: inline-block;
  position: relative;
}
.adyen-checkout__input-wrapper--block {
  display: block;
}
.adyen-checkout-input__inline-validation {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
.adyen-checkout-input__inline-validation--valid {
  color: #0abf53;
}
.adyen-checkout-input__inline-validation--invalid {
  color: #d10244;
}
.adyen-checkout__input--small {
  width: 134px;
}
.adyen-checkout__input--large {
  width: 300px;
}
.adyen-checkout__input--invalid {
  border-color: #d10244;
}
.adyen-checkout__input--valid {
  border-bottom-color: #0abf53;
}
.adyen-checkout__input--error {
  border-color: #d10244;
}
.adyen-checkout__input::-webkit-input-placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.adyen-checkout__input:-ms-input-placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.adyen-checkout__input::placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.adyen-checkout__input::placeholder {
  color: #b9c4c9;
  font-weight: 200;
}
.adyen-checkout__input--focus,
.adyen-checkout__input:active,
.adyen-checkout__input:focus {
  border: 1px solid #06f;
  box-shadow: 0 0 0 2px #99c2ff;
}
.adyen-checkout__input[readonly] {
  color: #687282;
  cursor: default;
  background-color: #e6e9eb;
  border-color: transparent;
}
.adyen-checkout__fieldset {
  color: #687282;
  width: 100%;
  padding-bottom: 30px;
  display: block;
}
.adyen-checkout__fieldset__title {
  color: #687282;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 20px;
  font-size: 0.68em;
  font-weight: 700;
  display: block;
}
.adyen-checkout__fieldset--readonly {
  color: #00112c;
  margin: 0;
  font-size: 0.81em;
  line-height: 19px;
}
.adyen-checkout__open-invoice .adyen-checkout__checkbox--consent-checkbox {
  max-width: 540px;
}
.adyen-checkout__open-invoice .adyen-checkout__checkbox {
  margin: 0 0 20px;
}
.adyen-checkout__link--more-information {
  font-size: 0.81em;
}
.adyen-checkout__applepay__button {
  width: 240px;
  height: 40px;
}
.adyen-checkout__card-input__form {
  transition: opacity 0.25s ease-out;
}
.adyen-checkout__card__exp-cvc {
  display: flex;
}
.adyen-checkout__card__cardNumber {
  max-width: 400px;
}
.adyen-checkout__card__cardNumber__input {
  padding: 5px 8px 5px 57px;
}
.adyen-checkout__card__exp-date__input--oneclick {
  height: 40px;
  font-weight: 400;
  line-height: 40px;
}
.adyen-checkout__card__exp-cvc .adyen-checkout__field {
  margin-bottom: 0;
  margin-right: 32px;
}
.adyen-checkout__card-input .adyen-checkout__store-details {
  margin-top: 16px;
}
.adyen-checkout__giropay__results {
  background: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 6px;
  width: 100%;
  min-width: 300px;
  min-height: 100px;
  max-height: 140px;
  overflow-y: scroll;
}
.adyen-checkout__giropay__no-results {
  color: #687282;
  padding: 0 0 0 2px;
  font-size: 0.81em;
  display: block;
}
.adyen-checkout__giropay__placeholder {
  color: #b9c4c9;
  padding: 0 0 0 2px;
  font-weight: 200;
  display: block;
}
.adyen-checkout__giropay__loading {
  min-height: 100px;
  display: block;
}
.adyen-checkout__giropay__loading .adyen-checkout__spinner__wrapper {
  vertical-align: middle;
  display: inline-block;
}
.adyen-checkout__giropay__loading-text {
  color: #687282;
  vertical-align: middle;
  font-size: 0.81em;
  line-height: 16px;
}
.adyen-checkout__giropay__error {
  color: #d10244;
  font-size: 0.81em;
}
.adyen-checkout__button {
  color: #fff;
  cursor: pointer;
  background: #00112c;
  border: 0;
  border-radius: 6px;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 15px;
  font-size: 1em;
  font-weight: 700;
  transition: background 0.3s ease-out;
  box-shadow: 0 3px 4px rgba(0, 15, 45, 0.2);
}
.adyen-checkout__button:disabled {
  -webkit-user-select: all;
  -ms-user-select: all;
  user-select: all;
  box-shadow: none;
  cursor: not-allowed;
  background: #e6e9eb;
}
.adyen-checkout__button--loading {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: none;
  pointer-events: none;
  background: #687282;
  outline: 0;
}
.adyen-checkout__button .adyen-checkout__spinner {
  border-width: 3px;
  border-color: transparent #fff #fff;
}
.adyen-checkout__button__content {
  justify-content: center;
  align-items: center;
  display: flex;
}
.adyen-checkout__phone-input {
  display: flex;
}
.adyen-checkout__phone-input__prefix {
  margin-bottom: 0;
  margin-right: 0.5em;
}
.adyen-checkout__input--phone-number {
  margin-bottom: 0;
}
.adyen-checkout__iban-input__number {
  text-transform: uppercase;
  padding: 5px 36px 5px 8px;
}
.adyen-checkout__threeds2__challenge,
.adyen-checkout__threeds2__challenge-container {
  box-sizing: border-box;
  background-color: transparent;
  width: 100%;
  display: block;
  overflow: auto;
}
.adyen-checkout__threeds2__challenge-container--01 {
  width: 250px;
  height: 400px;
}
.adyen-checkout__threeds2__challenge-container--02 {
  width: 390px;
  height: 400px;
}
.adyen-checkout__threeds2__challenge-container--03 {
  width: 500px;
  height: 600px;
}
.adyen-checkout__threeds2__challenge-container--04 {
  width: 600px;
  height: 400px;
}
.adyen-checkout__threeds2_challenge-container--05 {
  width: 100%;
  height: 100%;
}
.adyen-checkout__threeds2__challenge.adyen-checkout__threeds2__challenge--05 {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.adyen-checkout__threeds2__challenge.adyen-checkout__threeds2__challenge--05
  .adyen-checkout__iframe--threeDSIframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.adyen-checkout__qr-loader {
  text-align: center;
  background: #fff;
  border: 1px solid #d4d9db;
  border-radius: 6px;
  padding: 40px;
}
.adyen-checkout__qr-loader--app {
  border: 0;
  border-radius: 0;
  padding: 0;
}
.adyen-checkout__qr-loader__brand-logo {
  width: 110px;
  max-height: 50px;
}
.adyen-checkout__qr-loader__subtitle {
  margin-top: 32px;
}
.adyen-checkout__qr-loader__payment_amount,
.adyen-checkout__qr-loader__subtitle {
  color: #00112c;
  font-size: 1em;
  line-height: 19px;
}
.adyen-checkout__qr-loader__payment_amount {
  font-weight: 700;
}
.adyen-checkout__qr-loader__progress {
  background: #d4d9db;
  border-radius: 25px;
  width: 152px;
  height: 4px;
  margin: 32px auto 12px;
  padding-right: 3%;
}
.adyen-checkout__qr-loader__percentage {
  background: #06f;
  border-radius: 25px;
  height: 100%;
  display: block;
}
.adyen-checkout__qr-loader__countdown {
  color: #687282;
  font-size: 0.81em;
}
.adyen-checkout__qr-loader > .adyen-checkout__spinner__wrapper {
  margin: 60px 0;
}
.adyen-checkout__qr-loader__separator__label {
  color: #687282;
  z-index: 1;
  background: #fff;
  border-radius: 100%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  display: inline-block;
  position: relative;
}
.adyen-checkout__qr-loader__separator__line {
  border-top: 1px solid #d4d9db;
  display: block;
  transform: translateY(-17px);
}
.adyen-checkout__button.adyen-checkout__button--qr-loader {
  text-decoration: none;
  display: block;
}
.adyen-checkout__voucher-result {
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  border: 1px solid #d4d9db;
  border-radius: 6px;
  padding: 20px 16px 56px;
}
.adyen-checkout__voucher-result__image {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  display: flex;
}
.adyen-checkout__voucher-result__image__wrapper {
  width: 120px;
  padding: 8px;
  display: inline-block;
}
.adyen-checkout__voucher-result__image__wrapper:nth-child(2) {
  border-left: 1px solid #d4d9db;
}
.adyen-checkout__voucher-result__image__brand,
.adyen-checkout__voucher-result__image__issuer {
  height: 34px;
}
.adyen-checkout__voucher-result__image__brand {
  height: 60px;
}
.adyen-checkout__voucher-result__introduction {
  color: #00112c;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  font-size: 0.81em;
  line-height: 19px;
}
.adyen-checkout__voucher-result__amount {
  color: #00112c;
  text-align: center;
  margin: 24px auto 0;
  font-size: 1em;
  font-weight: 700;
}
.adyen-checkout__voucher-result__surcharge {
  color: #687282;
  text-align: center;
  font-size: 0.81em;
  font-weight: 400;
  line-height: 19px;
  display: block;
}
.adyen-checkout__voucher-result__code__label {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  margin: 0 auto;
  font-weight: 400;
  display: block;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
}
.adyen-checkout__voucher-result__code__label__text {
  color: #00112c;
  background: #fff;
  padding: 0 8px;
  font-size: 13px;
}
.adyen-checkout__voucher-result__code {
  -webkit-user-select: all;
  -ms-user-select: all;
  user-select: all;
  color: #00112c;
  letter-spacing: 1px;
  text-align: center;
  border: 1px solid #e6e9eb;
  border-radius: 6px;
  width: 300px;
  min-width: 200px;
  max-width: 100%;
  margin: 20px auto 16px;
  padding: 28px 48px 24px;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 19px;
  display: inline-block;
  position: relative;
}
.adyen-checkout__voucher-result__details {
  max-width: 300px;
  margin: 8px auto 0;
  padding: 0;
  list-style: none;
}
.adyen-checkout__voucher-result__details__item {
  color: #00112c;
  word-break: break-word;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.81em;
  display: flex;
}
.adyen-checkout__voucher-result__details__item:last-child {
  margin-bottom: 0;
}
.adyen-checkout__voucher-result__details__label {
  text-align: left;
  max-width: 50%;
}
.adyen-checkout__voucher-result__details__value {
  text-align: right;
  max-width: 50%;
  font-weight: 700;
}
.adyen-checkout__payment-method {
  cursor: pointer;
  background: #fff;
  border: 1px solid #d4d9db;
  width: 100%;
  margin-top: -1px;
  transition: opacity 0.3s ease-out;
  position: relative;
}
.adyen-checkout__payment-method:focus {
  outline: 0;
}
.adyen-checkout__payment-method--selected + .adyen-checkout__payment-method,
.adyen-checkout__payment-method:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin-top: 0;
}
.adyen-checkout__payment-method--next-selected,
.adyen-checkout__payment-method:last-child {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  margin-bottom: 0;
}
.adyen-checkout__payment-method--loading {
  opacity: 0.2;
}
.adyen-checkout__payment-method--selected.adyen-checkout__payment-method--loading {
  opacity: 0.9;
}
.adyen-checkout__payment-method--disabling {
  opacity: 0.5;
}
.adyen-checkout__payment-method__header {
  color: #00112c;
  align-items: center;
  width: 100%;
  padding: 16px;
  font-size: 1em;
  font-weight: 400;
  transition: background 0.1s ease-out;
  display: flex;
  position: relative;
}
.adyen-checkout__payment-method__surcharge {
  color: #687282;
  margin-left: 5px;
}
.adyen-checkout__payment-method--selected {
  cursor: default;
  background: #f7f8f9;
  border: 1px solid #d4d9db;
  border-radius: 6px;
  margin: 8px 0;
  transition: margin 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-out;
}
.adyen-checkout__payment-method__name--selected {
  font-weight: 500;
}
.adyen-checkout__payment-method__details {
  padding: 0 16px;
}
.adyen-checkout__payment-method__details__content {
  margin: 6px 0 22px;
}
.adyen-checkout__payment-method__image__wrapper {
  height: 26px;
  position: relative;
}
.adyen-checkout__payment-method__image__wrapper:after {
  content: "";
  border: 1px solid rgba(0, 27, 43, 0.17);
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.adyen-checkout__payment-method__image {
  border-radius: 3px;
}
.adyen-checkout__payment-method__disable-confirmation {
  color: #00112c;
  background: #e6e9eb;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 16px;
  font-size: 0.94em;
  display: flex;
}
.adyen-checkout__payment-method__disable-confirmation__buttons {
  display: flex;
}
.adyen-checkout__payment-method__disable-confirmation__button {
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 6px;
  margin: 0 0 0 8px;
  padding: 8px;
  font-size: 0.81em;
  line-height: 15px;
}
.adyen-checkout__payment-method__disable-confirmation__button--remove {
  color: #fff;
  background: #d10244;
  border-color: #d10244;
}
.adyen-checkout__payment-method__disable-confirmation__button--cancel {
  color: #00112c;
  background: 0 0;
  border-color: #00112c;
}
.adyen-checkout__payment-method__radio {
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transition: border-color 0.3s ease-out;
  position: absolute;
  right: 20px;
  box-shadow: inset 0 1px 3px rgba(0, 27, 43, 0.15);
}
.adyen-checkout__payment-method__radio:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin: 0 auto;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%) scale(0);
  box-shadow: 0 1px 1px rgba(0, 15, 45, 0.25);
}
.adyen-checkout__payment-method__radio:hover {
  cursor: pointer;
  border-color: #06f;
}
.adyen-checkout__payment-method__radio--selected {
  background-color: #06f;
  border: 0;
  transition: all 0.3s ease-out;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.26);
}
.adyen-checkout__payment-method__radio--selected:after {
  transform: translateY(-50%) scale(1);
}
.adyen-checkout__button--pay {
  margin-bottom: 16px;
}
.adyen-checkout__status {
  color: #001b2b;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d4d9db;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 350px;
  margin: 0;
  padding: 32px;
  font-size: 16px;
  display: flex;
}
.adyen-checkout__status__icon {
  margin-bottom: 24px;
}
.adyen-checkout__dropin,
.adyen-checkout__dropin *,
.adyen-checkout__dropin :after,
.adyen-checkout__dropin :before {
  box-sizing: border-box;
}
.adyen-checkout__payment-methods-list--loading {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.adyen-checkout__link {
  color: #06f;
  text-decoration: none;
}
.adyen-checkout__link:hover {
  text-decoration: underline;
}
.adyen-checkout__input {
  color: #666;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  height: 44px;
}
.adyen-checkout__card-input {
  background: 0 0;
  border: none;
}
.adyen-checkout__card-input
  .adyen-checkout__label--focused
  .adyen-checkout__label__text {
  color: #404040;
}
.adyen-checkout__card-input .adyen-checkout__spinner {
  border: 2px solid #404040;
  border-top-color: transparent;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  animation: 2s linear infinite rotateSpinner;
}
.adyen-checkout__card-input .adyen-checkout__field {
  width: 100%;
}
.adyen-checkout__card-input .adyen-checkout__field__cvc {
  margin-right: 0;
}
.adyen-checkout__card-input .adyen-checkout__input-wrapper {
  width: 100%;
  font-family: RHSans, Helvetica, Arial, sans-serif;
  font-size: 10px;
}
.adyen-checkout__card-input
  .adyen-checkout__input-wrapper
  .adyen-checkout__input {
  width: 100%;
}
.adyen-checkout__card-input .adyen-checkout__input--focus,
.adyen-checkout__card-input .adyen-checkout__input:active,
.adyen-checkout__card-input .adyen-checkout__input:focus {
  box-shadow: 0 0 0 2px #fafafa cc;
  border: 1px solid #e9e9e9;
}
.adyen-checkout__card-input .adyen-checkout__payment-method__image__wrapper {
  display: none;
}
.adyen-checkout__card-input
  .adyen-checkout__button.adyen-checkout__button--pay {
  letter-spacing: 1px;
  box-shadow: none;
  text-transform: uppercase;
  background: #000;
  border-radius: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 22px;
  font-family: RHSans, Helvetica, Arial, sans-serif;
  font-size: 10px;
}
.adyen-checkout__card-input
  .adyen-checkout__button.adyen-checkout__button--pay:hover {
  background-color: #404040;
}
@media screen and (min-device-width: 0) and (max-device-width: 767px) {
  .adyen-checkout__card-input
    .adyen-checkout__button.adyen-checkout__button--pay {
    width: 100%;
    padding: 16px 22px;
  }
}
.adyen-checkout__card-input__radio {
  right: 0;
}
.adyen-checkout__card-input__radio:hover {
  border-color: #666;
}
.adyen-checkout__card-input__radio--selected {
  background-color: #000;
}
.adyen-checkout__card-input__header {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 4px 0;
}
.adyen-checkout__card-input__details {
  padding: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready {
  background: 0 0;
  border: none;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__spinner {
  border: 2px solid #404040;
  border-top-color: transparent;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  animation: 2s linear infinite rotateSpinner;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__field {
  width: 100%;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__field__cvc {
  margin-right: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__input-wrapper {
  width: 100%;
  font-family: RHSans, Helvetica, Arial, sans-serif;
  font-size: 10px;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__input-wrapper
  .adyen-checkout__input {
  width: 100%;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__input--focus,
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__input:active,
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__input:focus {
  box-shadow: 0 0 0 2px #fafafa cc;
  border: 1px solid #e9e9e9;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__payment-method__image__wrapper {
  display: none;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__button.adyen-checkout__button--pay {
  letter-spacing: 1px;
  box-shadow: none;
  text-transform: uppercase;
  background: #000;
  border-radius: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 22px;
  font-family: RHSans, Helvetica, Arial, sans-serif;
  font-size: 10px;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready
  .adyen-checkout__button.adyen-checkout__button--pay:hover {
  background-color: #404040;
}
@media screen and (min-device-width: 0) and (max-device-width: 767px) {
  .adyen-checkout__card-input.adyen-checkout__card-input--ready
    .adyen-checkout__button.adyen-checkout__button--pay {
    width: 100%;
    padding: 16px 22px;
  }
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready__radio {
  right: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready__radio:hover {
  border-color: #666;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready__radio--selected {
  background-color: #000;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready__header {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 4px 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--ready__details {
  padding: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading {
  background: 0 0;
  border: none;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__spinner {
  border: 2px solid #404040;
  border-top-color: transparent;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  animation: 2s linear infinite rotateSpinner;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__field {
  width: 100%;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__field__cvc {
  margin-right: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__input-wrapper {
  width: 100%;
  font-family: RHSans, Helvetica, Arial, sans-serif;
  font-size: 10px;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__input-wrapper
  .adyen-checkout__input {
  width: 100%;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__input--focus,
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__input:active,
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__input:focus {
  box-shadow: 0 0 0 2px #fafafa cc;
  border: 1px solid #e9e9e9;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__payment-method__image__wrapper {
  display: none;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__button.adyen-checkout__button--pay {
  letter-spacing: 1px;
  box-shadow: none;
  text-transform: uppercase;
  background: #000;
  border-radius: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 22px;
  font-family: RHSans, Helvetica, Arial, sans-serif;
  font-size: 10px;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading
  .adyen-checkout__button.adyen-checkout__button--pay:hover {
  background-color: #404040;
}
@media screen and (min-device-width: 0) and (max-device-width: 767px) {
  .adyen-checkout__card-input.adyen-checkout__card-input--loading
    .adyen-checkout__button.adyen-checkout__button--pay {
    width: 100%;
    padding: 16px 22px;
  }
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading__radio {
  right: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading__radio:hover {
  border-color: #666;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading__radio--selected {
  background-color: #000;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading__header {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 4px 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--loading__details {
  padding: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input-- {
  background: 0 0;
  border: none;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__spinner {
  border: 2px solid #404040;
  border-top-color: transparent;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  animation: 2s linear infinite rotateSpinner;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__field {
  width: 100%;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__field__cvc {
  margin-right: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__input-wrapper {
  width: 100%;
  font-family: RHSans, Helvetica, Arial, sans-serif;
  font-size: 10px;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__input-wrapper
  .adyen-checkout__input {
  width: 100%;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__input--focus,
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__input:active,
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__input:focus {
  box-shadow: 0 0 0 2px #fafafa cc;
  border: 1px solid #e9e9e9;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__payment-method__image__wrapper {
  display: none;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__button.adyen-checkout__button--pay {
  letter-spacing: 1px;
  box-shadow: none;
  text-transform: uppercase;
  background: #000;
  border-radius: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 22px;
  font-family: RHSans, Helvetica, Arial, sans-serif;
  font-size: 10px;
}
.adyen-checkout__card-input.adyen-checkout__card-input--
  .adyen-checkout__button.adyen-checkout__button--pay:hover {
  background-color: #404040;
}
@media screen and (min-device-width: 0) and (max-device-width: 767px) {
  .adyen-checkout__card-input.adyen-checkout__card-input--
    .adyen-checkout__button.adyen-checkout__button--pay {
    width: 100%;
    padding: 16px 22px;
  }
}
.adyen-checkout__card-input.adyen-checkout__card-input--__radio {
  right: 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--__radio:hover {
  border-color: #666;
}
.adyen-checkout__card-input.adyen-checkout__card-input--__radio--selected {
  background-color: #000;
}
.adyen-checkout__card-input.adyen-checkout__card-input--__header {
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 4px 0;
}
.adyen-checkout__card-input.adyen-checkout__card-input--__details {
  padding: 0;
}
