/* ------------------ new styles ------------------- */

body,
p,
button,
input {
  font-family: Outfit, "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
    sans-serif !important;
}

.text-light {
  color: rgb(241, 241, 241) !important;
}

.text-gray {
  color: #cfcfcf;
  line-height: 1.1;
  font-size: 14px;
}

@media (max-width: 490px) {
  .text-gray {
    font-size: 12px !important;
  }

  .side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

    .upper {
      height: 50%;
    }

    .lower {
      height: 50%;
    }
  }
}

.text-primary {
  color: #00ff7b !important;
}

.bg-primary {
  background: #00ff7b !important;
}

.hero {
  background-image: url("https://d34080pnh6e62j.cloudfront.net/images/VideoOnDemandThumb/1762168423image-20251103-094216.png");
}

.uppercase {
  text-transform: uppercase;
}

.hero .text-content {
  position: relative;
  /* bottom: 50px; */
  /* display: flex;
  flex-direction: column;
  gap: 10px; */
  max-width: 385px;
}

.hero-2 .text-content {
  max-width: 284px;
}

/* .hero .text-content h1 {
  width: max-content;
}

.hero .text-content p {
  width: max-content;
  max-width: 500px;
} */

.never-miss-heading {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 40px 0 10px 0;
}

.never-miss-heading * {
  margin: 0;
}

.never-miss-heading h2 {
  color: #fff;
  font-size: 1.8em;
}

p,
h1 {
  margin: 0;
  padding: 0;
}

.inner-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00ff7b;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.outer-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #dadada;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.circles-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 15px 0;
}

/* Each payment button */
.circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
  background: #1a1b1e;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  min-width: 110px;
}

.circle:hover {
  border-color: #00ff7b60;
  transform: translateY(-2px);
}

/* Selected / Active */
.circle.selected {
  border: 1.5px solid #00ff7b;
  box-shadow: 0 0 6px rgba(0, 255, 123, 0.3);
  background: #111512;
}

/* ------------- payment main form etc -------------- */

.payment-main *,
.features-section * {
  margin: 0;
  padding: 0;
}

.payment-main {
  background: #1d1f24;
  margin: 0 auto;
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  /* align-items: ; */
  border-radius: 30px;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 30px;
  width: 35%;
}

.left p,
.left h3,
.left h4 {
  font-weight: light;
}

.left-head {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: 1px;
  justify-content: center;
  align-items: start;
}

.left-head p {
  font-size: 1.3em;
}

.left h3 {
  font-size: 1.5em;
}

.left h4 {
  color: #00ff7b;
  font-size: 1.2em;
}

* {
  box-sizing: border-box;
}

.left>div {
  width: 100%;
}

.left-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin: 0 auto;
}

.left-features>div {
  font-size: 1.2em;
  display: flex;
  gap: 2px;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.left-features h4 {
  font-size: 1em;
}

.left-para {
  color: #f1f1f1;
  font-size: 0.9em;
  font-weight: 200;
}

.left-para b {
  font-weight: bolder;
}

.left-options p {
  color: #f1f1f1;
}

.left-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.left-options div {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.left-options img {
  object-fit: cover;
  max-width: 50px;
}

/* --------------- payment right --------------- */
#payment-form.wallet-mode {
  max-width: 520px;
  margin-inline: auto;
}

#payment-form.card-mode {
  max-width: none;
}

#payment-form {
  padding-top: 30px;
  padding-bottom: 30px;
  /* background: radial-gradient(140% 140% at 100% 0%, #2ed47a 0%, #1d7e4c 45%, #144e2d 100%) !important; */
  background: transparent !important;
  border-radius: 16px !important;
  /* box-shadow: 0 14px 40px rgba(0, 0, 0, .35) !important; */
  align-items: center !important;
  gap: 16px;
}

.form-field {
  font-size: 1em;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field label,
.otp label {
  color: #f1f1f1;
}

#payment-form>div {
  width: 100%;
}

#payment-form input {
  background: rgb(0, 0, 0, 0.3);
  padding: 15px;
  font-size: 1em;
  outline: none;
  border: none;
  border-radius: 10px;
  color: #f1f1f1;
  transition: all 0.2s ease-in-out;
}

#payment-form input:focus {
  background: rgb(0, 0, 0, 0.4);
}

#payment-form input::placeholder {
  color: #f1f1f1b4;
}

.form-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 120px;
  /* width: 100px; */
  /* height: 40px; */
  object-fit: cover;
}

#payment-form .full-name-field {
  width: 100%;
}

