:root {
  --gutter: clamp(16px, 3vw, 40px);
  --card-max: 560px;
  /* form/content max width */
  --scrim: rgba(0, 0, 0, .35);
  /* overlay dimmer for readability */
}

/* ===== Wrapper (mobile-first: overlay look) ===== */
.sw-d-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* fallback */
  min-height: 100svh;
  /* mobile browser UI safe */
  overflow: hidden;
}

/* Content area / centered card */
.sw-d-content {
  position: relative;
  z-index: 1;
  padding: var(--gutter);
  width: 100%;
  box-sizing: border-box;

}

.sw-d-inner {
  margin-inline: auto;
  width: min(100%, var(--card-max));
  box-sizing: border-box;
  display: grid;
  gap: 20px;
  color: #fff;

  /* "glass" card for overlay/mobile */
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 30px 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  margin-bottom: 30px;
  background-color: var(--form-color);
}

.sw-d-btn {
  margin-inline: auto;
  width: min(100%, var(--card-max));
  box-sizing: border-box;
  display: grid;
  gap: 20px;
  color: #fff;
  padding: 0px 30px 0;
}

.sw-d-logo {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 20px;
}

.sw-d-logo img {
  max-height: 15px;
  width: auto;
  margin: 10px 15px 20px 0;
}

.sw-d-logo svg {
  max-height: 25px;
  width: 120px;
  margin: 10px 15px 20px 0;
}

/* ===== Desktop/tablet split layouts (≥900px) ===== */
@media (min-width: 900px) {

  .layout--form-left .sw-d-content,
  .layout--form-right .sw-d-content {
    position: relative;
    color: #fff;
  }

  .layout--form-left .sw-d-btn,
  .layout--form-right .sw-d-btn {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    width: min(100%, var(--card-max));
  }

  .sw-d-logo {
    margin-bottom: 10px;
  }

  .sw-d-logo img {
    max-height: 20px;
    width: auto;
    margin: 10px 30px 20px 0;
  }

  .sw-d-logo svg {
    width: 120px;
    height: auto;
    display: block;
}

}

/* inputs and buttons */
.swish-donation-form h3 {
  margin-bottom: 15px;
}

.swish-donation-form form input,
.swish-donation-form form select {
  width: 100%;
  margin-bottom: 0px;
  padding-left: 20px;
  appearance: textfield;
  height: 58px;
}

.sw-field-error{
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.swish-donation-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-direction: column;
  align-items: center;
}

.swish-donation-amount-btn {
  cursor: pointer;
  font-size: 18px;
  padding: 20px 2px;
  justify-self: center;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  background-color: #fa6900;
  border: none;
  color: #fff;
  width: 100%;
}

#swish-donation-response, #swish-cancel-message {
  margin-bottom: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.layout-btn-inline .swish-donation-buttons {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.layout-btn-inline .swish-donation-buttons .swish-donation-amount-btn {
  width: auto;
  flex-grow: 1;
  border-radius: 64px;
}

.layout-btn-inline .swish-donation-buttons>* {
  flex: 0 0 calc(50% - 10px)
}

@media (max-width: 900px) {
  .swish-donation-amount-btn {
    cursor: pointer;
    font-size: 16px;
    padding: 20px 2px;
  }

  .swish-donation-buttons {
    gap: 15px;
  }
}

.swish-donation-amount-btn:hover,
.swish-donation-amount-btn.selected {
  opacity: 0.8;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* #custom_amount{
  margin-top: -10px;
  margin-bottom: 5px;
} */

#go-to-step-2{
  margin-top: 20px;
}

.sw-d-inner h1 {
  font-size: 39px;
  line-height: 49px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sw-d-inner,
.sw-d-btn {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .sw-d-inner h1 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 0;
  }

  .sw-d-inner,
  .sw-d-btn {
    font-size: 16px;
    line-height: 24px;
  }
}

.sw-d-custom-amount-holder {
  max-width: 300px;
  margin: 0 auto;
}

.sw-d-custom-amount,
.sw-d-custom-amount-holder label {
  font-size: 16px;
  display: block;
  padding: 0 0 0px 0;
  color: white;
}

.sw-d-copy {
  color: #fff;
}

.sw-d-copy p {
  font-size: 14px;
}

.swish-donation-form p {
  /* font-size: 14px;
  text-align: center;*/
  margin-bottom: 20px;
  /* color: #fff; */
}

.swish-donation-form a {
  /* color: #fff; */
  font-weight: 600;
  text-underline-offset: 4px;
}

