html,
body,
.wrapperP {
  width: 100%;
  height: 100%;
}

body.member-login .wrapper{
  min-height: 100%;
}

.wrapper{
  min-height: auto;
}

body {
  font-family: "Inter", sans-serif !important;
  color: #000;
  background: #fbfcfe;
  font-weight: 400;
  font-size: 14px;
  overflow-x: hidden;
}

body.contact-us,
body.terms-and-conditions,
body.privacy-policy{
  background-color: #fff !important;
}

.overflow-hidden{
  overflow: hidden !important;
}

@font-face {
  font-family: Inter;
  src: url(../fonts/Inter/Inter-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Inter;
  src: url(../fonts/Inter/Inter-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Inter;
  src: url(../fonts/Inter/Inter-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Inter;
  src: url(../fonts/Inter/Inter-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Inter;
  src: url(../fonts/Inter/Inter-ExtraBold.ttf);
  font-weight: bold;
}

a,
.btn {
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
  cursor: pointer;
}

.modal-dialog-center {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.modal-size-custom {
  max-width: 700px;
}

/* The container */
.containerCheckBox {
  /*display: block;*/
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
}

/* When the checkbox is checked, add a blue background */
.containerCheckBox input:checked ~ .checkmark {
  background-color: #6532cc;
  border: 1px solid #6532cc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containerCheckBox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containerCheckBox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pointer {
  cursor: pointer;
}

.noPointer {
  cursor: default;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
  outline-offset: -2px;
}

/* Position */
.posRel {
  position: relative !important;
}

.posAbs {
  position: absolute;
}

.dispNone {
  display: none;
}

.card .overlay.table {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.justify-center {
  justify-content: center;
}

/* Loader */
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.loader,
.ajaxLoader {
  text-align: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
}

.loader,
.ajaxLoader {
  display: none;
}

.loader .lds-ripple,
.ajaxLoader .lds-ripple {
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.msg-load {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.msg-load div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #a1a5b7;
  border-radius: 50%;
  animation: msg-load 1.2s linear infinite;
}

.msg-load div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.msg-load div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.msg-load div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.msg-load div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.msg-load div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.msg-load div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.msg-load div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.msg-load div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.msg-load div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.msg-load div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.msg-load div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.msg-load div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

.msg-load-scale {
  transform: scale(0.5);
}

@keyframes msg-load {
  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

.login-box,
.register-box {
  width: 360px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-group label {
  color: #00227e !important;
  font-weight: 500 !important;
  margin-bottom: 10px;
}

.jErr,
.jErr label {
  font-weight: 500 !important;
  color: red !important;
  font-size: 0.8rem !important;
  margin: 0;
}

.jErr {
  margin-top: 10px;
  text-align: left;
  height: unset !important;
  border: none !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-group > div {
  display: flex;
  height: 55px;
  align-items: center;
  background-color: #fff;
  border: 1px solid #dbe4ff;
  border-radius: 30px;
  padding: 0px 1.5rem;
}

.form-group > div > img {
  padding-right: 20px;
  border-right: 2px solid #eff3ff;
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  apperance: none;
}

.select-caret {
  right: 30px;
  padding-right: 0px !important;
  top: 25px !important;
  left: unset !important;
}

.form-control {
  font-size: 0.9rem;
  height: 30px;
  border-radius: 30px;
  transition: 0.3s;
  border: none;
  padding-left: 1.3rem;
}

.alert {
  padding: 0.8rem 1rem;
  font-size: 15px;
  border-radius: 30px;
  margin-bottom: 1rem;
  border: none;
  box-shadow: none;
}

.alert-danger {
  color: white;
  background: #dc3545;
  border-color: none;
  padding: 0.5rem 1rem;
  font-size: 15px;
  border-radius: 30px;
}

.log-box {
  position: absolute;
  left: 0;
  background: #ffffff;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.log-box-l {
  background: #2e63f5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  float: left;
}

.log-box-l-reg {
  background-image: url(../img/bg-login-reg.png);
}

.log-box-r {
  width: 50%;
  height: 100%;
  background: #fff;
  float: left;
  margin: auto;
  overflow-x: hidden;
}

.log-box-logo {
  margin: 0;
  position: relative;
  /*  top: 50%;*/
  /*left: 30%;*/
  /*  -ms-transform: translate(100px, -50%);*/
  /*  transform: translate(100px, -50%);*/
  width: 100%;
  max-width: 85%;
}

.log-box-logo img {
  width: 170px;
}

.log-box-logo h5 {
  font-size: 40px;
  color: #fff;
  margin-top: 30px;
  font-weight: bold;
  text-transform: none;
}

.log-box-logo p {
  font-size: 14px;
  color: #fff;
  margin-top: 15px;
  width: 60%;
}

.forgotPassword .log-box {
  background: #f4f4f4;
}

.forgotPassword .log-box-r {
  width: 100%;
}

.login-card-body,
.forgot-password-card-body {
  max-width: 740px;
  margin: 0 auto 0 auto;
  background: transparent;
  /*left: 50%;*/
  /*-ms-transform: translate(-50%, -30%);*/
  /*transform: translate(-50%, -30%);*/
}

.title-1 {
  color: #0033BF;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.login-card-body .input-group.ig-1 .input-group-text,
.register-card-body .input-group.ig-1 .input-group-text {
  border-bottom-left-radius: 0.25rem;
  border: 1px solid #f0f1f5;
  border-right: 0;
  border-top-left-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/*
.login-card-body .input-group.ig-1 .form-control,
.register-card-body .input-group.ig-1 .form-control {
  border-right: 1px solid #f0f1f5;
  border-left: 1px solid #f0f1f5 !important;
}*/

.fc-1 {
  height: calc(2.25rem + 19px);
}

.select2-container .selection {
  width: 100%;
  padding: 0;
  display: block;
}

/* Works on Chrome, Edge, and Safari */
.select2-results__options::-webkit-scrollbar {
  width: 0px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: #1c1c24;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 20px;
}

.select2-container .selection .select2-selection {
  padding: 0;
  border: none;
}

.select2-container .select2-selection__arrow {
  opacity: 0;
}

.select2-dropdown{
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.select2-results{
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #fff;
}

.select2-search--dropdown{
  background-color: #fff;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
  border: 1px solid #DBE4FF;
  border-radius: 30px;
  padding: 10px 20px;
}

.select2-results__option{
  padding: 6px 25px;
}

.card-body .dd-1 .select2-container {
  position: relative;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
  width: 100% !important;
  height: calc(2.25rem + 2px);
}

/*.card-body .dd-1 .select2-container .select2-selection--single {
  height: calc(2.25rem + 10px);
  border: 1px solid #f0f1f5;
  outline: 0;
  outline-offset: -2px;
  padding-left: 5px;
}*/

/*.card-body .dd-1 .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #4a4a4a;
  line-height: 35px;
}*/

/*.card-body .dd-1 .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: calc(2.25rem + 10px);
}*/

/*.log-box-r .dd-1 .select2-container {
  position: relative;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
  height: 55px;
}*/

.log-box-r .dd-1 .select2-container .select2-selection--single {
  height: 55px;
  border: 1px solid #f0f1f5;
  outline: 0;
  outline-offset: -2px;
  padding-left: 5px;
}

.log-box-r .input-group-addon .select2-container .select2-selection--single {
  height: 55px;
  border: 1px solid #f0f1f5;
  border-right: 1px solid #ffffff;
  outline: 0;
  outline-offset: -2px;
  padding-left: 5px;
}

.log-box-r .dd-1 .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #495057;
  line-height: 44px;
}

.log-box-r .dd-1 .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 52px;
}

.modal-body .dd-1 .select2-container {
  position: relative;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
  height: 55px;
  width: 100% !important;
}

.modal-body .dd-1 .select2-container .select2-selection--single {
  height: 55px;
  border: 1px solid #f0f1f5;
  border-right: 1px solid #ffffff;
  outline: 0;
  outline-offset: -2px;
  padding-left: 5px;
}

.modal-body .dd-1 .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #495057;
  line-height: 44px;
}

.modal-body .dd-1 .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 52px;
}

.formModal .dd-1 .select2-container .select2-selection--single {
  height: calc(2.25rem + 2px);
  border: 1px solid #f0f1f5;
  outline: 0;
  outline-offset: -2px;
  padding-left: 5px;
}

.formModal .dd-1 .select2-container {
  height: 38px;
}

.formModal .dd-1 .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #4a4a4a;
  line-height: 28px;
}

.formModal .dd-1 .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}

.slt-s1,
.slt-s2,
.select2-container {
  width: 100% !important;
}

/*.show.modal {
  padding-right: 0 !important;
}*/

.btn,
.btn:focus,
.btn:active,
.btn:hover {
  /*  height: 60px;*/
  /*  font-size: 18px;*/
  /*  font-weight: 600;*/
  /*  padding-top: 16px;*/
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  color: #fff;
  background-color: #2e63f5 !important;
  border: 2px solid #2e63f5;
  padding: 16px 15px;
  border-radius: 35px !important;
  width: 100%;
  font-size: 16px !important;
  /*box-shadow: 0px 25px 20px -15px #00506C;*/
}

.btn-primary.bg-grey {
  background-color: #dbe4ff !important;
  box-shadow: none !important;
  border: none;
  color: #04174b !important;
}

.btn-primary.bg-grey:hover {
  background-color: #fff !important;
  border: 2px solid #dbe4ff !important;
  box-shadow: none !important;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover,
.btn-primary.active {
  color: #fff;
  background-color: #25408d !important;
  border-color: #25408d;
}

.btn-primary:hover {
  background-color: #2ba6cb;
  border-color: #2ba6cb;
  box-shadow: 0px 0px 0px 0px rgba(53, 124, 217, 0.7);
  border-radius: 0;
}

.btn i {
  font-size: 0;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
  position: relative;
  top: -1px;
  right: -2px;
  border-radius: 0;
}

.btn-blue,
.btn-blue:focus,
.btn-blue:active,
.btn-blue:hover {
  color: #fff !important;
  background-color: #2e63f5 !important;
  border-color: #2e63f5;
  border-radius: 40px;
  display: block;
  font-size: 18px;
  padding: 16px !important;
}

.btn-green-line,
.btn-green-line:focus,
.btn-green-line:active,
.btn-green-line:hover {
  color: #2ecc71;
  background-color: #fff;
  border: 1px solid #2ecc71;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 0;
  /*box-shadow: 0px 25px 20px -15px rgba(184, 236, 199, 0.7);*/
}

.btn-green-line i {
  font-size: 0;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
  position: relative;
  top: -1px;
  right: -2px;
  border-radius: 0;
}

.btn-green-line:hover i {
  font-size: 80%;
  border-radius: 0;
}

.btn-green,
.btn-green:focus,
.btn-green:active,
.btn-green:hover {
  color: #fff;
  background-color: #2ecc71;
  border: 1px solid #2ecc71;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 5px !important;
  /*box-shadow: 0px 25px 20px -15px rgba(6, 212, 66, 0.85);*/
}

.btn-green:hover {
  background-color: #fff;
  color: #2ecc71;
  border: 1px solid #2ecc71;
}

.btn-green:hover i {
  font-size: 80%;
  border-radius: 0;
}

.btn-red,
.btn-red:focus,
.btn-red:active,
.btn-red:hover {
  color: #fff;
  background-color: #e74c3c;
  border: 1px solid #e74c3c;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 5px !important;
  /*box-shadow: 0px 25px 20px -15px rgba(6, 212, 66, 0.85);*/
}

.btn-red:hover {
  background-color: #fff;
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.max-w-210 {
  max-width: 210px;
  width: 100%;
}

.min-w-120 {
  min-width: 120px;
}

.min-w-150 {
  min-width: 150px;
}

.modal-content {
  border-radius: 20px;
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-body {
  padding: 2.5rem 2rem;
}

.modal-footer {
  text-align: center;
  border: none;
  margin-bottom: 30px;
  padding-top: 0;
}

#generalModal .modal-dialog {
  max-width: 330px;
}

#generalTitle {
  color: #0033bf;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

#generalMsg {
  color: #00227e;
  font-size: 16px;
  margin-bottom: 2rem;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.tacCounterPanel span {
  color: #ff3636;
}

[class*="sidebar-dark-"] {
  background-color: #ffffff;
}

.sidebar {
  padding-left: 0;
  padding-right: 0;
}

.nav-sidebar > .nav-item {
  margin-bottom: 0;
}

.nav-sidebar .nav-item > .nav-link {
  padding-left: 1rem;
  padding-right: 0.5rem;
  padding-top: 0.9rem;
  padding-bottom: 1.3rem;
  height: 50px;
  margin-bottom: 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  margin: 0 13px;
}

[class*="sidebar-dark-"] .nav-sidebar > .nav-item.menu-open > .nav-link,
[class*="sidebar-dark-"] .nav-sidebar > .nav-item:hover > .nav-link,
[class*="sidebar-dark-"] .nav-sidebar > .nav-item > .nav-link:focus {
  color: #6e82a5;
}

.nav-sidebar .nav-link img {
  position: relative;
  top: -1px;
  margin-right: 5px;
  max-width: 15px;
}
.nav-sidebar > .nav-item .nav-icon.fa,
.nav-sidebar > .nav-item .nav-icon.fab,
.nav-sidebar > .nav-item .nav-icon.far,
.nav-sidebar > .nav-item .nav-icon.fas,
.nav-sidebar > .nav-item .nav-icon.glyphicon,
.nav-sidebar > .nav-item .nav-icon.ion {
  font-size: 12px;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:hover {
  background-color: #e4e9eb;
  color: #00506c;
  border-radius: 0;
  position: relative;
  margin: 7px 13px;
  border-radius: 10px;
  box-shadow: none;
}

.sidebar-footer {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: inherit;
  color: #2ba6cb;
  /*background-color: #291904;*/
  padding-bottom: 10px;
  list-style-type: none;
}

.navbar-nav ul li {
  list-style: none;
}

.navbar-nav ul {
  padding-left: 0;
}

.nav-footer {
  background-color: #e8f5f9;
  color: #2ba6cb;
  position: relative;
  margin: 7px 13px;
  border-radius: 10px !important;
  box-shadow: none;
}

.fa-angle-right:before {
  display: none;
}

/*.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active:after{
    content: " ";
    position: absolute;
    width: 5px;
    height: 100%;
    background: #652375;
    left: 0;
    top: 0;
    border-radius: 0 5px 5px 0;
}*/

[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active,
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active:focus,
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #24172c;
  color: #f9f9f9;
  height: 45px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link {
  color: #f9f9f9;
  height: 45px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-radius: 0;
}

.card {
  box-shadow: 0 10px 20px rgb(62 73 84 / 4%);
  margin-bottom: 1rem;
}

.modal-body {
  /* border-bottom: 1px solid #eeeeee; */
}

#forgotUsernameModal .modal-body {
  border-bottom: 0px solid #eeeeee;
}

.dropdown-menu {
  border: none;
  padding: 1rem 0;
  margin-top: 10px;
  min-width: 8em;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.card-footer {
  padding: 0 1.25rem 0.75rem 1.25rem;
  background-color: #fff;
  margin-bottom: 20px;
}

.card-primary:not(.card-outline) > .card-header,
.card-primary:not(.card-outline) > .card-header a {
  color: #14384b;
}

.card-primary:not(.card-outline) > .card-header {
  background-color: #e7eaec;
}

.content-header {
  padding: 15px 1.5rem;
}

.content-header h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00394d;
  margin: 30px 0 5px 0px;
}

.select2-container--default .select2-dropdown.select2-dropdown--below {
  background: #f5f5f5;
}
.nav-sidebar .nav-link > .right,
.nav-sidebar .nav-link > p > .right {
  top: 1.5rem;
}

.tipso_style {
  cursor: help;
  border-bottom: none;
}

.bg-grey,
.bg-grey > a,
.bg-cyan,
.bg-cyan > a,
.bg-red,
.bg-red > a,
.bg-green,
.bg-green > a,
.bg-purple,
.bg-purple > a,
.bg-blue,
.bg-blue > a {
  color: #fff !important;
}

.bg-grey:hover,
.bg-cyan:hover,
.bg-red:hover,
.bg-green:hover,
.bg-purple:hover,
.bg-orange:hover,
.bg-blue:hover {
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}

.bg-cyan {
  background-color: #00b9b2 !important;
  box-shadow: 0 0 5px #00b9b2;
}

.bg-grey {
  background-color: #bdbdbd !important;
  /*  box-shadow: 0 0 5px #BDBDBD;*/
}

.bg-green {
  background-color: #1cd9b3 !important;
  /*  box-shadow: 0 0 5px #1CD9B3;*/
}

.bg-purple {
  background-color: #6f42c1 !important;
  box-shadow: 0 0 5px #551ac1;
}

.bg-blue {
  background-color: #2e63f5 !important;
}

.bg-red {
  background-color: #ff6174 !important;
  /*  box-shadow: 0 0 5px #FF6174;*/
}

.bg-pale-green {
  background-color: #e0f6ea !important;
  box-shadow: 0 0 5px #e0f6ea;
}

.bg-pale-red {
  background-color: #ffe9e9 !important;
  box-shadow: 0 0 5px #ffe9e9;
}

.bg-pale-yellow {
  background-color: #fff7e1 !important;
  box-shadow: 0 0 5px #fff7e1;
}

.bg-grey:hover,
.bg-purple:hover,
.bg-red:hover,
.bg-green:hover,
.bg-orange:hover,
.bg-cyan:hover,
.bg-blue:hover {
  box-shadow: 0 0 0 #ff5c5b;
}

.navbar-light .navbar-nav .nav-link.tm-green {
  color: #1ba343;
}

.navbar-light .navbar-nav .nav-link.tm-purple {
  color: #652375;
}

.card-body {
  padding: 2rem;
}

.card-body ::-webkit-input-placeholder {
  font-weight: 300;
  color: #c1c1c1;
}

.card-body :-moz-placeholder {
  /* Firefox 18- */
  font-weight: 300;
  color: #c1c1c1;
}

.card-body ::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 300;
  color: #c1c1c1;
}

.card-body :-ms-input-placeholder {
  font-weight: 300;
  color: #c1c1c1;
}

.dropdown-item {
  font-size: 0.86rem;
}

.navbar-light .navbar-nav .nav-link {
  color: #4a4a4a;
}

.nav-s1 {
  border: 0px solid #e9ecef;
  border-radius: 10px;
}

.ddl-15.dropdown-menu.show {
  left: -10px !important;
  top: -12px !important;
}

.dd-date-filter {
  background: #eceff8;
  padding: 10px 10px;
  border-radius: 10px;
  color: #652375;
}
.dd-date-filter:hover {
  background: #652375;
}

.dd-date-filter .dropdown-toggle,
.dd-date-filter .dropdown-toggle:active,
.dd-date-filter .dropdown-toggle:focus,
.dd-date-filter .dropdown-toggle:hover {
  color: #652375;
}

.dd-date-filter:hover .dropdown-toggle,
.dd-date-filter:hover .dropdown-toggle:active,
.dd-date-filter:hover .dropdown-toggle:focus,
.dd-date-filter:hover .dropdown-toggle:hover {
  color: #fff;
}

.dd-date-filter {
  -webkit-transition: ease 0.5s;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  transition: ease 0.5s;
}

.dd-date-filter .dropdown-toggle img {
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}

.dd-date-filter:hover .dropdown-toggle img {
  filter: brightness(0) invert(1);
}

.txt-filter {
  font-weight: 700;
}

.txt-filter-sub {
  font-weight: 500;
  font-size: 0.8rem;
}

.dd-date-filter img {
  margin: 8px 10px 0 5px;
}

.dd-date-filter .dropdown-toggle::before {
  display: inline-block;
  margin-left: 1em;
  vertical-align: -0.745em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  top: 14px;
  border-left: 0.3em solid transparent;
}

.dd-date-filter .dropdown-toggle::after {
  display: none;
}

.type-check {
  min-width: 20px;
  display: inline-block;
}

.type-check img {
  margin: -4px 0 0 0;
  display: inline-block;
}

.fc-dateFilter .input-group {
  border: 1px solid #ff5c5b;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.fc-dateFilter .form-control,
.fc-dateFilter .input-group-text {
  background: none;
  padding: 1.1rem 0.75rem;
  border: none;
  height: auto;
}

.fc-dateFilter {
  width: 100%;
  max-width: 150px;
  height: 60px;
}

.fc-dateFilter-to {
  height: 60px;
}

.customDatePanel {
  width: 0;
  height: 60px;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  overflow: hidden;
}

.customDatePanel.active {
  width: 350px;
}

.t-green {
  color: #2ac156;
}

.t-red {
  color: #ff5c5b;
}

.t-blue {
  color: #652375;
}

.dash {
  box-shadow: 0 0 10px rgba(238, 238, 238, 0.55);
  border-radius: 0px;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}

.hov .dash:hover {
  background: #f6fff6;
}

.dash-2 {
  font-weight: 700;
  font-size: 24px;
}

.dash-2 .curr {
  font-size: 16px;
  vertical-align: top;
}

.dash-3 {
  font-weight: 500;
  color: #6e82a5;
  font-size: 16px;
}

.dash-3 span {
  font-size: 12px;
}

.dash-4 {
  margin-top: 1rem;
}

.dash-4 span {
  font-weight: 600;
}

.card-prog .progress-group {
  margin-bottom: 1.6rem;
}

.card-prog .progress-bar,
.card-prog .progress {
  border-radius: 50px;
}

.logo-login-2 {
  display: none;
}

.r-box {
  border: 1px solid #eeeeee;
  padding: 15px;
  border-radius: 10px;
  min-width: 220px;
}

.r-box .r-box-1 {
  font-weight: 500;
}

.r-box .r-box-2 {
  font-size: 20px;
  font-weight: 700;
}

.r-box .r-box-3 {
  font-weight: 600;
}

.r-box.active {
  border: 1px solid #652375;
  background: #652375;
  color: #fff;
  box-shadow: 0px 25px 20px -15px rgba(53, 124, 217, 0.7);
}

.r-chart {
  max-width: 220px;
  padding: 30px 50px 15px 50px;
  margin-right: 15px;
}

.r-progress {
  width: 100%;
  max-width: 455px;
  margin-top: 2rem;
}

.r-progress .progress {
  margin: 0.4rem 0 0 0;
}

.r-progress .progress-group {
  margin-bottom: 1.6rem;
}

.r-progress .progress-bar,
.r-progress .progress {
  border-radius: 50px;
}

.rp-1 {
  width: 90px;
  color: #7e7e7e;
  font-weight: 500;
}

.rp-2 {
  width: calc(100% - 200px);
  margin-right: 20px;
}

.rp-3 {
  width: 110px;
  text-align: right;
  color: #7e7e7e;
  font-weight: 500;
}

.plr20 {
  padding: 0 20px;
}

th,
td {
  color: #4a4a4a;
}

tfoot tr {
  background: #f9f9f9;
}

.td-bullet span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  margin: 0 5px 0 0;
}

table {
  border-bottom: 1px solid #f2f2f2;
}

.table-legend {
  color: #4a4a4a;
  font-weight: 500;
}

.table-legend span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  margin-left: 15px;
  margin-right: 3px;
}

.table-legend span:first-child {
  margin-left: 0;
}

.modal-header .close,
.modal-header .mailbox-attachment-close {
  padding: 5px;
  margin: -1.1rem -0.7rem 0rem auto;
}

.box-check-id {
  background: #f9f9f9;
  border: 1px solid #f0f1f5;
  border-radius: 10px;
  text-align: center;
  margin: 2rem 0 0 0;
  color: #4a4a4a;
  font-size: 16px;
}

.cb-1 {
  font-size: 1.2rem;
  font-weight: 700;
}

.col-sm-3-vv {
  -ms-flex: 0 0 205px;
  flex: 0 0 205px;
  max-width: 205px;
  text-align: right;
}

.col-sm-9-vv {
  -ms-flex: 0 0 calc(100% - 205px);
  flex: 0 0 calc(100% - 205px);
  max-width: calc(100% - 205px);
}

.text-muted {
  color: #4a4a4a;
  font-weight: 500;
}

.text-muted img {
  position: relative;
  top: -2px;
  width: 18px;
}

.btn-add-on:focus,
.btn-add-on:hover,
.btn-add-on:active,
.btn-add-on {
  height: 38px;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px;
}

.dd-1.dd-mobile .select2-container .select2-selection--single {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.dd-1.dd-mobile input {
  border-left: none;
}

.dd-1.dd-mobile .select2-container--open .select2-dropdown {
  width: 210px;
}

.doc-bg-Image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  border: 1px solid #f0f1f5;
  cursor: pointer;
}

.upload-image-head {
  height: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-image-head img {
  width: 36px;
  margin: 0 0 10px 0;
}

.upload-image-head p {
  margin: 0;
  padding-bottom: 1rem;
}

.upload-image-body {
  border-top: 1px solid #f0f1f5;
  background: #f2f7ff;
  color: #4a4a4a;
  font-weight: 600;
  padding: 5px 0;
}

.icheck-primary > input:first-child:checked + input[type="hidden"] + label::before,
.icheck-primary > input:first-child:checked + label::before {
  background-color: #652375;
  border-color: #652375;
}

.icheck-primary > input:first-child + input[type="hidden"] + label::before,
.icheck-primary > input:first-child + label::before,
.icheck-primary > input:first-child + input[type="hidden"] + label::after,
.icheck-primary > input:first-child + label::after {
  transition: 0.2s;
}

.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before {
  border: 1px solid #652375;
}

[class*="icheck-"] > input:first-child:checked + input[type="hidden"] + label::after,
[class*="icheck-"] > input:first-child:checked + label::after {
  left: 6px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50px;
  background: #fff;
  bottom: 0;
  right: 0;
  margin: auto 0;
  transform: none;
}

[class*="icheck-"] > input:first-child + input[type="hidden"] + label::before,
[class*="icheck-"] > input:first-child + label::before {
  width: 20px;
  height: 20px;
}

[class*="icheck-"] > label {
  min-height: 20px;
  line-height: 20px;
}

.form-group [class*="icheck-"] > label {
  font-weight: 400 !important;
}

.flex2 {
  width: 100%;
  max-width: 400px;
}

.box-amount-green {
  border: 2px solid #cbf1d6;
  background: #f4fcf6;
  width: 300px;
  text-align: center;
  border-radius: 8px;
  padding: 15px 0 25px 0;
}

.box-amount-head {
  color: #353548;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 0 0px 0;
}

.box-amount-body {
  color: #2ac156;
  font-weight: 600;
  font-size: 26px;
}

.mw-d300 {
  width: calc(100% - 300px);
}

.mwa-50 {
  min-width: 50px;
  text-align: center;
  display: inline-block;
}

.fc-dateFilter2 .form-control:disabled,
.fc-dateFilter2 .form-control[readonly],
.fc-dateFilter2 .input-group-text,
.fc-addon .form-control:disabled,
.fc-addon .form-control,
.fc-addon .input-group-text {
  background: none;
}

.fc-dateFilter2 .form-control:disabled,
.fc-dateFilter2 .form-control[readonly],
.fc-addon .form-control:disabled,
.fc-addon .form-control {
  border: 1px solid #f0f1f5;
  border-right: none;
}

.fc-dateFilter2 .input-group-text,
.fc-addon .input-group-text {
  border-left: none;
}

.fc-curAddon .input-group-text {
  color: #4a4a4a;
  background-color: #f0f1f5;
  border: 1px solid #f0f1f5;
  font-weight: 500;
  font-size: 14px;
}

.posAbs0 {
  position: absolute;
  width: 0;
  height: 0;
}

.preview-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-size: cover;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
}

.image-add-box {
  height: 50px;
  cursor: pointer;
}

.image-add-box .t-blue {
  color: #4a4a4a;
}

.image-add-box:hover .t-blue {
  color: #652375;
}

.image-add-box .upload-image {
  min-width: 90px;
  border-radius: 8px;
  background: #f2f7ff;
  border: 1px solid #f2f7ff;
}

.image-add-box .upload-image-head {
  padding: 5px 0 5px 0;
}

.closeImageAddOn {
  position: absolute;
  right: 7px;
  z-index: 1;
}

.generalIcon {
  width: 100%;
  max-width: 97px;
  margin: -20px auto 15px auto;
}

.btnGeneralModal:hover,
.btnGeneralModal:focus,
.btnGeneralModal:active,
.btnGeneralModal {
  padding: 12px;
  height: 50px;
  /* max-width: 120px; */
  border-radius: 50px;
  font-size: 14px;
  margin: 5px auto 0 auto;
  background-color: #2e63f5;
  border-color: #2e63f5;
  /* font-weight: 500; */
  color: white;
}

.backMainSH {
  text-decoration: underline;
  color: #1c1c24;
}

.backMainSH.btn {
  text-decoration: none;
  color: #444;
}

.card-body .dd-1 .select2-container .select2-selection--single[aria-disabled="true"],
.select2-container--default.select2-container--disabled .select2-selection--single[aria-disabled="true"],
.form-control:disabled,
.form-control[readonly] {
  background-color: #fff;
  border-color: #fff;
  opacity: 1;
  cursor: not-allowed;
}

.td-link:hover,
.td-link:focus,
.td-link:active,
.td-link {
  border-radius: 4px;
  font-weight: 500;
  padding: 2px 8px;
  border: 2px solid transparent;
  background: #fff;
  font-size: 12px;
}

.td-link:hover {
  opacity: 0.9;
}

.link-red:hover,
.link-red:focus,
.link-red:active,
.link-red {
  border-color: #ff5c5b;
  color: #ff5c5b;
}

.link-blue:hover,
.link-blue:focus,
.link-blue:active,
.link-blue {
  border-color: #652375;
  color: #652375;
}

.link-green:hover,
.link-green:focus,
.link-green:active,
.link-green {
  border-color: #2ac156;
  color: #2ac156;
}

.link-grey:hover,
.link-grey:focus,
.link-grey:active,
.link-grey {
  border-color: #f3f3f3;
  background-color: #f3f3f3;
  color: #7e7e7e;
}

.content-wrapper {
  padding-bottom: 0 !important;
  background: unset !important;
}

.content-wrapper .content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.layout-navbar-fixed .wrapper .content-wrapper {
  /*  margin-top: calc(3.5rem + 14px) !important;*/
  margin: 0 !important;
}

.t-grey-st2 {
  color: #c1c1c1;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 15px;
}

.t-grey-st3 {
  color: #c1c1c1;
  font-style: italic;
}

.card-body-curve {
  border-radius: 20px;
}

.tab-st1 .nav {
  border: none;
}

.tab-st1 .nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: #4a4a4a;
  font-weight: 500;
  margin-right: 2rem;
  padding: 1.6rem 0;
}

.tab-st1 .nav-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}

.tab-st1 .nav-tabs .nav-item.show .nav-link,
.tab-st1 .nav-tabs .nav-link.active {
  color: #652375;
  background-color: #fff;
  border-bottom: 3px solid #652375;
}

.card-body-80 {
  padding: 1rem 1.25rem;
}

.total-count {
  font-weight: 600;
  color: #4a4a4a;
  margin: 12px 0 0 0;
}

.hr-2 {
  margin-left: -1.7rem;
  margin-right: -1.7rem;
  margin-top: 0.8rem;
}

.dataTables_filter {
  display: none;
}

.dataTable {
  width: 100% !important;
}

.dataTable tfoot {
  display: none !important;
}

table.dataTable thead th,
table.dataTable thead td {
  border-bottom: 1px solid #eeeeee !important;
}

/*.dataTables_wrapper {
    margin: 0 -1.7rem !important;
}*/

.dataTables_paginate {
  float: left !important;
  margin: 20px 0px;
}

.dataTables_wrapper .dataTables_length {
  padding: 15px 0 0 8px;
}

.dataTables_wrapper .dataTables_length label {
  font-weight: 500;
  color: #4a4a4a;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #4a4a4a;
}

.content .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.content .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #00394d !important;
  background: #00394d !important;
}

.content .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.content .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: white !important;
  border: 1px solid #00394d !important;
  background: #00394d !important;
}

/*.content table.dataTable {
    margin: -12px 0 0 0;
}*/

.table td,
.table th {
  border-top: none;
}

.contact-img {
  width: 10rem;
  height: 10rem;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  background-color: #f4f6f9;
  float: left;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  margin: 1px !important;
}

.customer-location {
  border-radius: 10px;
  overflow: hidden;
}

.customer-location iframe {
  border: none;
  width: 100%;
  min-height: 600px;
}

.hide {
  display: none !important;
}

.export-action .dropdown-menu {
  padding: 0;
}

.export-action .dropdown-item {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #e9ecef;
}

.export-action .dropdown-item:last-child {
  border: none;
}

.export-action .nav-s1 {
  border: 1px solid #007bff;
}

.pagination li .current.prev,
.pagination li .current.next,
.pagination .ellipse.clickable,
.pagination li.active .current {
  position: relative;
  display: block;
  margin-left: -1px;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 0.25rem 0.7rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination li.active .current {
  background-color: #00394d;
  color: #fff;
  border: 1px solid #00394d;
}

.pagination li.disabled .current,
.pagination li.disabled .prev,
.pagination li.disabled .next {
  color: #333;
  background: #f1f1f1;
}

.pagination .ellipse.clickable input {
  border: none;
  outline: none;
  padding: 0;
}

.td-image {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #f0f1f5;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 -8px 0;
}

.td-image img {
  width: 22px;
  height: 22px;
}

.formModal .modal-header {
  background: #f3f5f5;
  color: #1b4145;
  padding-top: 1rem;
  padding-bottom: 0.7rem;
}

.formModal .modal-header span {
  font-size: 16px;
  font-weight: 500;
}

.formModal .modal-body {
  padding: 1rem 1rem;
}

.formModal .modal-footer {
  display: block;
  margin-bottom: 15px;
}

.modal-body textArea {
  resize: none;
}

.btn-modal-back:active,
.btn-modal-back:focus,
.btn-modal-back:hover,
.btn-modal-back {
  color: #4a4a4a;
  margin: 12px 5px 0 0px;
}

.btn-modal-back i:active,
.btn-modal-back i:focus,
.btn-modal-back i:hover,
.btn-modal-back i {
  font-size: 0.6rem;
  position: relative;
  top: -1px;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}

.btn-modal-back:hover i {
  margin-right: 5px;
}

.pillBlue {
  background: #eceff8;
  padding: 5px;
  border-radius: 6px;
}

.pillBlue.nav-pills .nav-link {
  color: #00394d;
  background: #eceff8;
  font-weight: 600;
  min-width: 120px;
  text-align: center;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #00394d;
}

.tableEntries {
  position: absolute;
  left: 10px;
  width: 130px;
  height: 30px;
}

.tableEntries .custom-select {
  height: 1.8rem;
  line-height: 1.1;
  width: 62px;
  font-size: 0.8rem;
}

.tableEntries_2 {
  color: #4a4a4a;
  margin: 5px 0 0 5px;
}

.paginationPanel {
  min-height: 48px;
}

.grey-box-info {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-clip: padding-box;
  border-radius: 0.25rem;
  box-shadow: inset 0 0 0 transparent;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: #f4f6f9;
  border: 1px solid #f4f6f9;
}

/* Works on Firefox */
.layout-fixed .wrapper .sidebar {
  scrollbar-width: thin;
  scrollbar-color: blue orange;
}

/* Works on Chrome, Edge, and Safari */
.layout-fixed .wrapper .sidebar::-webkit-scrollbar {
  width: 6px;
}

.layout-fixed .wrapper .sidebar::-webkit-scrollbar-track {
  background: #1c1c24;
}

.layout-fixed .wrapper .sidebar::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 20px;
}

.d-inline-flex-img {
  display: inline-grid;
}

.form-group textarea {
  resize: none;
}

.hide2,
.hide3,
.hide4 {
  display: none;
}

.fc-dateFilter2 .form-control:disabled {
  background-color: #f4f6f9;
  border-color: #f4f6f9;
}

.fc-dateFilter2 .form-control:disabled + .input-group-append .input-group-text {
  background-color: #f4f6f9;
  border-color: #f4f6f9;
}

.ui-widget.ui-widget-content {
  z-index: 9999 !important;
}

.dt-DocList .nav-link,
.dtm-DocList .nav-link {
  display: inline-block;
  min-width: 200px;
  margin: 5px;
}

.customer-user-detail-st label {
  font-weight: 300 !important;
  font-size: 14px;
}

.customer-user-detail-st span {
  font-weight: 500 !important;
  margin-left: 10px;
}

.customer-user-detail-st div {
  margin-bottom: 15px;
}

.userIcon {
  background-color: #dbe4ff;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #00506c;
}

.userIcon2 {
  background-color: #6782cd;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #00506c;
  display: flex;
  align-items: center;
}

.userIcon2 img {
  margin: 0 auto;
}

.max-w-400 {
  max-width: 400px;
}

.yearpicker-container {
  width: 230px;
  margin-top: -0.5rem;
}

.yearpicker-items {
  font-size: 14px;
  padding: 0.5rem 0.1rem;
}

.yearpicker-items.selected {
  font-weight: 500;
}

.max-w-500 {
  max-width: 500px;
}

.form-text-2 {
  font-size: 13px;
  width: 100%;
  display: block;
}

.box-amount-white {
  border: 2px solid #ededed;
  width: 300px;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 15px;
}

.delete-image-icon:hover,
.delete-image-icon:focus,
.delete-image-icon:active,
.delete-image-icon {
  position: absolute;
  top: 1px;
  right: 5px;
  font-size: 18px;
  color: #f53333;
  z-index: 1;
}

.acl-borrower {
  line-height: 2;
}

.rFundBox {
  background: #e9f9ee;
  border-radius: 8px;
  padding: 10px 10px;
  margin-right: 15px;
}

.rFundBox label {
  margin: 0;
  color: #4a4a4a;
  font-weight: 600 !important;
}

.rFundBox span {
  color: #4a4a4a;
}

.fc-curAddon2 a:hover,
.fc-curAddon2 a:active,
.fc-curAddon2 a:focus,
.fc-curAddon2 a {
  padding: 4px 8px 0 4px;
  height: auto;
  background: none;
  min-width: 35px;
}

.fc-curAddon2 i {
  font-size: 14px;
}

/* Animations  SET DOWN */
@-webkit-keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}
@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}

/* ========== Dashboard ========== */
.msg-box {
  color: #cce2ff;
  text-align: left;
  /*border-radius: 15px;*/
  /*background: #E9EEF2;*/
  display: flex;
  flex-direction: column;
  margin: 24px;
  align-items: center;
}

.msg-box .msg {
  /*width:70%;*/
  /*margin-left: 140px;*/
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 20px 13px;
  padding: 70px 13px 20px 13px;
}

.msg-box .msg2 {
  display: inline-flex;
  float: right;
  text-align: right;
  margin-left: auto;
  margin-right: 20px;
}

.msg-box-container {
  height: calc(100% - 20rem);
  display: flex;
  align-items: flex-end;
}

@media only screen and (max-width: 750px) {
  .msg-box-container {
    height: calc(100% - 33rem);
  }

  #payment-section{
    display: none;
    overflow: auto!important;
  }

  .annouce-btn {
    min-width: 30px !important;
    background-color: transparent !important;
  }

  .annouce-btn .speaker {
    position: relative !important;
    left: 0 !important;
    width: 70% !important;
  }

  .news-box-xl {
    width: 90% !important;
  }

  .ca-seo-structure .ca-seo-slide .ca-seo-slide-img {
    width: 93%!important;
  }

  .ca-seo-structure .slide-next,
  .ca-seo-structure .slide-prev {
    padding: 20px!important;
  }

  .ca-seo-structure .slide-next::after {
    border-top: 3px solid #00227e!important;
    border-right: 3px solid #00227e!important;
    height: 10px!important;
    width: 10px!important;
  }

  .ca-seo-structure .slide-prev::after {
    border-top: 3px solid #00227e!important;
    border-left: 3px solid #00227e!important;
    height: 10px!important;
    width: 10px!important;
  }

  .apply-box-bottom{
    height: calc(100% - 80px);
    margin-top: 80px;
    background-color: #fff !important;
  }

  .p-medal{
    position:absolute;
    top:-20px !important;
    right:-30px !important;
  }
}

.msg-box .img1 {
  margin-left: 15px;
  display: inline-block;
  vertical-align: middle;
}

.msg-box .img2 {
  position: absolute;
  bottom: 56%;
}

.asset-box {
  background-color: #fff;
  padding: 20px;
}

.l-dash-box {
  display: flex;
  flex-flow: column;
}

.r-dash-box img {
  width: 100%;
  height: 100%;
}

.account-setup-box {
  background-image: url(../img/bg-dash.png);
  /*    width: 100%;
    height: 100%;*/
  background-position: center;
  background-size: cover;
  padding: 20px;
}

.r-setup {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-top: 12px;
}

.dispTick,
.dispUntick {
  z-index: 1;
}

.dash-setup-acc-vertical-line {
  border-left: 2px solid #4d8599;
  height: 15px;
  position: absolute;
  margin-left: 11px;
}

.text-pot-1 {
  font-size: 16px;
  font-weight: 500;
  color: #00506c;
}

.text-pot-2 {
  font-size: 12px;
  font-weight: 500;
  color: #4a4a4a;
}

/********* Responsive ***********/

@media (min-width: 992px) {
  .modal-vv,
  .modal-vv {
    max-width: 640px;
  }
}

@media (max-width: 1110px) {
  .col-sm-3-vv-m {
    flex: 0 0 205px;
    max-width: 205px;
  }

  .ca-seo-structure .ca-seo-slide-nav {
    padding: 20px 150px!important;
  }
}

@media (max-width: 900px) {
  .log-box-l {
    width: 40%;
    display: none;
  }
  .log-box-r {
    width: 100%;
  }
}

@media (max-width: 861px) {
  .col-sm-3-vv-m {
    -ms-flex: 0 0 205px;
    flex: 0 0 205px;
    max-width: 205px;
    text-align: right !important;
  }
  
  .ca-seo-structure .ca-seo-slide-nav {
    padding: 20px 100px!important;
  }
}

@media (max-width: 730px) {
  .log-box-l {
    width: 40%;
  }
  .log-box-r {
    width: 60%;
  }
  .userIcon {
    height: 40px;
    width: 40px !important;
  }

  .walletIcon {
    width: 20px !important;
    margin-top: 10px;
    margin-left: 10px;
  }

  .p2p-modal-container {
    width: 100% !important;
  }

  .modal-dialog-center {
    margin: 0 !important;
    width: 95%;
  }
}

@media (max-width: 630px) {
  .log-box-l {
    display: none;
  }
  .log-box-r {
    width: 100%;
  }
  .logo-login-2 {
    display: block;
  }
  .logo-login-2 img {
    max-width: 9em;
    margin-top: 1rem;
  }
  .login-card-body {
    margin: 1rem auto 0 auto;
    padding: 20px 30px;
  }
  .m-text-center {
    text-align: center;
  }
  .title-1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .col-sm-3-vv {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }

  .col-sm-9-vv {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-sm-3-vv-m {
    text-align: left !important;
  }

  .ca-seo-structure .ca-seo-slide-nav {
    top: unset!important;
    bottom: 10%;
  }

  .ca-seo-structure .slide-next,
  .ca-seo-structure .slide-prev {
    background: #2e63f5!important;
    border: 1px solid #2e63f5!important;
    width: 100%!important;
    height: 40px!important;
    align-items: center;
    display: flex;
    justify-content: end;
    border-radius: 50px!important;
  }

  .ca-seo-structure .slide-next::after {
    border-right: 3px solid #ffffff!important;
    border-top: 3px solid #ffffff!important;
  }

  .ca-seo-structure .slide-prev::before {
    border-left: 3px solid #ffffff!important;
    border-top: 3px solid #ffffff!important;
    width: 10px!important;
    height: 10px!important;
  }

  .offScroll-xs {
    overflow: hidden!important;
  }

  .mobileBannerSection {
    /* height: unset!important; */
    padding: 0!important;
  }

  /* .mobileBannerSection.active {
    margin-top: 20px!important;
  } */

  .mobileBannerSection.active .ca-seo-slide-img {
    margin-top: 30px!important;
  }

  .ca-seo-slide-nav.active {
    bottom: -10%!important;
  }
}

@media (max-width: 480px) {
  .navbar-expand .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
    /*    padding: 9px 0 0 0;*/
    text-align: center;
    /*    width: 35px;*/
  }

  .navbar-light .navbar-nav .nav-link img {
    width: 15px;
  }

  .nav-item.dropdown.mr-2 .dropdown-toggle::after {
    display: none;
  }
}

.faq .accordion{
  padding-left: 0px;
}

@media (max-width: 400px) {
  .ca-seo-structure{
    height: 700px!important;
  }

  .ca-seo-slide-nav.active {
    bottom: 5%!important;
  }
}

/*accordion*/
.accordion {
  background-color: #fafcff;
  color: #2E63F5;
  cursor: pointer;
  border: 1px solid #dbe4ff;
  padding: 10px 20px;
  width: 100%;
  text-align: left;
  outline: none;
  height: 70px;
  font-size: 18px;
  font-weight: 500;
  outline: none !important;
  transition: 0.4s;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.accordion.active,
.accordion:hover,
.arccordion:focus {
  color: #2E63F5;
  outline: none !important;
  background-color: #ecf1ff;
  border: 1px solid #dbe4ff;
}

.accordion:after {
  content: url(../img/icons/apply-loan/arrow-up-blue.svg);
  color: #777;
  font-weight: 500;
  float: right;
  margin-left: 5px;
  margin-top: 15px;
  transform: rotate(180deg);
}

.accordion.active:after {
  margin-top: -10px;
  content: url(../img/icons/apply-loan/arrow-up-blue.svg);
  transform: rotate(360deg);
  
}

.accordion.success:after,
.accordion.success.active:after {
  content: url(../img/icons/tick.png);
  transform: unset;
  margin-top: 5px;
}

.panel {
  margin-top: -20px;
  padding-bottom: 20px;
  padding: 0 35px;
  background-color: #fff;
  border: 1px solid #ecf1ff;
  max-height: 0;
  color: #747474;
  font-size: 16px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 30px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.panel .upload-section {
  display: grid;
  grid-template-columns: auto auto auto;
  border-bottom: 1px solid #ecf1ff;
}

.accordion.active + .panel {
  margin-bottom: 20px;
}

/*accordion*/

.panel .upload-image {
  margin: 3rem auto 0 auto;
  max-width: 324px;
  height: 157px !important;
  width: 100%;
}

.panel .upload-section .form-group:first-child .upload-image {
  margin-left: 0;
}

.panel .upload-section .form-group:last-child .upload-image {
  margin-right: 0;
}

.panel .upload-image .upload-image-head {
  height: 155px !important;
  margin-top: 0px;
}

/*Nicholas*/
.nav-custom {
  background: linear-gradient(to right, #0033bf, #00227e);
  height: 100%;
  padding: 13px 0;
  position: relative;
  z-index: 100;
}

.nav-custom.ks-height{
  height: 140px !important;
}

.nav-custom.sticky{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  height: 100px;
}

.download-section{
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kyc-status-bar{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kyc-status-bar.green{
  background-color: #E7FFFA;
}

.kyc-status-bar.red{
  background-color: #FFE5E8;
}

.nav-landing li br{
  display: none;
}

.download-section h5 br{
  display: none;
}

.nav-landing {
  align-items: center;
  margin-top: 0 !important;
}

.nav-landing li div.borderLine {
  height: 5px;
  width: 100%;
  background-color: #ffdb56;
  border-radius: 20px;
  margin-bottom: 30px;
  opacity: 0;
  transition: 0.3s;
}

.nav-landing li.active div,
.nav-landing li.active a {
  opacity: 1;
  color: #ffdb56 !important;
}

.nav-landing li:hover div,
.nav-landing li:hover a {
  opacity: 1;
}

.nav-landing li {
  margin: 0 1.5rem;
}

.mw-custom {
  max-width: 1614px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.mw-custom2 {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.nav-logo {
  max-width: 170px;
}

.navbar {
  align-items: center;
  height: 100px;
  padding-top: 0px;
}

.navbar-expand .navbar-nav .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  margin: 1rem 0;
  padding: 0;
}

.btn-register-login,
.btn-register-login:hover {
  background-color: #ffdb56;
  border-radius: 30px;
  padding: 15px !important;
  color: #04174b !important;
  width: 221px;
  font-weight: 500;
  text-align: center;
}

.backCustom{
  color: #0033BF;
  font-weight: 500;
}

/*sec1*/
.sec1-bg {
  background-image: url(../img/s1-bg.png);
  width: 100%;
  height: auto;
}

.sec1-bg img{
  width: 100%;
  max-width: 902px;
}

.s1-content{
  margin-left: 23%;
}

.s1-content h1{
  color:#fff;
  font-size: 70px;
  text-align: left;
  font-weight: bold;
}

.s1-content p{
  color:#fff;
  font-size: 20px;
  text-align: left;
}


.bg-setting {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#banner.owl-carousel {
  background: transparent;
  margin: 50px auto 15rem auto;
}

.banner-img{
  height: 205px;
}

.owl-item > div {
  border-radius: 20px;
}

#banner .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.owl-dot span {
  background-color: #fff !important;
}

.owl-dot.active span {
  background-color: #f0bf42 !important;
}

#banner .owl-dots.active span {
  box-shadow: 0px 0px 20px #000;
}

/*sec2*/
.sec2-bg {
 background-color: #FBFCFE;
  width: 100%;
  min-height: 810px;
  position: relative;
  z-index: 100;
/*  overflow: hidden;*/
}

.quick-navigate {
  align-items: center;
  max-width: 100%;
  padding: 1.8rem 0;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: 0px 4px 10px #f2f2f2;
}

.quick-navigate div {
  font-size: 18px;
  color: #04174B;
  display: flex;
  max-width: 1084px;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}

.quick-navigate div br{
  display: none;
}

.quick-navigate img {
  margin-bottom: 10px;
  width: 90px;
}

.how-it-work {
  display: flex;
  align-items: center;
  height: 710px;
}

.sec-title {
  text-align: center;
  font-size: 28px;
  color: #00227e;
  font-weight: bold !important;
}

.hiw-section {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.hiw-robot {
  max-width: 250px;
  position: absolute;
  right: -30px;
  margin-top: -110px;
  z-index: -1;
}

.hiw-section img {
  margin-bottom: 10px;
}

.hiw-section div {
  background-color: #fff;
  padding: 30px;
  border-radius: 25px;
  width: 100%;
  margin: 0 10px;
}

.hiw-section div:first-child {
  margin-left: 0;
}

.hiw-section div:last-child {
  margin-right: 0;
}

.hiw-section h2 {
  font-size: 20px;
  color: #00227e;
}

.hiw-section p {
  font-size: 16px;
  color: #00227e;
}

#sec2_5{
  background-image: url(../img/sec2-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding:5rem 0;
}

#sec2_5 .promo-arrw{
  position: absolute;
  top: 40%;
  z-index: 100;
  cursor: pointer;
}

#sec2_5 img{
  border-radius: 20px;
}

#sec2_5 img.prev{
  left: -30px;
}

#sec2_5 img.next{
  right: -30px;
  transform: rotate(180deg);
}

.tutorial-steps{
  margin-top: 3rem;
  max-width:1360px;
  margin:5rem auto 0 auto;
  padding:0 2rem;
}

#sec-benefit .tutorial-steps{
  margin: 2rem auto 0 auto;
}

.step-container{
  margin: 3rem auto 5rem auto;
  max-width:1360px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.step-container > div{
  max-width: 394px;
  width:100%;
  background-color: #ECF1FF;
  border-radius: 30px;
  overflow: hidden;
  cursor:pointer;
  transition: 0.3s;
}

.step-container > div.active{
  background-color: #2E63F5;
  box-shadow: 0px 0px 20px rgba(46,99,245,.2);
}

.step-container >div.active h3{
  color: #2E63F5;
}

.step-container .phone-frame{
  border: 12px solid #CFDAF8;
  border-radius: 45px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: none;
  overflow: hidden;
  max-width: 259px;
  margin: 2.5rem auto 0 auto;
  background-color: #fff;
}

.step-container  .video{
  width: 100%;
  border-radius: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: hidden;
}

.step-container .video video{
  width: 100%;
}

.tutorial-desc{
  background-color: #fff;
  padding: 2rem;
  margin-top: -10px;
  position: relative;
  border:1px solid #DBE4FF;
  border-top:none;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.bm .tutorial-desc{
  min-height: 280px;
}

.tutorial-desc.h-custom{
  min-height: 300px;
}

.cn .tutorial-desc.h-custom{
  min-height: 220px;
}

.tutorial-desc b{
  font-size: 14px;
  color: #90A1CE;
}

.tutorial-desc h3{
  font-size: 25px;
  color: #00227E;
  font-weight: bold;
  margin: 5px 0 10px 0;
}

.tutorial-desc p{
  font-size: 16px;
  color: #00227E;
  margin-bottom: 0px;
}

#sec3 {
  position: relative;
  z-index: 101;
}

.eligible {
  background-image: url(../img/limit-card-bg.png);
  display: grid;
  grid-template-columns: 50% 50%;
  max-width: 900px;
  height: 300px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  margin-top: -10rem;
  color: #fff;
  padding: 2.5rem 0;
  z-index: 10;
}

.eligible .left {
  text-align: center;
}

.eligible .left h2 {
  font-size: 18px;
}

.eligible .left h2:last-child {
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 0px;
  font-weight: 700;
}

.eligible .left img {
  max-width: 200px;
  margin-bottom: 30px;
}

.eligible .right h2 {
  font-size: 16px;
}

.eligible .right h3 {
  font-size: 1.25rem;
}

.eligible .right h3 img {
  margin-right: 10px;
}

.eligible .right div {
  margin-top: 30px;
}

.eligible .right span {
  font-size: 16px;
  font-weight: 400;
}

.eligible-badge-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 15px !important;
  margin: 10px auto 0 auto;
  border-radius: 25px;
}

.eligible-badge-status.green {
  background-color: #e7fffa;
  color: #1cd9b3;
}

.eligible-badge-status.yellow {
  background-color: #fff4cb;
  color: #917204;
}

.eligible-badge-status.red {
  background-color: #ffe5e8;
  color: #ff6174;
}

.eligible-badge-status.grey {
  background-color: #f2f2f2;
  color: #a3a3a3;
}

.eligible-badge-status img {
  width: 12px !important;
  height: 12px !important;
  margin-right: 5px;
}

.eligible-badge-status span {
  font-size: 12px;
  font-weight: 500;
}

.tab-category {
  padding: 8rem 20px 2rem 20px;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.tab-category a {
  font-size: 18px;
  max-width: 200px;
  width: 100%;
  height: 68px;
  background: yellow;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  background-color: transparent;
  border: 2px solid transparent;
  color: #00227E;
  transition: 0.3s;
}

.tab-category a.active,
.tab-category a:hover {
  background-color: #ffdb56;
  border: 2px solid #fff9e7;
}

.loan-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-height: 500px;
  max-width: 1600px;
  margin: 0rem auto 0 auto;
  padding: 0px 20px 40px 20px;
}

.loan-padding{
  padding-top: 4rem;
}

.loan-padding .sec-title br{
  display: none;
}

.loan-market-box {
  border: 1px solid #dbe4ff;
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem;
  cursor: pointer;
  transition: 0.1s;
/*  max-height: 340px;*/
  box-shadow: 0px 0px 20px rgba(0,0,0,.05);
}

#sec2 .loan-market-box:hover,
#sec2 .loan-market-box.active {
  border: 1px solid #dbe4ff;
}