.form-fields-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.two-cols {
  grid-template-columns: 1fr 1fr;
}

.form-fields-apart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-fields-apart input {
  text-align: center;
  width: 60px;
}

#cvc {
  width: 70px;
}

.subscribe-btn {
  /* border-radius: 50px 50px; */
  border-radius: 9px;
  padding: 13px 30px;
  font-weight: 600;
  font-size: 1.2em;
  color: black;
  border: 2px solid #37C673;
  background: #37C673;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  width: 100% !important;
}

.subscribe-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.subscribe-btn:not(:disabled):hover {
  background: #2fba67;
  box-shadow: 0 2px 10px rgba(55, 198, 115, .25);
  transform: translateY(-1px);
}

.payment-note {
  text-align: center;
  color: #676D75;
  width: 100%;
  margin-top: 10px;
}

.btn-div {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: center;
}

.tcs-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tcs {
  display: flex;
  padding: 5px;
  justify-content: center;
  color: #f1f1f1;
  height: max-content;
  gap: 5px;
  font-size: 0.9em;
  flex-direction: column;
  margin-bottom: auto;
}

.tcs>div {
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tcs label {
  color: #676D75;
  cursor: pointer;
}

.tcs a {
  color: #37C673;
  text-decoration: underline;
}

.tcs a:hover {
  color: #37C673;
  text-decoration: none;
}

.form-logo {
  border-radius: 10px;
}


.never-miss-payment-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  /* gap: 30px; */
  padding: 15px;
  margin: 20px auto;
}

#payment-form .hidden {
  display: none;
  pointer-events: none;
}

.tcs label {
  text-decoration: underline;
}

.otp-box {
  width: 40px;
  height: 40px;
  background: rgb(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: text;
}

@keyframes blink {
  0% {
    color: transparent;
  }

  100% {
    color: #cfcfcf;
  }
}

.blinking {
  animation: blink 0.6s ease-in-out infinite;
}

.otp {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
}

.mobile-number-input-div {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  background: rgb(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s, backgroun
}

#payment-form .mobile-number-input-div input {
  height: 100%;
  padding: 0 14px;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: #646464;
}

.phone-prefix {
  display: flex;
  color: #f1f1f1b4;
  font-weight: 400;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 10px;
  min-width: 84px;
  height: 100%;
  position: relative;
  border-radius: 10px 0 0 10px;
}

.phone-prefix::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  width: 1px;
  height: 76%;
  background: #f1f1f1b4;
}

/* optional flag icon */
.phone-prefix .flag {
  width: 18px;
  height: 12px;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}

/* The input area */
#payment-form .mobile-number-input-div input {
  flex: 1;
  height: 100%;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  /* show capsule bg */
  padding: 0 14px;
  font-size: 14px;
  font-weight: 400;
  color: #646464;
  border-radius: 0 12px 12px 0;
  /* match capsule */
}

.otp-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
}

/* --------------- cards --------------- */

.cards-section,
.testimonials-section {
  display: flex;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  max-width: 1100px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: flex;
  align-items: flex-start;
}

.cards-section,
.testimonials-section {
  /* max-width:  !important; */
  overflow: hidden !important;
  /* margin: auto auto; */
}

.card {
  height: 270px;
  flex-shrink: 0;
  min-width: 210px;
  width: 210px !important;
  position: relative;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
}

.card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  object-fit: cover;
}

/* Prevent image ghost-drag while swiping */
.card img {
  -webkit-user-drag: none;
}

.card p {
  background: #37c673;
  color: #000;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  position: absolute;
  bottom: 10px;
  width: 150px;
  padding: 5px 15px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  border-radius: 50px;
  text-align: center;
  font-size: 12px;
}

.card:hover>p {
  width: 190px;
}

.card:hover>img {
  filter: brightness(0.7);
}

.card .img-effect {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 10px;
  background-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.7) 80%,
      rgb(0, 0, 0, 1) 100%);
}

html body .fixesclass {
  overflow: visible !important;
}

.swiper.cards,
.swiper.testimonials {
  /* gap: 10px; */
  /* overflow-x: auto; */
  /* overflow-y: hidden; */
  overflow: hidden !important;
  max-width: 1100px;
  width: 100%;
  /* margin: 0 auto; */
  position: relative;
  /* scroll-padding-right: 100%; */
  /* padding-right: 400px; */
  /* display: flex; */
  /* justify-content: start; */
  /* scroll-behavior: smooth; */
  /* scroll-snap-type: x mandatory; */
  /* align-items: center; */
}