.swish-donation-form{
  padding: 20px 10px;
}

.sw-d-back-link {
  padding-bottom: 30px;
  text-align: center;
}

.sw-d-back-link a {
  font-weight: 300;
}

/* for review */
/* Mobile-first overlay keeps working the same */
.sw-d-media {
  position: absolute;
  inset: 0;
}

.sw-d-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dimmer only for overlay/mobile readability */
.sw-d-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,.35); */
}

/* Split layouts on ≥900px */
@media (min-width:900px) {

  .layout--form-left,
  .layout--form-right {
    align-items: stretch;
    justify-content: stretch;
  }

  .layout--form-left {
    flex-direction: row;
  }

  .layout--form-right {
    flex-direction: row-reverse;
  }

  .layout--form-left .sw-d-media,
  .layout--form-right .sw-d-media {
    position: relative;
    /* IMPORTANT so the img fills just the column */
    flex: 0 0 50%;
    min-width: 0;
    overflow: hidden;
  }

  .layout--form-left .sw-d-media::after,
  .layout--form-right .sw-d-media::after {
    content: none;
  }

  /* no scrim on split */

  .layout--form-left .sw-d-content,
  .layout--form-right .sw-d-content {
    flex: 0 0 50%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--gutter);
    /*background: radial-gradient(120% 120% at 10% 10%, #0b3a4b, #09212c);*/
    background-color:  var(--bg-color);
  }

  .layout--form-left .sw-d-inner,
  .layout--form-right .sw-d-inner {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    width: min(100%, var(--card-max));

  }
}

/* Blur setting */
.sw-d-inner-blur--0 {
  background: none;
  backdrop-filter: blur(0px);
  box-shadow: none;
}

.sw-d-inner-blur--1 {
  backdrop-filter: blur(1px);
}

.sw-d-inner-blur--3 {
  backdrop-filter: blur(3px);
}

.sw-d-inner-blur--6 {
  backdrop-filter: blur(6px);
}

.sw-d-inner-blur--10 {
  backdrop-filter: blur(10px);
}

/*loader css*/
.swish-wait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  color: #fff
}

.classic-widget .swish-wait {
  color: #000;
}

.phone {
  width: 60px;
  height: auto
}

.frame {
  fill: none;
  stroke: currentColor;
  stroke-width: 6
}

.notch {
  fill: currentColor;
  opacity: .7
}

.pulse {
  fill: currentColor;
  opacity: .4;
  transform-origin: 60px 100px;
  animation: ring 1.8s ease-out infinite
}

.p2 {
  animation-delay: .4s
}

.p3 {
  animation-delay: .8s
}

@keyframes ring {
  0% {
    transform: scale(.6);
    opacity: .9
  }

  80% {
    transform: scale(1.9);
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse {
    animation: none;
    opacity: .25
  }
}

.list-disc li:before, .list-numbered li:before {
  left: -5px !important;
  position: relative !important;
}

 .sw-d-media--color {
    background-size: cover;
    background-position: center;
  }

@media (max-width: 900px){
  .swish-amount-grid{ grid-template-columns: 1fr; }
}

/* make label look like selectable card */
.swish-amount-card {
  background: #fff;
}

.swish-amount-radio{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.swish-amount-card__title{ font-weight:600; }
.swish-amount-card__value{ font-weight:700; }

.sw-stepper {
  --step-inactive: #ddd8d3;
  --step-text-inactive: #d8d3ce;
  --step-active: #000;
  --step-done: #78be20;
  --step-line: #ddd8d3;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 20px 0 18px;
  border-bottom: 1px solid #f1eeea;
}

.sw-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.sw-step__label {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: var(--step-text-inactive);
  transition: color .2s ease;
}

.sw-step__marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--step-inactive);
  box-sizing: border-box;
  position: relative;
  flex: 0 0 12px;
  transition: all .2s ease;
}

.sw-stepper__line {
  flex: 1 1 auto;
  height: 2px;
  background: var(--step-line);
  margin: 0 12px;
}

.sw-step.is-current .sw-step__label {
  color: var(--step-active);
}

.sw-step.is-current .sw-step__marker {
  background: #fff;
  border-color: #000;
}

.sw-step.is-current .sw-step__marker::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #000;
}

.sw-step.is-done .sw-step__label {
  color: var(--step-active);
}