.loan-market-box:hover,
.loan-market-box.active {
  border: 2.5px solid #1cd9b3;
}

.loan-market-view{
  padding: 50px 0 !important;
}

.videot2{
  padding:30px;
  padding-bottom: 5rem;
}

#tutorialVideo2{
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  border-radius: 15px;
}

.label-list {
  margin-bottom: 10px;
}

.label-list span {
  margin-right: 5px;
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.label-list span.green {
  background-color: #e3fff9;
  color: #00896d;
}

.label-list span.yellow {
  background-color: #ffecc0;
  color: #e06100;
}

.product-price {
  display: flex;
  align-items: flex-start;
  color: #00227e;
}

.company-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.product-price img {
  max-width: 24px;
  margin-top: -10px;
  float: right;
}

.product-price h2 {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
}

.product-price h3 {
  font-size: 20px;
  margin: 5px 0px;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-width: 100%;
}

.product-price h3.short {
  max-width: 100%;
}

.desc{
  display: grid;
  grid-template-columns: auto auto;
  align-items: flex-start;
}

.desc p{
  overflow: hidden;
  position: relative;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-width: 100%;
  text-wrap: nowrap;
  white-space: nowrap;
  margin-bottom: 5px;
}

.desc a{
  text-align: right;
}

.review-section{
  display: flex;
  align-items: flex-end;
}

.review-section h2{
  margin-bottom: 0px;
}

.more-company{
  background-color: #ECF1FF;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
}

.ci-head{
  display: flex;
}

.ci-body p{
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0px;
  word-break: break-all;
}

.product-details {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  margin-top: 15px;
}

.product-details h4 {
  color: #bdbdbd;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}

.product-details h2 {
  color: #00227e;
  font-size: 16px;
  margin-bottom: 0px;
}

.tag-list {
  margin-top: 20px;
}

.tag-list > div,
.ci-tags-append > div {
  margin-right: 5px;
  padding: 5px;
  text-transform: capitalize;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  background: #f5f7fa;
  display: inline-flex;
  margin-bottom: 10px;
  align-items: center;
}

.tag-list > div img {
  margin-right: 5px;
/*  margin-top: 3px;*/
}

.tag-list span.green,
.ci-tags-append span.green {
  color: #11987d;
}

.tag-list span.red,
.ci-tags-append span.red {
  color: #db5985;
}

.tag-list span.purple,
.ci-tags-append span.purple {
  color: #7140c8;
}

.tag-list span.orange,
.ci-tags-append span.orange {
  color: #F57C00;
}

/*sec 4*/
#sec4 {
  background-color: #fff;
  padding: 15rem 0 5rem 0;
}

#sec4 .sub-title {
  margin-bottom: 2.5rem;
}

