@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0%;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  background-color: #f7f9fa;
  font-family: 'Montserrat', sans-serif;
}

a {
  font-size: 15px;
  text-decoration: none;
  color: #0070ba;
}

a:hover {
  color: #00548c;
}

.btn-primary {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 40px;
  background-color: #0070ba;
  border: 1px solid #0070ba;
  border-radius: 30px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all .3s ease-in-out;
  text-align: center;
}

.btn-primary:hover {
  background-color: #00548c;
  border-color: #00548c;
  color: #fff;
}

.text-right {
  text-align: right;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 8px; 
  width: 100%;
}

.form-check .form-check-input {
  margin-right: 8px;
  display: inline-block;
}

.form-check .form-check-label {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}

input[type="checkbox"] {
  position: static;
  margin-left: 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: #0070ba;
  border-color: #0070ba;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hlY2siPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==);
}

.select {
  width: 100%;
  font-size: 15px;
  height: 46px;
  border: 1px solid #e7e7e8;
  background-color: #fff;
  border-radius: 6px;
  color: #6e6e6e;
  font-family: 'Montserrat',sans-serif;
  cursor: pointer;
  padding: 10px;
  max-height: 100px;
  overflow-y: scroll;
  line-height: 41px;
}

.select:focus {
  border-color: #0070ba;
  box-shadow: none;
  outline: none;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  /* float: left; */
}

.col-12, .col-md-6 {
  width: 100%;
  flex: 0 0 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 20px;
  float: left;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
    flex: 0 0 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 20px;
  }
}

/*===================== Login, SIgnup, Forgot password page styles ==================================*/
.centered__box {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  float: left;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  overflow-y: auto;
}

.content__wrapper {
  max-width: 420px;
  width: 100%;
  background-color: #fff;
  padding: 2rem;
  border-radius: .5rem;
  border: 1px solid #e7e7e8; 
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-left: auto;
  margin-right: auto;
  float: left;
}

.content__wrapper.signup__wrapp {
  max-width: 768px;
}

.content__wrapper .logo {
  text-align: center;
  font-size: 35px;
  color: #00548c;
  font-weight: 500;
}

.content__wrapper .form-control {
  width: 100%;
  height: 46px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  color: #6e6e6e;
  border: 1px solid #e7e7e8;
  padding: 10px;
  border-radius: 5px;
  cursor: text;
  position: relative;
  z-index: 11;
  background-color: transparent;
}

.content__wrapper .form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #0070ba;
}

.content__wrapper label {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.content__wrapper .input__group {
  display: flex;
}

.content__wrapper .input__group select {
  width: 60px;
  border-right: 0;
  border-radius: 6px 0 0 6px;
  padding: 4px; 
  display: inline-block;
}

.content__wrapper .input__group .form-control {
  border-radius: 0 6px 6px 0;
  border-left: 0;
  margin: 0;
  width: calc(100% - 60px);
  width: -webkit-calc(100% - 60px);
  width: -moz-calc(100% - 60px); 
  display: inline-block;
  width: 82%;
  margin-left: -4px;
}

.content__wrapper .link {
  font-size: 15px;
  color: #0070ba;
  text-decoration: none;
}

.content__wrapper .link:hover {
  color: #00548c;
  text-decoration: underline;
}

.content__wrapper .btn-primary {
  width: 75%;
  margin: 20px auto 20px auto;
  display: block; 
  margin-left: auto;
  margin-right: auto;
}

.content__wrapper .action__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/*=================================== Home page styles =====================================*/
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}

.navigation {
  padding: 10px 0;
  float: left;
  width: 100%;
  position: relative;
  z-index: 11;
}

.navigation .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navigation .container .logo {
  font-size: 30px;
  font-weight: 500;
  float: left;
}

.navigation .container .btn-primary {
  padding: 3px 8px;
  background-color: transparent;
  border-color: transparent;
  color: #777;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  float: right;
}

.navigation .container .btn-primary img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.navigation .container .btn-primary:hover {
  background-color: #fff;
}

.land__page .centered__box {
  min-height: calc(100vh - 100px);
}

.land__page .centered__box .content__wrapper {
  max-width: 600px;
  text-align: center;
  padding: 60px;
  margin-left: auto;
  margin-right: auto;
}

.land__page .centered__box .content__wrapper h3 {
  font-size: 24px;
  font-weight: 600;
}

.land__page .centered__box .content__wrapper .lead {
  font-size: 20px;
  margin: 10px 0;
}

.land__page .centered__box .content__wrapper .form-check {
  margin-top: 20px;
  justify-content: center;
}

.land__page .centered__box .content__wrapper .price_box {
  position: relative;
  display: inline-block;
  margin: 20px 0;
}

.land__page .centered__box .content__wrapper .price_box .symbol {
  font-size: 25px;
  font-weight: 500;
  position: absolute;
  color: #555;
  top: -8px;
}

.land__page .centered__box .content__wrapper .price_box .form-control {
  font-size: 56px;
  height: 66px;
/*  width: 173px;*/
  display: inline-block;
  text-align: center;
  padding: 0;
  font-weight: 400;
  border: 0;
  pointer-events: none;
}

.land__page .centered__box .content__wrapper .price_box p {
  font-size: 18px;
  font-weight: 500;
}

.land__page .centered__box .content__wrapper .btn-primary {
  margin-top: 25px;
}

.content__wrapper.success {
  border-radius: 6px;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.content__wrapper.success h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.content__wrapper.success h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .content__wrapper .form-control {
    height: 38px;
    font-size: 14px;
  }
  .content__wrapper .input__group select {
    height: 38px;
  }
  .content__wrapper label {
    font-size: 14px;
  }
  input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
  .content__wrapper .btn-primary {
    margin: 0px auto 0px auto;
  }
  .land__page .centered__box .content__wrapper {
    padding: 30px;
  }
  .land__page .centered__box .content__wrapper h3 {
    font-size: 18px;
  }
  .land__page .centered__box .content__wrapper .lead {
    font-size: 16px;
  }
  .content__wrapper .btn-primary {
    width: 100%;
    font-size: 15px;
  }
  .content__wrapper.success img {
    width: 60px;
    height: 60px;
  }
  .content__wrapper.success h2 {
    font-size: 22px;
  }
  .content__wrapper.success h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .select { 
    line-height: 32px;
    }
}

@media (max-width: 575px) {
  .content__wrapper .action__box {
    justify-content: center;
    flex-direction: column;
  }
  .content__wrapper .input__group .form-control {
    width: 75%;
  }
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
/*# sourceMappingURL=style.css.map */