.sw-step.is-done .sw-step__marker {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.sw-step.is-done .sw-step__marker::before {
  content: "\2713";
  color: var(--step-done);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  display: block;
}

.sw-stepper__line.is-done {
  background: var(--step-line);
}

@media (max-width: 900px) {
  .sw-stepper {
    padding: 16px 0 14px;
  }

  .sw-step__label {
    font-size: 16px;
  }

  .sw-step__marker {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .sw-step.is-current .sw-step__marker::after {
    inset: 2px;
  }

  .sw-stepper__line {
    margin: 0 8px;
  }
}

.swish-amount-card--custom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
  background: #fff;
}

.swish-amount-card--custom .swish-amount-card__title {
  display: block;
  font-weight: 600;
  color: #b7b7b7;
  font-size: 14px;
  line-height: 1.2;
}

.swish-amount-card--custom input[type="number"] {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  padding: 8px 0 0;
  margin: 0;
  font-size: 18px;
  color: #222;
  min-height: 44px;
}

.swish-amount-card--custom input[type="number"]::placeholder {
  color: #c6c6c6;
}

.swish-amount-card--custom #custom_amount_error {
  margin-top: 4px;
  font-size: 13px;
}

.swish-donation-widget .swish-donation-form form input{
  padding: 8px 8px;
  height: 35px;
}

#sw-stepper .sw-step.is-clickable {
  cursor: pointer;
}

#sw-stepper .sw-step.is-clickable .sw-step__title {
  text-decoration: underline;
}

#sw-stepper .sw-step.is-clickable:hover .sw-step__title,
#sw-stepper .sw-step.is-clickable:hover .sw-step__marker {
  opacity: 0.85;
}

/* =========================================================
   Step 3 payment type
   ========================================================= */
   #donation-step-3 {
    width: 100%;
  }

  #donation-step-3 .sw-step-panel {
    padding-top: 0;
    border-top: 0;
  }

  #donation-step-3 .sw-payment-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #donation-step-3 .sw-payment-option {
    display: block;
    border-radius: 10px;
    background: #f7f6f5;
    overflow: visible;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  }

  #donation-step-3 .sw-payment-option:hover {
    border-color: #c9c2bc;
  }

  #donation-step-3 .sw-payment-option.is-active {
    background: #f8f5f2;
  }

  #donation-step-3 .sw-payment-option__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
  }

  #donation-step-3 .sw-payment-option__left {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
  }

  #donation-step-3 .sw-payment-option__title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 400;
    color: #1d1d1b;
  }

  #donation-step-3 .sw-payment-option__title input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 2px solid #6f6b67;
    border-radius: 50%;
    background: #fff;
    position: relative;
    flex: 0 0 16px;
    cursor: pointer;
  }

  #donation-step-3 .sw-payment-option__title input[type="radio"]:checked {
    border-color: #000;
  }

  #donation-step-3 .sw-payment-option__title input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #000;
  }

  #donation-step-3 .sw-payment-option__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #donation-step-3 .sw-payment-option__icon--swish::before {
    content: "";
    display: block;
    width: 25px;
    height: 35px;
    background: url("../images/swish-logo.svg") no-repeat center / contain;
  }

  #donation-step-3 .sw-payment-option__icon--card::before {
    content: "💳";
    font-size: 25px;
    line-height: 1;
  }

  #donation-step-3 .sw-payment-option__content {
    border-top: 1px solid #e6dfd8;
  }

  #donation-step-3 .sw-payment-option__content--card,
  #donation-step-3 .sw-payment-option__content--swish {
    margin-top: 0;
  }

  .sw-payment-option__content--swish{padding:20px;}

  #donation-step-3 .sw-form-row {
    margin: 16px 0 0;
  }

  #donation-step-3 .sw-form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
  }

  #donation-step-3 .sw-form-row input[type="text"] {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #d5cfc9;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.4;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
  }

  #donation-step-3 .sw-form-row input[type="text"]:focus {
    border-color: #fa6900;
    box-shadow: 0 0 0 3px rgba(250, 105, 0, 0.12);
  }

  #donation-step-3 .sw-card-placeholder {
    margin-top: 16px;
    border-radius: 8px;
    background: #fff;
  }

  #donation-step-3 .sw-card-placeholder__inner strong {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    color: #1d1d1b;
  }

  #donation-step-3 .sw-card-placeholder iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 700px;
    border: 0;
  }

  #donation-step-3 #swish-card-form-mount {
    min-height: 40px;
  }

  #donation-step-3 .swish-donation-buttons {
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }

  #donation-step-3 .swish-donation-amount-btn.primary {
    min-width: 300px;
    min-height: 58px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 28px;
  }

  /* =========================================================
     Mobile
     ========================================================= */
  @media (max-width: 767px) {
    #donation-step-3 .sw-payment-option__header {
      padding: 16px 14px;
    }


    #donation-step-3 .sw-payment-option__title {
      font-size: 22px;
    }

    #donation-step-3 .sw-payment-option__icon--swish::before {
      width: 54px;
      height: 18px;
    }

    #donation-step-3 .sw-card-placeholder iframe {
      min-height: 620px;
    }

    #donation-step-3 .swish-donation-amount-btn.primary {
      width: 100%;
      min-width: 100%;
    }
  }
  @media (max-width: 767px){
    .sw-stepper { flex-wrap: wrap; }
    .sw-d-inner, .swish-donation-form { overflow-x: visible; }
    .sw-step { padding: 5px 0; }
  }

  @media (max-width: 767px) {
}
.checkbox input[type=checkbox] {
    opacity: 1;
}
.hybrid-widget ._sws-title_1unoj_1{
	display:none;
}

