@import "../../clientv3/fonts/montserrat/stylesheet.css";
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,700;1,600&display=swap");
@font-face {
  font-family: "Lato Regular";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/Lato-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lato Medium";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../fonts/Lato-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Lato Semibold";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../fonts/Lato-Semibold.ttf") format("truetype");
}
@font-face {
  font-family: "Lato Bold";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/Lato-Bold.ttf") format("truetype");
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*********************
BREAKPOINTS
*********************/
:root {
  --orange: #f8901f;
  --ff-montserrat-light: "Montserrat Light", sans-serif;
  --ff-montserrat-regular: "Montserrat Regular", sans-serif;
  --ff-montserrat-medium: "Montserrat Medium", sans-serif;
  --ff-montserrat-semibold: "Montserrat Semibold", sans-serif;
  --ff-montserrat-bold: "Montserrat Bold", sans-serif;
}

.bg-red, .btn-red {
  background-color: #F95664;
}

.bg-green, .btn-green {
  background-color: #09B96D;
}

.bg-orange, .btn-orange {
  background-color: #F8901F;
}

.form-control:-webkit-autofill, .form-control:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}

.btn:hover {
  opacity: 0.8;
}

.login-page {
  padding-top: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .login-page {
    overflow: auto;
  }
}
@media (max-width: 576px) {
  .login-page {
    padding: 5rem 0 !important;
  }
}
.login-page #backForm {
  display: none;
}
.login-page .glyphicon {
  top: 7px;
}
.login-page .form-group {
  margin: 0 0 20px 0;
}
@media (max-width: 576px) {
  .login-page .form-group {
    margin-bottom: 10px;
  }
}
.login-page .bridge-envelope {
  background: url(../../images/icons/email.png) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  position: absolute;
  opacity: 0.4;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px !important;
}
.login-page .bridge-lock {
  background: url(../../images/icons/lock.png) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  position: absolute;
  opacity: 0.4;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px !important;
}
.login-page .top-wrapper {
  display: flex;
  justify-content: center;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .login-page .top-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .login-page .top-wrapper {
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  .login-page .top-wrapper {
    margin: 0;
  }
}
.login-page .top-wrapper > div {
  padding: 15px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .login-page .top-wrapper > div {
    padding: 15px 34px;
  }
}
@media (max-width: 768px) {
  .login-page .top-wrapper > div {
    display: block;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .login-page .top-wrapper > div {
    padding: 10px 25px;
    text-align: center;
    display: block;
  }
}
@media (max-width: 1024px) {
  .login-page .bottom-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .login-page .bottom-wrapper {
    margin: 0;
  }
}
.login-page .bottom-wrapper .footer {
  text-align: center;
  color: #fff;
  margin-top: 15px;
}
.login-page .bottom-wrapper .footer p {
  margin: 0;
}
.login-page .bottom-wrapper .footer a {
  color: #fff !important;
}
@media (max-width: 1024px) {
  .login-page .bottom-wrapper .footer {
    font-size: 12px;
  }
}
.login-page .login-wrapper {
  max-width: 72%;
  width: 100%;
  margin: auto;
}
@media (max-width: 1024px) {
  .login-page .login-wrapper {
    max-width: 45%;
  }
}
@media (max-width: 576px) {
  .login-page .login-wrapper {
    max-width: 70%;
  }
}
.login-page .login-wrapper.main-login {
  max-width: 38%;
}
@media (max-width: 1024px) {
  .login-page .login-wrapper.main-login {
    max-width: 45%;
  }
}
@media (max-width: 576px) {
  .login-page .login-wrapper.main-login {
    max-width: 70%;
  }
}
.login-page .login-wrapper.forgot-password, .login-page .login-wrapper.reset-password {
  max-width: 50%;
}
@media (max-width: 1024px) {
  .login-page .login-wrapper.forgot-password, .login-page .login-wrapper.reset-password {
    max-width: 70%;
  }
}
.login-page .login-wrapper.forgot-password .top-wrapper > div, .login-page .login-wrapper.reset-password .top-wrapper > div {
  padding: 40px 34px;
}
@media (max-width: 576px) {
  .login-page .login-wrapper.forgot-password .top-wrapper > div, .login-page .login-wrapper.reset-password .top-wrapper > div {
    padding: 10px 25px;
  }
}
.login-page .login-wrapper.forgot-password .left-wrapper h1, .login-page .login-wrapper.reset-password .left-wrapper h1 {
  font-size: 40px;
  margin: 20px 0;
}
@media (max-width: 576px) {
  .login-page .login-wrapper.forgot-password .left-wrapper h1, .login-page .login-wrapper.reset-password .left-wrapper h1 {
    font-size: 20px;
    margin: 5px 0;
  }
}
.login-page .login-wrapper.forgot-password .left-wrapper p, .login-page .login-wrapper.reset-password .left-wrapper p {
  line-height: 18px;
  font-size: 14px;
}
@media (max-width: 576px) {
  .login-page .login-wrapper.forgot-password .left-wrapper p, .login-page .login-wrapper.reset-password .left-wrapper p {
    line-height: 16px;
    font-size: 11px;
  }
}
.login-page .left-wrapper {
  background-color: rgba(255, 156, 0, 0.89);
}
.login-page .left-wrapper img {
  width: 160px;
  height: auto;
}
@media (max-width: 1024px) {
  .login-page .left-wrapper img {
    width: 120px;
  }
}
.login-page .left-wrapper h1,
.login-page .left-wrapper p {
  color: #fff;
}
.login-page .left-wrapper h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0;
}
@media (max-width: 1024px) {
  .login-page .left-wrapper h1 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .login-page .left-wrapper h1 {
    font-size: 20px;
    margin: 5px 0;
  }
}
.login-page .left-wrapper p {
  line-height: 16px;
  font-size: 11px;
}
.login-page .right-wrapper {
  background-color: #fff;
}
.login-page .right-wrapper .inputEmail {
  display: none;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .login-page .right-wrapper .inputEmail {
    margin: 15px auto 0;
  }
}
.login-page .right-wrapper .inputEmail button {
  margin-top: 20px;
}
@media (max-width: 576px) {
  .login-page .right-wrapper .inputEmail button {
    margin-bottom: 10px;
  }
}
.login-page .right-wrapper .top-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .login-page .right-wrapper .top-content {
    margin-top: 10px;
  }
}
.login-page .right-wrapper .top-content h2 {
  margin: 0;
  color: #ff9c00;
}
@media (max-width: 576px) {
  .login-page .right-wrapper .top-content h2 {
    font-size: 20px;
  }
}
.login-page .right-wrapper .login-box-msg {
  color: #b6b6b6;
}
@media (max-width: 576px) {
  .login-page .right-wrapper .login-box-msg {
    padding: 0 15px 20px;
    font-size: 11px;
  }
}
.login-page .right-wrapper .bottom-content {
  margin: 15px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 576px) {
  .login-page .right-wrapper .bottom-content {
    align-items: unset;
    justify-content: space-around;
    flex-direction: row;
  }
}
.login-page .right-wrapper .bottom-content a {
  color: #353535;
  font-size: 12px;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .login-page .right-wrapper .bottom-content a {
    font-size: 12px;
  }
}
.login-page .form-group > input {
  border: 1px solid #cecece;
  border-radius: 25px;
  padding: 14px 20px;
  height: 48px;
  font-size: 11px;
  padding-right: 45px;
}
.login-page .form-group > input:hover, .login-page .form-group > input:focus {
  border-color: #ff9c00;
}
@media (max-width: 576px) {
  .login-page .form-group > input {
    height: 40px;
    font-size: 12px;
  }
}
.login-page form button,
.login-page form .btn-fb {
  padding: 14px;
  border-radius: 22px !important;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  border: 0;
}
@media (max-width: 1024px) {
  .login-page form button,
.login-page form .btn-fb {
    padding: 12px;
  }
}
@media (max-width: 1024px) {
  .login-page form button#btn_login {
    font-size: 11px;
  }
}
.login-page form .btn-fb {
  background-color: #4267b2;
}
.login-page form .orForm {
  color: #cecece;
  border: 2px solid #cecece;
  display: block;
  max-width: 35px;
  text-align: center;
  height: 35px;
  font-size: 16px;
  border-radius: 50%;
  margin: 15px auto;
  padding: 4px;
}
@media (max-width: 1024px) {
  .login-page form .orForm {
    height: 34px;
    font-size: 14px;
    border-radius: 50%;
    margin: 10px auto;
  }
}
.login-page .slctUserType {
  max-width: 90%;
  margin: auto;
}
.login-page .slctUserType > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page .slctUserType label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  font-family: "robotoregular", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.login-page .slctUserType label:hover .type {
  color: #000;
}
.login-page .slctUserType label:hover input ~ .checkmark {
  border-color: #ff9c00;
  background-color: #ff9c00;
}
.login-page .slctUserType label:hover input ~ .checkmark.customer::after {
  background-position: 0 -66px;
}
.login-page .slctUserType label:hover input ~ .checkmark.merchant::after {
  background-position: -48px -66px;
}
.login-page .slctUserType input ~ .checkmark {
  border-color: #ff9c00;
  background-color: #ff9c00;
}
.login-page .slctUserType input ~ .checkmark.customer::after {
  background-position: 0 -66px;
}
.login-page .slctUserType input ~ .checkmark.merchant::after {
  background-position: -48px -66px;
}
.login-page .slctUserType input:checked ~ .type {
  color: #000;
}
.login-page .slctUserType input:checked ~ .checkmark {
  border-color: #ff9c00;
  background-color: #ff9c00;
}
.login-page .slctUserType input:checked ~ .checkmark.customer::after {
  background-position: 0 -66px;
}
.login-page .slctUserType input:checked ~ .checkmark.merchant::after {
  background-position: -48px -66px;
}
.login-page .slctUserType .radioButton {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page .slctUserType .radioButton .type {
  color: #d0d0d0;
}
.login-page .slctUserType .radioButton .checkmark {
  position: relative;
  width: 90px;
  height: 90px;
  background-color: transparent;
  border: 3px solid #d0d0d0;
  margin-bottom: 10px;
}
.login-page .slctUserType .radioButton .checkmark::after {
  background: url(../../images/forget-pass-ico.png) no-repeat;
  width: 50px;
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
}
.login-page .slctUserType .radioButton .checkmark.customer::after {
  background-position: 0 0;
}
.login-page .slctUserType .radioButton .checkmark.merchant::after {
  background-position: -48px 0;
  width: 55px;
}
.login-page.register-leads .form-group {
  margin-bottom: 5px;
  padding: 0 5px;
}
.login-page.register-leads .form-group.frm-submit {
  text-align: center;
}
.login-page.register-leads .form-group.frm-submit button {
  margin: 20px 0 0;
  width: 100%;
  max-width: 300px;
  font-size: 11px;
  font-family: "robotothin", sans-serif;
}
@media (max-width: 1024px) {
  .login-page.register-leads .top-wrapper {
    flex-direction: column;
  }
}
.login-page.register-leads .top-wrapper > div {
  padding: 70px 50px;
}
@media (max-width: 1024px) {
  .login-page.register-leads .top-wrapper > div {
    padding: 20px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .login-page.register-leads .top-wrapper > div.left-wrapper {
    align-items: center;
    text-align: center;
  }
}
.login-page.register-leads .right-wrapper .top-content {
  margin-bottom: 30px;
}
.login-page.register-leads .left-wrapper h1 {
  font-size: 34px;
  margin: 20px 0;
}
.login-page.register-leads .left-wrapper p {
  line-height: 18px;
  font-size: 14px;
  font-family: "robotothin", sans-serif;
}
@media (max-width: 576px) {
  .login-page.register-leads .left-wrapper p {
    line-height: 16px;
    font-size: 11px;
  }
}
.login-page.register-leads.register .frm-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0;
}
.login-page.register-leads.register .frm-submit a {
  margin: 0 10px;
  border-radius: 25px;
  font-size: 11px;
  font-family: "robotothin", sans-serif;
}
.login-page #confirm-submit {
  padding: 40px 50px;
  text-align: center;
  display: none;
}
.login-page #confirm-submit h1 {
  color: #ff9c00;
  font-family: "robotobold", sana;
  text-align: center;
  margin: 0 0 50px;
}
.login-page #confirm-submit p {
  color: #606060;
  text-align: center;
}
.login-page #confirm-submit p a {
  font-family: "robotobold", sans-serif;
  color: #606060;
}
.login-page #confirm-submit .return {
  color: #fff;
  padding: 15px 10px;
  width: 100%;
  display: inline-block;
  max-width: 300px;
  margin: auto;
  text-transform: uppercase;
  border-radius: 25px;
  font-family: "robotothin", sans-serif;
  font-size: 11px;
  margin-top: 30px;
  border: 0;
}
.login-page .reset-password .form-control {
  transition: unset !important;
  text-align: center;
}
.login-page .reset-password .form-control.disabled {
  background-color: #939393;
  color: #fff;
}
.login-page .reset-password .top-content {
  margin-bottom: 20px;
}
.login-page .reset-password button {
  width: 100%;
}