.sub-title {
  color: #6b7796;
  font-size: 20px;
  margin: 10px auto;
  max-width: 1000px;
  text-align: center;
  font-weight: 600;
}

/*#region Loan Calculator*/
.max-w-calculate {
  max-width: 1074px;
  margin: 0 auto;
  padding: 0 2rem;
}

.loan-calculator-page .top {
  height: 300px;
}

.loan-calculator-page .top div {
  background-image: url("../img/bg_loan_calculator.png");
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.loan-calculator-page .max-w-calculate .calculate-section {
  background-color: white;
  margin-top: -10.5rem;
}

.calculate-section {
  padding: 4rem;
  background-color: #fafcff;
  padding: 3rem auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 99;
  position: relative;
}

.calculator {
  display: grid;
  grid-template-columns: 49% 49%;
  gap: 20px;
}

.calculator > div {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #dbe4ff;
}

.calculator input {
  width: 100%;
}

.calculator h2 {
  font-size: 26px;
  color: #00227e;
  margin-bottom: 30px;
  font-weight: bold;
}

.calculate-section .row > div:first-child h5 {
  font-size: 23px;
  color: #00227e;
  margin-bottom: 30px;
  font-weight: 700;
}

.loan-calculator .innerForm {
  padding-right: 4rem;
  margin-top: 2rem;
}

.loan-calculator .innerForm label {
  color: #00227e;
}

.loan-calculator .innerForm .placeholder {
  color: #90a1ce;
}

.loan-calculator .innerForm .placeholder:last-child {
  width: 100px;
}

.calculated-result {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 2rem 1rem 0;
  border-radius: 10px;
  margin-top: 0;
}

.calculated-result p {
  font-size: 16px;
  color: #04174b;
  max-width: 350px;
}

.calculated-result h2 {
  font-size: 30px;
  font-weight: bold;
  color: #2e63f5;
  margin-bottom: 0;
}

.calculated-result > div {
  display: grid;
  column-gap: 15px;
  width: 100%;
  grid-template-rows: 30px;
  grid-template-columns: 50% 50%;
}

.calculated-result > div div {
  font-size: 16px;
  font-weight: 500;
}

.calculated-result > div div:first-child {
  color: #00227e;
  font-weight: 400;
  text-align: right;
}

.calculated-result > div div:last-child {
  color: #2e63f5;
}

.calculate-robot {
  max-width: 200px;
  position: absolute;
  left: -100px;
  top: 20px;
}

.loan-calculator-page .loan-calculator #chart-box {
  background-color: #fafcff;
}