.hybrid-widget .swish-donation-form form input {
    padding: 8px 18px;
    height: 35px;
}

.swish-donation-form a {
	text-decoration: underline !important;
}

.swish-donation-form h4, ul {
	color: #000
}

._sws-title_1unoj_1 {
	margin-top: 20px;
}

.sw-step-panel label {
	border-color: #000 !important;
}

.classic-widget input[type="radio"], .hybrid-widget input[type="radio"] {min-height: 14px;}

#sw-stepper.sw-stepper--skip-step-2 .sw-stepper__line {
  flex: 1;
}

#sw-stepper.sw-stepper--skip-step-2 .sw-step[data-step="2"] {
  display: none !important;
}

.sw-payment-single-card-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sw-payment-single-card-logos .card-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sw-payment-single-card-logos .payment-method-icon {
  display: block;
  width: auto;
  height: 22px;
  max-width: 44px;
}

/* --- UTILITIES & RESPONSIVE --- */

@media (max-width: 767px) {
  #hide-mobile {
    display: none;
  }
}

@media (max-width: 1200px) {
  .swish-donation-amount-btn {
    max-width: 100% !important;
  }
}

/* --- GLOBAL / SITE CHROME --- */

.header-main {
  box-shadow: 0px 0px 8px 2px #0000004f;
}

.hero-image img {
  transform: scaleX(-1);
}

.hero-content .large-auto {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* --- WOOCOMMERCE DONATION PLUGIN --- */

.wcdp_options {
  column-gap: 10px !important;
  grid-gap: 10px !important;
}

.wcdp_options > li > label {
  padding: 10px 5px 8px !important;
  padding-left: 15px !important;
  border: 2px solid #efefef;
  border-radius: 10px;
  font-size: 15px;
  font-weight: normal;
  background: #fff !important;
  margin: 0;
  text-align: left !important;
}

ul.wcdp_options > li > input:checked + label {
  color: #151515 !important;
  border-color: #fa6900 !important;
  background-color: #faf5e8 !important;
  position: relative;
}

.wcdp_options > li > input:checked + label:after {
  width: 18px;
  height: 18px;
  border: 5px solid #fa6900;
  border-radius: 50%;
  right: 10px;
  content: "" !important;
}

.wcdp-variation-heading {
  font-size: 22px;
  margin-bottom: 15px;
}

.wcdp-button {
  background-color: #fa6900 !important;
  color: #fff !important;
  border-radius: 20px !important;
  font-size: 1.5rem !important;
  padding: 13px 30px !important;
  display: block !important;
}

/* --- HYBRID WIDGET ---*/

.hybrid-widget-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #fff !important;
  margin-bottom: 0 !important;
}

.hybrid-widget-description {
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px !important;
}

.hybrid-widget ._sws-title_1unoj_1,
._sws-title_1unoj_1 {
  display: none;
  margin-top: 20px;
}

.hybrid-widget h3 {
  padding: 30px 0 20px 0;
}

.hybrid-widget input {
  height: 40px !important;
  border: none;
}

.hybrid-widget .swish-donation-amount-btn {
  padding: 12px 2px;
  font-size: 15px;
  max-width: 250px;
  border-radius: 20px;
}

.hybrid-widget .sw-d-custom-amount-holder {
  max-width: 250px;
}

.hybrid-widget .sw-d-custom-amount {
  text-align: left;
  font-size: 12px;
  margin-bottom: 10px;
}