.reset-password {
  padding: 0;
}
.reset-password .forgot-password {
  background: url("../images/Access-V3-BG-repeat.png");
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 50px;
  background-color: #fe9045;
}
.reset-password .main-box {
  max-width: 480px;
  background-color: #fff;
  padding: 50px 70px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px 2px #bbb;
  margin: 30px 0;
}
.reset-password .main-box img {
  max-width: 80px;
}
.reset-password .main-box h2 {
  font-family: "robotobold", sans-serif;
  color: #4c4c4c;
  margin: 25px 0;
  font-size: 2.2em;
}
.reset-password .main-box form {
  margin-top: 30px;
}
.reset-password .main-box .form-group {
  position: relative;
}
.reset-password .main-box .form-group input {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  text-align: center;
  padding: 12px 20px;
  height: auto;
}
.reset-password .main-box .form-button {
  display: flex;
}
.reset-password .main-box .form-button a,
.reset-password .main-box .form-button button {
  height: 40px;
  margin: 0;
}
.reset-password .main-box .form-button a {
  margin-right: 15px;
  padding: 10px;
}
.reset-password .main-box button {
  background-color: #ff8f44;
  text-transform: uppercase;
  font-family: "robotomedium", sans-serif;
  font-size: 0.9em;
  height: 46px;
  border: 0;
}
.reset-password .main-box .contact {
  margin-top: 50px;
}
.reset-password .main-box .contact p {
  margin: 0;
}