/* 
.swiper-button-next {
  top: 63% !important;
  right: 10px !important;
}

.swiper-button-prev {
  top: 63% !important;
  left: 100px !important;
} */

.swiper-button-next,
.swiper-button-prev {
  width: 30px !important;
  height: 30px !important;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #cfcfcfb2;
  color: #cfcfcfb2;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  border-color: #00ff7bb9;
  color: #00ff7bd8;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 18px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "" !important;
}

.cards::-webkit-scrollbar,
.testimonials::-webkit-scrollbar {
  display: none;
}

.cards-nav-btn:hover,
.testimonials-nav-btn:hover {
  background: #000;
  border-color: #00ff7bb9;
  color: #00ff7bd8;
  z-index: 20;
}

.cards-section h2 {
  font-size: 1.8em;
  color: #fff;
}

.hero-2 .text-content,
.hero-2 .text-content h1,
.hero-2 button {
  font-weight: light !important;
}

.hero-2 {
  background-image: url(../assets/hero-2.jpg);
}

.hero-2 .overlay {
  /* background-image: radial-gradient(
    ellipse 200% 200% at 0% 70%,
    rgba(19, 19, 20, 1) 0%,
    rgba(19, 19, 20, 0.95) 30%,
    rgba(19, 19, 20, 0.7) 50%,
    rgba(19, 19, 20, 0) 100%
  ); */
}

.features-section {
  width: 100%;
  max-width: 1100px;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  max-width: 500px;
}

.feature-left {
  width: 30%;
  min-height: 100%;
  display: flex;
  place-self: start;
}

.features-section-left {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex: 1;
  align-items: center;
}

.feature-left .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature:nth-child(1) .feature-icon {
  background: #ff7f5c;
}

.feature:nth-child(2) .feature-icon {
  background: #37c673;
}

.feature:nth-child(3) .feature-icon {
  background: #00e1f0;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text p {
  color: #cfcfcf;
}

.features-section-right {
  flex: 1;
  /* align-self: stretch; */
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.features-section-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 25px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-section h2,
.features-section h3 {
  color: #fff;
}

.features-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.features-section h3 {
  font-size: 1.4em;
}

.cards-section,
.features-section,
.never-miss-payment-section,
.testimonials-section {
  margin-bottom: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
}

h1,
h2,
h3,
h4 {
  font-weight: normal !important;
}

.hero-2 button {
  font-weight: 500 !important;
}

/* --------------- Testimonials ---------------- */

.testimonials-section {
  background: #1d1f24;
  position: relative;
  padding: 40px 10px;
}

.testimonial {
  background: #131417;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 0px;
  text-align: left;
  height: 170px;
  width: 280px;
  min-width: 280px !important;
  width: 280px !important;
  flex-shrink: 0;
  border-radius: 20px;
  font-size: 0.9em;
}

.testimonial h4 {
  color: #00ff7b;
  font-size: 1.25em;
}

.testimonial .upper {
  gap: 8px;
  align-items: center;
  display: flex;
  width: 100%;
}

.testimonial .upper-right * {
  margin: 0;
}

.testimonial .upper-right {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.testimonial img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

.testimonials-nav {
  display: flex;
  gap: 10px;
  position: relative;
  height: 30px;
  padding: 10px;
  max-width: 1100px;
  width: 100%;
  justify-content: end;
  /* margin-left: auto; */
}

.testimonials-nav>.swiper-button-prev {
  right: 50px !important;
  left: unset;
}

.testimonials-section h2 {
  margin: 0 !important;
  text-align: center;
  font-size: 2em !important;
}

.testimonial h1,
.testimonial h2,
.testimonial h3,
.testimonial h4,
.testimonial p {
  margin: 0 !important;
}

.testimonials-section>div:nth-child(1)>h3 {
  font-weight: 300 !important;
  text-align: center;
  padding: 0 10px;
  margin: 0 !important;
}

/* removing input number defaults */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}


input[type="checkbox"],
input.otp-input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease-in-out;
  border: 1px solid white;
}

.custom-checkbox svg {
  width: 14px;
  height: 14px;
  opacity: 0;
}

input[type="checkbox"]:checked+.custom-checkbox {
  background: #00ff7b;
  border-color: #00ff7b;
}

input[type="checkbox"]:checked+.custom-checkbox svg {
  opacity: 1;
  fill: #000;
}

/* text + link */
.agree-text {
  color: #9aa0a6;
  font-size: 14px;
}

.tcs-link {
  color: #00ff7b;
  text-decoration: underline;
}

