.dnt-checkout {
  --bg: #fff;
  --destak: #ffce44;
  --error: #eb4747;
  --input: #ebebeb;
  --hover: #f5f5f5;
  --focus: var(--hover);
  --focus-bd: #3a3a3a;
  --font: 'Poppins', sans-serif;

  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font);
}

.dnt-checkout .dnt-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-block-end: 0;
  border-radius: 16px;
  padding: 16px 8px;
  background-color: var(--bg);
}

.dnt-checkout .dnt-form ol,
.dnt-checkout .dnt-form ul {
  margin: 0;
  list-style: none;
}

.dnt-checkout .dnt-form .dnt-headline {
  margin-bottom: 0;
  color: #3a3a3a;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.dnt-checkout .dnt-form .dnt-subheadline {
  color: #616161;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  pointer-events: none;
  user-select: none;
}

.dnt-checkout .dnt-form #dnt-order {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dnt-checkout .dnt-form .dnt-frequency--group,
.dnt-checkout .dnt-form .dnt-amount--group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.dnt-checkout .dnt-form .dnt-frequency--group .dnt-field,
.dnt-checkout .dnt-form .dnt-amount--group .dnt-field {
  flex: 1;
}

.dnt-checkout .dnt-form .dnt-radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.dnt-checkout .dnt-form .dnt-label {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  height: 40px;
  background-color: var(--input);
  color: #3a3a3a;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 16px;
  cursor: pointer;
}
.dnt-checkout .dnt-form .dnt-label:hover {
  background-color: var(--hover);
}
.dnt-checkout .dnt-form .dnt-radio:checked + .dnt-label {
  background-color: var(--destak);
}

.dnt-checkout .dnt-form .dnt-label-wrapper {
  gap: 2px;
}

.dnt-checkout .dnt-form #dnt-amount #dnt-amount-other:checked ~ .dnt-amount-item--other-label {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.dnt-checkout .dnt-form #dnt-amount #dnt-amount-other:checked ~ .dnt-amount-item--other-label .dnt-amount-item--other-label-pre {
  display: none;
}

.dnt-checkout .dnt-form #dnt-amount .dnt-amount-item--other-label .dnt-amount-item--other-label-pre {
  text-transform: initial;
}

.dnt-checkout .dnt-form #dnt-amount #dnt-amount-other ~ .dnt-amount-item--other-label .dnt-amount-item--other-label-after {
  display: none;
}
.dnt-checkout .dnt-form #dnt-amount #dnt-amount-other:checked ~ .dnt-amount-item--other-label .dnt-amount-item--other-label-after {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dnt-checkout .dnt-form #dnt-amount .dnt-amount-item--other-label .dnt-amount-item--other-label-after .dnt-amount-label--price {
  margin: 0;
  height: 40px;
  padding: 0;
  border: none;
  outline: 0;
  background-color: transparent;
  color: #3a3a3a;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}
@supports (field-sizing:content) {
  .dnt-checkout .dnt-form #dnt-amount .dnt-amount-item--other-label .dnt-amount-item--other-label-after .dnt-amount-label--price {
    field-sizing: content;
  }
}

.dnt-checkout .dnt-form #dnt-amount .dnt-amount--alert {
  color: var(--error);
  font-weight: 400;
  font-size: 8px;
  text-align: right;
  line-height: 16px;
}



.dnt-checkout .dnt-form #dnt-billing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper {
  display: grid;
  gap: 8px;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group {
  height: 32px;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group .dnt-input {
  height: 100%;
  width: 100%;
  padding: 8px;
  border: .5px solid var(--input);
  border-radius: 8px;
  background-color: var(--input);
  color: #616161;
  font-weight: 400;
  font-size: 12px;
  font-family: var(--font);
  line-height: 16px;
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group .dnt-input:focus {
  border-color: var(--focus-bd);
  background-color: var(--focus);
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group .dnt-input.dnt-input--error {
  border-color: var(--error);
}



.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--text {
  z-index: 1;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select {
  display: grid;
  grid-template-columns: 16px 1fr 8px 16px 16px;
  position: relative;
  z-index: 2;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--view {
  grid-area: 1 / 1 / auto / -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--box {
  grid-area: 1 / 1 / auto / -1;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background-color: var(--input);
  color: #616161;
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--view:checked ~ .dnt-select--box {
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--placeholder {
  display: flex;
  grid-area: 1 / 2;
  align-items: center;
  color: #616161;
  font-weight: 400;
  font-size: 12px;
  font-family: var(--font);
  text-align: left;
  line-height: 16px;
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--view:checked ~ .dnt-select--placeholder {
  /* opacity: 0; */
  pointer-events: none;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--chevron {
  display: flex;
  grid-area: 1 / 4;
  justify-content: center;
  align-items: center;
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--chevron::before {
  display: block;
  content: '';
  border-top: 8px solid #616161;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--view:checked ~ .field-select--chevron::before {
  transform: rotate(180deg);
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--dropdown {
  position: absolute;
  top: 100%;
  z-index: 4;
  width: 100%;
  border-radius: 0 0 8px 8px;
  background-color: var(--input);
  color: #616161;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  overflow: hidden;
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--view ~ .dnt-select--dropdown {
  display: none;
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--view:checked ~ .dnt-select--dropdown {
  display: block;
  border-top: none;
}

.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--dropdown .dnt-select--dropdown-option {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  cursor: pointer;
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--dropdown .dnt-select--dropdown-option:hover {
  background-color: var(--hover);
}
.dnt-checkout .dnt-form #dnt-billing .wrapper .dnt-group.dnt-group--select .dnt-select--dropdown .dnt-select--dropdown-option[aria-selected=true] {
  background-color: var(--destak);
}





.dnt-checkout .dnt-form .dnt-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 100%;
  border-radius: 8px;
  background-color: var(--destak);
  color: #3a3a3a;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 16px;
}

.dnt-checkout .dnt-form #dnt-privacy .dnt-privacy-text {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 8px;
  line-height: 12px;
}
.dnt-checkout .dnt-form #dnt-privacy .dnt-privacy-link {
  color: inherit;
  text-decoration: underline;
}

.dnt-checkout .dnt-form #dnt-security {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #3a3a3a;
}

.dnt-checkout .dnt-form #dnt-security .dnt-security-icon,
.dnt-checkout .dnt-form #dnt-security .dnt-security-label {
  font-weight: 600;
  font-size: 10px;
  line-height: 16px;
}



.dnt-checkout .dnt-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.dnt-checkout .dnt-logos .dnt-logo--ngo {
  height: 64px;
}

.dnt-checkout .dnt-logos .dnt-logo--stamp {
  height: 40px;
}