.loan-calculator #chart-box {
  background-color: white;
  padding: 2rem 2rem 0rem 2rem;
  border-radius: 20px;
  height: 100%;
}

.bm .loan-calculator #chart-box{
  padding: 2rem;
}

.loan-calculator #chart-box h5 {
  color: #00227e;
}

.loan-calculator #chart-box .blur-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  text-align: center;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.77);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.8px);
  -webkit-backdrop-filter: blur(10.8px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  padding-left: 2rem;
  padding-right: 2rem;
}

.loan-calculator #chart-box .blur-content p {
  color: #04174b;
  font-size: 15px;
  margin-top: 5px;
}

.loan-calculator .donutChartContainer {
  margin-top: 1.5rem;
  align-items: center;
  row-gap: 30px;
}

.loan-calculator .donutChartContainer canvas {
  transform: none !important;
}

.loan-calculator .donutChartContainer #donutChart {
  height: 165px !important;
}

.loan-calculator .total_interest_label,
.loan-calculator .loan_amount_label {
  display: flex;
  justify-content: center;
  column-gap: 15px;
  align-items: center;
  justify-content: flex-start;
}

.loan-calculator .total_interest_label {
  column-gap: 15px;
}

.loan-calculator .loan_amount_label {
  column-gap: 15px;
}

.loan-calculator .total_interest_label .indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0bf42;
}

.loan-calculator .loan_amount_label .indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0033bf;
}

.loan-calculator .total_interest_label > div:last-child,
.loan-calculator .loan_amount_label > div:last-child {
  color: #00227e;
  font-size: 16px;
}

/*.loan-calculator .total_interest_label > div:last-child br,
.loan-calculator .loan_amount_label > div:last-child br{
  display: none;
}*/

.loan-calculator .total_interest_label span,
.loan-calculator .loan_amount_label span {
  color: #0033bf;
}

.loan-calculator-page .robot-reminder > div {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3rem;
  max-width: 581px;
  margin: 3.5rem auto;
  background-color: #eff3ff;
  padding: 1rem 1.5rem;
  column-gap: 20px;
  border-radius: 10px;
  z-index: 1;
}

.loan-calculator-page .chat_arrow {
  position: absolute;
  bottom: -30px;
  right: 50px;
}

.loan-calculator-page .robot_wink {
  position: absolute;
  width: 111px;
  right: -43px;
  bottom: -69px;
  z-index: -1;
}

.loan-calculator .mw-custom2 {
  display: flex;
  justify-content: center;
  column-gap: 40px;
  row-gap: 20px;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0px 0px 20px #f2f2f2;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-bottom: 30px;
}

.loan-calculator .resetForm {
  color: #00227e !important;
  border-radius: 40px;
  display: block;
  font-size: 18px;
  padding: 20px !important;
}

.loan-calculator .resetForm:hover {
  background-color: rgba(69, 70, 73, 0.15);
}

.loan-calculator-page .robot-reminder {
  padding: 0 2.5rem;
}

.loan-calculator-page .robot-reminder a {
  color: #2e63f5;
  text-decoration: underline;
}

@media only screen and (max-width: 950px) {
  .calculated-result {
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 950px) {
  .calculated-result > div {
    grid-template-columns: 50% 50%;
  }
}
@media only screen and (max-width: 768px) {
  .loan-calculator .loanCalculatorForm {
    padding-right: 0;
  }

  .loan-calculator-page .top{
    height: 160px;
  }

  .loan-calculator-page .max-w-calculate .calculate-section{
    border-radius: 0px;
  }
}

@media only screen and (max-width: 545px) {
  .calculate-section {
    padding: 2rem 1rem;
  }

  .calculated-result{
    padding: 2rem 0;
  }

  .loan-calculator .total_interest_label > div:last-child,
  .loan-calculator .loan_amount_label > div:last-child {
    color: #00227e;
    font-size: 14px;
  }

/*  .loan-calculator .total_interest_label > div:last-child br,
  .loan-calculator .loan_amount_label > div:last-child br {
    display:block;
  }*/

  .calculated-result > div {
    display: grid;
    grid-template-columns: 60% 40%;
    margin-bottom: 10px;
    justify-content: space-between;
    gap: 0;
  }

  .calculated-result > div div:first-child {
    text-align: initial;
  }

  .innerForm .form-group{
    margin-bottom: 10px;
  }
}

@media only secreen and (max-width:400px){
  .loan-calculator .total_interest_label > div:last-child,
  .loan-calculator .loan_amount_label > div:last-child {
    color: #00227e;
    font-size: 12px;
  }
}
/*#endregion Loan Calculator*/

.row-gap-15 {
  row-gap: 15px !important;
}

.asRange .asRange-pointer .asRange-tip {
  display: none;
}

.asRange {
  background-color: #dbe4ff;
  width: 100%;
}

.asRange .asRange-selected {
  background-color: #0033bf;
}

.asRange .asRange-pointer {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  top: -7px;
}

.asRange .asRange-pointer:before {
  background: #dbe4ff;
}

.asRange .asRange-pointer:after {
  background: #0033bf;
}

/* sec reveal */
#sec-reveal{
  background-image: url(../img/reveal-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding:8rem 0;
  /* display: flex;
  align-items: center; */
}

#sec-reveal > div{
  max-width: 1360px;
  margin:0 auto;
  padding: 0 2rem;
}

.reveal .grid{
  display: grid;
  grid-template-columns: 50% 40%;
  gap: 10%;
  align-items: center;
  position: relative
}

.reveal .left h5{
  font-size: 40px;
  color: #FFDB56;
  font-weight: bold;
}

.reveal .left p{
  font-size: 16px;
  color:#fff;
  max-width: 84%;
  margin-top: 1.5rem;
}

.reveal .robot{
  z-index: 10;
  max-width: 575px;
  width:100%;
}

.reveal .numbers{
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 4rem;
}

.reveal .numbers > div{
  width:60px;
  height:60px;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  background-color: transparent;
  border:1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}

.reveal .numbers > div.active,
.reveal .numbers > div:hover{
  background-color: #FFDB56;
  border:1px solid #FFDB56;
  color:#000;
}

/*sec 5*/
#sec5 {
  background: #ECF1FF;
  background-image: url(../img/sec5-bg.png);
  height: 660px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  position: relative;
}

.testimonial {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0px 30px;
}

.testimonial .left {
  color: #fff;
  margin-right: 30px;
}

.testimonial .left h3 {
  font-size: 40px;
}

.testimonial .left p {
  font-size: 20px;
  max-width: 328px;
}

.testimonial .card {
  width: 400px;
  min-height: 260px;
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

.testimonial .mid {
  align-self: flex-end;
  margin-bottom: -50px;
}

.review-image {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial .mid .card:last-child {
  margin-bottom: 0;
}

.testimonial .right {
  align-self: flex-start;
  margin-top: -50px;
}

.testimonial .card .user {
  display: flex;
  align-items: center;
}

.testimonial .card .user > img {
  max-width: 67px;
  width: 100%;
  margin-right: 20px;
}

.testimonial .card .user h3 {
  margin-bottom: 5px;
  color: #3d3d3d;
  font-size: 20px;
  font-weight: bold;
}

.testimonial .card .user p {
  font-size: 16px;
  color: #04174B;
  margin: 0;
  font-weight: 600;
}

.testimonial .card .content {
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0px;
}

#sec6 {
  padding: 7rem 0 5rem 0;
}

#sec6 .sec-title,
#sec6 .sub-title {
  color: #3d3d3d;
}