.hybrid-widget .swish-donation-form form input[type="text"] {
  padding: 8px 18px;
  height: 35px !important;
  color: #000 !important;
}

/* --- DONATION FORM — SHARED / BASE --- */

.hero-content #swish-donation-form,
.hero-content .swish-donation-form {
  min-height: 550px;
}

.swish-donation-form h3 {
  color: #fa6900;
}

.swish-donation-form h4,
.swish-donation-form ul {
  color: #000;
}

.swish-donation-form a {
  color: #fff;
}

.home .swish-donation-form a {
  color: #000;
  text-decoration: underline !important;
}

.hero-content .sw-d-copy p,
.hero-content .sw-d-copy > p a,
.swish-donation-form .sw-d-copy p,
.swish-donation-form .sw-d-copy > p a {
  color: #fff;
}

.sw-d-copy {
  margin: 0;
  text-align: center;
}

/* Stepper */
.sw-step__marker {
  border: 3px solid var(--step-inactive);
}

/* --- STEP PANEL — SHARED --- */

.sw-step-panel h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.sw-step-panel label {
  color: #fff;
}

.sw-step-panel input {
  min-height: 44px;
  border-color: #f0eee9 !important;
  background-color: #f0eee9;
  border-radius: 1rem;
}

.home .sw-step-panel label {
  border-color: #000;
}

.home .sw-step-panel h2 {
  color: #222;
  margin: 0 0 24px;
}

/* --- FORM ROWS — SHARED --- */

.sw-form-row label {
  font-weight: bold;
}

.sw-form-row input:focus {
  border-color: #fa6900 !important;
  background-color: #f0eee9;
}

.hero-content .sw-form-row > input[type="text"] {
  height: 35px !important;
  padding: 8px 18px !important;
}

.hero-content .sw-form-row input {
  margin-bottom: 10px;
}

/* --- AMOUNT GRID & CARDS --- */

.swish-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: end;
  margin-bottom: 8px;
  margin-top: 16px;
  width: 100%;
}

.swish-amount-card {
  border: 2px solid #d9d9d9;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 15px;
  transition: border-color 0.15s;
}

.swish-amount-card.active {
  border-color: #fa6900;
  background: rgba(250, 105, 0, 0.15);
  box-shadow: 0 0 0 0;
}

.swish-amount-card__radio {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}

.swish-amount-card.active .swish-amount-card__radio {
  border-color: #fa6900;
  background: #fa6900;
}

.swish-amount-card.active .swish-amount-card__radio::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fee9d9;
}

/* Custom amount card */
.swish-amount-card--custom {
  padding: 0;
}

.swish-amount-custom__label {
  font-size: 13px;
  color: #555;
  text-align: left;
}

.swish-amount-card--custom:focus-within {
  border-color: #fa6900;
  background: #fee9d9;
}

.swish-amount-card--custom:focus-within .swish-amount-card__radio {
  border-color: #fa6900;
  background: #fa6900;
}

.swish-amount-card--custom:focus-within .swish-amount-card__radio::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fee9d9;
  display: block;
}

#custom_amount_error {
  font-size: 15px;
  color: #ff0000;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* --- CTA / NEXT BUTTONS --- */

.swish-donation-amount-btn {
  border-radius: 64px;
}

.classic-widget .swish-donation-amount-btn {
  border-radius: 10px;
}

#go-to-step-2 {
  border-radius: 4rem;
  padding: 1.75rem 2.5rem;
  width: auto;
  display: block;
  margin: 3rem auto;
}

#go-to-step-3 {
  background-color: #fa6900 !important;
  border-radius: 4rem;
  padding: 1.75rem 2.5rem;
  width: auto;
  display: block;
  margin-top: 1rem;
}

/* --- STEP 1 --- */

#donation-step-1 .title {
  font-size: 22px;
}

#donation-step-1 .description {
  font-size: 12px;
  color: #000;
}

.home #donation-step-1 .sw-d-copy p {
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

.home #donation-step-1 .sw-d-copy > p a {
  font-weight: 600;
  color: #666;
  text-decoration: underline;
}

/* --- STEP 2 — PERSONAL DETAILS --- */

.hero-content .sw-step-panel h2 {
  text-align: center;
}

.hero-content #donation-step-2 .sw-form-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

#donation-step-2 .sw-form-row input {
  background-color: #f7efea;
}

/* --- STEP 3 — PAYMENT --- */

.hero-content .sw-payment-options {
  margin: 0 30px;
}

