@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
body {
  background: #163b5e url("../images/bg_login.png") no-repeat top center/100% auto;
  font-family: "Lato", sans-serif;
  position: relative;
  min-height: 100vh;
}
body:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  z-index: -1;
  background-image: linear-gradient(180deg, #7091af 0%, #7091af 85%, #7091af 75%);
}

img {
  max-width: 100%;
}

::-webkit-input-placeholder { color:#fff !important; font-size:16px }
::-webkit-selection { background: #08121D; color: #fff; text-shadow: 0 0 transparent } 
::-moz-placeholder {color:#fff !important; font-size:16px }
::-moz-selection { background: #08121D; color: #fff; text-shadow: 0 0 transparent }
:-ms-input-placeholder {color:#fff !important; font-size:16px }
::-ms-selection { background: #08121D; color: #fff; text-shadow: 0 0 transparent } 
:-moz-placeholder {color:#fff !important; font-size:16px }
::selection { background: #08121D; color: #fff; text-shadow: 0 0 transparent }

/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #163b5e #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 5px;
  scrollbar-width: thin;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #163b5e;
  border-radius: 10px;
  border: 4px solid #ffffff;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

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

.text-success {
  color: #03D017 !important;
}

.text-danger {
  color: #DB0010 !important;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-danger {
  background: #fea816;
  border-color: #fea816;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
}
.btn-danger:is(:focus, :active, :hover) {
  background: #fea816 !important;
  border-color: #fea816 !important;
  opacity: 0.8;
}

.btn-outline-danger {
  border-color: #fea816;
  color: #fea816;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
}
.btn-outline-danger:is(:focus, :active, :hover) {
  color: #ffffff !important;
  border-color: #fea816 !important;
  background: #fea816 !important;
}

.border-danger {
  border-color: #fea816 !important;
}

.form-control {
  border: 1px solid #A2A2A2;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
}

.navigationSlide {
  overflow: hidden;
  width: 290px !important;
  background: #163b5e;
}
.navigationSlide .btn-close {
  opacity: 1;
  font-size: 14px;
  position: fixed;
  right: 292px;
  top: 0;
}
.navigationSlide .mid_slide {
  overflow-y: auto;
}
.navigationSlide ul {
  margin: 0;
  padding: 0;
}
.navigationSlide ul li {
  list-style: none;
}
.navigationSlide ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 229, 229, 0.3);
  padding: 10px 16px;
  font-size: 13px;
  text-transform: uppercase;
}
.navigationSlide ul li a:hover {
  background-color: rgb(16 50 82);
}
.navigationSlide .cate_slide {
  position: relative;
  cursor: pointer;
}
.navigationSlide .cate_slide::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(224deg);
  transition: all 0.5s;
}
.navigationSlide .cate_slide_inner {
  width: 100%;
  max-height: 304px;
  background: #1b142c;
  transition: all 0.5s;
  z-index: 1;
  overflow-y: auto;
  display: none;
}
.navigationSlide .open_cate .cate_slide_inner {
  display: block;
}
.navigationSlide .open_cate .cate_slide::after {
  transform: rotate(44deg);
}

.nav-icon {
  width: 20px;
  transform: rotate(0deg);
  cursor: pointer;
  height: 18px;
}
.nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transition: 0.2s ease-in-out;
}
.nav-icon span:nth-child(1) {
  top: 2px;
}
.nav-icon span:nth-child(2) {
  top: 50%;
}
.nav-icon span:nth-child(3) {
  bottom: 0px;
}
.nav-icon:hover span:nth-child(2) {
  width: 60%;
  background: #FF0000;
  left: 40%;
}

.custom_select {
  background-color: transparent;
  filter: brightness(0) invert(1);
  padding-top: 10px;
  padding-bottom: 10px;
}

.login_row {
  min-height: calc(100vh - 96px);
}

.right_dv {
  padding-bottom: 224px;
}

.right_dv .fs-22 {
  line-height: 1.2;
}

.brand_list_outer {
  background: #0a2136;
  border-radius: 20px;
  padding: 20px 40px;
  position: relative;
}
.brand_list_outer::before, .brand_list_outer::after {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #163b5e;
  border-radius: 50%;
}
.brand_list_outer::after {
  left: initial;
  right: -17px;
}

.tc_buttons {
  position: absolute;
  left: -40%;
  white-space: nowrap;
  bottom: 132px;
}
.tc_buttons button {
  width: 60%;
}

.btn-close {
  background-color: #E10000;
  opacity: 1;
  background-size: 44%;
  border-radius: 50%;
  color: #fff;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .modal-backdrop {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: #000;
    opacity: 0.9 !important;
  }
}
.modal-backdrop {
  background: #000;
  opacity: 0.93 !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.address_outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #ffffff;
}
.address_outer button {
  font-size: 14px;
  white-space: nowrap;
}
.address_outer h5 {
  font-size: 16px;
}
.address_outer p {
  font-size: 13px;
}

.faq_outer {
  color: #fff;
  font-size: 13px;
}
.faq_outer h1, .faq_outer h2, .faq_outer h3, .faq_outer h4, .faq_outer h5, .faq_outer h6 {
  font-size: 16px;
  font-weight: bold;
}
.faq_outer p, .faq_outer li, .faq_outer ul {
  font-size: 13px;
}

.impInstructions ul {
  color: #ffffff;
  margin: 0;
}
.impInstructions ul li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
  font-size: 13px;
}
.impInstructions ul li strong {
  color: #4eff00;
}
.impInstructions ul li.not strong {
  color: #FF0000;
}
.impInstructions ul li::after {
  content: "\f00c";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 300;
  position: absolute;
  font-size: 16px;
  top: -5px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 36px;
  left: 0;
  z-index: 1;
}
.impInstructions ul li.not::after {
  content: "\f00d";
  top: -8px;
}

.howtomodal .owl-nav button span {
  display: none;
}
.howtomodal .owl-nav button.owl-prev {
  background: url("../images/prev.png") no-repeat center center/cover;
  width: 22px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -22px;
}
.howtomodal .owl-nav button.owl-next {
  background: url("../images/prev.png") no-repeat center center/cover;
  width: 22px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(-1);
  right: -22px;
}
.howtomodal .owl-nav button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.howtomodal .step_text {
  font-weight: 600;
  font-size: 14px;
}
.howtomodal .step_text::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #FF0000;
  left: 0;
}
.howtomodal .min-h-con {
  font-size: 12px;
  text-align: center;
  overflow: hidden;
  overflow-y: auto;
  height: 80px;
  padding-left: 4px;
  padding-right: 4px;
}

@media (max-width: 1280px) {
  .tc_buttons {
    left: -32%;
  }
  .tc_buttons button {
    width: 44%;
  }
}
@media (max-width: 1024px) {
  .tc_buttons {
    left: -32%;
  }
  .tc_buttons button {
    width: 44%;
  }
}
@media (max-width: 991px) {
  .tc_buttons {
    left: -13%;
  }
  .tc_buttons button {
    width: 43%;
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  body {
    background: #163b5e url("../images/bg_login_m.png") no-repeat bottom center/100% auto;
  }
  body::after {
    height: 130px;
  }
  .right_dv {
    padding-bottom: 0;
    margin-top: 40px;
  }
  .brand_list_outer {
    padding-bottom: 88px;
  }
  .tc_buttons {
    left: 13px;
    bottom: 38px;
    overflow: hidden;
    overflow-x: auto;
    right: 13px;
    padding: 0 16px 6px;
  }
  .tc_buttons button {
    width: 160px;
  }
}
.otp-form { display: flex; justify-content: space-between; margin:0 15px}
.otp-form .form-control {margin:0 5px; background: transparent; color: #fff; text-align: center\;}
.modal-backdrop.show { opacity: 1; backdrop-filter: blur(9px);  -webkit-backdrop-filter: blur(9px); background-color: rgba(0, 0, 0, .9); }
/*# sourceMappingURL=style.css.map */