.mw-news {
  max-width: 80%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.news-item h3 {
  color: #3d3d3d;
  font-size: 23px;
  font-weight: bold;
  margin-top: 20px;
  max-width: 400px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrw-news{
  position: absolute;
  top: 35%;
  z-index: 10;
}

.arrw-news.left{
  left: -4rem;
}

.arrw-news.right{
  right: -4rem;
}

.news-item .date {
  color: #7887b1;
  font-size: 16px;
}

.news-item img {
  width: 100%;
}

.news-item .view {
  background-color: #ecf1ff;
  border-radius: 30px;
  color: #2e63f5;
  min-width: 60px;
  padding: 0px 10px;
  font-size: 14px;
  display: flex;
  text-align: center;
  height: 33px;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.news-item .view img {
  max-width: 16px;
  margin-right: 7px;
}

.news-image {
  width: 100%;
  height: 284px;
  border-radius: 20px;
  background-color: #f3f3f3;
}

.download {
  background-image: url(../img/bg-download.png);
  width: 100%;
  height: 500px;
  display: grid;
  grid-template-columns: 50% 50%;
  border-radius: 25px;
  margin-top: 6rem;
}

.download .left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download h2 {
  font-size: 40px;
}

.download p {
  font-size: 20px;
  margin-bottom: 40px;
}

.google-apple {
  display: flex;
}

.google-apple .qr {
  margin-right: 20px;
  max-width: 138px;
  width: 100%;
}

.store-btn {
  display: flex;
  padding: 10px;
  border-radius: 35px;
  min-width: 200px;
  height: 60px;
  align-items: center;
  padding-left: 25px;
}

.download-app {
  margin-left: 5rem;
}

.store-btn div {
  font-size: 16px;
}

.store-btn div div:last-child {
  font-size: 20px;
  margin-top: -10px;
  font-weight: bold;
}

.store-btn img {
  margin-right: 10px;
  max-width: 26px;
}

.store-btn.g-play {
  background-color: #0033bf;
  color: #fff;
  margin-bottom: 15px;
}

.store-btn.a-store {
  background-color: #fff;
  color: #0033bf;
  border: 2px solid #0033bf;
}

/*footer*/
.land-footer {
  background-color: #2e63f5;
}

.footer-top {
  padding: 50px;
  max-width: 1754px;
  padding: 3rem 30px;
}

@media (min-width: 576px) {
  .footer-top {
    display: grid;
    grid-template-columns: 20% 6% 18.5% 18.5% 18.5% 18.5%;
    margin: 0 auto;
  }

  .loanEnquirySubmit{
    z-index: 100!important;
  }
  
  .dark-bg img{
    width: 100%;
  }
}

@media (min-width: 992px) {
  .footer-top {
    display: grid;
    grid-template-columns: 25% 5% 17.5% 17.5% 17.5% 17.5%;
    margin: 0 auto;
  }
}

.footer-top h5 {
  color: #ffdb56;
  font-size: 24px;
  margin-bottom: 35px;
}

.footer-top ul {
  list-style: none;
  padding-left: 0;
}

.footer-top ul li {
  margin: 10px 0px;
}

.footer-top ul li a {
  color: #fff;
  font-size: 16px;
}

.footer-top ul li a br{
  display: none;
}

.footer-logo {
  max-width: 180px;
  width: 100%;
}

.footer-btm {
  background-color: #0033bf;
}

.footer-btm .content {
  justify-content: space-between;
}

@media (min-width: 992px) {
  .footer-logo {
    max-width: 260px;
  }

  .footer-btm .content {
    height: 80px;
  }
}

.footer-btm > div {
  padding: 10px 30px;
  max-width: 1784px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
}

.footer-btm a {
  color: #ffdb56;
  margin-left: 25px;
}

.social-icon {
  margin: 0 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  padding-bottom: 100px;
}

.about-img{
  max-width: 600px;
}

.container-about {
  max-width: 1606px;
  margin: 0 auto;
  padding: 5rem 30px;
}

.about-grid .content {
  max-width: 700px;
}

.about-grid .content.left {
  justify-self: flex-end;
}

.about-grid .content h5 {
  color: #0033bf;
  font-size: 40px;
  margin-bottom: 4rem;
  font-weight: 600;
}

.about-grid .content p {
  font-size: 20px;
  color: #526497;
  margin-bottom: 2rem;
}

.sec-title2 {
  color: #00227e;
  font-size: 36px;
  font-weight: 400;
}

.about-sec2 {
  margin-top: 136px;
}

.about-grid2 {
  display: grid;
}

.about-grid2 img {
  width: 100%;
  max-width: 100% !important;
}

.about-grid2 p {
  color: #fff;
  font-size: 32px;
  max-width: 80%;
}

.grid-top {
  grid-template-columns: 40% 60%;
}

.grid-btm {
  grid-template-columns: 55% 45%;
}

.about-top-bg {
  background-image: url(../img/about-top-right.png);
}

.about-btm-bg {
  background-image: url(../img/about-btm-left.png);
}

.about-top-bg,
.about-btm-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-top-bg p {
  margin-left: -10rem;
}

.about-sec3 {
  margin-top: 110px;
  padding-bottom: 110px;
}

.about-sec3-bg {
  background-image: url(../img/about-sec-3.png);
  height: 650px;
  width: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.mission {
  max-width: 570px !important;
  align-self: center;
  justify-self: flex-end;
  margin-right: 7rem;
}

.about-sec3-bg {
  display: flex;
  align-items: center;
  padding-left: 6rem;
}

.about-sec3-bg div div {
  color: #fff;
  padding-left: 45px;
  position: relative;
}

.about-sec3-bg div div:first-child {
  margin-bottom: 90px;
}

.about-sec3-bg div div img {
  position: absolute;
  top: 7px;
  left: 0;
}

.about-sec3-bg div div h2 {
  font-size: 64px;
  font-weight: 400;
  margin: 0;
}

.about-sec3-bg div div p {
  font-size: 18px;
  margin: 0;
}

/*news*/
.news-container {
  max-width: 1363px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  min-height: 700px;
}

.news-container h5 {
  font-weight: 400;
  margin-top: 10px;
}

.text-blue {
  color: #00227e !important;
}

.text-blue2 {
  color: #0033bf !important;
}

.text-light-blue {
  color: #90a1ce !important;
}

.text-sharp-blue {
  color: #2e63f5;
}

.text-dark-blue {
  color: #0033bf !important;
}

.fw400 {
  font-weight: 400;
}

.mw-breadcumb {
  max-width: 93% !important;
  margin: 0 auto;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.breadcumb {
  padding: 30px 10px !important;
}

.breadcumb img {
  margin-right: 10px;
}

.breadcumb span {
  text-transform: capitalize;
  font-size: 16px;
  color: #0033bf;
}

.news-details-content {
  max-width: 1084px;
  margin: 0 auto !important;
}

.news-details-image {
  width: 100%;
  border-radius: 20px;
}

.news-details-title {
  margin-top: 30px;
  font-size: 36px;
  color: #2e63f5;
  font-weight: 400;
}

.news-details-date {
  text-transform: uppercase;
  margin-top: 10px;
  color: #7887b1;
  font-size: 16px;
}

.social-media {
  margin: 30px 0px;
  display: flex;
  align-items: center;
  max-width: 400px;
  justify-content: space-between;
}

.social-media a {
  padding: 15px;
}

.social-media p {
  margin: 0;
  color: #04174b;
  font-size: 20px;
}

.social-media h5 {
  text-transform: uppercase;
  color: #04174b;
  font-size: 14px;
  font-weight: 400;
}

.news-details .content {
  font-size: 18px;
  color: #04174b;
  text-align: justify;
}

/*login*/
.log-box-l {
  color: #fff;
}

.log-box-l > div {
  max-width: 620px;
}

.log-box-l h1 {
  font-size: 40px;
}

.log-box-l .title {
  margin-top: 133px;
}

.log-box-l p {
  color: #bdcbf7;
  font-size: 20px;
  margin-top: 30px;
}

#testimonial {
  margin-top: 145px;
  background-color: transparent;
}

.log-testimonial {
  background-color: #1a4ede;
  border-radius: 30px;
  padding: 56px;
}

.log-testimonial .content {
  margin-top: 45px;
  padding: 0;
}

.log-testimonial p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.log-testimonial > div {
  display: flex;
  align-items: center;
}

.log-testimonial img {
  max-width: 56px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-right: 20px;
}

.log-testimonial h5 {
  font-size: 16px;
  color: #fff;
}

.log-testimonial div h5:first-child {
  font-size: 20px;
}

#testimonial .owl-item {
  background-color: transparent;
}

/*switch btn*/
label.switch {
  font-size: 13px;
  color: #0033bf;
  font-weight: 500;
  cursor: pointer;
}

.btn-color-mode-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
  border: none !important;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 208px;
  height: 55px;
  background: #fff;
  border: 2px solid #a2bbff;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 16px;
  font-weight: 500;
  top: 13px;
  right: 25px;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 50%;
  height: 47px;
  background: #0033bf;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border-radius: 35px;
  position: absolute;
  left: 2px;
  top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
  background: #fff;
  color: #0033bf;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 100px;
  background: #0033bf;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 25px;
}

.btn-color-mode-switch input[type="checkbox"]:checked ~ .alert {
  display: block;
}

.bm .btn-color-mode-switch > label.btn-color-mode-switch-inner{
  width: 250px;
}

.bm .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after{
  left: 120px;
}

.bm .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before{
  left: 35px;
  top: 14px;
}

/*mode preview*/
.dark-preview {
  background: #0d0d0d;
}

.dark-preview div.btn-container i.fa-sun-o {
  color: #777;
}

.dark-preview div.btn-container i.fa-moon-o {
  color: #fff;
  text-shadow: 0px 0px 11px #fff;
}

.white-preview {
  background: #fff;
}

.white-preview div.btn-container i.fa-sun-o {
  color: #ffa500;
  text-shadow: 0px 0px 16px #ffa500;
}

.white-preview div.btn-container i.fa-moon-o {
  color: #777;
}

.dark-preview p.by a {
  color: #777;
}

.white-preview p.by a {
  color: #000;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0033bf;
  font-size: 16px;
  margin-top: 20px;
}

.login-header img {
  padding: 7px 9px;
  border: 2px solid #dbe4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card-body .login {
  /* max-width: 536px; */
  margin: 0 auto;
  width: 100%;
}

.forgotPasswordSH{
  max-width: 536px;
  margin: 0 auto;
}

.forgot-password-card-body .login-header {
  margin-top: 1rem;
}

.forgotPasswordSH > div > div {
  flex-grow: 1;
  margin-top: -10rem;
}

.loginSH > div.not-flex,
.registerSH > div.not-flex{
  padding-top: 2rem;
  display: block;
  height: 100%;
}

.loginSH > div,
.registerSH > div,
.forgotPasswordSH > div {
  display: flex;
  align-items: center;
  height: calc(100vh - 160px);
}

.log-subtitle {
  color: #04174b;
  font-size: 16px;
}

.password-eye {
  right: 30px;
  left: unset;
  position: absolute;
}

.password-eye img {
  position: relative;
  left: 0;
}

.social-profile {
  position: relative;
  max-width: 100px;
  margin: 0 auto;
}

.social-profile .profile {
  max-width: 100px;
}

.social-profile .social {
  position: absolute;
  bottom: 0;
  right: 0px;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-email {
  font-size: 16px;
  color: #0033bf;
  margin: 10px 0 0 0;
  text-align: center;
}

.social-account {
  margin-top: 4rem;
}

.social-login-btn {
  border: 1px solid #dbe4ff !important;
  height: 60px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 30px !important;
  color: #04174b !important;
  margin-top: 30px !important;
}

.social-login-btn img {
  max-width: 18px;
  margin-right: 30px;
}

.divider {
  margin-top: 35px;
  text-align: center;
  font-size: 18px;
  color: #90a1ce;
  display: grid;
  grid-template-columns: auto 70px auto;
  align-items: center;
}

.divider div {
  border-top: 1px solid #dbe4ff;
}

.fadeIn {
  animation: fade-in 1s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeLeft {
  animation: fade-left 1s;
}

@keyframes fade-left {
  from {
    opacity: 0;
    margin-left: 50px;
  }
  to {
    opacity: 1;
    margin-left: 0px;
  }
}

.fadeRight {
  animation: fade-right 1s;
}

@keyframes fade-right {
  from {
    opacity: 0;
    margin-right: 50px;
  }
  to {
    opacity: 1;
    margin-right: 0px;
  }
}

.fadeDown {
  animation: fade-down 0.5s;
}

@keyframes fade-down {
  from {
    opacity: 0;
    margin-top: -30px;
  }
  to {
    opacity: 1;
    margin-top: 0px;
  }
}

.fadeUp2 {
  animation: fade-up2 0.5s;
}

@keyframes fade-up2 {
  from {
    top: 80px;
  }
  to {
    top: 0px;
  }
}


.login {
  color: #04174b !important;
  position: relative;
}

#register-social-2 h5,
#register-social-2 p {
  font-size: 16px;
}

.confirm-platform {
  position: absolute;
  width: 30px;
  right: 0;
  top: 10px;
}

.agreement-content {
  width: 100%;
  height: 480px;
  margin: 30px auto;
  overflow: auto;
  padding-right: 20px;
  text-align: justify;
}

.agreement-content::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.agreement-content::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.agreement-content::-webkit-scrollbar-thumb {
  background: #6782cd;
}

/* Handle on hover */
.agreement-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.tag-list::-webkit-scrollbar {
  display: none;
}

.otp-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.otp-input input {
  height: 66px;
  width: 66px;
  text-align: center;
  border-radius: 10px;
  font-size: 32px;
  color: #0033bf;
  background-color: #eff3ff;
  border: 1px solid #eff3ff;
  outline: none;
  transition: 0.3s;
  pointer-events: none;
}

.otp-input input:first-child,
.otp-input input:last-child {
  pointer-events: unset;
}

.otp-input input:focus,
.otp-input input.filled {
  border: 1px solid #2e63f5;
}

.resend-otp {
  margin-top: 35px;
  text-align: center;
}

.resend-otp p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #04174b;
}

.resend-otp a {
  font-size: 16px;
  color: #0033bf;
  text-decoration: underline;
}

.grid-form {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
}

.agree_tnc a {
  text-decoration: underline;
  color: #0033bf;
}

/*contact*/
.contact-container {
  max-width: 1304px;
  margin: 0 auto;
  padding: 0px 30px;
  padding-top: 72px;
}

.contact-container h1 {
  color: #00227e;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.mapSize {
  width: 100%;
  height: 500px;
}

.contact-details {
  background-color: #fafcff;
  border-radius: 25px;
  border: 2px solid #ecf1ff;
  padding: 31px 26px;
}

.contact-details > div {
  display: flex;
  align-items: flex-start;
  padding-bottom: 20px;
}

.contact-details > div:last-child {
  padding-bottom: 0;
}

.contact-details > div img {
  margin-right: 20px;
  max-width: 52px;
  width: 100%;
}

.contact-details > div h5 {
  color: #00227e;
  font-size: 18px;
}

.contact-details > div p {
  color: #7b7b7b;
  font-size: 16px;
  margin-bottom: 0;
}

.social-contact {
  margin-top: 40px;
}

.social-contact > div {
  margin-top: 20px;
}

.social-contact > div a {
  margin-right: 15px;
}

.content-wrapper.contact-us {
  min-height: 800px !important;
}

.content-wrapper.loan-eligible {
  min-height: 700px !important;
}

/*faq*/
.faq-container {
  max-width: 690px;
  margin: 0 auto;
  padding-top: 72px;
}

.content-wrapper.faq {
  background-color: #fff !important;
}

.accordion-box {
  border-bottom: 2px solid #eff3ff;
  margin: 10px 0px;
  padding-bottom: 10px;
}

.faq-container .accordion,
.faq-container .accordion.active {
  border-radius: 0px;
  border: 0px solid #fff;
  border-bottom: none;
  background-color: transparent;
}

.faq-container .accordion.active + .panel {
  margin-top: 1px;
}

.faq-container .panel {
  background-color: #fafcff;
  border-radius: 20px;
  padding: 0;
  border: none;
  margin: 0px;
}

.faq-container .panel div {
  padding: 2rem;
}

/*applyloan*/
.apply-progress {
  background-color: #ecf1ff;
  height: 120px;
}

.apply-progress > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.apply-progress > div,
.step-mw {
  max-width: 850px;
  margin: 0 auto;
}

.step-mw {
  margin: 70px auto;
}

.apply-progress div h5 {
  font-size: 18px;
  color: #a2bbff;
  margin-bottom: 0;
}

.step-circle {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 2px solid #a2bbff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.step-circle img {
  display: none;
  width: 14px;
}

.line {
  border-top: 2px solid #a2bbff;
  width: 60px;
  margin: 0 30px;
}

.apply-progress div div.complete .step-circle {
  background-color: #2e63f5;
  border: 2px solid #fff;
}

.apply-progress div div.complete .step-circle img {
  display: block;
}

.apply-progress div div.complete h5 {
  color: #2e63f5;
}

.apply-progress div div.complete .line {
  border-top: 2px solid #2e63f5;
}

.apply-progress div div.active .step-circle {
  background-color: #fff;
  border: 2px solid #2e63f5;
}

.apply-progress div div.active .step-circle img {
  display: none;
}

.apply-progress div div.active .step-circle div {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #2e63f5;
}

.apply-progress div div.active h5 {
  color: #2e63f5;
}

.apply-box {
  background-color: #fff;
  border: 2px solid #dbe4ff;
  border-bottom: 0px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.apply-section {
  padding: 0 3rem 2rem 3rem;
}

.apply-sec-title {
  margin-bottom: 20px;
}

.apply-sec-title h5 {
  font-size: 20px;
  font-weight: 600;
  color: #04174b;
}

.apply-sec-title p {
  font-size: 16px;
  margin: 0;
  color: #04174b;
}

.selection-box h5 {
  color: #00227e;
  font-size: 16px;
}

.selection {
  display: flex;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}

.apply-section label:not(.form-check-label):not(.custom-file-label){
  font-weight: 400 !important;
}

.apply-box hr {
  border-top: 1px solid #eff3ff;
  margin: 0;
}

.selection div {
  padding: 10px 20px;
  position: relative;
  border-radius: 30px;
  transition: 0.5s;
  margin-right: 10px;
  background-color: #ecf1ff;
  margin-bottom: 10px;
}

.selection div label {
  margin: 0;
}

.selection div.checked {
  background-color: #0033bf;
}

/*custom radio*/
.apply-box [type="radio"]:checked,
.apply-box [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.apply-box [type="radio"]:checked + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #fff;
}

.apply-box [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000;
}

.apply-box [type="radio"]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid #f0bf42;
  border-radius: 100%;
}

.apply-box [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid #2e63f5;
  border-radius: 100%;
}

.apply-box [type="radio"]:checked + label:after,
.apply-box [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #f0bf42;
  position: absolute;
  top: 6px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.apply-box [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.apply-box [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*custom checkbox*/
.apply-box [type="checkbox"] {
  display: none;
}

.apply-box [type="checkbox"] + label {
  cursor: pointer;
}

.apply-box [type="checkbox"]:checked + label {
  color: #fff;
}

.apply-box [type="checkbox"]:not(:checked) + label {
  color: #000;
}

/*apply button div*/
.apply-box-bottom {
  padding: 2rem;
  background-color: #f5f7ff;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 2px solid #dbe4ff;
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  position:relative;
  width:100%;
  transform: translateY(-40px);
  transition: 0.3s;
}

.p-medal{
  position:absolute;
  top:0px;
  right:0px;
  margin-right: 0px !important;
}

.apply-box-bottom.show{
  transform: translateY(0px);
}

.apply-box.border-all,
.apply-box-bottom.border-all {
  border-radius: 20px !important;
  border: 2px solid #dbe4ff;
}

.btn-back {
  min-width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #2e63f5;
  background-color: #fff;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-back:hover {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/*.btn-next:hover{
  background-color: #fff;
  border:1px solid #2E63F5;
}*/

.btn-next.disabled{
  pointer-events: none;
  opacity: 0.5;
}

.btn-next:link,
.btn-next:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 60px;
  text-decoration: none;
  background-color: #2e63f5;
  min-width: 300px;
  border-radius: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.btn-next::before {
  background: #fff;
  content: "";
  height: 155px;
  opacity: 0;
  position: absolute;
  top: -70px;
  transform: rotate(35deg);
  width: 50px;
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-next::after {
  background: #fff;
  content: "";
  height: 20rem;
  opacity: 0;
  position: absolute;
  top: -70px;
  transform: rotate(35deg);
  transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 8rem;
}
.btn-next__new::before {
  left: -50%;
}

.btn-next__new::after {
  left: -100%;
}

.btn-next:hover,
.btn-next:active {
  color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}
.btn-next__new:hover::before {
  left: 120%;
  opacity: 0.3s;
}
.btn-next__new:hover::after {
  left: 200%;
  opacity: 0.4;
}

.green-alert-box {
  background-color: #e7fffa;
  border: 1px solid #c6f8ee;
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.green-alert-box img {
  margin-right: 10px;
}

.id-display {
  background-color: #eff3ff;
  height: 183px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.id-display img {
  margin: 0 20px;
  max-width: 202px;
}

.id-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 2rem 0 1.5rem 0;
}

.upload-image {
  max-width: 202px;
  width: 202px;
  height: 134px !important;
  border-radius: 10px !important;
  background-color: #ecf1ff !important;
  border: 2px dashed #6782cd !important;
  display: block !important;
  padding: 0 !important;
  overflow: hidden;
}

.upload-icon {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  padding: 0 !important;
  width: 28px !important;
  border: none !important;
}

.upload-name {
  text-align: center;
  height: unset !important;
  display: block !important;
  border: 0 !important;
}

.upload .form-group {
  margin: 0;
}

.id-upload h5 {
  font-size: 14px;
  font-weight: 400;
  color: #141414;
  margin-top: 15px;
  margin-bottom: 0px;
}

.face-scan-section {
  background-color: #eff3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  margin-top: 30px;
}

.video-record-container {
  border-radius: 50%;
  border: 2px dashed #6782cd;
  background-color: #fff;
  position: relative;
  width: 180px;
  height: 180px;
}

.camera-btn {
  position: absolute;
  right: 0;
}

.face-tips {
  background-color: #eff3ff;
  padding-bottom: 2rem;
}

.face-tips > div {
  max-width: 300px;
  margin: 0 auto;
  text-align: left;
}

.face-tips > div p {
  font-size: 16px;
  color: #04174b;
  margin: 0;
}

/*ai matching*/

.matching-bg {
  background-image: url(../img/ai-matching.png);
  min-height: 861px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-bar {
  height: 10px;
  max-width: 302px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 0 10px inset rgba(0, 0, 0, 0.2);
  position: relative;
}

.progress-bar-match {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  background-color: #f0bf42;
  top: 0;
  bottom: 0;
  left: -100%;
  border-radius: inherit;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: sans-serif;
}

* + .progress-bar {
  margin-top: 1rem;
}

.bar {
  width: 0;
  height: 100%;
  background-color: #f0bf42;
  background-size: 30px 30px;
  animation: move 7s linear infinite;
  box-shadow: 2px 0 10px inset rgba(0, 0, 0, 0.2);
  transition: width 7s ease-out;
}

/*Lollipop background gradient animation*/
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 30px;
  }
}

.perc {
  color: #ffdb56;
  font-weight: bold;
  text-align: center;
  margin-top: 3rem;
  font-weight: 400;
  font-size: 20px;
}

.progress-container {
  margin-top: -2rem;
}

.robot {
  max-width: 250px;
  margin: 0 auto;
}

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(10px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(10px);
  }
}

.matching-desc {
  text-align: center;
  margin-top: 3rem;
}

.matching-desc h5 {
  font-size: 30px;
  color: #fff;
}

.matching-desc p {
  font-size: 20px;
  color: #fff;
}

.apply-loan {
  min-height: 500px !important;
}

.progress-bar__container {
  width: 100%;
  max-width: 302px;
  margin: 10px auto;
  height: 10px;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  will-change: transform;
  background-color: #fff;
}

.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

.progress-bar__text {
  display: none;
}

/*loan enquiry*/
.loan-enquiry-container {
  max-width: 1606px;
  margin: 30px auto 5rem auto;
  padding: 0px 30px;
}

.loan-enquiry-container .loan-list {
  grid-template-columns: repeat(4, 1fr) !important;
  margin-top: 0;
}

.loan-enquiry-container .apply-box-bottom {
  display: block;
}

.loan-enquiry-container .apply-box-bottom .header {
  display: flex;
  /* border-bottom: 1px solid #dbe4ff; */
  /* padding-bottom: 30px; */
}

.loan-enquiry-container .apply-box-bottom .header img {
  margin-right: 25px;
}

.loan-enquiry-container .apply-box-bottom .header h5 {
  color: #04174b;
  font-size: 16px;
  font-weight: 600;
}

.loan-enquiry-container .apply-box-bottom .header p {
  color: #04174b;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 20px;
}

.loan-enquiry-container .apply-box-bottom .header h2 {
  color: #2e63f5;
  font-size: 24px;
  font-weight: bold;
}

.payment-box-desc{
  overflow: hidden;
  position: relative;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  width: 90%;
  text-wrap: nowrap;
  white-space: nowrap;
  font-size: 14px;
  height: 21px;
  transition: 0.3s;
  cursor:pointer;
}

.payment-box-desc.expand{
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  white-space: normal;
  overflow: hidden;
  text-overflow: unset;
  height: 100%;
}

.desc-expand.expand img{
  transform: rotate(180deg);
}

.filter-title {
  font-size: 24px;
  font-weight: 700;
  color: #00227e;
  margin-bottom: 50px;
}

.filter-title br{
  display: none;
}

.filter-dropdown {
  display: flex;
}

.filter-dropdown .form-group {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.filter-dropdown .form-group label {
  margin-right: 20px;
  margin-bottom: 0;
  font-size: 18px;
  color: #00227e;
}

.filter-dropdown .form-group div {
  padding: 0 20px !important;
}

.filter-dropdown .form-group .form-control {
  padding: 0 !important;
  width: 400px !important;
}

.tag-bg {
  background-color: #ecf1ff;
  border: 1px solid #dbe4ff;
  color: #00227e;
  border-radius: 20px;
  padding: 10px 20px;
}

.tag-bg.active{
  background-color: #2E63F5;
  color: #fff;
}

.btn-clear {
  max-width: 89px;
  width: 100%;
  display: block;
  text-align: center;
}

.tags {
  display: flex;
}

.tag-bg.features {
  display: flex;
  align-items: flex-start;
  padding: 0px 10px;
  margin-right: 10px;
}

.selected-tag {
  display: flex;
  max-width: 600px;
  flex-wrap: wrap;
}

.selected-tag div {
  display: flex;
  align-items: center;
  background-color: #0033bf;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 10px;
  padding-top: 2px;
  border-radius: 20px;
  margin: 5px;
}

.selected-tag div:last-child {
  margin-right: 0;
}

.selected-tag p {
  margin-bottom: 0;
  margin-right: 10px;
}

option:disabled {
  background-color: #d1d1d1;
}

.submitted-loan-details {
  background-color: #fff;
  border: 2px solid #eff3ff;
  border-radius: 15px;
  padding: 25px;
  font-size: 16px;
}

.submitted-loan-details > div div:first-child {
  color: #90a1ce;
}

.submitted-loan-details > div div:last-child {
  color: #04174b;
  font-weight: 500;
}

.loanEnquirySubmit{
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  margin:0 auto;
  width: 100%;
  height: 100%;
  display: none;
}

.loanEnquirySubmit > div{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.reject-reason{
  background-color: #ffebeb;
  border-radius: 20px;
  border: 2px solid #ffc1c1;
  color: #000;
  font-size: 14px;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}


hr.dashed-blue {
  border-top: 2px dashed #eff3ff;
}

.modal-loan-details {
  text-align: left;
}

.modal-loan-details h2 {
  color: #0033bf;
  font-weight: 700;
  font-size: 16px;
}

.modal-loan-details h5 {
  color: #6b7796;
  font-size: 12px;
  margin-bottom: 0px;
}

.status-badge {
  padding: 5px 15px;
  border-radius: 25px;
  font-size: 14px;
  color: #fff !important;
  text-align: right;
  text-transform: uppercase;
}

.status-badge.blue {
  background-color: #2e63f5;
}

.status-badge.green {
  background-color: #1cd9b3;
}

.status-badge.grey {
  background-color: #939393;
}

.status-badge.yellow {
  background-color: #f5bd27;
}

.status-badge.red {
  background-color: #ff6174;
}

.speech-bubble {
  width: 292px;
  height: 100px;
  margin-top: 30px;
  padding: 15px;
  background: #eff3ff;
  position: relative;
  color: #fff;
  border-radius: 15px;
  border: 1px solid #dbe4ff;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #00227e;
  text-align: left;
  padding: 0 1.5rem;
}

.speech-bubble:after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 12px 0px 0 25px;
  border-color: #eff3ff transparent;
  position: absolute;
  bottom: -12px;
  right: 30px;
}

.robot-message {
  margin-bottom: -26px;
  max-width: 120px;
  float: right;
  margin-right: 2rem;
  margin-top: -100px;
  position: relative;
}

.loan-status-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #dbe4ff;
  margin-bottom: 15px;
}

.loan-status-box.active {
  border: 2px solid #2e63f5;
}

sup{
  top: -0.25em;
}

.badge-status {
  border-radius: 30px;
  padding: 7px 20px;
  text-transform: uppercase;
}

.eligible-status {
  background-color: #f3f8ff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto auto auto;
  text-align: center;
  width: 100%;
  margin-top: 2rem;
}

.eligible-status div {
  padding: 2.2rem 0;
}

.eligible-status img {
  height: 50px;
}

.eligible-status p {
  margin-bottom: 0;
  margin-top: 10px;
}

.eligible-status div:nth-child(2) {
  border: 1px solid #ecf1ff;
  border-top: 0;
  border-bottom: 0;
}

.loan-disclaimer-content{
  max-height: 634px;
  overflow: auto;
  text-align: left;
  padding-right: 10px;
}

.loan-disclaimer-content::-webkit-scrollbar {
  width: 3px;
}

.loan-disclaimer-content::-webkit-scrollbar-track {
  background: #fff;
}

.loan-disclaimer-content::-webkit-scrollbar-thumb {
  background-color: #94b0ff;
  border-radius: 20px;
}

.loan-disclaimer-content p{

}

/*face api*/
#model-loader {
  line-height: 100vh;
  z-index: 99;
  width: 50%;
  text-align: center;
  color: white;
  position: absolute;
  right: 0;
}

#webcam-loader {
  line-height: 100vh;
  width: 50%;
  text-align: center;
  color: white;
  position: absolute;
  left: 0;
}

#canvas,
#video {
  margin: 10px auto;
  background: black;
}

canvas {
  transform: scale(1.5);
}

#face-cam,
#recording {
  width: 177px;
  height: 176px;
  border-radius: 50%;
  object-fit: cover;
}

.data {
  display: none;
}

.g-signin2 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}