.tcs-link:hover {
  text-decoration: none;
}

/* remove old underline you had on all labels */
.tcs label:not(.custom-checkbox) {
  text-decoration: none;
}

@media (max-width: 1000px) {
  .features-section-left h2 {
    text-align: center !important;
  }

  .features-section {
    flex-direction: column;
  }
}

@media (max-width: 950px) {
  #payment-form .full-name-field {
    width: 100%;
  }

  .two-cols {
    gap: 0;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .hero .text-content {
    /* top: 100px; */
  }

  .payment-main {
    flex-direction: column;
  }

  #payment-form {
    padding: 60px 20px 40px 20px;
    /* box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.3) !important; */
  }


  #payment-form {
    padding: 60px 20px 40px 20px;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.3) !important;
  }

  .left,
  .left-head,
  .left-features {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .left-features {
    gap: 50px;
  }

  .left-options div {
    justify-content: center;
    gap: 10px;
  }

  .payment-main .left,
  .payment-main #payment-form {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .circles-container {
    font-size: 0.9em;
    gap: 12px;
  }

  .outer-circle {
    width: 15px;
    height: 15px;
  }

  .inner-circle {
    width: 10px;
    height: 10px;
  }

  .features {
    gap: 35px;
  }

  .feature {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-align: center;
  }

  .feature-left {
    width: 100%;
    justify-content: center;
  }

  .never-miss-heading h2,
  .cards-section h2,
  .features-section h2,
  .testimonials-section h2,
  .payment-main h2 {
    font-size: 1.45em !important;
    text-align: center;
  }

  .never-miss-heading h3,
  .cards-section h3,
  .features-section h3,
  .testimonials-section h3,
  .payment-main h3 {
    font-size: 1.15em !important;
  }
}

.field {
  color: #fff !important;
}

input {
  color: #fff !important;
}

.card-frame {
  margin: auto;
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 500px) {
  .subscribe-btn {
    padding: 10px 25px;
    font-size: 1.1em;
  }

  .payment-main,
  #payment-form {
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  #payment-form {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-bottom: 20px;
  }

  .left {
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-features {
    justify-content: center;
    gap: 20px;
  }

  #payment-form input {
    padding: 10px 13px;
    border-radius: 7px;
  }

  #payment-form .phone-prefix {
    border-radius: 7px 0 0 7px;
  }

  #payment-form .mobile-number-input-div input {
    border-radius: 0 7px 7px 0;
  }

  .mobile-number-input-div {
    height: 40px;
  }

  #payment-form .phone-prefix {
    min-width: 40px;
  }

  .never-miss-payment-section {
    padding: 8px;
  }

  .card-frame {
    height: 40px;
    border-radius: 7px;
  }

  .tcs-row {
    flex-wrap: wrap;
    row-gap: 1px;
  }

  .tcs>div {
    gap: 4px;
  }

  .agree-text,
  .tcs-link {
    font-size: 9.5px;
    /* line-height: 1.3; */
  }
}

.swal2-popup {
  background-color: #1e1e1e !important;
  color: #b5b7c3 !important;
}

.swal2-confirm {
  background-color: #37c673 !important;
  color: #b5b7c3 !important;
}

.swal-title {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
  text-transform: none;
  position: relative;
  display: block;
  padding: 13px 16px;
  font-size: 27px;
  line-height: normal;
  text-align: center;
  margin-bottom: 0;
}

.swal2-popup {
  background-color: #1e1e1e !important;
  color: #b5b7c3 !important;
}

.swal2-confirm {
  background-color: #37c673 !important;
  color: #b5b7c3 !important;
}

.swal-title {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
  text-transform: none;
  position: relative;
  display: block;
  padding: 13px 16px;
  font-size: 27px;
  line-height: normal;
  text-align: center;
  margin-bottom: 0;
}

.invalid {
  border: 2px solid #ef4444 !important;
  outline: none;
  padding: 8px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .hero {
    background-image: url("https://d34080pnh6e62j.cloudfront.net/images/VideoOnDemandThumb/1762168319image-20251103-094300.png");
    height: auto;
    aspect-ratio: 390 / 488;
  }

  .hero-2 {
    background-image: url(../assets/Hero2Mobile.jpg);
    height: auto;
    aspect-ratio: 390 / 488;
  }

  .swiper.cards,
  .swiper.testimonials {
    overflow: visible !important;
  }
}

.getStartedBtn {
  margin-top: 15px;
}


.swal-title-small {
  font-size: 22px !important;
  margin-bottom: 10px;
}