.pswrd-req p {
  font-size: 12px;
  margin: 0 0 5px;
}
.pswrd-req ul {
  list-style: none;
  padding-left: 25px;
  max-width: 65%;
  margin: 5px auto;
  text-align: center;
}
.pswrd-req li {
  position: relative;
  font-size: 14px;
}
.pswrd-req li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  display: block;
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pswrd-req li.invalid {
  color: red;
}
.pswrd-req li.invalid::before {
  border: 1px solid red;
}
.pswrd-req li.valid {
  color: green;
}
.pswrd-req li.valid::before {
  border: 1px solid green;
}

.min-vh-100 {
  min-height: 100vh;
  min-height: 100svh;
}

.page-sign-up {
  font-family: "montserratregular", sans-serif;
  font-size: 14px;
  color: #494949;
  background-image: linear-gradient(to left, #ffc254, #f57d2f);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 32px;
  padding-inline: clamp(20px, 0.8929rem + 1.7857vw, 32px);
}
.page-sign-up .main-content {
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .page-sign-up .main-content {
    flex-direction: row;
    max-width: clamp(928px, 47.7112rem + 16.5948vw, 1072px);
  }
}
.page-sign-up .main-content .left-content {
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
  padding-block: 24px;
  padding-inline: 31px;
}
@media (min-width: 992px) {
  .page-sign-up .main-content .left-content {
    border-bottom: 0;
    border-right: 1px solid #d8d8d8;
    max-width: 405px;
    padding-block: clamp(32px, -5.1538rem + 11.5385vw, 56px);
    padding-inline: clamp(16px, -5.8558rem + 11.0577vw, 39px);
  }
}
.page-sign-up .main-content .left-content .content-wrapper {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .page-sign-up .main-content .left-content .content-wrapper {
    margin-bottom: 31px;
  }
}
.page-sign-up .main-content .left-content .logo-img {
  width: 178px;
}
@media (min-width: 992px) {
  .page-sign-up .main-content .left-content .logo-img {
    width: 207px;
  }
}
.page-sign-up .main-content .left-content .lead {
  font-family: "montserratsemibold", sans-serif;
  font-size: 12px;
}
@media (min-width: 992px) {
  .page-sign-up .main-content .left-content .lead {
    font-size: 14px;
  }
}
.page-sign-up .main-content .left-content .card {
  background-color: #fbfbfb;
  border: 0;
  border-radius: 10px;
  flex-direction: row;
  min-height: 108px;
  padding: 16px;
  align-items: center;
  gap: 12px;
}
.page-sign-up .main-content .left-content .card + .card {
  margin-top: 24px;
}
.page-sign-up .main-content .left-content .card .card-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
}
.page-sign-up .main-content .left-content .card .card-body {
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-sign-up .main-content .left-content .card h4 {
  font-family: "montserratsemibold", sans-serif;
  font-size: 12px;
}
@media (min-width: 992px) {
  .page-sign-up .main-content .left-content .card h4 {
    font-size: 18px;
  }
}
.page-sign-up .main-content .left-content .card p {
  font-family: "montserratmedium", sans-serif;
  color: #898989;
}
.page-sign-up .main-content .right-content {
  padding: 24px 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .page-sign-up .main-content .right-content {
    padding-block: clamp(16px, -5.1538rem + 11.5385vw, 56px);
    padding-inline: 32px;
  }
}
.page-sign-up .main-content .right-content .sign-up-header {
  margin-bottom: 24px;
}
.page-sign-up .main-content .right-content .sign-up-header .sign-up-greetings {
  display: grid;
  gap: 24px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-sign-up .main-content .right-content .sign-up-header .sign-up-greetings {
    display: block;
  }
}
.page-sign-up .main-content .right-content .sign-up-header .brand-logo-img {
  max-width: 105px;
  max-height: 70px;
  object-fit: contain;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .page-sign-up .main-content .right-content .sign-up-header .brand-logo-img {
    float: right;
    margin-left: 24px;
  }
}
@media (min-width: 992px) {
  .page-sign-up .main-content .right-content .sign-up-header .brand-logo-img {
    max-height: 50px;
  }
}
.page-sign-up .main-content .right-content .sign-up-header .form-title {
  font-family: "montserratbold", sans-serif;
  font-size: 18px;
}
@media (min-width: 992px) {
  .page-sign-up .main-content .right-content .sign-up-header .form-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .page-sign-up .main-content .right-content .form .form-group {
    margin-bottom: 32px;
  }
}
.page-sign-up .main-content .right-content .form .select-arrow {
  position: relative;
  width: 100%;
}
.page-sign-up .main-content .right-content .form .select-arrow select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 35px;
  width: 100%;
}
.page-sign-up .main-content .right-content .form .select-arrow .fa {
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.page-sign-up .main-content .right-content .form label, .page-sign-up .main-content .right-content .form .form-control {
  font-size: 12px;
  font-family: "montserratmedium", sans-serif;
}
.page-sign-up .main-content .right-content .form .form-control {
  border-color: #ececec;
  height: 35px;
}
.page-sign-up .main-content .right-content .form .form-control:focus {
  box-shadow: 0 0 0.2rem #f8901f;
  border-color: #f8901f;
}
.page-sign-up .main-content .right-content .form .form-control::-webkit-input-placeholder {
  /* Edge */
  color: #cfcfcf;
}
.page-sign-up .main-content .right-content .form .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #cfcfcf;
}
.page-sign-up .main-content .right-content .form .form-control::placeholder {
  color: #cfcfcf;
}
.page-sign-up .main-content .right-content .form .form-control[type=password] {
  font: small-caption;
  font-size: 16px;
}
.page-sign-up .main-content .right-content .form .text-danger p {
  font-size: 10px;
  color: #dc3544;
  font-family: "montserratmedium", sans-serif;
  margin-top: 4px;
}
.page-sign-up .main-content .right-content .form .pswrd-req {
  display: none;
  width: max-content;
  background-color: #fff;
  border: 2px solid #dc3544;
  border-radius: 5px;
  position: absolute;
  z-index: 2;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}