/*#region Profile*/
.container-profile {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1rem 5rem 1rem;
}

.container-profile > h5 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 1.2rem;
  color: #00227e;
}

.profile-section .top {
  align-items: center;
  border-radius: 20px;
  background-image: url("../img/bg_blue_wave.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 200px;
  padding: 2rem 2rem 5rem 2rem;
}

.profile-section .top > div:first-child {
  column-gap: 20px;
}

.profile-section .user-image {
  background-color: #dbe4ff;
  background-image: url("../img/icons/account.svg");
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #dbe4ff;
}

.profile-section .user-details {
  color: white;
}

.profile-section .user-details .user-name {
  font-size: 22px;
  display: inline-block;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.profile-section .user-details .user-email {
  font-size: 15px;
}

.profile-section .user-image img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  cursor: pointer;
  transition: all 0.5s;
}

.profile-section .user-image img:hover {
  filter: brightness(0.8);
}

/* .profile-section .top > div:last-child {
  display: grid;
  grid-template-columns: 160px 185px 180px;
  gap: 15px;
} */

.dispMobile{
  display: none;
}

.profile-section > .top > div:last-child > div {
  border-radius: 15px;
  padding: 15px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.5s;
}

.profile-section > .top > div:last-child > div:hover {
  filter: brightness(0.8);
}

.profile-section .enquiry-status {
  background-color: rgba(87, 113, 186, 0.65);
}

.profile-section .redeem-reward {
  background-color: rgba(87, 113, 186, 0.65);
}

.profile-section .daily-checkin {
  background-color: rgba(246, 200, 72, 1);
}

.profile-section .daily-checkin {
  border-radius: 20px;
  background-image: url("../img/bg-yellow-checkin.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.profile-section .bottom {
  display: grid;
  grid-template-columns: 35% 58%;
  justify-content: center;
  gap: 18px;
}

.profile-section .bottom > div {
  background-color: white;
  margin-top: -30px;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.12);
}

.profile-section .menu-tab {
  max-height: 660px;
}

.profile-section .menu-tab h5 {
  color: #90a1ce;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 15px;
  margin-bottom: 1rem;
}

.profile-section .tab-option .menu {
  display: grid;
  grid-template-columns: 23% 70% auto;
  padding: 8px 1rem;
  border-radius: 60px;
  align-items: center;
  transition: all 0.5s;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}

.profile-section .tab-option .menu:hover {
  background-color: #dbdde5;
}

.profile-section .tab-option .menu img {
  filter: grayscale(1);
}

.profile-section .tab-option .menu img:last-child {
  width: 6px;
}

.profile-section .tab-option .menu.active {
  background-color: #f3f6ff;
  color: #0033bf;
}

.profile-section .tab-option .menu.active img {
  filter: grayscale(0);
}

.profile .tab-option .menu:nth-of-type(2) .status {
  position: absolute;
  right: 30px;
}

.profile-section .tab-option .menu:nth-of-type(2) .status {
  text-transform: uppercase;
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
}

.bm .profile-section .tab-option .menu:nth-of-type(2) .status{
  font-size: 10px;
}

.profile-section .tab-option .menu:nth-of-type(2) .status.unverified {
  background-color: #2e63f5;
}

.profile-section .tab-option .menu:nth-of-type(2) .status.verified {
  background-color: #1cd9b3;
}

.profile-section .tab-option .menu:nth-of-type(2) .status.rejected {
  background-color: #ff6174;
}

.profile-section .tab-option .menu:nth-of-type(2) .status.processing {
  background-color: #2e63f5;
}

.profile-section .menu-tab .logout {
  display: grid;
  grid-template-columns: 23% 70% auto;
  padding: 8px 1rem;
  border-radius: 60px;
  align-items: center;
  transition: all 0.5s;
  font-size: 16px;
  border-radius: 10px;
  background-color: #f3f6ff;
  border: 1px solid #dbe4ff;
  cursor: pointer;
  transition: all 0.5s;
  color: #04174b;
}

.profile-section .menu-tab .logout:hover {
  filter: brightness(0.9);
}

.profile-section .menu-tab .reminder-box {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: flex-start;
  padding: 1rem 30px;
  background: #fff9e7;
  border: 2px solid #fee690;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.profile-section .menu-tab .reminder-box img {
  width: 30px;
  margin-top: 3px;
  margin-left: -10px;
}

.profile-section .menu-content {
  padding: 2rem 3.5rem !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-section .referral_tab .refer-now h3 {
  font-size: 25px;
  color: #0033bf;
  font-weight: 700;
  margin-bottom: 15px;
}

.profile-section .referral_tab .refer-now h5 {
  font-size: 16px;
  font-weight: 400;
}

.profile-section .referral_tab .refer-now h5 span {
  font-weight: 700;
  color: #2e63f5;
}

.profile-section .referral_tab .referral-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eff3ff;
  padding: 8px;
  border-radius: 50px;
  border: 2px dashed #2e63f5;
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.5s;
}

.profile-section .referral_tab .referral-code:hover {
  filter: brightness(0.9);
}

.profile-section .referral_tab .referral-code .code {
  font-size: 18px;
  font-weight: 700;
  color: #0033be;
  margin-left: 1rem;
}

.profile-section .referral_tab .share {
  text-align: center;
  margin-top: 2.2rem;
}

.profile-section .referral_tab .share h5 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 1.3rem;
}

.profile-section .referral_tab .social-image {
  display: flex;
  justify-content: center;
  column-gap: 25px;
  flex-wrap: wrap;
  row-gap: 20px;
}

.profile-section .referral_tab .social-image img {
  width: 55px;
  cursor: pointer;
  transition: all 0.5s;
}

.profile-section .referral_tab .social-image img:hover {
  filter: brightness(0.9);
}

.profile-section .referral_tab .share .dashed-divider {
  border: 1px dashed #dbe4ff;
  margin-top: 25px;
  margin-bottom: 20px;
}

.profile-section .referral_tab .share p a {
  text-decoration: underline;
}

.profile-section .referral_tab .redemption {
  margin-top: 2.2rem;
}

.profile-section .referral_tab .redemption h5 {
  font-weight: normal;
  font-size: 18px;
  color: #0033bf;
  margin-bottom: 15px;
}

.profile-section .referral_tab .redemption .list {
  display: grid;
  grid-template-columns: 15% 85%;
  align-items: center;
  background-color: #fafcff;
  padding: 10px 15px;
  border: 1px solid #dbe4ff;
  border-radius: 10px;
  margin-bottom: 15px;
}

.profile-section .referral_tab .redemption .list .title {
  font-weight: 700;
  color: #0032bc;
  font-size: 17px;
}

.profile-section .referral_tab .redemption .list .info {
  color: #90a1ce;
  margin-top: 1px;
}

.profile-section .content_tab h5 {
  font-size: 21px;
  color: #00227e;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.profile-section .content_tab .form-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
  margin-top: 1.3rem;
}

.profile-section .content_tab .form-title h3 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}

.profile-section .content_tab .profileForm label {
  color: #90a1ce !important;
  margin-bottom: 3px !important;
}

.profile-section .content_tab .profileForm a:hover {
  text-decoration: underline;
}

.profile-section .content_tab .profileForm .form-control {
  border-bottom: 1px solid #eff3ff;
  font-size: 16px;
  border-radius: 0;
  padding-left: 0 !important;
  padding-top: 15px !important;
  padding-bottom: 25px !important;
}

.profile-section .content_tab .profileForm .form-group > div:first-child {
  justify-content: space-between !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  height: auto !important;
}

.profile-section .content_tab .profileForm .form-control[readonly] {
  background-color: transparent !important;
  cursor: auto;
}

.profile-section .content_tab .accountForm .form-group input#email_address {
  padding-right: 30px;
}

.profile-section .content_tab .accountForm .form-group.email img {
  position: absolute;
  right: 0;
  top: 34px;
}

.profile-section .content_tab .accountForm .form-control input#email_address {
  padding-right: 30px;
}

.profile-section .content_tab .accountForm .form-control#marital_status {
  border: none !important;
}

.profile-section .content_tab .accountForm .form-group.password {
  border: 1px solid #dbe4ff;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fafcff;
}

.profile-section .content_tab .accountForm .form-control#password {
  border: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.profile-section .kyc_tab .verify-reminder {
  background-color: #fff9e7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 1px solid #FEE690;
}

.profile-section .kyc_tab .verify-reminder.rejected {
  background-color: #FFF5F6;
  border: 1px solid #FFD8DC;
}

.profile-section .kyc_tab .verify-title {
  color: #2e63f5;
  font-size: 17px;
  margin-bottom: 5px;
}

.profile-section .kyc_tab .verify-info {
  font-size: 14px;
}

.profile-section .kyc_tab .btnVerify {
  background-color: #2e63f5;
  color: white;
  border-radius: 30px;
  padding: 6px 17px;
  height: 40px;
  font-weight: 400;
  font-size: 16px;
}

.container-edit .top {
  display: flex;
  padding: 1.5rem 5rem;
  background-color: #ecf1ff;
}

.container-edit .top {
  padding: 1.2rem 5rem;
  background-color: #ecf1ff;
  position: relative;
}

.container-edit .go-back {
  position: absolute;
  display: flex;
  column-gap: 15px;
  border-radius: 5px;
  padding: 12px 16px;
  transition: all 0.5s;
  cursor: pointer;
  top: 15px;
}

.content-wrapper.profile{
  min-height: 600px;
}

.container-edit .go-back:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.container-edit .go-back img {
  width: 20px;
}

.container-edit .go-back div {
  font-size: 15px;
  color: #0033bf;
}

.container-edit .edit-title {
  flex-grow: 1;
  text-align: center;
  color: #00227e;
  font-size: 24px;
  font-weight: 700;
}

.edit-content {
  padding: 4rem 1rem;
  max-width: 780px;
  margin: auto;
}

.edit-content .update-phoneno-content img {
  width: 130px;
}

.edit-content .update-phoneno-content h5 {
  color: #0033bf;
  font-size: 24px;
  font-weight: 700;
}

.edit-content > div p {
  font-size: 15px;
/*  margin-bottom: 3rem;*/
}

.edit-content .updatePhoneForm img {
  width: 40px;
}

.edit-content .update-phoneno-content label {
  width: 100%;
  text-align: left;
  color: #00227e;
  font-size: 15px;
  font-weight: 600 !important;
}

.edit-content .update-phoneno-content input#update_phone_no {
  /* border: 1px solid #dbe4ff;
  border-radius: 50px;
  padding: 1.5rem 0 1.5rem 3.5rem;
  font-size: 16px; */
  font-weight: 500;
}

#uploadProfilePicModal .id-upload {
  padding: 0;
}

#uploadProfilePicModal .modal-body {
  padding-bottom: 0;
}

@media only screen and (max-width: 1200px) {
  .container-edit .go-back {
    left: 15px;
  }
}
/*#endregion Profile*/

.h-100 {
  height: 100% !important;
}

.form-group .country-code {
  color: #00227e;
  font-weight: 400;
}

/*@keyframes circletimer{
  0%{
    stroke-dashoffset: 500;
    stroke-dasharray: 500;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 500;
  }
}
#circle-countdown {
  background-color: transparent !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-90deg);
}

#circle-countdown .circle{
    stroke: #2E63F5;
    stroke-width: 5;
    fill: transparent;
    stroke-dashoffset: 500;
    stroke-dasharray: 0;
}

.timer{
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(188, 0, 84, 1);
  font-size: 42px;
  font-weight: 700;
}*/

.filter-width-custom {
  width: 440px;
}

/* Reviews Page CSS */
.write-reviews-section {
  max-width: 550px !important;
  margin: 0 auto;
}

.reviews-section {
  max-width: 1100px !important;
  margin: 0 auto;
}

.cn-section{
  padding-right: 10px;
}

.progress {
  border-radius: 20px;
  background-color: #f1f1f1;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 10px;
  width: 100%;
}

.progress-bar {
  /*border-radius: 10px;*/
  background-color: #2ba6cb;
}


.progress-bar.bg-star5 {
  background-color: #4BA04B !important;
}

.progress-bar.bg-star4 {
  background-color: #A5D141 !important;
}

.progress-bar.bg-star3 {
  background-color: #FFDB56 !important;
}

.progress-bar.bg-star2 {
  background-color: #F6A520 !important;
}

.progress-bar.bg-star1 {
  background-color: #FF6174 !important;
}

/*.progress-bar.bg-5 {
  background-color: #4ba04b;
}

.progress-bar.bg-4 {
  background-color: #a5d141;
}

.progress-bar.bg-3 {
  background-color: #ffdb56;
}

.progress-bar.bg-2 {
  background-color: #f6a520;
}

.progress-bar.bg-1 {
  background-color: #ff6174;
}*/

.loan-status-box .loan-title h2 {
  color: #04174b;
  font-size: 18px;
  font-weight: 600;
}

.loan-status-box .loan-amount h2 {
  color: #2e63f5;
  font-size: 22px;
}

.sort_by_section {
  display: flex;
}

.sortBySection a {
  background: #ecf1ff;
  border-radius: 50px;
  color: #2e63f5 !important;
  font-size: 16px;
}

.sortBySection a.active {
  background: #2e63f5;
  color: #ffffff !important;
}

@media (max-width: 576px) {
  .sort_by_section {
    display: -webkit-inline-box;
    height: 70px;
    width: fit-content;
    overflow: auto;
  }

  .nav-logo {
    width: 120px;
  }

  .loan-market-box {
    padding: 20px!important;
    border: 1px solid transparent!important;
    border-radius: 0!important;
  }

  .product-price h3 {
    font-size: 16px!important;
    font-weight: bold;
  }

  .product-price h2 {
    font-size: 14px!important;
    font-weight: 400;
  }

  .tag-list {
    display: flex;
    overflow: auto;
  }

  .tag-list > div {
    min-width: fit-content;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .tag-list span {
    font-size: 12px!important;
  }

  .product-details h2 {
    font-size: 13px!important;
    color: #6B7796!important;
  }

  .product-details .review-section h2 {
    color: #00227E!important;
  }

  .loan-enquiry-container h5.filter-title {
    font-size: 20px!important;
    margin-right: 20px;
  }

  .filter-dropdown .form-group.dd-1 {
    display: none;
  }

  .guided-tour-step.active .guided-tour-step-tooltip .guided-tour-step-content {
    min-height: 80px!important;
    max-height: 110px!important;
    overflow: auto!important;
  }

  #filterMobileBtn {
    min-width: 55px;
  }

  body.bm #filterMobileBtn {
    min-width: 75px!important;
  }

  #howToLoanBtn span.fs18 {
    font-size: 14px!important;
  }

  .customeHeightTour {
    animation: fade-up 1s forwards;
  }

  .customeHeightTourTooltip {
    top: 182px!important;
  }
}

.gridReviewsList {
  display: grid;
  grid-template-columns: 13% 87%;
}

.gridReview {
  display: grid;
  grid-template-columns: 80% 20%;
}

.rating {
  display: flex;
  width: 100%;
  justify-content: left;
  overflow: hidden;
  flex-direction: row-reverse;
  position: relative;
}

.rating-0 {
  filter: grayscale(100%);
}

.rating > input {
  display: none;
}

.rating > label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-image: url(../img/icons/star-inactive.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}

.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
  background-image: url(../img/icons/star-active.svg);
}

.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
  background-image: url(../img/icons/star-active.svg);
}

#rating-1:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-100px);
}
#rating-2:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-200px);
}
#rating-3:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-300px);
}
#rating-4:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-400px);
}
#rating-5:checked ~ .emoji-wrapper > .emoji {
  transform: translateY(-500px);
}

.feedback {
  max-width: 360px;
  background-color: #fff;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.gridAnonymously {
  display: grid;
  grid-template-columns: 90% 10%;
}

.switchOnOffBtn .switch {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 30px;
  border-radius: 20px;
  background: #eff3ff;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  cursor: pointer;
}
.switchOnOffBtn .switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: #a2bbff;
  border-radius: 50%;
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.switchOnOffBtn .switch:active::before {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
}
.switchOnOffBtn input:checked + .switch {
  background: #eff3ff;
}
.switchOnOffBtn input:checked + .switch::before {
  left: 22px;
  background: #0033bf;
}
.switchOnOffBtn input:checked + .switch:active::before {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}

.optemp {
  opacity: 0.5;
  pointer-events: none;
}

.notification-details-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #ecf1ff;
  margin-bottom: 15px;
}

.reviews-section,
.notification-section {
  max-width: 1040px !important;
  margin: 0 auto;
}

.notification-section .notificationBox{
  transition: 0.3s;
}

.notification-section .notificationBox:hover,
.notification-section .notificationBox.active {
  border-left: 6px solid #f0bf42;
  background-color: #FFFDF7;
  cursor: pointer;
}

.notification-section .notificationBox.unread {
  background: #fffdf7;
  cursor: pointer;
}

.loan-title p{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
}

.pageBtn,
.pageBtn:hover,
.paginationBtn,
.paginationBtn:hover {
  border: 1px solid #2e63f5;
  padding: 20px 23px;
  border-radius: 100px;
  font-size: 16px;
}

.pageBtn.disabled,
.paginationBtn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.status-box-append {
  max-height: 792px;
  overflow: auto;
  padding-right: 10px;
}

.status-box-append::-webkit-scrollbar {
  width: 3px;
}

.status-box-append::-webkit-scrollbar-track {
  background: #fff;
}

.status-box-append::-webkit-scrollbar-thumb {
  background-color: #94b0ff;
  border-radius: 20px;
}

.modal-content::-webkit-scrollbar {
  width: 0px;
}

.modal-content::-webkit-scrollbar-track {
  background: #fff;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #94b0ff;
  border-radius: 20px;
}

.backSection{
    max-width: 1614px;
    margin: 0 auto;
}

.backSection > div{
  padding: 0px;
}

.servicesGrid {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
}

.userIcon.dropdown-toggle::after,
.mobileNavbar a.dropdown-toggle::after {
  display: none;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.dark-bg{
  background: rgba(0,0,0,.7);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}

.dark-bg > div{
  display: flex;
  align-items:center;
  justify-content: center;
  height: 100vh;
}

.dark-bg > div > div{
  position: relative;
}

.close-event{
  width: 30px !important;
  height: 30px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
}

.servicesMenu {
  left: 30%;
  width: 600px;
  background: white;
  border: 1px solid #dbe4ff;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.servicesMenu a {
  color: #04174b;
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .servicesMenu {
    left: 26%;
  }
}

@media (min-width: 1300px) and (max-width: 1400px) {
  .servicesMenu {
    left: 28%;
  }
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .servicesMenu {
    left: 28%;
  }
}

#langMobile {
  padding: 12px;
  width: 150px;
  margin: 0 auto;
  align-items: center;
  background: white;
  border-radius: 8px;
}

