html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
a {
  text-decoration: none;
  opacity: 1;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.umain {
  overflow: hidden;
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-weight: 300;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.01em;
  background: #f6f6f6;
}

.ubutton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: -0.01em;
  color: #ffffff;
  padding: 14px 30px;
  background: #46aa36;
  border-radius: 24px;
  width: 100%;
  max-width: 325px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.ubutton:hover {
  opacity: 1;
  background: #15466a;
}
.ubutton.big {
  max-width: 296px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  padding: 18px 30px;
}

.uinput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.uinput__outer {
  margin-bottom: 24px;
}
.uinput__outer:last-child {
  margin: 0;
}
.uinput__outer h6 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 15px;
}
.uinput input {
  width: 100%;
  font-weight: 300;
  font-size: 14px;
  line-height: 19px;
  padding: 11px 36px 11px 15px;
  background: #ffffff;
  border: 0.7px solid #cdcdcd;
  border-radius: 13px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.uinput input:focus {
  border-color: #15466a;
}
.uinput button {
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  background: transparent;
  width: 21px;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.uinput button:hover {
  opacity: 0.8;
}
.uinput button img {
  width: 100%;
}

@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.uhead {
  background: #15466a;
  padding: 15px 0;
}
.uhead .auto__container {
  padding: 0 22px;
}
.uhead__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.uhead__inner-logo {
  width: 184px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.uhead__inner-logo img {
  width: 100%;
}
.uhead__inner button {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.uhead__inner button img {
  width: 100%;
}

.uplan.center .auto__container {
  padding: 0 12px;
}
.uplan.center .uplan__inner {
  padding-top: 86px;
}
.uplan__inner {
  min-height: calc(100vh - 62px);
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.uplanStep {
  width: 100%;
  max-width: 440px;
  display: none;
}
.uplanStep.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.uplanStep__title {
  text-align: center;
  margin-bottom: 28px;
}
.uplanStep__title h2 {
  font-weight: 700;
  font-size: 19px;
  line-height: 113%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}
.uplanStep__reg {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.uplanStep__reg-info {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 46px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #222222;
  padding: 9px 20px;
  width: 254px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(91.84%, #f6d947), to(#ddc447));
  background: linear-gradient(180deg, #f6d947 91.84%, #ddc447 100%);
  -webkit-box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  margin-bottom: 32px;
}
.uplanStep__reg-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 254px;
}
.uplanStep__reg-input input {
  width: 100%;
  text-align: center;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 46px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #222222;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(91.84%, #ffffff), to(#eeeeee));
  background: linear-gradient(180deg, #ffffff 91.84%, #eeeeee 100%);
  -webkit-box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 9px 20px;
  border: 1px solid transparent;
}
.uplanStep__reg-input input::-webkit-input-placeholder {
  color: #222222;
}
.uplanStep__reg-input input::-moz-placeholder {
  color: #222222;
}
.uplanStep__reg-input input:-ms-input-placeholder {
  color: #222222;
}
.uplanStep__reg-input input::-ms-input-placeholder {
  color: #222222;
}
.uplanStep__reg-input input::placeholder {
  color: #222222;
}
.uplanStep__reg > p {
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 26px;
}
.uplanStep__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 22px;
  margin-bottom: 34px;
}
.uplanStep__foot:last-child {
  margin: 0;
}
.uplanModel {
  background: #ffffff;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 22px;
}
.uplanModel__image {
  width: 112px;
  height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  margin-right: 16px;
}
.uplanModel__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}
.uplanModel__content h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 4px;
}
.uplanModel__content p {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.uplanModel__content p span {
  height: 13px;
  border-radius: 50%;
  margin-right: 3px;
}
.uplanModel__content p span.colour-icon {
  width: 13px;
}
.uplanDetails {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px 22px 22px;
  margin-bottom: 22px;
}
.uplanDetails:last-child {
  margin: 0;
}
.uplanDetails__title {
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.uplanDetails__title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  -webkit-box-shadow: 1px 1px 2.4px rgba(0, 0, 0, 0.12);
          box-shadow: 1px 1px 2.4px rgba(0, 0, 0, 0.12);
  background: #f2f2f2;
}
.uplanDetails__title h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}
.uplanDetails ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
}
.uplanDetails ul li:last-child {
  margin: 0;
}
.uplanDetails ul li p {
  font-weight: 300;
}
.uplanDetails ul li h6 {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  text-align: end;
}
.uplanPayment {
  background: #ffffff;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 19px;
  padding: 14px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.uplanPayment__icon {
  width: 44px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f2f2f2;
  border-radius: 10px;
  margin-right: 18px;
}
.uplanPayment__icon img {
  width: 29px;
}
.uplanPayment h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.uplanInfo {
  background: #ffffff;
  border-radius: 22px;
  padding: 12px 18px 30px 18px;
}
.uplanInfo__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.uplanInfo__logo {
  width: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.uplanInfo__logo img {
  width: 100%;
}
.uplanInfo__content p {
  font-weight: 300;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #000000;
}
.uplanInfo__content p b {
  font-weight: 400;
}
.uplanSuccess {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 20px 50px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
}
.uplanSuccess__icon {
  width: 148px;
  height: 148px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.uplanSuccess__icon img {
  width: 100%;
}
.uplanSuccess__title {
  margin-bottom: 20px;
}
.uplanSuccess h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 112.91%;
  letter-spacing: -0.01em;
  color: #2d2d2d;
  margin-bottom: 10px;
}
.uplanSuccess h3:last-child {
  margin: 0;
}
.uplanSuccess h3 b {
  color: #46aa36;
  font-weight: 800;
}
.uplanSuccess p {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
}

.uinput__outer.error input,
.uplanStep__reg-input.error input {
  border-color: #fc0c0c;
}

.error-msg {
  color: #fc0c0c;
  font-size: 14px;
  margin-top: 4px;
}

/* Bootstrap-style Alert */
.alert-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  width: 90%;
  max-width: 440px;
}

.alert {
  position: relative;
  padding: 12px 20px;
  margin-bottom: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  animation: slideInDown 0.3s ease-out;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-dismissible {
  padding-right: 50px;
}

.alert .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 12px 16px;
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.alert .btn-close:hover {
  opacity: 0.75;
}

@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}