.hero-content #donation-step-3 .sw-form-row > label {
  color: #000 !important;
  font-size: 14px;
  font-weight: 600;
}

#donation-step-3 .sw-payment-option {
  background-color: #fff !important;
  box-shadow: none;
  border: 1px solid #f8f5f2 !important;
}

#donation-step-3 .sw-payment-option.is-active {
  background-color: #fff;
  box-shadow: none;
  border-color: #fa6900;
}

#donation-step-3 .sw-form-row input[type="text"] {
  background: #f7efea;
  color: #000 !important;
  box-shadow: none !important;
}

.sw-payment-option__title input[type="radio"] {
  padding: 10px !important;
  height: 18px !important;
  min-height: auto;
}

.sw-payment-option input[type="radio"]:checked {
  border-color: #fa6900 !important;
  background: #fa6900 !important;
}

.sw-payment-option input[type="radio"]:checked::after {
  background: #fff !important;
}

@media (max-width: 1200px) {
  .swish-amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }

	.swish-amount-grid > *:nth-child(3) {
  grid-column: 1 / -1;
}

		.sw-step {
		gap: 8px;
	}
	.sw-step__marker {
		width: 14px;
		height: 14px;
		flex-basis: 14px;
	}
	.sw-step__label {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
  .swish-amount-grid {
    grid-template-columns: repeat(1, 1fr);
  }

	  .swish-amount-grid > *:nth-child(3) {
    grid-column: auto;
  }

	.sw-stepper {
		flex-wrap: wrap;
	}

	.sw-step {
		gap: 4px;
	}
	.sw-step__marker {
		width: 10px;
		height: 10px;
		flex-basis: 10px;
	}
	.sw-step__label {
		font-size: 12px;
	}

	.swish-donation-form {
		padding: 20px 6px;
	}

	.grid-container {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
}

.home .sw-step-panel h2,
.hero-content .sw-step-panel h2 {
	font-weight: 500;
}

.swish-amount-card.active, .swish-amount-card--custom:focus-within {
	background-color: #faf5e8;
}

.hero-content .swish-donation-buttons {
	max-width: 250px;
	margin: 0 auto 15px;
}

.sw-step-panel input:not(:placeholder-shown),
#donation-step-2 .sw-form-row input:not(:placeholder-shown) {
  border: 1px solid #fa6900 !important;
  background-color: #faf5e8 !important;
}

#donation-step-2 .sw-form-row input {
	background: #f0eee9;
}

#donation-step-2 .sw-form-row input:focus {
	background: #fff;
}

.swish-amount-card {
	color: #000 !important;
}

.swish-donation-amount-btn {
	max-width: 100%;
}

#donation-step-1 .swish-amount-radio {
	width: fit-content;
}

/* =========================================================
   Nets checkout mobile responsiveness
   ========================================================= */

#donation-step-3,
#donation-step-3 .sw-step-panel,
#donation-step-3 .sw-payment-options,
#donation-step-3 .sw-payment-option,
#donation-step-3 .sw-payment-option__content,
#donation-step-3 .sw-payment-option__content--card,
#donation-step-3 .sw-card-placeholder,
#donation-step-3 .sw-card-placeholder__inner,
#donation-step-3 #swish-card-form-mount {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

#donation-step-3 .sw-card-placeholder iframe,
#donation-step-3 #swish-card-form-mount iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .sw-d-wrap {
    overflow-x: visible;
    overflow-y: auto;
  }

  .sw-d-content {
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
  }

  .sw-d-inner {
    width: 100%;
    max-width: none;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
    overflow-x: visible;
  }

  .sw-d-btn {
    width: 100%;
    max-width: none;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
  }

  .swish-donation-form {
    padding-left: 0;
    padding-right: 0;
    overflow-x: visible;
  }

  .hero-content .sw-payment-options {
    margin-left: 0;
    margin-right: 0;
  }

  #donation-step-3 .sw-payment-option {
    overflow: visible;
  }

  #donation-step-3 .sw-payment-option__header {
    padding-left: 12px;
    padding-right: 12px;
  }

  #donation-step-3 .sw-payment-option__content--card {
    padding-left: 0;
    padding-right: 0;
  }

  #donation-step-3 .sw-card-placeholder {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #donation-step-3 #swish-card-form-mount {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 390px) {
  #donation-step-3 .sw-card-placeholder iframe,
  #donation-step-3 #swish-card-form-mount iframe {
    width: 100% !important;
    max-width: 100% !important;
  }
}