#servicesBox {
  padding: 12px;
  margin: 0 auto;
  align-items: center;
  background: white;
  border-radius: 8px;
}

#langMobile a,
#servicesBox a {
  color: #04174b;
}

.tnc p,
.tnc ul li,
.tnc span,
.tnc b {
  text-align: justify;
  color: #04174b;
  font-size: 15px;
  font-weight: 400;
  text-transform: initial;
}


.tnc div{
  font-size: 17px;
  font-weight: 600;
}

.tnc ul {
  padding-left: 20px;
}

.newNotificationIcon {
  background: #ff6174;
  border: 1px solid #002589;
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 100%;
  right: 2px;
  top: 2px;
}

#kycAgreementModal p{
  font-size: 15px;
  text-align: justify;
}

#kycAgreementModal .modal-body{
  padding-bottom: 0;
}

#kycAgreementModal .accessControlCheckBox {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 0;
  width: 100px;
    margin: 0 auto;
}

#kycAgreementModal .accessControlCheckBox label {
  margin-bottom: 0;
  font-size: 15px;
}

#kycAgreementModal .accessControlCheckmark {
  position: absolute;
  height: 25px;
  width: 25px;
  left:2px;
  top: 3px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  margin-left: 0 !important;
}

#kycAgreementModal .accessControlCheckBox input.disabled + .accessControlCheckmark {
  background-color: #ececec;
}

#kycAgreementModal .accessControlCheckBox input {
  margin: 0;
  position: relative;
  empty-cells: 11px;
  left: 15px;
  visibility: hidden;
}

#kycAgreementModal .accessControlCheckBox input:checked ~ .accessControlCheckmark {
  background-color: #006dff;
  border: 1px solid #006dff;
  padding: 11px;
}

#kycAgreementModal .accessControlCheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

#kycAgreementModal .accessControlCheckBox input:checked ~ .accessControlCheckmark:after {
  display: block;
}

#kycAgreementModal .accessControlCheckBox .accessControlCheckmark:after {
  left: 7px;
  top: 3px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.newPagination{
  position: relative;
}

.noSelect .paginationInput{
  display: none;
}

.paginationInput{
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 16px;
  color: #526497;
  display: flex;
  align-items: center;
}

.paginationInput input,
.paginationInput input:focus{
  height: 40px;
  width: 80px;
  text-align: center;
  border:1px solid #7887B1;
  border-radius: 30px;
  margin: 0 15px;
  color: #526497;
  outline: none;
}

.blob {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation: blob 2s linear 0s infinite;
          animation: blob 2s linear 0s infinite;
}

.blob1{
  width: 750px;
  height: 750px;
  background-color: rgb(0,34,126, .3);
  position: absolute;
  left: -30%;
  top: 50%;
}

.blob2{
  width: 350px;
  height: 350px;
  background-color: rgb(0,34,126, .2);
  position: absolute;
  left: -20%;
  top: 90%;
}

.blob3{
  background-color: rgb(0,34,126, .3);
  position: absolute;
  left: -30%;
  top: 50%;
}

.blob4{
  background-color: rgb(0,34,126, .3);
  position: absolute;
  left: -30%;
  top: 50%;
}

.backBtn{
  margin-left: 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #0033BF;
}

.backBtn img{
  margin-right: 10px;
  margin-top: 3px;
}

@keyframes blob {
  0%   {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
  25%  {border-radius: 70% 30% 32% 68% / 30% 30% 70% 70%;}
  50%  {border-radius: 50% 50% 32% 68% / 55% 24% 76% 45%;}
  75%  {border-radius: 28% 72% 57% 43% / 79% 24% 76% 21%;}
  100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

@media (max-width: 1900px){
  .s1-content h1{
    font-size: 60px;
  }
}

@media (max-width: 1700px){
  .s1-content h1{
    font-size: 45px;
  }

  .s1-content p{
    font-size: 16px;
  }

  #sec2_5 .mw-custom{
    max-width: 90%;
  }
}

@media (max-width: 1600px){
  #submitEnquiry.btn-next:link, .btn-next:visited{
    min-width: unset;
    width: 100%;
  }

  /* #sec5{
    background-size: 100% 85%;
  } */

  .download-app{
    margin-left: 0px;
  }
}

/* ------------------------------------------------------------------------------- small screen -------------------------------------------------------------------------------*/
@media (max-width: 1350px){
  .s1-content h1{
    font-size:30px;
  }

  #sec2_5 .promo-arrw{
    top: 45%;
  }

  .loan-list{
    grid-template-columns: repeat(3, 1fr);
/*    overflow-x: scroll;
    width: 100%;*/
  }

  #sec3 .loan-list{
    overflow-x: scroll;
    width: 100%;
    padding: 0;
  }

  .hiw-section h2{
    font-size: 20px;
}

  .hiw-section p{
    font-size: 16px;
  }

  .product-price h2{
    font-size: 16px;
  }

  .tag-list > div{
    font-size: 14px;
  }

  .crop-img{
    max-width: 324px;
    overflow: hidden;
    margin: 0 auto;
  }

  .about-img{
    width: 100%;
  }

  .about-top-bg p{
    margin-left: 0;
    font-size: 24px;
  }

  .about-grid2 p{
    font-size: 24px;
  }

  .about-sec3-bg{
    width: 100%;
  }

  .about-sec3-bg div div img{
    width: auto;
  }

  .about-grid .content h5{
    font-size: 28px;
  }

  .about-grid .content p{
    font-size: 18px;
  }

  .about-sec3-bg div div h2{
    font-size: 54px;
  }

  .about-sec3-bg div div img{
    height: 80px;
  }

  .mission{
    margin-right: 0rem;
  }

  .about-sec3{
    padding: 0px 30px 110px 30px;
    margin-top: 50px;
  }

  .nav-landing li{
    margin: 0 1rem;
  }

  .navbar-expand .navbar-nav .nav-link{
    font-size: 16px;
  }

  .testimonial .card{
    width: 355px;
    min-height: 220px;
    padding: 1.5rem;
  }

  .testimonial .card .content{
    font-size: 15px;
  }

  .step-container > div{
    max-width: 375px;
  }

  .tutorial-desc{
    min-height: 236px;
  }

  .tutorial-desc.h-custom{
    min-height: 265px;
  }

  .tutorial-desc h3{
    font-size: 22px;
  }

  .tutorial-desc p{
    font-size: 15px;
  }

  #sec-reveal > div{
    padding: 0 5rem;
  }

  .reveal .grid{
    grid-template-columns: 50% 45%;
    gap: 5%;
  }
}

@media (max-width: 1200px){
  .step-container > div{
    max-width: 350px;
  }

  .tutorial-desc{
    min-height: 250px;
  }

  .tutorial-desc.h-custom{
    min-height: 275px;
  }

  #sec-reveal > div{
    padding: 0 3rem;
  }

  .reveal .grid{
    grid-template-columns: 50% 45%;
    gap: 5%;
  }
}

/* ------------------------------------------------------------------------------- ipad & Mobile -------------------------------------------------------------------------------*/
@media (max-width: 900px){
  /*  global*/
  .navbar,.nav-custom,
  .navbar,.nav-custom.sticky{
    height: 80px;
  }

  .tutorial-desc.h-custom{
    min-height: 300px !important;
  }

  .cn .tutorial-desc.h-custom{
    min-height: 230px !important;
  }

  .tutorial-desc p{
    font-size: 16px;
  }

  .step-container{
    margin: 1rem 0;
  }

  .cn .tutorial-desc{
    min-height: 210px;
  }

  #step-video .step-container{
    display: block;
    margin-bottom: 3rem;
  }

  .step-container > div{
    max-width: 100%;
  }

  .reveal .numbers{
    justify-content: center;
  }

  .reveal .numbers > div{
    height: 45px;
    width: 45px;
  }

  #sec-reveal{
    padding: 3rem 0 5rem 0;
  }

  .reveal .grid{
    grid-template-columns: 100%;
  }

  .reveal .left h5{
    font-size: 26px;
  }

  .reveal .left p{
    max-width: 100%;
  }

  .reveal .robot{
    transform: scale(1.2);
    margin-top: 4rem;
  }

  .reveal .right .robot{
    transform: scale(1.1);
    margin-top: 3rem;
  }

  #revealSecret{
    width: 100%;
    padding: 15px !important;
  }

  .videot2{
    padding-bottom: 30px;
  }

  .sec-title{
    font-size: 24px;
  }

  .dispMobile{
    display: block;
  }

  .login-card-body .login{
    max-width: 100%;
  }

  .breadcumb{
    padding: 30px 20px;
  }

  #banner .owl-dots{
    bottom: 0px;
  }

  #banner.owl-carousel{
    box-shadow: none;
    margin: 50px auto 20px auto;
  }

  #sec2_5 img.prev{
    left: -10px;
  }

  #sec2_5 img.next{
    right: -10px
  }

  .nav-landing li{
    margin: 0 7px;
  }

  .btn-register-login,
  .btn-register-login:hover{
    width: 135px;
    font-size: 14px !important;
    padding: 8px !important;
  }

/*  .navbar,
  .nav-custom{
    height: 70px !important;
  }*/

  .userIcon2{
    height: 40px;
    width: 40px;
  }

  .tab-category a{
    height: 64px;
  }

  .navbar-expand .navbar-nav .dropdown-menu{
    height: calc(100vh - 70px);
    position: fixed;
    top: 70px;
  }

  .form-group{
    margin-bottom: 10px;
  }

  .navbar-nav.ml-4{
    margin-left: 0px !important;
  }

  .navbar{
    padding: 0 20px !important;
  }

  /*  register and login */
  #register-email{
    padding: 0px !important;
  }

  #register-email .grid-form{
    grid-template-columns: 100%;
    gap: 0px;
  }

  .login-header{
    margin-bottom: 2rem;
  }

  .loginSH > div, .registerSH > div, .forgotPasswordSH > div{
    height: auto;
  }

  /*  sec2*/
  #sec2 .sec-title{
    margin-top: 0px !important;
  }

  .sec2-bg{
    min-height: auto;
    z-index: unset;
    background-color: unset;
    border-top: 2px solid #ecf1ff;
  }

  .quick-navigate{
    position: relative;
    border-radius: 0px;
    height: auto;
    padding: 20px 0px;
    margin-top: 0px;
    z-index: 0;
  }

  .quick-navigate img{
    width: 70px;
    margin: 10px 0px;
  }

  .quick-navigate div{
    font-size: 14px;
  }

  .how-it-work{
    display: block;
    height: unset;
    padding: 30px 20px;
    background-image: url(../img/sec2-bg-mobile.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hiw-robot{
    top:150px;
    width:200px;
    left: 0;
    right: 0;
    margin: -110px auto auto auto;
    z-index: 1;
  }

  .hiw-section{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
    margin-top: 8rem;
    z-index: 20;
    position: relative;
  }

  .hiw-section div{
    margin: 0px;
/*    height: 270px;*/
    max-width: 100%;
  }

  /*  sec3*/
  .eligible {
    position: relative;
    margin-top: 0px;
    grid-template-columns: 100%;
    height: auto;
    border-radius: 0px;
  }

  .eligible .right{
    text-align: center;
  }

  .loan-market-box:hover,
  .loan-market-box.active {
    border: 1px solid transparent;
  }

  #sec2 .loan-list{
    /* display: flex; */
    display:grid;
    grid-template-columns: 90% 90% 90% 90%;
    width: 100%;
    gap: 10px 20px;
    overflow-y: scroll;
    padding: 10px 20px;
/*    height: 260px;*/
    margin-top: 0px;
  }

  .loan-padding{
    padding-top: 2rem;
  }

  .loan-padding > .d-flex{
    display: block !important;
    text-align: left;
  }

  #sec2 .sec-title{
    text-align: left;
    margin-bottom: 10px;
  }

  #sec2 .loan-list .loan-market-box{
    border-radius: 0px;
    padding: 1rem 1.5rem;
/*    max-height: 250px;*/
    height: auto;
    min-width: 90%;
  }

  .loan-market-view{
    padding: 20px 0 !important;
  }

  .bm #sec2 .tag-list > div{
    font-size: 11px;
  }

  .bm .btn-register-login, .btn-register-login:hover{
    width: 150px;
    font-size: 13px !important;
    padding: 10px !important;
  }

  .bm .btn-color-mode-switch > label.btn-color-mode-switch-inner{
    width: 180px;
  }

  .bm .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after{
    left: 86px;
  }

  .bm .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before{
    left: 25px;
    top: 16px;
    font-size: 13px;
  }

  .bm .btn-color-mode-switch > label.btn-color-mode-switch-inner:before{
    font-size: 13px;
    right: 10px;
    top: 15px;
  }

  .bm .btn-color-mode-switch > label.btn-color-mode-switch-inner:after{
    font-size: 13px;
  }

  #sec2 .tag-list > div{
    font-size: 13px;
  }

  .product-details{
    margin-top: 10px;
  }

  .tag-list{
    margin-top: 10px;
  }

  /*  sec4*/
  .loan-list{
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-category{
    padding: 1rem  20px;
  }

  .calculate-section{
    padding: 2rem;
  }

  .tab-category a{
    font-size: 16px;
  }

  .loan-calculator .innerForm{
    padding-right: 0px;
  }

  .loan-calculator .mw-custom2{
    flex-flow: wrap-reverse;
  }

  /*.innerForm .form-group input:focus{
    border: 1px solid red;
  }*/

  .calculate-robot{
    display: none;
  }

  .max-w-calculate{
    padding: 0;
  }

  #sec4{
    padding: 5rem 0;
  }

  #sec4 .sub-title{
    font-size: 16px;
    padding: 0px 20px;
  }

  /*  sec5*/
  #sec5{
    background-size: cover;
    height: auto;
  }

  .testimonial{
    display: block;
    padding: 2rem 0px 2rem 20px;
    overflow: hidden;
  }

  .mobile-testi{
    display: flex;
    width: 100%;
    overflow-y: scroll;
    gap: 10px;
  }

  .testimonial .mobile-testi .card{
    min-width: 90%;
  }

  .testimonial .left{
    margin-right: 0;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 10px;
  }

  .testimonial .left h3{
    font-size: 24px;  
  }

  .testimonial .left p{
    max-width: 80%;
    font-size: 16px;
    margin: 0 auto;
  }

  .testimonial .mid,
  .testimonial .right{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
  }

  .testimonial .card{
    width: 100%;
    margin-bottom: 10px;
    min-height: 250px;
  }

  .testimonial .card .content{
    padding-bottom: 0px;
  }

  .testimonial .mid .card:last-child{
    margin-bottom: 10px;
  }

  /*  sec 6*/
  #sec6{
    padding: 3rem 0 0 0;
  }

  .mw-news{
    padding: 0px;
    max-width: 100%;
  }

  #news{
    padding: 0px 15px;
    max-width: 80%;
    margin: 0 auto;
  }

  .news-details-content .sec-title{
    text-align: center !important;
  }

  .arrw-news.left{
    left:15px;
  }

  .arrw-news.right{
    right:15px;
  }

  #sec6 .sub-title{
    margin-bottom: 20px !important;
    padding-bottom: 10px;
  }

  .download{
    grid-template-columns: 100%;
    text-align: center;
    height: auto;
    border-radius: 0px;
    padding: 5rem 2rem 0 2rem;
  }

  .download .google-apple{
    display: block;
  }

  .download .google-apple > div{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
  }

  .google-apple .qr{
    display: none;
  }

  .download .google-apple .store-btn{
    max-width: 152px;
    margin: 15px auto;
  }

  .download h2{
    font-size: 30px;
  }

  .download p{
    font-size: 18px;
  }

  .download p br{
    display: none;
  }

  .download-app{
    margin-left: 0px;
  }

  /*  about us*/
  .container-about{
    padding: 2rem 30px;
  }

  .about-grid{
    grid-template-columns: 100%;
    padding-bottom: 3rem;
  }

  .about-img{
    width: 100%;
    padding: 0px 20px;
  }

  .about-grid .content h5{
    font-size: 24px;
    margin-bottom: 2rem;
  }

  .about-grid .content p{
    font-size: 16px;
    text-align: justify;
  }

  .about-sec2{
    margin-top: 20px;
  }

  .about-sec2 .sec-title2{
    font-size: 24px;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-sec2 .grid-top,
  .about-sec2 .grid-btm{
    grid-template-columns: 100%;
  }

  .about-sec2 .grid-top p,
  .about-sec2 .grid-btm p{
    font-size: 20px;
  }

  .about-sec2 .about-img{
    padding: 0;
  }

  .about-top-bg, .about-btm-bg{
    padding: 3rem 2rem;
    text-align: left;
  }

  .about-top-bg p br, 
  .about-btm-bg p br{
    display: none;
  }

  .about-top-bg p{
    margin-left: 0;
  }

  .about-sec3{
    margin-top: 30px;
    padding-bottom: 0px;
  }

  .mission{
    max-width: 100% !important;
    margin-right: 0;
  }

  .about-sec3-bg{
    height: 288px;
    border-radius: 0px;
    padding-left: 3rem;
  }

  .about-sec3-bg div div img{
    width: unset;
    height: 60px;
  }

  .about-sec3-bg div div h2{
    font-size: 32px;
  }

  .about-sec3-bg div div p{
    font-size: 16px;
  }

  .about-sec3-bg div div:first-child{
    margin-bottom: 30px;
  }

  /*  news*/
  .news-container{
    display: block;
/*    grid-template-columns: repeat(1, 1fr);*/
  }

  .newPagination{
    margin: 3rem auto !important;
    justify-content: space-between !important;
    padding: 0px 20px;
  }

  .paginationInput input, .paginationInput input:focus{
    margin: 0px 10px;
  }

  .newPagination span{
    display: none;
  }

  .pageBtn,
  .pageBtn:focus,
  .paginationBtn,
  .paginationBtn:focus{
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pageBtn img,
  .paginationBtn img{
    margin-left: 0px !important;
  }

  .paginationInput{
    right: 20px;
  }

  .news-details-title{
    font-size: 22px;
  }

  .news-details-title,
  .news-details-image,
  .news-details-date,
  .social-media,
  #news-content{
    padding: 0 20px !important;
  }

  .contact-container{
    padding: 30px 20px;
  }

  .contact-container .social-contact{
    text-align: center;
    margin-bottom: 30px;
  }

  #mapView{
    padding: 0px !important;
  }

  .faq-container{
    padding: 30px 20px;
  }

  .step-mw{
    margin: 20px auto;
  }

  /*  apply loan*/
  .apply-box{
    border-radius: 0px;
    border: none;
  }

  .apply-section{
    padding: 0px 20px;
  }

  .selection div{
    font-size: 12px;
    padding: 10px;
  }

  .apply-box [type="radio"]:checked + label:before{
    width: 14px;
    height: 14px;
  }

  .apply-box [type="radio"]:checked + label:after, .apply-box [type="radio"]:not(:checked) + label:after{
    width: 6px;
    height: 6px;
  }

  .apply-box [type="radio"]:checked + label{
    padding-left: 20px;
  }

  /*  ai matching*/
  .robot{
    max-width: 200px;
  }

  .matching-desc h5{
    font-size: 24px;
  }

  .matching-desc p{
    font-size: 16px;
    max-width: 85%;
    margin: 0 auto;
  }

  .matching-desc p br{
    display: none;
  }

  .loan-enquiry-container{
    margin-top: 30px;
  }

  .loan-enquiry-container .loan-list{
    grid-template-columns: repeat(2, 1fr) !important;
    margin-top: 20px;
    min-height: unset;
  }

  /*  loan listing*/
  .filter-title{
    margin-bottom: 20px;
  }

  .filter-dropdown{
    display: block;
  }

  .filter-section{
    padding: 0px 20px;
  }

  .filter-dropdown .form-group{
    display: grid;
    grid-template-columns: 20% 80%;
    margin-right: 0px;
  }

  .filter-dropdown .form-group label{
    margin-right: 0px;
  }

  .filter-dropdown .form-group .form-control{
    width: 100% !important;
  }

  .filter-dropdown .form-group div{
    width: 100%;
  }

  .loan-enquiry-container{
    padding: 10px;
    margin-bottom: 0px;
  }

  .result .row{
    margin: 0;
  }

  .result .row > div{
    padding: 0px;
  }

  .apply-box.border-all, .apply-box-bottom.border-all {
    border-radius: 0px !important;
    border:none;
  }

  #submitEnquiry{
    margin-top: 3rem !important;
    width: 100%;
  }

  .tags{
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
    min-height: 50px;
  }

  .status-box-append{
    padding: 0 20px;
  }

  /*  loan calculator*/
  .loan-calculator #chart-box{
    padding: 2rem 1rem;
  }

  .row-gap-15{
    margin-left: 15px;
  }

  /*  kyc*/
  .id-display img{
    max-width: 220px;
    width:100%;
    margin: 0 10px;
  }

  .id-upload{
    gap: 20px;
  }

  .upload-image{
    width: 220px;
    max-width: 220px;
  }

  .btn-next{
    min-width: 200px !important;
  }

  .apply-progress{
    height: 80px;
    padding: 0px 20px;
  }

  .apply-progress > div{
    overflow-x:scroll;
    white-space: nowrap;
  }

  .panel .upload-section{
    grid-template-columns: 100%;
  }

  .panel .upload-image{
    margin-top: 10px;
  }

  .upload-section .form-group:first-child .upload-image{
    margin-top: 3rem;
  }

  .information-step{
    padding: 60px 20px !important;
  }

  .eligible{
    border-radius: 20px;
    max-width: 90%;
    margin: 30px auto 0 auto;
  }

  .eligible-status img{
    height: 40px;
  }

  .eligible-status p{
    font-size: 12px;
  }

  .notification-section .row{
    margin: 0;
  }

  .notification-section .newPagination{
    position: relative !important;
  }

  /*  review*/
  .reviews-section{
    padding: 0px 10px;
  }

  .status-box-append.reviewProgress{
    padding: 0px;
  }

  .reviewProgress .loan-status-box{
    padding: 2rem 1rem;
  }

  .cn-section{
    padding-right: 0px !important;
  }

  .loan-enquiry-container .row{
    margin: 0px;
  }

  .gridReviewsList{
    grid-template-columns: 20% 80%;
  }

  .gridReviewsList .company-logo{
    margin-right: 15px;
  }

  #productMerchantSection > div .fs20{
    font-size: 14px !important;
  }

  #productMerchantSection > div .fs16,
  .review-date{
    font-size: 12px !important;
  }

  #productMerchantSection .starSection img{
    width: 13px !important;
  }

  #productMerchantSection .starSection{
    margin-top: -4px;
  }

  #productMerchantSection .gridReview{
    grid-template-columns: 50% 50%;
  }

  #productMerchantSection > div .fs16.review-comment{
    font-size: 14px !important;
  }

  .p-10-mobile{
    padding-left:10px !important;
    padding-right: 10px !important;
  }

  .write-reviews-section .loan-status-box{
    padding: 1rem !important;
  }

  .gridAnonymously{
    grid-template-columns: 80% 20%;
  }

  .gridAnonymously .switchOnOffBtn{
    text-align: right;
  }

  /*  profile*/
  .dispNone-mobile{
    display: none !important;
  }

  .profile-section .bottom{
    grid-template-columns: 100%;
  }

  .container-profile{
    padding: 20px;
  }

  .profile-section .menu-content,
  .profile-section .menu-tab{
    padding:2rem !important;
  }