.page-sign-up .main-content .right-content .form .pswrd-req::before, .page-sign-up .main-content .right-content .form .pswrd-req::after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  left: 50%;
  bottom: 100%;
  z-index: 1;
  transform: translateX(-50%);
}
.page-sign-up .main-content .right-content .form .pswrd-req:before {
  border-width: 12px;
  border-bottom-color: #dc3544;
}
.page-sign-up .main-content .right-content .form .pswrd-req:after {
  border-bottom-color: #fff;
}
.page-sign-up .main-content .right-content .form .pswrd-req ul {
  padding: 8px 8px 8px calc(1em + 16px);
  margin: 0;
  text-align: left;
  max-width: 100%;
  list-style: circle;
}
.page-sign-up .main-content .right-content .form .pswrd-req li {
  font-size: 12px;
}
.page-sign-up .main-content .right-content .form .pswrd-req li:before {
  content: none;
}
.page-sign-up .main-content .right-content .form .input-group {
  border: 1px solid #ececec;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.page-sign-up .main-content .right-content .form .input-group:focus-within {
  box-shadow: 0 0 0.2rem #f8901f;
  border-color: #f8901f;
}
.page-sign-up .main-content .right-content .form .input-group .form-control {
  border: 0;
}
.page-sign-up .main-content .right-content .form .input-group .form-control:focus {
  box-shadow: none;
}
.page-sign-up .main-content .right-content .form .input-group .input-group-text {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.page-sign-up .main-content .right-content .form .termsAndCondition .cs-radio {
  column-gap: 10px;
  row-gap: 0;
  margin-bottom: 0;
}
.page-sign-up .main-content .right-content .form .termsAndCondition .text-danger {
  grid-area: 2/-2;
}
.page-sign-up .main-content .right-content .form .termsAndCondition a {
  color: #f8901f;
  text-decoration: underline;
}
.page-sign-up .main-content .right-content .form .frmSubmit {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.page-sign-up .main-content .right-content .form .g-recaptcha {
  margin-left: 0;
  transform: scale(0.77);
  -webkit-transform: scal(0.77);
  transform-origin: 150px 0;
  -webkit-transform-origin: 150px 0;
}
.page-sign-up .main-content .right-content .form button[type=submit] {
  font-size: 14px;
  font-family: "montserratsemibold", sans-serif;
  background-color: #f8901f;
  color: #fff;
  border: 0;
  border-radius: 50px;
  text-transform: uppercase;
  outline: 0;
  box-shadow: none;
  width: 100%;
  padding-block: 0;
  height: 42px;
  max-width: 295px;
  margin-inline: auto;
  display: block;
}
@media (min-width: 992px) {
  .page-sign-up .main-content .right-content .form button[type=submit] {
    display: block;
    max-width: 202px;
  }
}
.page-sign-up .cs-radio {
  align-items: flex-start;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}
.page-sign-up .cs-radio input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  transform: translateY(3px);
  cursor: pointer;
}
.page-sign-up .cs-radio input[type=checkbox]:checked {
  background: url("../images/icon_circle_check.svg") no-repeat center top;
  background-size: 100% 100%;
  border: 1px solid #3ADB15;
}

.profile-kyc .modal-body h5 {
  font-family: "montserratbold", sans-serif;
  color: #f8901f;
}
.profile-kyc .modal-body .pincode-input-container {
  display: flex;
  max-width: 90%;
  margin: 10px auto;
}
@media (max-width: 425px) {
  .profile-kyc .modal-body .pincode-input-container {
    max-width: 100%;
  }
}
.profile-kyc .modal-body .pincode-input-container input {
  min-width: 0;
  margin: 0 7px;
  color: #434446;
  background-color: #ececec;
  border: 0;
  font-size: 40px;
  outline: 0;
  text-align: center;
  font-family: "montserratbold", sans-serif;
  border-radius: 5px;
}
@media (max-width: 425px) {
  .profile-kyc .modal-body .pincode-input-container input {
    padding: 5px 10px;
    font-size: 36px;
    margin: 0 3px;
  }
}
.profile-kyc .modal-body .verify_code {
  border-radius: 50px;
  font-size: 12px;
  font-family: "montserratbold", sans-serif;
  background-color: #f8901f;
  color: #fff;
  text-transform: uppercase;
  margin: 20px 0;
}
.profile-kyc .modal-body p.no-code {
  font-family: "montserratmedium", sans-serif;
  margin-bottom: 20px;
}
.profile-kyc .modal-body .send_sms_js, .profile-kyc .modal-body .send_sms_email {
  font-size: 12px;
  color: #f8901f;
}
.profile-kyc .modal-body .or {
  margin: 16px 0;
  font-size: 12px;
}
.profile-kyc .modal-body input {
  padding: 1px 2px !important;
}
.profile-kyc .error-code {
  background-color: #f8d7da;
  color: #721c24;
  font-size: 9px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  border: 1px solid #f5c6cb;
  padding: 8px;
}

#privacyPolicy h4, #termsOfService h4 {
  font-size: 14px;
  font-family: "montserratbold", sans-serif;
  color: #f8901f;
}
#privacyPolicy p, #termsOfService p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  html, .page-landing {
    height: 100%;
  }

  .page-landing main {
    height: 100%;
    min-height: 600px;
  }

  .page-landing main > .row {
    min-height: 100%;
  }
}
body {
  font-family: "Lato Regular";
  color: #494949;
}

