:root {
  --color-black: #000000;
  --color-blue: #20113d;
  --color-white: #ffffff;
  --color-orange: #f58021;
  --color-green: #00a092;
  --color-teal: #00a092;
  --color-teal-light: #82cbc4;
  --color-teal-pale: #b2e4e0;
  --color-orange-hover: #d26004;
  --color-green-hover: #05786e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: var(--color-black);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2 {
  color: var(--color-green);
  text-transform: uppercase;
}

h2 {
  font-weight: 600;
  font-size: 54px;
  line-height: 100%;
}

p {
  line-height: 150%;
}

button {
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

header {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  background-color: var(--color-orange);
  font-weight: 600;
}

header .container,
header .right-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .right-side {
  width: 70%;
}

header nav {
  width: 70%;
}

header ul {
  display: flex;
  justify-content: space-between;
}

header .social-icons {
  display: flex;
  gap: 30px;
}

header .social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

header .social-icons img:hover {
  transform: scale(1.1);
}

header a:hover {
  color: var(--color-green-hover);
}

header nav ul li a.active {
  color: var(--color-green-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 60px;
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-auth__link {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.header-auth__link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

.header-auth__link--register {
  background: #fff;
  border-color: #fff;
  color: var(--color-orange);
}

.header-auth__link--register:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-orange);
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 3px;
  transition: 0.3s;
}

.footer {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding-top: 82px;
  padding-bottom: 36px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 65px;
}

.footer-logos img {
  height: auto;
  max-width: 130px;
}

.footer-nav ul {
  display: flex;
  gap: 46px;
}

.footer-nav a {
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--color-white);
  margin-bottom: 44px;
  margin-top: 70px;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyrights {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  display: flex;
  gap: 30px;
  opacity: 0.7;
}

.footer-socials {
  display: flex;
  gap: 40px;
}

.footer-socials img {
  width: 40px;
  transition: 0.3s;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 45px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orange {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-orange:hover {
  background-color: var(--color-orange-hover);
  box-shadow: 0px 4px 30px 0px rgba(245, 128, 33, 0.3);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline-white:hover {
  background-color: var(--color-green-hover);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #fff;
  width: 100%;
  max-width: 1160px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-window {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.modal-image img {
  width: 100%;
  height: 387px;
  object-fit: cover;
  display: block;
}

.modal-content {
  padding: 0px 80px 80px;
  text-align: center;
}

.modal-title {
  color: var(--color-orange);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 20px;
}

.modal-text {
  max-width: 570px;
  margin: auto;
  font-size: 18px;
  line-height: 150%;
  color: black;
  margin-bottom: 50px;
}

.donation-options {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.donate-btn {
  background-color: var(--color-green);
  color: #fff;
  border-radius: 5px;
  padding: 22px 43px;
  font-size: 18px;
  font-weight: 600;
}

.donate-btn_other {
  padding: 22px 0px;
  width: 200px;
}

.donation-modal {
  background: #fff;
  width: 90%;
  max-width: 900px;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.donation-modal__header {
  background-color: var(--color-orange);
  padding: 40px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.donation-modal__title {
  color: #fff;
  margin: 0;
  font-weight: 500;
  font-size: 42px;
  text-transform: uppercase;
}

.donation-modal__body {
  padding: 50px 0px;
}

.donation-step {
  padding: 0px 120px;
}

.input-label span,
.form-group span {
  color: var(--color-green);
}

.donation-modal__subtitle {
  padding: 0px 120px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.divider {
  width: 100%;
  border: none;
  border-top: 1px solid #a4a8ae;
  margin-bottom: 40px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.amount-btn {
  background: rgba(0, 160, 146, 0.5);
  color: white;
  border-radius: 5px;
  padding: 21px 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.amount-btn.active {
  background-color: var(--color-green-hover) !important;
  color: #fff;
}

.amount-btn.active {
  background-color: var(--color-teal);
  color: #fff;
}

.other-amount-row,
.pet-select-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 30px;
}

.btn-dark-turquoise {
  background-color: var(--color-teal);
  color: #fff;
  padding: 22px 30px;
  font-weight: 600;
  border-radius: 5px;
}

.btn-next {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  gap: 10px;
}

.btn-nextStep {
  background-color: var(--color-green);
  padding: 22px 18px;
  color: #fff;
  border-radius: 5px;
  gap: 10px;
}

.btn-light-turquoise {
  background-color: var(--color-teal-pale);
  color: white;
  padding: 22px 18px;
  font-weight: 600;
  border-radius: 5px;
  width: 200px;
}

.other-input {
  flex: 1;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 22px;
  font-size: 18px;
}

.custom-select-container {
  position: relative;
  flex: 1;
}

.select-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 5px;
  height: 66px;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
}

.select-current {
  padding-right: 32px;
  color: #a4a8ae !important;
  font-size: 18px;
}

.select-arrow-wrapper {
  position: absolute;
  right: 0;
  background-color: var(--color-teal-light);
  width: 32px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #000;
}

.select-arrow-wrapper img {
  width: 18px;
  transition: transform 0.3s ease;
}

.select-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 330px;
  background: #fff;
  border: 1px solid #000;
  border-top: none;
  z-index: 1000;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

.select-item {
  padding: 15px 25px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s;
}

.select-item:hover {
  background-color: var(--color-teal-light);
}

.select-item.selected {
  background-color: var(--color-teal-light);
  color: #000;
}

.select-list::-webkit-scrollbar {
  width: 32px;
  max-height: 75px;
}

.select-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.select-list::-webkit-scrollbar-thumb {
  background-color: var(--color-teal-light);
  border: 2px solid #f1f1f1;
}

.custom-select-container.active #selectArrow {
  transform: rotate(180deg);
}

.select-hide {
  display: none;
}

.recurring-label {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 40px;
}

.recurring-label input {
  width: 30px;
  height: 30px;
}

.donation-modal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
}

.step-indicator .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid #00a092;
  border-radius: 50%;
  margin-right: 10px;
}

.step-indicator .dot.active {
  background-color: var(--color-teal);
}

.disclaimer-text {
  color: #767676;
  margin-top: 10px;
  line-height: 140%;
}

.footer-btns {
  display: flex;
  align-items: center;
  gap: 70px;
}

.btn-back {
  background: none;
  border: none;
  color: var(--color-green);
  font-weight: 600;
  font-size: 18px;
  text-decoration: underline;
  cursor: pointer;
}

.btn-complete {
  background-color: var(--color-orange);
  color: #fff;
  padding: 26px 55px;
  font-weight: 600;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-row {
  display: flex;
  gap: 40px;
}

#step3 .form-date {
  margin-top: 50px;
}

.cvv-group {
  width: 150px;
}

.expiration-row {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.small-select {
  max-width: 180px;
}

.flex-grow {
  flex-grow: 1;
}

.forms-group {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.form-group input {
  margin-top: 10px;
}

.donation-modal__body .form-group input {
  width: 100%;
  border: 1px solid #000;
  padding: 17px 20px;
  border-radius: 5px;
}

.donation-modal__body .form-group input::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
}

.donation-modal__body .form-group input:focus {
  border-color: var(--color-green);
  box-shadow: 0px 0px 8px rgba(0, 160, 146, 0.25);
  outline: none;
}

.donation-modal__body .form-group.error input {
  border-color: var(--color-orange) !important;
  background-color: rgba(245, 128, 33, 0.1);
  color: var(--color-orange);
}

.error-message {
  display: none;
  color: var(--color-orange) !important;
  font-size: 14px;
  margin-top: 8px;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input::placeholder {
  color: var(--color-orange);
  opacity: 0.6;
}

.video-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.video-link-wrapper:hover .play-btn-center {
  transform: translate(-50%, -50%) scale(1.1);
  transition: transform 0.2s ease;
}

.donation-step:not(.d-none) {
  animation: fadeInStep 0.4s ease-in-out forwards;
}

.close-burger {
  display: none;
}

.d-none {
  display: none !important;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--color-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hidden {
  display: none !important;
}

/* User Profile */

/* User Profile */

.user-profile {
  position: relative;
  display: flex;
  align-items: center;
}

.user-profile__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.user-profile__btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.65);
}

.user-profile__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-profile__name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-profile__chevron {
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Dropdown */

.user-profile__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  background: #fff;
  border-radius: 14px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 9999;
}

.user-profile.open .user-profile__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-profile__dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.07);
}

.user-profile__dropdown-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-profile__dropdown-info {
  overflow: hidden;
}

.user-profile__dropdown-name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-profile__dropdown-login {
  font-size: 12px;
  color: #888;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-profile__dropdown-body {
  padding: 6px 0;
}

.user-profile__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  transition: background 0.15s;
}

.user-profile__dropdown-item:hover {
  background: #f5f5f5;
}

.user-profile__dropdown-item--logout {
  color: #d63b1f;
}

.user-profile__dropdown-item--logout:hover {
  background: #fff4f2;
}

/* Responsive */

@media (max-width: 1200px) {
  .container {
    max-width: 83.33%;
  }
  header .right-side {
    width: 100%;
    gap: 20px;
    justify-content: flex-end;
  }
  header ul {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
  }

  .footer-main {
    margin: 0px 40px;
  }

  .footer .container {
    max-width: 100% !important;
  }

  .footer-info {
    margin: 0px 40px;
  }

  .footer-nav ul {
    gap: 20px;
  }

  .footer-logos {
    gap: 30px;
  }
}

@media (max-width: 940px) {
  header .container {
    padding: 0 20px;
  }

  .burger-menu {
    display: flex;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 30px;
    align-items: center;
    justify-content: center;
  }

  header .right-side {
    position: fixed;
    top: 0;
    right: -100%;
    width: 311px;
    height: 100vh;
    background-color: var(--color-blue);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 20px;
    transition: 0.4s ease-in-out;
    z-index: 10000;
  }

  header .right-side.active {
    right: 0;
  }

  header nav {
    width: 100%;
    margin-bottom: 50px;
  }

  header ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  header ul li a {
    color: var(--color-white);
    font-size: 18px;
  }

  header .social-icons {
    display: none;
  }

  .close-burger {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    display: block;
  }

  .modal-window {
    max-width: 600px;
    width: 95%;
  }

  .modal-image img {
    height: 200px;
  }

  .modal-content {
    padding: 30px 20px 40px;
  }

  .modal-title {
    font-size: 26px;
    line-height: 130%;
    margin-bottom: 20px;
  }

  .modal-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .donation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .donate-btn {
    width: 100%;
    padding: 15px 5px;
    font-size: 18px;
  }

  .donate-btn_other {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 600px !important;
  }

  h2 {
    font-size: 36px;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logos {
    gap: 80px;
  }

  .footer-nav ul {
    gap: 53px;
  }

  .footer-info {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .donation-modal {
    width: 95%;
    max-width: 600px;
    border-radius: 5px;
  }

  .donation-modal__header {
    padding: 30px;
  }

  .donation-modal__title {
    font-size: 28px;
  }

  .donation-modal__body {
    padding: 30px 40px;
  }

  .donation-step,
  .donation-modal__subtitle {
    padding: 0;
  }

  .amount-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
  }

  .amount-btn {
    padding: 15px 0;
    font-size: 18px;
  }

  .other-amount-row,
  .pet-select-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 20px;
  }

  .btn-dark-turquoise,
  .btn-light-turquoise {
    width: 180px;
    min-width: 180px;
    padding: 15px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .other-input,
  .custom-select-container {
    flex: 1;
    max-width: none;
  }

  .select-box {
    height: 100%;
  }

  .donation-modal__footer {
    margin-top: 40px;
  }

  .btn-next {
    padding: 15px 40px;
    font-size: 16px;
  }
}

@media (max-width: 440px) {
  h2 {
    font-size: 24px;
  }

  .modal-content {
    padding: 20px;
  }

  .footer {
    padding: 40px 0 30px;
    text-align: center;
  }

  .footer-main {
    margin: 0;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .footer-logos {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-logos img {
    max-width: 130px;
    height: auto;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
    padding: 0;
  }

  .footer-nav a {
    font-size: 16px;
    font-weight: 500;
  }

  .footer .btn-outline-white {
    width: 100%;
    font-size: 18px;
    text-transform: lowercase;
    max-width: 298px;
    padding: 15px 0;
    justify-content: center;
    margin: 0 auto;
  }

  .footer-divider {
    margin: 30px 0;
  }

  .footer-info {
    flex-direction: column-reverse;
    gap: 30px;
    align-items: center;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .footer-socials img {
    width: 35px;
  }

  .copyrights {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 1;
  }

  .other-amount-row,
  .pet-select-row {
    flex-direction: column;
  }
  .btn-dark-turquoise,
  .btn-light-turquoise {
    width: 100%;
  }
  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .donation-modal {
    width: 300px;
    max-width: 100%;
  }

  .donation-modal__header {
    padding: 20px;
  }

  .donation-modal__title {
    font-size: 24px;
    line-height: 100%;
  }

  .donation-modal__body {
    padding: 20px 10px;
  }

  .donation-modal__subtitle {
    padding: 0 10px;
    font-size: 16px;
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 10px;
    width: 100%;
    margin-bottom: 20px;
  }

  .divider {
    display: none;
  }

  .donation-step {
    padding: 0 10px;
  }

  .form-group label {
    font-size: 14px;
  }

  .donation-modal__body .form-group input {
    padding: 10px;
    font-size: 16px;
  }

  .disclaimer-text {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .payment-row {
    flex-direction: column;
    gap: 15px;
  }

  .cvv-group {
    width: 100%;
  }

  .expiration-row {
    flex-direction: column;
  }

  .small-select {
    max-width: 100%;
  }

  .donation-modal__footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .footer-btns {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    align-items: center;
  }

  .btn-next,
  .btn-complete {
    order: 1;
    padding: 15px;
    font-size: 16px;
  }

  .btn-back {
    order: 2;
    font-size: 16px;
  }

  .step-indicator {
    order: 3;
    margin-top: 10px;
  }

  .donation-modal__body .form-date {
    margin-top: 20px;
  }
}