/*  .profile-section .menu-tab{
    margin-top: 2rem !important;
  }*/

  .profile-section .bottom > div{
    margin-top: -50px;
/*    border-radius: 0px;*/
    z-index: 10;
  }

  .profile-section > .top{
    position: relative;
  }

  .profile-section .enquiry-status{
    background-color: transparent;
  }

  .profile-section > .top > div:last-child > div{
    padding-top: 0px;
  }

/*  .mobile-profile-bar{
    background-color: #fff;
    width: 90%;
    position: absolute;
    bottom: -34px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0px 8px 12px #e5e5e5;
  }*/

  .mobile-profile-bar .enquiry-status .text-white{
/*    color: #2E63F5 !important;*/
      display: none;
  }

  .edit-content{
    max-width: 100%;
  }

  #notificationBoxList{
    max-height: 100% !important;
    overflow: hidden !important;
  }

  .forgotPasswordSH > div > div{
    margin-top: 0px;
  }

  #sec-benefit{
    padding: 2rem 0 !important;
  }

  #sec-benefit .tutorial-steps{
    margin-top: 0px;
  }

  #sec-benefit .sec-title{
    font-size: 26px;
  }

  #sec-benefit .sec-title,
  #sec-benefit .tutorial-steps > p{
    text-align: center !important;
  }

  .tutorial-steps .sec-title{
    text-align: center !important;
  }

  .tutorial-steps{
    padding: 0 1rem;
  }
}

/* ------------------------------------------------------------------------------- mobile extra -------------------------------------------------------------------------------*/
@media (max-width: 650px){
  .quick-navigate{
    padding: 15px 5px;
  }

  .sec1-bg .btn-register-login{
    font-size: 18px !important;
    width: 200px;
    padding: 15px !important;
  }

  .sec1-bg{
    background-image: url(../img/s1-bg-mobile.png);
  }

  .s1-content{
    margin: 50px auto;
    max-width: 80%;
    text-align: center;
  }

  #sec2_5 .promo-arrw{
    top: 40%;
  }

  .s1-content h1,
  .s1-content p{
    text-align: center;
  }

  .s1-content h1{
    font-size: 30px;
  }

  .s1-content p{
    font-size: 14px;
  }

  #payment-section .header{
    padding-bottom: 30px;
  }

  #generalModal .modal-dialog{
    margin: 0 auto;
  }

  .notification-details-box{
    padding: 2rem 1rem;
  }

  .breadcumb{
    padding-left: 10px !important;
  }

  #btnDisclaimerLoan{
    margin-top: 3rem !important;
    width: 100% !important;
  }

  .btn-back{
    font-size: 14px !important;
    min-width: 120px !important;
  }

  .employment-component > h5,
  .document-component > h5{
    margin-left: 20px;
  }

  .tng-float{
    bottom: 100px !important;
  }

  .quick-navigate img{
     margin: 0px;
     width: 60px;
  }

  .quick-navigate div br{
    display: block;
  }

  .quick-navigate div{
    font-size: 12px;
    font-weight: 500;
  }

  .hiw-section{
      display: block;
    }

  .hiw-section div{
      margin: 20px 0px;
    }
  .hiw-section img{
    margin-bottom: 20px;
  }

  .hiw-section h2{
      font-size: 20px;
    }

  .hiw-section p{
    font-size: 16px;
    margin-bottom: 0px;
  }

  .loan-list{
    grid-template-columns: 100%;
    padding: 0px
  }

  #sec3 .loan-list{
    padding: 0px !important;
  }

  .testimonial .mid,
    .testimonial .right{
      display: block;
    }

  .loan-enquiry-container .loan-list{
    display: block;
/*    grid-template-columns: repeat(1, 1fr) !important;*/
  }

  .loan-list .loan-market-box{
    margin-bottom: 10px;
  }

  .filter-dropdown .form-group{
    grid-template-columns: 30% 70%;
  }

  .download .google-apple > div{
    display: block;
  }

  .id-display img{
    max-width: 175px;
  }

  .upload-image{
    width: 175px;
    max-width: 175px;
  }

  .apply-progress > div{
    justify-content: flex-start;
  }

  .container-profile{
    padding: 0px;
  }

  .container-profile h5{
    padding: 20px 20px 0px 20px;
  }

  .edit-content{
    padding: 2rem 1rem;
  }

  .testimonial .card{
    min-height: 230px;
  }

  .otp-input input{
    width: 50px;
    height: 50px;
  }

  .eligible{
    background-image: url(../img/limit-card-bg-mobile.png);
  }

  .eligible .right h2{
    margin-top: 30px;
  }

  .eligible .right div{
    margin-top: 10px;
    max-width: 200px;
    margin: 10px auto;
  }

  .eligible .right div h3{
    display: flex;
    align-items: center;
  }

  .eligible .right div h3 img{
    margin-right: 20px;
  }

  #sec3 .btn-register-login{
    padding: 19px 0px !important;
  }

  .status-box-append{
    display: flex;
    align-items: stretch;
    gap: 10px;
  }

  .status-box-append::-webkit-scrollbar {
    width: 0px;
  }

  .status-box-append::-webkit-scrollbar-track {
    background: #fff;
  }

  .status-box-append::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 20px;
  }

  .status-box-append .loan-status-box{
    min-width: 400px;
  }

  .loan-status-box{
    min-width: 90%;
    position: relative;
  }

  .loan-status-box .status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .loan-status-box > div {
    margin-top: 20px;
    text-align: left !important;
  }

  .news-item{
    margin-bottom: 20px;
  }

  .news-item h3{
    font-size: 14px;
    font-weight: bold;
  }

  .collapse {
    margin-top: 0px !important;
  }

  .footer-btm a{
    margin: 0px 5px !important;
  }

  .buildArrow img{
    width: 20px;
    margin-top: -5px;
  }

  .newPagination {
    align-items: center;
  }

  .paginationInput{
    position: relative !important;
    right:0px;
    top: 0px;
  }

  .loan-enquiry-container .apply-box-bottom .header{
    padding-bottom: 10px;
  }

  .loan-enquiry-container .apply-box-bottom .header p{
    margin-top: 10px;
  }

  .footer-top div:first-child{
    text-align: center !important;
  }

  .footer-top div{
    justify-content: center;
  }

  .footer-top ul{
    text-align: center;
  }

  .footer-top ul li{
    padding: 5px 0px;
  }

  .submitted-loan-details > div div:first-child{
    font-size: 14px;
    text-align: left;
  }

  .submitted-loan-details > div div:last-child{
    text-align: right;
    font-size: 13px;
  }

  .eligible .right > div{
    margin-top: 15px;
    text-align: left;
    max-width: 60%;
  }

  .information-step{
    padding: 20px !important;
  }

  .information-step b{
    max-width: 80% !important;
  }

  #sec4{
    padding: 3rem 0 0 0;
  }

  .news-details-content #news{
    max-width: 100%;
  }

  .btn-next{
    min-width: 164px !important;
    font-size: 14px !important;
  }

  #kycAgreementModal p{
    font-size: 13px;
  }

  .information-step b{
    font-size: 16px;
  }

  .information-step p{
    font-size: 14px;
    margin-top: 15px !important;
  }

  .eligible-badge-status span{
    font-size: 11px;
  }

  .profile-section .enquiry-status{
    position: absolute;
    right: 10px;
    top: 25px;
  }

  #sec2_5 .mw-custom{
    padding-left: 10px;
    padding-right: 10px;
  }

  #sec2_5 .promo-arrw{
    max-width: 10px;
  }

  .loanEnquirySubmit .p-medal{
    right: 0px !important;
  }
}

@media (max-width:420px){
  .tutorial-desc .h-custom{
    min-height: 290px;
  }

  .tutorial-desc{
    min-height: 290px;
  }

  #sec2 .loan-list .loan-market-box{
    padding: 1rem;
  }

  .id-display img,
  .upload-image{
    max-width: 155px;
  }

  .loan-market-box{
    padding: 1rem;
  }

  .product-price h2{
    font-size: 16px;
  }

  .product-price h3{
    font-size: 18px;
  }

  .loan-enquiry-container .apply-box-bottom .header h2{
    font-size: 20px;
  }

  .apply-box-bottom{
    padding: 2rem 1rem;
  }

  .navbar{
    padding: 0 10px !important;
  }

  .userIcon,.userIcon2{
    width: 35px !important;
    height: 35px !important;
  }

  .nav-landing li{
    margin: 0 5px;
  }

  .nav-logo{
    width: 105px;
  }

  .btn-color-mode-switch > label.btn-color-mode-switch-inner{
    width: 170px;
  }

  .btn-color-mode-switch > label.btn-color-mode-switch-inner:before,
  .btn-color-mode-switch > label.btn-color-mode-switch-inner:after{
    font-size: 14px;
  }

  .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after{
    left: 81px;
  }

  .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before{
    left: 20px;
    top: 16px;
  }

  .log-box-r .card-body{
    padding: 1rem;
  }

  .loan-calculator .total_interest_label .indicator {
    width: 15px;
    height: 15px;
  }

  .loan-calculator .loan_amount_label .indicator {
    width: 15px;
    height: 15px;
  }

  #loanEnquiryResultModal .modal-body{
    padding: 2.5rem 1rem;
  }

  .robot-message{
    max-width: 95px;
  }

  .banner-img,
  .sec1-bg{
    height: 100%;
  }
}

@media (max-width:360px){
  .tutorial-desc.h-custom{
    min-height: 370px !important;
  }
}

.mobileLangSelect {
  border: 2px solid #007bff;
  border-radius: 30px;
}

.mobileLangSelect.active {
  background: #007bff;
}

.menuMobileLine {
  border-bottom: 2px solid #007bff;
  border-left: 2px solid #007bff;
  width: 20px;
  height: 20px;
  margin-top: -20px;
}

.menuMobileLine.extraLine {
  height: 43px!important;
  margin-top: -43px!important;
}

@media (min-width:901px){
  .hidden-xs{
    display: block !important;
  }

  .hidden-lg{
    display: none !important;
  }
}

@media (max-width:900px){
  .hidden-xs{
    display: none !important;
  }

  .hidden-lg{
    display: block !important;
  }
}

.ca-seo-structure input[type="radio"] {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}
.ca-seo-structure input[type="radio"]:checked ~ .ca-seo-slide {
  transform: translate3d(100%, 0, 0);
}
.ca-seo-structure input[type="radio"]:checked + .ca-seo-slide {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}
.ca-seo-structure
  input[type="radio"]:checked
  + .ca-seo-slide
  + .ca-seo-slide-nav {
  z-index: 1;
}
.ca-seo-structure
  input[type="radio"]:checked:nth-of-type(1)
  + .ca-seo-slide
  + .ca-seo-slide-nav
  + .ca-seo-slide-dots
  .slide-dot:nth-child(1) {
  background-color: #919191;
}
.ca-seo-structure
  input[type="radio"]:checked:nth-of-type(2)
  + .ca-seo-slide
  + .ca-seo-slide-nav
  + .ca-seo-slide-dots
  .slide-dot:nth-child(2) {
  background-color: #919191;
}
.ca-seo-structure
  input[type="radio"]:checked:nth-of-type(3)
  + .ca-seo-slide
  + .ca-seo-slide-nav
  + .ca-seo-slide-dots
  .slide-dot:nth-child(3) {
  background-color: #919191;
}
.ca-seo-structure {
  height: 650px;
  overflow: hidden;
  position: relative;
  width: 100%;
  overflow-y: auto;
}
.ca-seo-structure .ca-seo-slide {
  height: 100%;
  display: inline-flex;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transform: translate3d(-100%, 0, 0);
  transition: all 1s ease;
  width: 100%;
  padding: 50px 0;
}
#campaign-banner-posterOnly .ca-seo-structure .ca-seo-slide {
  opacity: 1!important;
  transform: unset!important;
}
.ca-seo-structure .ca-seo-slide .ca-seo-slide-img {
  width: 90%;
  max-width:1000px;
  margin: 0 auto;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
}
.ca-seo-structure .ca-seo-slide-nav {
  padding: 20px 200px;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 100%;
  z-index: 0;
}
.ca-seo-structure .slide-prev {
  cursor: pointer;
  float: left;
  border: 1px solid #eff3ff;
  padding: 21px 14px 15px 24px;
  border-radius: 100%;
  background: #eff3ff;
  width: 60px;
  height: 60px;
}
.ca-seo-structure .slide-prev::before {
  border-top: 4px solid #00227e;
  border-left: 4px solid #00227e;
  border-radius: 1px;
  content: "";
  display: block;
  height: 15px;
  transform: rotate(-45deg);
  width: 15px;
}
.ca-seo-structure .slide-next {
  cursor: pointer;
  float: right;
  border: 1px solid #eff3ff;
  padding: 22px 18px 15px 19px;
  border-radius: 100%;
  background: #eff3ff;
  width: 60px;
  height: 60px;
}
.ca-seo-structure .slide-next::after {
  border-top: 4px solid #00227e;
  border-right: 4px solid #00227e;
  border-radius: 1px;
  content: "";
  display: block;
  height: 15px;
  transform: rotate(45deg);
  width: 15px;
}

#blog-details-section p {
  font-size: 16px!important;
}

.guided-tour-step.active .guided-tour-step-tooltip .guided-tour-step-button-next {
  color: #2E63F5!important;
  background: #2E63F5!important;
}

.guided-tour-step.active .guided-tour-step-tooltip .guided-tour-step-button-complete {
  color: #1CD9B3!important;
  background: #1CD9B3!important;
}

.guided-tour-step.active .guided-tour-step-tooltip .guided-tour-step-button .guided-tour-icon {
  color: white;
}

.guided-tour-step-button-close svg.guided-tour-icon {
  color:#000!important;
}

.guided-tour-step-tooltip {
  border-radius: 12px!important;
}

.guided-tour-step-title {
  color: #00227E!important;
  font-size: 20px!important;
}

.guided-tour-step-content {
  color: #04174B!important;
  font-size: 14px!important;
}

.guided-tour-step.active .guided-tour-step-tooltip .guided-tour-step-footer-bullets ul li.current {
  background-color: #2E63F5!important;
}

.guided-tour-step.active .guided-tour-step-tooltip .guided-tour-step-footer-bullets ul li {
  background-color: #BDBDBD!important;
}

#processingBtn, #processModalBtn, #apply_filter_btn {
  background: #2E63F5;
  border-radius: 50px; 
  min-width: 150px; 
  padding: 15px; 
  color: white;
  cursor: pointer;
}

#remindGuideModal .modal-dialog {
  max-width: 370px!important;
}

#remindGuideModal .title-2 {
  font-size: 22px;
  color: #0033BF;
  font-weight: bold;
}

#remindGuideModal .title-2-sub {
  font-size: 16px;
  color: #04174B;
}

.guided-tour-step.active .guided-tour-step-tooltip .guided-tour-step-button-close {
  top: 12px;
  right: 12px;
  background: #EFF3FF;
  border-radius: 50px;
}

.guided-tour-step.active .guided-tour-step-highlight {
  border-radius: 12px!important;
}

@keyframes fade-up {
  from {
    top: 200px;
  }
  to {
    top: 105px;
  }
}

.nsm7Bb-HzV7m-LgbsSe-bN97Pc-sM5MNb {
  justify-content: center !important;
}

.L6cTce {
  display: block !important;
}

.message-box-chat-1 {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  right: 25px;
  position: fixed;
  bottom: 20px;
  background: transparent;
  z-index: 10000000001;
  opacity: 0;
  display:none;
}

.registerSH::-webkit-scrollbar {
  width: 0px;
}

.registerSH::-webkit-scrollbar-track {
  background: #1c1c24;
}

.registerSH::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 20px;
}

@media (max-width: 768px) {
  #quickLoginSignUpModal .modal-dialog {
    margin: 0!important;
  }

  #quickLoginSignUpModal .modal-content {
    border-radius: 0!important;
  }

  .mobileQuickSection {
    max-height: 100vh!important;
    height: 100vh!important;
  }
}