.page-landing {
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
.page-landing .form-control {
  font-size: inherit;
  color: inherit;
}
.page-landing .form-control::-webkit-input-placeholder {
  color: rgba(43, 43, 43, 0.5);
}
.page-landing .form-control:-ms-input-placeholder {
  color: rgba(43, 43, 43, 0.5);
}
.page-landing .form-control::placeholder {
  color: rgba(43, 43, 43, 0.5);
}
.page-landing a {
  color: inherit;
}
.page-landing .lead {
  font-size: 18px;
  text-align: center;
  /* @include media('xxl') {
      font-size: 24px;
  } */
}
.page-landing .left-col, .page-landing .right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-landing .left-col, .page-landing .right-col, .page-landing .container-fluid {
  padding-inline: 24px;
}
.page-landing .left-col {
  background-color: #F8901F;
  padding-block: 40px;
}
.page-landing .left-col .col-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
@media (min-width: 992px) {
  .page-landing .left-col .col-content {
    gap: 24px;
  }
}
.page-landing .left-col .img-container {
  max-width: 241px;
  /* @include media('xxl') {
      max-width: 458px;
  } */
}
@media (min-width: 992px) {
  .page-landing .left-col .img-container {
    max-width: 337px;
  }
}
.page-landing .left-col img {
  margin-inline: auto;
}
.page-landing .left-col .lead {
  color: #252525;
}
@media (min-width: 992px) {
  .page-landing .left-col .lead {
    max-width: 398px;
  }
}
.page-landing .right-col {
  padding-block: 32px 40px;
}
.page-landing .right-col h1 {
  font-size: 24px;
  font-family: "Lato Semibold";
  font-weight: normal;
  text-align: center;
  margin-bottom: 8px;
  /* @include media('xxl') {
      font-size: 48px;
  } */
}
@media (min-width: 992px) {
  .page-landing .right-col h1 {
    font-size: 32px;
  }
}
.page-landing .right-col .lead {
  color: rgba(43, 43, 43, 0.5);
}
.page-landing .right-col .preloader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: grid;
  justify-content: center;
  transform: translateY(27px);
}
.page-landing .right-col #login_form {
  margin-block: 40px 32px;
  margin-inline: auto;
  max-width: 416px;
  position: relative;
  /* @include media('xxl') {
      margin-block: 48px 40px;
      max-width: 465px;
      font-size: 16px;
  } */
}
@media (min-width: 992px) {
  .page-landing .right-col #login_form {
    margin-block: 32px 40px;
  }
}
.page-landing .right-col .text-danger {
  font-size: 12px;
  padding-top: 8px;
  text-align: right;
  display: block;
}
.page-landing .right-col label {
  font-family: "Lato Semibold";
  font-weight: normal;
}
.page-landing .right-col label:not(.form-check-label) {
  /* @include media('xxl') {
      font-size: 18px;
  } */
}
@media (min-width: 992px) {
  .page-landing .right-col label:not(.form-check-label) {
    font-size: 16px;
  }
}
.page-landing .right-col .form-control {
  height: 45px;
}
@media (min-width: 992px) {
  .page-landing .right-col .form-control {
    height: 48px;
  }
}
.page-landing .right-col .form-control:focus {
  box-shadow: none;
}
.page-landing .right-col #txt_username, .page-landing .right-col .txt_password {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.0784313725);
}
.page-landing .right-col #txt_username, .page-landing .right-col #txt_password, .page-landing .right-col .txt_password .input-group-text {
  border-color: #d7d7d7;
}
.page-landing .right-col .txt_password {
  border-radius: 4px;
}
.page-landing .right-col #txt_password {
  border-right: 0;
}
.page-landing .right-col .txt_password .input-group-text {
  border-left: 0;
  background-color: transparent;
}
.page-landing .right-col .fa {
  cursor: pointer;
}
.page-landing .right-col .form-check {
  padding-left: 0;
}
.page-landing .right-col .form-check-input {
  display: none;
}
.page-landing .right-col .form-check-input:checked + label:before {
  content: "\f14a";
  font-weight: 900;
  color: #F8901F;
}
.page-landing .right-col .form-check-label {
  font-family: "Lato Regular";
}
.page-landing .right-col .form-check-label:before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin-right: 8px;
  color: #D7D7D7;
  cursor: pointer;
}
.page-landing .right-col #forgotPassword:hover {
  color: #F8901F;
  text-decoration: underline;
}
.page-landing .right-col #btn_login {
  width: 100%;
  font-family: "Lato Semibold";
  font-weight: normal;
  font-size: inherit;
  color: white;
  text-transform: uppercase;
  padding-block: 11px;
  box-shadow: none;
}
.page-landing .right-col .note {
  text-align: center;
  /* @include media('xxl') {
      font-size: 20px;
  } */
}
@media (min-width: 992px) {
  .page-landing .right-col .note {
    font-size: 16px;
  }
}
.page-landing .right-col #signUp {
  color: #F8901F;
  font-family: "Lato Medium";
  font-weight: normal;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.page-landing .right-col #signUp:hover {
  border-color: #F8901F;
}
.page-landing .footer {
  background-color: #252525;
  color: var(--white);
  padding: 24px 0;
}
.page-landing .footer.primary {
  padding-top: 27px;
}
@media (max-width: 767px) {
  .page-landing .footer.primary {
    padding-bottom: 10px;
  }
}
.page-landing .footer-top {
  padding-bottom: 16px;
  border-bottom: 1px solid #c4c4c4;
}
.page-landing .footer-top .footer-text {
  margin-bottom: 8px;
  font-family: "montserratmedium", sans-serif;
  font-size: 12px;
}
.page-landing .footer-top .footer-text.orange {
  font-family: "montserratsemibold", sans-serif;
  color: var(--orange);
}
.page-landing .footer-top .footer-text.label {
  font-size: 10px;
}
.page-landing .footer-top .footer-text.media-soc {
  font-family: "montserratmedium", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
}
.page-landing .footer-top img {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .page-landing .footer-top {
    border-bottom: none;
    width: 100%;
    margin: 0px auto;
  }
  .page-landing .footer-top .col-md-2 {
    width: 50%;
    text-align: left;
    padding-left: 8%;
  }
  .page-landing .footer-top .col-md-2 .footer-text {
    text-align: left;
  }
  .page-landing .footer-top .col-md-3:nth-child(1) {
    padding-bottom: 5px;
    border-bottom: 1px solid #494949;
    margin-bottom: 20px;
  }
  .page-landing .footer-top .col-md-3:nth-child(2) {
    width: 50%;
    text-align: left;
  }
  .page-landing .footer-top .col-md-3:nth-child(2) .footer-text {
    text-align: left;
  }
  .page-landing .footer-top .col-md-3:nth-child(3) {
    width: 50%;
    text-align: left;
  }
  .page-landing .footer-top .col-md-3:nth-child(3) .footer-text {
    text-align: left;
  }
  .page-landing .footer-top .col-md-3:last-child {
    margin-top: 10px;
    border-top: 1px solid #494949;
    padding-top: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .page-landing .footer-top .col-md-3:last-child .footer-text {
    text-align: center;
  }
  .page-landing .footer-top .col-md-4 {
    padding-bottom: 12px;
    border-bottom: 1px solid #494949;
    margin-bottom: 30px;
  }
  .page-landing .footer-top .link-init {
    margin-left: 17px;
  }
  .page-landing .footer-top img {
    margin: 0px auto;
    margin-bottom: 10px;
  }
}
.page-landing .footer-mid {
  padding: 16px 0;
  border-bottom: 1px solid #c4c4c4;
}
.page-landing .footer-text {
  text-align: center;
  font-size: 10px;
  margin-bottom: 0;
}
.page-landing .footer-text.lead {
  font-family: var(--ff-montserrat-bold);
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 8px;
}
.page-landing .footer-links {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.page-landing .footer-link {
  color: var(--white);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background-color: var(--orange);
  border-radius: 50px;
  font-size: 14px;
  float: left;
  margin-right: 15px;
}
.page-landing .footer-link:hover {
  color: var(--white);
  text-decoration: none;
}
.page-landing .footer .access-mobile {
  margin-bottom: 24px;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.page-landing .footer .access-mobile-app {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-landing .footer .access-mobile-app:hover {
  text-decoration: none;
  box-shadow: 0 0 0 5px #6e6e6e;
  background: #6e6e6e;
}
.page-landing .footer .access-mobile-icon {
  width: 37px;
}
.page-landing .footer .access-mobile-text {
  font-size: 10px;
  color: var(--white);
  margin-bottom: 0;
}
.page-landing .footer .access-mobile strong {
  font-size: 14px;
  color: var(--orange);
  display: block;
}
.page-landing .footer-bottom {
  padding: 16px 0 0;
  background-color: #000000;
}
.page-landing .footer-bottom p:first-of-type {
  margin-bottom: 16px;
}
.page-landing .footer-bottom strong {
  font-size: 14px;
  color: var(--orange);
  display: block;
}
.page-landing .footer .copyright {
  font-size: 10px;
  text-align: center;
}
.page-landing .footer .copyright-text {
  margin-bottom: 0;
}
.page-landing .footer .company-address {
  margin-bottom: 24px;
}
.page-landing .footer .terms-of-service-link, .page-landing .footer .privacy-policy-link {
  color: var(--white);
}
.page-landing .footer .divider {
  display: none;
  padding: 0 10px;
}
.page-landing .footer .divider:nth-of-type(3) {
  display: inline-block;
}
.page-landing .footer.footer-last {
  padding: 15px 0px;
  background-color: #000000;
}
.page-landing .footer.footer-last .access-container .footer-text {
  font-size: 12px;
}
.page-landing .footer.footer-last .access-container .col-md-6 .footer-text {
  width: 120px;
  float: left;
}
.page-landing .footer.footer-last .access-container .col-md-4.copyright-text .footer-text {
  text-align: right;
}
@media (max-width: 767px) {
  .page-landing .footer.footer-last .access-container {
    width: 100%;
  }
  .page-landing .footer.footer-last .access-container .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  .page-landing .footer.footer-last .access-container .row .col-md-6 .footer-text {
    text-align: center;
  }
  .page-landing .footer.footer-last .access-container .row .col-md-4.copyright-text {
    margin-top: 10px;
    border-top: 1px solid #494949;
    padding-top: 15px;
    text-align: center;
  }
  .page-landing .footer.footer-last .access-container .row .col-md-4.copyright-text .footer-text {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .page-landing .footer-top {
    border: none;
    padding-right: 15px;
  }
  .page-landing .footer-link {
    margin-top: 8px;
  }
  .page-landing .footer-text {
    text-align: left;
  }
  .page-landing .footer-text.media-soc {
    margin-bottom: 0px;
  }
  .page-landing .footer .copyright-text {
    padding-left: 0px;
  }
  .page-landing .footer .access-container {
    margin-left: 5%;
    padding-right: 5%;
  }
  .page-landing .footer.footer-last {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .page-landing .footer .access-container {
    justify-content: space-between;
    gap: 16px;
    margin-left: 6%;
    padding-right: 6%;
  }
  .page-landing .footer-top {
    flex: 0 0 auto;
    padding-bottom: 0;
  }
  .page-landing .footer-mid, .page-landing .footer-bottom {
    flex: 1;
    padding-bottom: 0;
  }
  .page-landing .footer-top, .page-landing .footer-mid {
    border-bottom: 0;
  }
  .page-landing .footer-mid, .page-landing .footer-bottom {
    padding-top: 0;
  }
  .page-landing .footer-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
  }
  .page-landing .footer-bottom {
    max-width: 436px;
  }
  .page-landing .footer .access-mobile {
    justify-content: flex-start;
  }
  .page-landing .footer-text {
    text-align: left;
  }
  .page-landing .footer-links {
    justify-content: flex-start;
  }
  .page-landing .footer .copyright {
    text-align: left;
  }
  .page-landing .footer .copyright-text, .page-landing .footer .copyright .divider {
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .page-landing .footer .access-container {
    margin-left: 7%;
    padding-right: 7%;
  }
}
@media (min-width: 1801px) {
  .page-landing .footer.service_dash {
    height: 21%;
  }
  .page-landing .footer.service_dash .access-container {
    margin-left: 8%;
    padding-right: 17%;
    width: 102%;
  }
  .page-landing .footer.app_form {
    position: inherit;
    width: 100%;
  }
  .page-landing .footer.app_form .access-container {
    margin: 0px auto;
    padding-right: 0px;
    width: 85%;
  }
  .page-landing .footer.footer-last {
    bottom: 0px;
    padding: 10px 0;
  }
  .page-landing .footer.footer-last.service_dash {
    height: 41px;
  }
  .page-landing .footer.footer-last.service_dash .access-container {
    margin-left: 8%;
    padding-right: 7%;
    width: 102%;
  }
  .page-landing .footer .access-container {
    margin-left: 10%;
    padding-right: 10%;
  }
}
@media (min-width: 1920px) and (max-height: 1080px) {
  .page-landing .footer {
    bottom: 37px;
  }
  .page-landing .footer.primary {
    padding-top: 20px;
    padding-bottom: 5px;
  }
  .page-landing .footer.service_dash {
    height: 25%;
  }
  .page-landing .footer.service_dash .access-container {
    margin-left: 8%;
    padding-right: 17%;
    width: 102%;
  }
  .page-landing .footer.app_form {
    position: inherit;
    width: 100%;
  }
  .page-landing .footer.app_form .access-container {
    margin: 0px auto;
    padding-right: 0px;
    width: 85%;
  }
  .page-landing .footer.footer-last {
    bottom: 0px;
    padding: 10px 0;
  }
  .page-landing .footer.footer-last.service_dash {
    height: 41px;
  }
  .page-landing .footer.footer-last.service_dash .access-container {
    margin-left: 8%;
    padding-right: 7%;
    width: 102%;
  }
}
@media (min-width: 2160px) {
  .page-landing .footer.app_form {
    position: inherit;
    width: 100%;
  }
  .page-landing .footer.app_form .access-container {
    margin: 0px auto;
    padding-right: 0px;
    width: 85%;
  }
  .page-landing .footer .access-container {
    margin-left: 17%;
    padding-right: 17%;
    width: 93%;
  }
}
@media (min-width: 2880px) {
  .page-landing .footer .access-container {
    width: 80%;
  }
}
#privacyPolicy, #termsOfService {
  padding: 48px;
}
#privacyPolicy .logo, #termsOfService .logo {
  margin-bottom: 48px;
}
#privacyPolicy h2, #termsOfService h2 {
  font-size: 20px;
  font-family: "montserratbold", sans-serif;
  margin-bottom: 16px;
}
#privacyPolicy h4, #termsOfService h4 {
  font-size: 14px;
  font-family: "montserratbold", sans-serif;
  color: #F8901F;
}

.modal-content {
  border: 0;
}

@media (min-width: 576px) {
  .cs-modal .modal-dialog {
    width: 95%;
  }
}
@media (min-width: 576px) {
  .cs-modal .modal-sm {
    max-width: 351px;
  }
}
@media (min-width: 576px) {
  .cs-modal .modal-lg {
    max-width: 1045px;
  }
}
.cs-modal .close {
  opacity: 1;
  outline: transparent;
}
.cs-modal .close path {
  fill: #494949;
}
.cs-modal .modal-header {
  padding: 17px 24px;
}
.cs-modal .modal-header .close path {
  fill: white;
}
.cs-modal .modal-header .modal-title {
  font-family: "montserratbold", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: white;
  text-transform: uppercase;
}
.cs-modal .modal-body {
  padding: 24px 24px 32px;
}

.cs-alert-modal .modal-content {
  overflow: hidden;
}
.cs-alert-modal .modal-body {
  padding: 48px 24px 24px;
  text-align: center;
  font-size: 12px;
  color: #494949;
}
.cs-alert-modal h5 {
  margin: 24px 0 16px;
  font-family: "montserratbold", sans-serif;
  font-size: 18px;
  font-weight: normal;
}
.cs-alert-modal p {
  margin-bottom: 0;
}
.cs-alert-modal ul {
  text-align: left;
  margin-bottom: 0;
}
.cs-alert-modal ul li {
  margin-bottom: 8px;
}
.cs-alert-modal img {
  max-width: 103px;
  margin: 0 auto;
}
.cs-alert-modal .close {
  position: absolute;
  top: 10px;
  right: 16px;
  outline: transparent;
}
.cs-alert-modal .modal-footer {
  padding: 0;
  display: flex;
}
.cs-alert-modal .modal-footer > * {
  flex: 1;
  border-radius: 0 !important;
  font-size: 14px;
  font-family: "montserratbold", sans-serif;
  font-weight: normal;
  padding: 14px 0;
  margin: 0;
  color: white;
  text-transform: uppercase;
}

#signUpModal label {
  text-transform: uppercase;
  font-size: 12px;
  font-family: "montserratsemibold", sans-serif;
  font-weight: normal;
}
#signUpModal .form-control {
  background-color: transparent;
  font-size: 14px;
  font-family: "montserratbold", sans-serif;
  border-radius: 0;
  border: 1px solid transparent;
  border-bottom: 1px solid #ECECEC;
  box-shadow: none;
  padding-inline: 0;
}
#signUpModal .row {
  row-gap: 40px;
}
#signUpModal .btn {
  display: block;
  margin: 32px auto 0;
  min-width: 167px;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "montserratsemibold", sans-serif;
  padding-block: 10px;
}
#signUpModal .alert-warning {
  background-color: #ffe9d1;
  color: #494949;
  padding: 16px 27px;
  font-family: "montserratmedium", sans-serif;
  font-weight: normal;
  font-size: 14px;
}

/*# sourceMappingURL=style.css.map */
