:root {
    --primary-text-color: #0C1D46;
    --primary-bg-color: #0C1D46;
    --secondary-text-color: #222222;
    --bg-custom: #F2F6FF;
    --border-color: #D9E5FF;
    --dark-footer-color :#071027;
}

.primary-text{
    color:var(--primary-text-color);
}
.secondary-text{
    color:var(--secondary-text-color);
}
.footer-dark{
    background-color: var(--dark-footer-color);
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100% inherit sans-serif;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button:focus {
  outline: 0;
}

:focus {
  outline: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

/* font*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Poppins:wght@400;700&display=swap');

/* @font-face {
  font-family: Ruberoid-Regular;
  src: url("../fonts/Ruberoid-Regular.otf") format("opentype");
} */
@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: Ruberoid-SemiBold;
  src: url("../fonts/Ruberoid-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: Ruberoid-Bold;
  src: url("../fonts/Ruberoid-Bold.otf") format("opentype");
}
/* variables*/
body {
  font-family: Poppins,sans-serif;
  /* background-color: #f5f7fa; */
}

.wrapper_ah {
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  background-repeat: no-repeat;
  background-size: 100% 103%;
  height: 850px;
}
.header .navbar{
    cursor: pointer;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
header .navbar-brand {
  font-size: 36px;
}
header .navbar-brand img {
  height: 46px;
  width: auto;
}
@media (max-width: 600px) {
  header .navbar-brand img {
    height: 38px;
  }
}
@media (min-width: 992px) {
  header .navbar-brand img {
    height: 55px;
  }
}
@media (min-width: 1600px) {
  header .navbar-brand img {
    height: 60px;
  }
}
header .navbar-nav {
  border: 1px solid #fff;
}
.bg-primary-btn{
    background:var(--primary-bg-color);
    color:#fff;
}
header .navbar-nav .nav-link {
  position: relative;
  color: var(--primary-text-color);
  /* text-shadow: 0px 4px 3px rgb(0 0 0 / 30%), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1); */
}

header .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  height: 0.2em;
  bottom: 0px;
  border-radius: 5px;
  display: block;
  background-color: var(--primary-bg-color);
  transform: scaleX(0);
  transition: transform 300ms ease-in-out;
}
header .navbar-nav .nav-link:hover::before {
  width: 83%;
  transform: scaleX(1);
}
header .navbar-nav .profile-dropdown .nav-link:hover::before{
  width:0%;
}
.profile-dropdown .dropdown-toggle{
  display: flex;
}
.profile-dropdown .user-profile-img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
@media (max-width: 576px) {
  header .navbar-nav .nav-link:hover::before {
    width: 100%;
  }
}
header .navbar-nav .nav-link.active {
  position: relative;
  font-weight: 600;
  color:var(--primary-text-color);
  /* text-shadow: 0px 6px 3px rgb(0 0 0 / 30%), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1); */
}
header .navbar-nav .nav-link.active::before {
  position: absolute;
  width: 83%;
  height: 0.2em;
  bottom: 0px;
  background-color:var(--primary-bg-color);
  border-radius: 5px;
  transform: scaleX(1);
  transition: transform 300ms ease-in-out;
}

@media (max-width: 576px) {
  header .navbar-nav .nav-link.active::before {
    width: 100%;
    background-color: #fff;
  }
  .header_home{
    color: #fff !important;
  }
}
/* .scroll .navbar {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  box-shadow: 0px 0px 5px 3px rgb(0 0 0 / 38%);
  padding-top: 2px;
  padding-bottom: 2px;
}
.scroll .navbar .fixnav {
  transition: 0.4s;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.scroll .navbar .navbar-brand img {
  transition: 0.4s;
  height: 50px;
}
@media (max-width: 600px) {
  .scroll .navbar .navbar-brand img {
    height: 38px;
  }
} */
  
.profile-dropdown .dropdown-toggle::after{
    display: none;
}
.dropdown-menu.profile-dropdown-menu.show{
    top:calc(100% + 18px);
    width: 280px;
    left: auto;
    right: 0;
    padding: 0;
    border: 1px solid var(--border-color);
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.first-menu-list{
    background: var(--bg-custom);
    padding-top: 50px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 32px;
}
.profile-img{
    position: absolute;
    top: 31px;
    left: 20px;
}
@media (max-width: 576px) {
  .profile-img{
    top: 90px;
  }
}
.profile-img img{
    width:64px;
    height: 64px;
    border-radius: 50%;
}
.wallet_balance_text{
    border: 1px solid var(--border-color);
    position: absolute;
    top: 10px;
    right: 20px;
    padding: 5px;
    border-radius: 8px;
}
@media (max-width: 576px) {
  .wallet_balance_text{
  top: 67px;
  }
}
@media (min-width: 576px) {
  header .navbar-nav {
    border: none;
  }
}
header .nav-item .nav-link {
  font-size: 16px;
  font-weight: normal;
  line-height: 140%;
}
@media (max-width: 992px) {
  header .nav-item .nav-link {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  header .nav-item .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  header .signin {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
header .signin .nav-link {
  color: #191e3b;
  text-shadow: none;
}
@media (max-width: 576px) {
  header .signin .nav-link {
    text-shadow: 0px 4px 3px rgb(0 0 0 / 30%), 0px 8px 13px rgba(0, 0, 0, 0.1),
      0px 18px 23px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 576px) {
  header .signin {
    background-color: transparent !important;
  }
  header .signin .nav-link {
    color: #fff;
  }
}

@media (max-width: 576px) {
  header .navbar-collapse {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg-color);
    top: 0px;
    left: 0;
    z-index: 1;
  }
}
@media (max-width: 576px) {
  header .navbar-collapse .close {
    padding: 10px;
    font-size: 30px;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 20px;
  }
}

@media (max-width: 576px) {
  header .navbar-collapse .navbar-nav {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
}
/* .banner-wrapper{
    margin-top: 85px;
} */
.banner-wrapper .banner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 50%;
}
.banner-wrapper .banner-content h1{
  font-size: 56px;
}
@media (min-width: 1600px) {
  .banner-wrapper .banner-content h1{
    font-size: 100px;
    font-weight: 700 !important;
  }
}
.banner-wrapper .banner-content p{
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1px;
}
@media (min-width: 1600px) {
  .banner-wrapper .banner-content p{
    font-size: 34px;
  }
}

@media (max-width: 1200px) {
    .banner-wrapper .banner-content{
        width: 60%;
    }
}
@media (max-width: 992px) {
    .banner-wrapper .banner-content{
        width: 100%;
    }
}
/* @media (max-width: 1200px) {
  .banner-wrapper .banner-content{
      width: 60%;
  }
} */

@media (max-width: 767px) {
  .banner-wrapper .banner-content{
    width: 100%;
  }
  .banner-wrapper .landing-banner .main-banner-img{
    height: 350px;
  }
  .banner-wrapper .landing-banner h1{
    font-size: 28px;
  }
  .banner-wrapper .banner-content p{
    font-size: 14px;
  }
}

.start-btn {
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  line-height: 1.2;
}
button.start-btn:hover,button.start-btn:active{
    color: var(--primary-text-color);
}
.bg-stroke{
    background-color: var(--bg-custom);
}
.more-info .description{
    font-size: 20px;
    line-height: 1.4;
}
.more-info .card {
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.more-info .card:hover {
    -webkit-box-shadow: 0px 4px 16px 0px #D9E5FF;
    box-shadow: 0px 4px 16px 0px #D9E5FF;
}
.more-info .card .card-body .info_img{
    display: inline-block;
    border: 1px solid var(--border-color);
    background: var(--bg-custom);
    border-radius: 50%;
    height: 72px;
    width: 72px;
}
.more-info .card .card-body .info_img img{
    padding: 20px;
}

.more-info .card .card-body .card-title {
    color: var(--primary-text-color);
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 600;
}
.more-info .card .card-body .card-text {
    color: var(--secondary-text-color);
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 24px;
}
.payment-div {
  background-color: #ffffff;
  border-radius: 8px;
}
.payment-text {
  font-size: 25px;
  font-family: Ruberoid-SemiBold, sans-serif;
}
@media screen and (min-width: 992px){
  .payment-body{
      margin-top: 100px;
  }
}
.payment-radio-btn {
  justify-content: center;
  align-items: center;
}

.custom-input {
  height: 35px;
  width: 200px;
  border-radius: 8px !important;
  border: 1px solid #dee2e6 !important;
}
.custom-input:focus-visible {
  outline: none;
}
.custom-input::placeholder {
  color: rgba(25, 30, 59, 0.6);
  font-size: 13px;
}

.btn-check + .btn {
  margin-right: 10px;
  background-color: #ffffff;
  color: #191e3b;
  border: 0.1px solid #191e3b !important;
}
.btn-check:checked + .btn,
.btn-check + .btn:hover {
  color: #191e3b;
  background-color: #ffffff;
  border: 2px solid #008bb2 !important;
}
.amount-number {
  font-size: 23px;
  font-weight: 500;
}
.amount-aed {
  font-size: 15px;
}
.default-primary-button {
  color: #fff;
  border-radius: 10px;
  padding: 13px 0px 12px 0px;
  border: none;
  background: linear-gradient(94.49deg, #000046, #008bb2);
}

.default-primary-button:active {
  border-color: #008bb2;
}
.label-field {
  border-radius: 8px !important;
  border: 1px solid #dee2e6 !important;
}
.label-field::placeholder {
  color: rgba(25, 30, 59, 0.6);
  font-size: 13px;
}
.label-name {
  font-size: 12px;
  font-weight: 500;
}
.amount-input {
  font-weight: 700;
  font-size: 24px;
}

.user-img{
  background-color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
/* User profile or profile-menu styles and hover styles starts */
.profile_wrapper .profile-menu .btn:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  background-color: white;
}

.profile_wrapper .profile-menu .profile-menu-toggle img {
  width: 40px;
  height: 38px;
}
.profile_wrapper .profile-menu .profile-menu-toggle:after {
  display: none !important;
}
.dropdown-item {
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--secondary-text-color);
  letter-spacing: 0.6px;
}
.username {
  font-size: 18px;
  color: #191e3b;
  letter-spacing: 0.6px;
  display: block;
}
/* .dropdown-item:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
} */
.dropdown-item:active {
  background:var(--primary-bg-color);
  color: #fff;
}
/* .dropdown-item.active {
  background: linear-gradient(
    108deg,
    #000046 -0.79%,
    #008bb2 100%
  );
  color: #fff;
} */
.dropdown-divider {
  border: none;
  height: 2px;
  background: var(--border-color);
  margin: 0.3rem 0;
  opacity: 0.5;
  width: 90%;
  margin: auto;
}
/* .offcanvas-header{
  background: linear-gradient(
    108deg,
    #000046 -0.79%,
    #008bb2 100%
  );
} */
.wallet-address-wrapper{
    margin: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-custom);
    border-radius: 8px;
    padding: 10px;
}
.wallet-address {
  font-size: 14px !important;
  text-shadow:none !important;
  background: var(--bg-custom);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 10px !important;
  position: relative;
}
.wallet-address::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: green;
  border-radius: 50%;
  margin-left: 5px;
  position:absolute;
}

.wrapper_copyactive .fa-circle{
  font-size: 12px;
}

.wrapper_copyactive .fa-clone{
  color: var(--secondary-text-color);
  cursor: pointer;
}

/* User profile or dropdown styles and hover styles  */
.breadcrumb_wrapper .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb_wrapper .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb_wrapper a,
.breadcrumb_wrapper .active {
  font-size: 14px;
}
@media (max-width: 576px) {
  .breadcrumb_wrapper a,
  .breadcrumb_wrapper .active {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  .breadcrumb_wrapper a,
  .breadcrumb_wrapper .active {
    font-size: 18px;
  }
}
.breadcrumb_wrapper .active {
  color: #fff;
} 
.breadcrumb_wrapper .active::before {
  color: #fff;
}

.auth_main {
  height: 100%;
}
.auth_main .auth_wrapper {
  border-radius: 16px;
}
@media (min-width: 1400px) {
  .auth_main .auth_wrapper.p-xxl-5 {
    padding: 1.5rem !important;
  }
}
@media (min-width: 1600px) {
  .auth_main .auth_wrapper.p-xxl-5 {
    padding: 3rem !important;
  }
}

.auth_main .auth_wrapper .auth_header h1 {
  color: #191e3b;
  text-align: center;
  font-family: Ruberoid-Bold,sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  line-height: 1.4;
}
.line-wrapper{
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.auth_header .signUp, .already_signin .signUp, .already_signin .signIn{
  cursor: pointer;
}
@media (max-width: 576px) {
  .auth_main .auth_wrapper .auth_header h1 {
    font-size: 26px;
  }
}
.auth_main .auth_wrapper .auth_header p {
  color: rgba(25, 30, 59, 0.7);
  text-align: center;
  font-family: Ruberoid-Regular,sans-serif;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.5;
}
.auth_main .auth_wrapper .form_field label {
  color:var(--primary-text-color);
  font-family: Poppins,sans-serif;
  font-size: 16px;
  letter-spacing: 0.4px;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .auth_main .auth_wrapper .form_field label {
    font-size: 14px;
  }
}
.auth_main .auth_wrapper .form_field .form-control {
  font-size: 16px;
  font-weight: 600;
}
.auth_main .auth_wrapper .form_field ::-webkit-input-placeholder {
  font-size: 11.763px;
}
.auth_main .auth_wrapper .form_field ::-moz-placeholder {
  font-size: 11.763px;
}
.auth_main .auth_wrapper .form_field :-ms-input-placeholder {
  font-size: 11.763px;
}
.auth_main .auth_wrapper .form_field ::-ms-input-placeholder {
  font-size: 11.763px;
}
.auth_main .auth_wrapper .form_field ::placeholder {
  font-size: 11.763px;
}
.auth_main .auth_wrapper .form_field button {
  font-size: 18px;
  border-radius: 4px;
  padding: 0.6rem 0;
  letter-spacing: 1px;
  width: 80%;
  margin: auto;
}
.auth_main .auth_wrapper .forgot_password,
.auth_main .auth_wrapper .already_signin,
.auth_main .auth_wrapper .already_signin a {
  font-size: 14px;
}
.auth_main .auth_wrapper .forgot_password,
.auth_main .auth_wrapper .already_signin a {
  color: #008bb2;
}

.auth_main .auth_wrapper .profile_process {
  font-size: 14px;
  color: #191e3b;
  line-height: 1.2;
}
.w-15 {
  width: 30%;
}
.w-30 {
  width: 30%;
}
.w-80{
    width: 80%;
}
@media(max-width:992px){
    .w-80 {
        width:100%!important;
    }
}
.contact-input {
  border-radius: 0px 8px 8px 0px;
}
.form-control:focus {
  /* box-shadow: none !important;
  border-color: rgba(25, 30, 59, 0.3) !important; */
}
/* .iti--allow-dropdown input.iti__tel-input[type="tel"] {
  padding-left: 35px !important;
  color: #080808 !important;
} */
.iti__arrow {
  position: absolute !important;
  right: 10px !important;
}
.iti__country-name,
.iti__dial-code {
  font-size: 10px !important;
}
.select-box {
  position: relative;
}
.select-box input {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1.1rem;
  border: 0.1rem solid transparent;
  outline: none;
}
.select-box .selected-option {
  border-radius: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.1rem solid #dee2e6;
}
.select-box .selected-option strong {
  display: none;
}
.select-box .selected-option .flag_wrapper {
  padding: 0.575rem 0.75rem;
  border-right: 0.1rem solid #dee2e6;
}
.select-box .selected-option div {
  position: relative;
  text-align: center;
  cursor: pointer;
}
.select-box input[type="tel"] {
  border-radius: 0.5rem;
}
.select-box .options {
  position: absolute;
  top: 4rem;
  width: 96%;
  background-color: #fff;
  border-radius: 0.5rem;
  display: none;
}
.select-box .options::before {
  position: absolute;
  content: "";
  left: 0.9rem;
  top: -1.1rem;
  width: 0;
  height: 0;
  border: 0.6rem solid transparent;
  border-bottom-color: var(--primary);
}
.select-box input.search-box {
  background-color: var(--primary);
  color: #191e3b;
  padding: 0.5rem 1rem;
  font-size: 12px;
  letter-spacing: 0.8px;
  border: 1px solid #ddd;
  border-bottom: 0;
}
.select-box .options.active {
  display: block;
}
.select-box ol {
  list-style: none;
  max-height: 9.5rem;
  overflow: overlay;
  border: 0.1rem solid #dee2e6;
}
@media (max-width: 1400px) {
  .select-box ol {
    max-height: 5.5rem;
  }
}
.select-box ol::-webkit-scrollbar {
  width: 0.6rem;
}
.select-box ol::-webkit-scrollbar-thumb {
  width: 0.4rem;
  height: 3rem;
  background-color: #ccc;
  border-radius: 0.4rem;
}
.select-box ol li {
  padding: 0.5rem 1rem;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}
.select-box ol li .country-name {
  margin-left: 0.4rem;
}
.select-box ol li:hover {
  background-color: #eee;
}
.select-box ol li.hide {
  display: none;
}
.select-box ol li:not(:last-child) {
  border-bottom: 0.1rem solid #eee;
}
.profile_iconify {
  font-size: 12px;
  width: 129px;
}

/* .wrapper_page {
  background: linear-gradient(
    108deg,
    #000046 -0.79%,
    #008bb2 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 800px;
} */
/* @media (max-width: 576px) {
  .wrapper_page {
    height: 600px;
  }
} */
/* .wrapper_page p{
  font-family: Ruberoid-Regular, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 111.42%;
  letter-spacing: 2px;
  text-shadow: 0px 4px 3px rgb(0 0 0 / 30%), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
  margin-top: 70px;
} */

.services-breadcrumb span{
    width:20px;
}
.services-breadcrumb span:after {
    position: absolute;
    content: '';
    top: 12px;
    margin-left: 5px;
    height: 10px;
    width: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
@media (max-width: 576px) {
  .services-breadcrumb span:after {
    top: 5px;
    margin-left: 3px;
  }
}

.services-subbanner p {
  font-family: Ruberoid-Regular, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  /* text-shadow: 0px 4px 3px rgb(0 0 0 / 30%), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1); */
  margin-top: 20px;
  padding: 0 100px;
}
/* @media (max-width: 576px) {
  .wrapper_page p, .services-subbanner p {
    font-size: 18px;
  }
} */
@media (max-width: 767px) {
   .services-subbanner p {
    padding: 0 10px;
  }
}
/* .wrapper_page h1{
  text-shadow: 0px 4px 3px rgb(0 0 0 / 30%), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);
  font-family: Ruberoid-Bold, sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 110px;
} */
/* @media (min-width: 1800px) {
  .wrapper_page h1, .services-subbanner h1 {
    font-size: 126px;
    line-height: 132px;
  }
} */
.services-subbanner h1 {
  font-size: 54px;
  line-height: 100%;
  padding-top: 60px;
  font-weight: 500;
}

/* @media (max-width: 992px) {
  .wrapper_page h1, .services-subbanner h1 {
    font-size: 70px;
    line-height: 90px;
  }
} */
@media (max-width: 576px) {
  /* .wrapper_page h1, .services-subbanner h1 {
    font-size: 38px;
    line-height: 50px;
  } */
  .services-subbanner h1{
    padding-top: 100px;
  }
}
/* .wrapper_page .banner_section {
  height: 89%;
} */

/* .more_info {
  position: relative;
  top: -110px;
} */
/* .more_info .card {
  border-radius: 15px;
  border: 1px solid rgba(194, 194, 194, 0.2);
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
  transition: all 0.6s ease;
} */
/* .more_info .card:hover {
  -webkit-box-shadow: 1px 1px 9px 2px rgba(72, 67, 67, 0.4392156863),
    1px -1px 8px 1px rgba(0, 0, 0, 0.2784313725);
  box-shadow: 1px 1px 9px 2px rgba(72, 67, 67, 0.4392156863),
    1px -1px 8px 1px rgba(0, 0, 0, 0.2784313725);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
} */

.img-56{
  width: 56px !important;
  height: 56px !important;
}

.sidefilter_wrapper .rightside_bar .form-select:focus{
  box-shadow: none !important;
}

/* .more_info .card .info_arrow img {
  width: 55px;
  height: auto;
} */
@media (min-width: 1800px) {
  .more_info .card .info_arrow img {
    width: 75px;
  }
}
.more_info .card .card-body .info_img {
  height: 100px;
}
@media (min-width: 1800px) {
  .more_info .card .card-body .info_img {
    height: 144px;
  }
}
.more_info .card .card-body .info_img img {
  width: 70px;
  height: auto;
  margin: 1rem 0;
}
@media (min-width: 1600px) {
  .more_info .card .card-body .info_img img {
    width: 100px;
  }
}
/* .more_info .card .card-body .card-title {
  color: #191e3b;
  font-family: Ruberoid-SemiBold, sans-serif;
  font-size: 19.5px;
  font-weight: 500;
} */
@media (min-width: 1800px) {
  .more_info .card .card-body .card-title {
    font-size: 30px;
  }
}
@media (max-width: 1200px) {
  .more_info .card .card-body .card-title {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .more_info .card .card-body .card-title {
    height: 48px;
  }
}
@media (max-width: 576px) {
  .more_info .card .card-body .card-title {
    height: auto;
  }
}
/* .more_info .card .card-body .card-title span {
  font-family: Ruberoid-Bold, sans-serif;
  font-weight: 700;
} */
/* .more_info .card .card-body .card-text {
  color: rgba(25, 30, 59, 0.7);
  font-family: Ruberoid-Regular, sans-serif;
  font-size: 16px;
  line-height: 26px;
} */
@media (max-width: 576px) {
  .more_info .card .card-body .card-text {
    height: auto;
  }
}
@media (min-width: 1800px) {
  .more_info .card .card-body .card-text {
    font-size: 16px;
    line-height: 28px;
  }
}

.services_wrapper .section_header h2 {
  color: var(--primary-text-color);
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 576px) {
  .services_wrapper .section_header h2 {
    font-size: 24px;
    margin-top: 10px;
  }
}
.services_wrapper .tab_wrapper .nav-underline {
  border-bottom: 1px solid #d9d9d9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.services_wrapper .tab_wrapper .nav-link {
  color: rgba(25, 30, 59, 0.7);
  font-family: Ruberoid-SemiBold, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 140%;
  padding: 0.5rem 2rem;
}
@media (max-width: 576px) {
  .services_wrapper .tab_wrapper .nav-link {
    padding: 10px 0px;
  }
}
@media (min-width: 1800px) {
  .services_wrapper .tab_wrapper .nav-link {
    font-size: 18px;
  }
}
.services_wrapper .tab_wrapper .nav-link.active {
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* .services_wrapper .tab_wrapper .card {
  border-radius: 15px;
  transition: all 0.3s ease;
  -webkit-box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1);
} */
/* .services_wrapper .tab_wrapper .card:hover {
  -webkit-box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
} */
/* .services_wrapper .tab_wrapper .card .card-title {
  color: #191e3b;
  font-family: Ruberoid-Bold, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3em;
} */
@media (max-width: 1400px) {
  .services_wrapper .tab_wrapper .card .card-title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services_wrapper .tab_wrapper .card .card-title {
    height: 44px;
  }
}
@media (max-width: 576px) {
  .services_wrapper .tab_wrapper .card .card-title {
    height: auto;
  }
}
/* .services_wrapper .tab_wrapper .card .services_img {
  height: 69px;
} */
/* .services_wrapper .tab_wrapper .card .link {
  color: rgba(25, 30, 59, 0.7);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  text-decoration-line: underline;
} */
/* .services_wrapper .tab_wrapper .card p {
  color: rgba(25, 30, 59, 0.7);
  font-family: Ruberoid-Regular, sans-serif;
  font-size: 12px;
  font-weight: 450;
  line-height: 157%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3em;
} */
/* .services_wrapper .tab_wrapper .card .view_more a {
  font-family: Ruberoid-Bold;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--primary-text-color);
  border-radius: 8px;
  padding: 8px;
} */
.services_wrapper .tab_wrapper .card .view_more a {
    font-family: Poppins,sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    border: 1px solid var(--primary-text-color);
    border-radius: 8px;
    padding: 8px;
    color: var(--primary-text-color);
}
@media (min-width: 1800px) {
  .services_wrapper .tab_wrapper .card .view_more a {
    font-size: 14px;
  }
}
.services_wrapper .tab_wrapper .card .view_more a .fa {
  padding-left: 0.5rem;
}
.services_wrapper .tab_wrapper .card .view_more a:hover .fa {
  padding-left: 0.8rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.wrapper_innerpage {
  background: linear-gradient(
    108deg,
    #000046 -0.79%,
    #008bb2 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 400px;
}
@media (max-width: 576px) {
  .wrapper_innerpage {
    height: 300px;
  }
}
.wrapper_innerpage h1 {
  text-shadow: 0px 0px 14.179px rgba(0, 0, 0, 0.15);
  font-family: Ruberoid-Bold, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .wrapper_innerpage h1 {
    font-size: 56px;
  }
}
@media (max-width: 576px) {
  .wrapper_innerpage h1 {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 0;
  }
}
.wrapper_innerpage p {
  font-family: Ruberoid-Regular, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 2px;
  width: 70%;
}
@media (max-width: 576px) {
  .wrapper_innerpage p {
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    padding: 0 8px;
    margin-bottom: 5px;
  }
}
.wrapper_innerpage .banner_btn .btn {
  font-family: Ruberoid-SemiBold, sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.wrapper_innerpage .banner_btn .btn:hover {
  background-color: transparent;
}

.sidefilter_wrapper {
  margin: 80px 0;
}
.sidefilter_wrapper .filter_header h3 {
  color: #191e3b;
  font-family: Ruberoid-SemiBold, sans-serif;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .sidefilter_wrapper .filter_header h3 {
    font-size: 24px;
  }
}
.sidefilter_wrapper .leftside_bar .accordion-item {
  border-radius: 10px;
}
.sidefilter_wrapper .leftside_bar .accordion-item .accordion-button {
  border-radius: 10px;
  font-family: Ruberoid-SemiBold, sans-serif;
}
.sidefilter_wrapper .leftside_bar .accordion-body {
  background-color: #f5f7fa;
}
.sidefilter_wrapper .leftside_bar .accordion-body ul li {
  color: #191e3b;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  padding: 14px;
}
.sidefilter_wrapper .leftside_bar .accordion-body ul li:hover {
  background: #e4f3ff;
  border-radius: 10px;
}
@media (max-width: 1400px) {
  .sidefilter_wrapper .leftside_bar .accordion-body ul li {
    font-size: 14px;
  }
}
.sidefilter_wrapper .rightside_bar .form-select {
  font-size: 14px;
  padding-left: 2.25rem;
}
.sidefilter_wrapper .rightside_bar .form-select option {
  padding: 3px 5px;
}
.sidefilter_wrapper .rightside_bar .wrapper_views {
  position: relative;
}
.sidefilter_wrapper .rightside_bar .wrapper_views .fa-angle-down {
  display: none;
}
.sidefilter_wrapper .rightside_bar .wrapper_views span {
  position: absolute;
  top: 11px;
  left: 13px;
  font-size: 14px;
}

.sidefilter_wrapper .rightside_bar .category_cards .card{
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1);
}

.sidefilter_wrapper .rightside_bar .category_cards .card:hover{
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.sidefilter_wrapper .rightside_bar .form-select{
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1);
}

.sidefilter_wrapper .rightside_bar .form-select:focus{
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1) !important;
}

.sidefilter_wrapper .rightside_bar .category_cards .card .card-body {
  padding: 1.9rem;
}
@media (min-width: 768px) {
  .sidefilter_wrapper .rightside_bar .category_cards .card .card-body {
    padding: 1.9rem;
  }
}
@media (max-width: 576px) {
  .sidefilter_wrapper
    .rightside_bar
    .category_cards
    .card
    .card-body
    .text_wrapper {
    margin: 1rem 0;
  }
}
.sidefilter_wrapper .rightside_bar .category_cards .card .card-body img {
  height: 50px;
  width: auto;
}
.sidefilter_wrapper .rightside_bar .category_cards .card .card-title {
  color: #191e3b;
  font-family: Ruberoid-SemiBold, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}
@media (max-width: 1400px) {
  .sidefilter_wrapper .rightside_bar .category_cards .card .card-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .sidefilter_wrapper .rightside_bar .category_cards .card .card-title {
    font-size: 16px;
  }
}
.sidefilter_wrapper .rightside_bar .category_cards .card .list_cardtitle {
  font-size: 18px;
}
@media (min-width: 1800px) {
  .sidefilter_wrapper .rightside_bar .category_cards .card .list_cardtitle {
    font-size: 18px;
  }
}
.sidefilter_wrapper .rightside_bar .category_cards .card .card-text {
  color: rgba(25, 30, 59, 0.7);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 1400px) {
  .sidefilter_wrapper .rightside_bar .category_cards .card .card-text {
    font-size: 12px;
  }
}
.radio-group .btn {
  height: 40px;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 100%;
  padding: 0.5rem 0rem !important;
}
.sidefilter_wrapper .rightside_bar .category_cards .card .btn,
.btn-primary {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: var(--primary-bg-color);
  border: 0px;
  padding: 1rem 4rem;
  margin-top: 20px;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 8px;
  line-height: 22px;
}

@media (max-width: 576px) {
  .sidefilter_wrapper .rightside_bar .category_cards .card .btn, .btn-primary {
    padding: 1rem 3rem;
  }
}

.btn-primary:disabled{
    background: var(--primary-bg-color);
}
.cancel-btn {
    padding: 1rem 4rem;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    line-height: 22px;
    border: 1px solid var(--primary-bg-color);
}
.btn-primary:hover{
  background: var(--primary-bg-color);
}

.details_card .send-for-verification-btn, .details_card .pay-for-service-btn{
  padding: 0.5rem 1rem;
}
@media (max-width: 1200px) {
  .details_card .send-for-verification-btn, .details_card .pay-for-service-btn {
    font-size: 12px;
  }
}
@media (max-width: 390px) {
  .details_card .send-for-verification-btn, .details_card .pay-for-service-btn {
    padding: 0.5rem;
  }
}
.service_wrapper {
  margin: 100px 0 60px;
}
@media (max-width: 576px) {
  .service_wrapper {
    margin: 40px 0 20px;
  }
}
.service_wrapper .card.details_card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-custom);
  }
.service_wrapper .details_card {
  padding: 24px 16px;
  margin-bottom: 30px;
  border-radius: 20px;
}
.service_wrapper .details_card-btn {
  padding: 30px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .service_wrapper .details_card {
    padding: 20px 20px 0 20px;
  }
}
.service_wrapper .required-doc input{
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
}

.service_wrapper .required-doc .doc-label{
  min-width: 130px;
}
@media (max-width: 576px) {
 
  .service_wrapper .required-doc .doc-label{
    min-width: 65px;
  }
}

.service_wrapper .details_card h2 {
  color: var(--primary-text-color);
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.64px;
  margin-bottom: 10px;
}
@media (max-width: 1400px) {
  .service_wrapper .details_card h2 {
    font-size: 24px;
  }
}
.service_wrapper .details_card p {
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 22px;
}

.service_wrapper .details_card .details .details_item {
  margin-bottom: 20px;
}
.service_wrapper .details_card .details .details_item p {
  color: var(--primary-text-color);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0.28px;
  margin-bottom: 8px;
}
@media (max-width: 1400px) {
  .service_wrapper .details_card .details .details_item p {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 1200px) {
  .service_wrapper .details_card .details .details_item p {
    height: 38px;
  }
}
@media (max-width: 992px) {
  .service_wrapper .details_card .details .details_item p {
    height: auto;
  }
}
.service_wrapper .details_card .details .details_item h3 {
  color: var(--primary-text-color);
  font-family: Poppins, sans-serif;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.38px;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  .service_wrapper .details_card .details .details_item h3 {
    font-size: 12px;
  }
}
.service_wrapper .details_card .details .details_item h3 a {
  color: var(--primary-text-color);
}
.service_wrapper .details_card .details ul {
  padding-bottom: 40px;
}
@media (max-width: 576px) {
  .service_wrapper .details_card .details ul {
    padding-bottom: 20px;
  }
}
.service_wrapper .details_card .details ul li {
  font-size: 18px;
  line-height: 1.3;
  font-family: Poppins,sans-serif;
}
@media (max-width: 1400px) {
  .service_wrapper .details_card .details ul li {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .service_wrapper .details_card .details ul li {
    font-size: 12px;
  }
}
.service_wrapper .details_card .details ul li img {
  height: 25px;
  width: auto;
}
@media (max-width: 576px) {
  .service_wrapper .details_card .details ul li img {
    height: 20px;
  }
}
.service_wrapper .details_card .details button {
  font-family: Poppins,sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  margin-bottom: 40px;
  padding: 1rem 0;
}
@media (max-width: 1400px) {
  .service_wrapper .details_card .details button {
    padding: 0.5rem 0;
  }
}

.terms-and-conditions p{
  margin-bottom: 10px;
}
@media (min-width: 1400px) {
  .terms-and-conditions p{
    margin-bottom: 15px;
  }
}

.modal-content.terms-condition .form-check-input{
    border:1px solid #191e3b;
    border-radius:0;
}
.modal-content.terms-condition .form-check-input:checked {
    background-color:#191e3b;
}
.modal-content.terms-condition .form-check-label a{
    color: #191e3b;
    font-weight:600;
}

/*===== Vertical Timeline =====*/
.conference-timeline-content{
  overflow: hidden;
}
.timeline {
  position: relative;
}
.timeline .conference-center-line {
  position: absolute;
  width: 3px;
  height: 71%;
  top: 50px;
  background: #008bb2;
  margin-left: 0;
  left: 50px;
}
.timeline .timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 10px 0;
}
@media (max-width: 576px) {
  .timeline .timeline-article {
    margin: 10px 0 20px;
  }
}
.timeline .timeline-article .content-right-container {
  max-width: 100%;
  width: auto;
  float: none;
  margin-right: 50px;
  min-height: 53px;
}
.timeline .timeline-article .content-right {
  position: relative;
  width: auto;
  padding: 0 25px;
}
@media (max-width: 992px) {
  .timeline .timeline-article .content-right {
    padding: 0;
    line-height: 1.4;
  }
}
.timeline .timeline-article p {
  color: var(--secondary-text-color);
  font-size: 12px;
  letter-spacing: 0.268px;
  position: relative;
}
.timeline .timeline-article h4 {
  color: var(--primary-text-color);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .timeline .timeline-article h4 {
    font-size: 12px;
  }
}
.timeline .timeline-article .meta-date {
  position: relative;
  top: -50px;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 100%;
  background: var(--bg-custom);
  border:1px solid var(--border-color);
  left: auto;
  right:-85%
}
.timeline .timeline-article .meta-date .date {
  font-size: 15px;
  display: block;
  text-align: center;
  font-weight: 900;
  z-index: 1;
}
.timeline .timeline-article .meta-date .procedure-connecting-line{
  left: 50%;
  position: absolute;
  bottom: 100%;
  border: 1px dashed var(--secondary-text-color);
  height: 62px;
  margin: auto;
}
.timeline .timeline-article:first-child .meta-date .procedure-connecting-line{
  display: none;
}
@media (max-width: 992px) {
  .timeline .timeline-article .meta-date {
    width: 30px;
    height: 30px;
    left: 0px;
  }
  .timeline .timeline-article .meta-date .date {
    font-size: 12px;
  }
  .timeline .timeline-article .content-right-container {
    margin-left:50px;
    margin-right: 0;
  } 
}
@media (max-width: 576px) {
  .timeline .timeline-article .meta-date {
      top: -50px;
  }
  .timeline .timeline-article .meta-date .procedure-connecting-line {
      height:72px;
  }
}



/*===== // End Vertical Timeline =====*/
/* ======= customer journey ========= */

/* services time line */
.journey-timeline-wrapper:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: var(--primary-bg-color);
    border-radius: 50%;
    left: calc(50% - 15px);
    top: -18px;
}
.journey-timeline-wrapper:after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: var(--primary-bg-color);
    border-radius: 50%;
    left: calc(50% - 15px);
}
@media(max-width:767.98px){
  .journey-timeline-wrapper:before {
    left: 11px;
    top: -9px;
  }
  .journey-timeline-wrapper:after {
    left: 3%;
  }
}
/* @media(max-width:1200px){
    .journey-timeline-wrapper:before,
    .journey-timeline-wrapper:after{
        margin-left: -2px;
    }
} */
/* @media(max-width:767.98px){
  .journey-timeline-wrapper:after {
    left: 3%;
  }
} */
.journey-timeline {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 0;
  }

  @media(max-width:576px){
    .journey-timeline {
    left: -72px;
    }
  }
  
  .journey-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    border: 1px dashed var(--secondary-text-color);
  }
  
  .journey-timeline .container-content {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    width: 50%;
  }
  
  /* .journey-timeline .container-content.left {
    left: 0;
  }
  
  .journey-timeline .container-content.right {
    left: 50%;
  } */
  .journey-timeline .container-content:nth-child(odd){
    left:0%;
 }
 .journey-timeline .container-content:nth-child(even){
    left:50%;
 }
  
  .journey-timeline .container-content::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    top: calc(50% - 15px);
    right: -18px;
    background: var(--bg-custom);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    z-index: 1;
  }
  
  .journey-timeline .container-content:nth-child(even)::after {
    left: -18px;
}
/* .journey-timeline .container-content:nth-child(even)::before {
    left: -8px;
} */
  
  .journey-timeline .container-content .date {
    position: absolute;
    display: inline-block;
    top: calc(50% - 10px);
    text-align: center;
    z-index: 2;
  }
  
  .journey-timeline .container-content:nth-child(odd) .date {
    right: -12px;
  }

  /* @media(max-width:576px){
    .journey-timeline .container-content:nth-child(odd) .date {
      right: 197px;
    }
  } */
  /* @media (max-width: 576px) {
      .journey-timeline .container-content:nth-child(odd) .date {
          right: calc(100% - 102px);
          left: auto;
      }
  } */
  
  .journey-timeline .container-content:nth-child(even) .date {
    left: -12px;
  }
  
  .journey-timeline .container-content .content {
    padding: 16px;
    background:var(--bg-custom);
    border: 1px solid var(--border-color);
    position: relative;
    border-radius: 8px;
    word-wrap: break-word;
  }
  
  .journey-timeline .container-content .content h2 {
    font-size: 14px;
    color: var(--primary-text-color);
  }
  
  .journey-timeline .container-content .content p {
    font-size: 14px;
    line-height: 22px;
    color: var(--primary-text-color);
  }
  
  @media (max-width: 767.98px) {
    .journey-timeline::after {
      left: 90px;
    }
  
    .journey-timeline .container-content {
      width: 100%;
      padding-left: 120px;
      padding-right: 30px;
    }
  
    .journey-timeline .container-content {
      left: 0%!important;
    }
  
    .journey-timeline .container-content:after {
      left: 82px;
    }
  
    .journey-timeline .container-content::before {
      left: 100px;
    }
    .journey-timeline .container-content .date {
      right: auto;
      left: 15px;
    }
  }
  @media (max-width: 576px) {
    .journey-timeline .container-content:after {
      left: 73px;
    }
  }
.customer_journey_wrapper .customer-journey-main {
    position: relative;
}

/* ============ End Customer journey ===================== */

.footer_wrapper {
  /* background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%); */
  background: var(--primary-bg-color);
  /* position: absolute;
  width: 100%;
  bottom: 0; */
}
.footer_wrapper .footer_logo img {
  /* width: 140px; */
  height: auto;
}
/* .footer_wrapper .footer-links p {
  font-size: 14px;
  margin-bottom: 15px;
} */
.footer_wrapper .footer-links a:hover {
  text-decoration: underline !important;
}
/* .footer_wrapper .footer-social-links p {
  letter-spacing: 1px;
} */
/* .footer_wrapper .footer-social-links ul li {
  padding-left: 10px;
} */
.footer_wrapper .social-icons{
    background: #fff;
    border-radius: 50%;
    padding: 6px;
}
.footer_wrapper .copywrite-text{
    font-size: 12px;
}

.toggle_mode .checkbox {
  opacity: 0;
  position: absolute;
}
.toggle_mode .checkbox-label {
  background-color: #fff;
  width: 60px;
  height: 30px;
  border-radius: 50px;
  position: relative;
  padding: 5px 6px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.toggle_mode .checkbox-label .fa-sun-o,
.toggle_mode .checkbox-label .fa-moon-o {
  color: #191e3b;
  font-size: 20px;
}
.toggle_mode .checkbox-label .ball {
  background: #008bb2;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 5.5px;
  top: 2px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.toggle_mode .checkbox-label .ball::before {
  content: "";
  background: url(../images/lightsun.png);
  background-size: cover;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 5px;
  top: 4px;
}
.toggle_mode .checkbox:checked + .checkbox-label .ball {
  -webkit-transform: translateX(24px);
  transform: translateX(24px);
}
.toggle_mode .checkbox:checked + .checkbox-label .ball::before {
  content: "";
  background-size: cover;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 4px;
  top: 4px;
}
.img-div {
  height: 250px;
}

.slider-title {
  font-size: 30px;
  font-weight: 600;
}

.slider-text {
  font-size: 20px;
  font-weight: 500;
}

/* .step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
} */

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #B3B3B3;
  border: 2px solid #B3B3B3;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer; /* Added cursor pointer */
}
.step-circle.active {
  background-color: #fff;
  border: 2px solid #002F6B;
}
.step-circle.active + div .text-process {
  display: block;
}

.step-circle:not(.active) + div .text-process {
  display: none;
}
.step-circle img{
  filter: opacity(0.4) drop-shadow(0 0 0 #EBEBEB);
}
.step-circle.active img{
  filter: none;
}
.steps_section{
  margin: 50px 0;
}
.loader-steps {
  display: inline-block;
  /* width: 100px;
  height: 50px; */
  /* border: 3px solid #000046;
  border-radius: 50%;
  border-top-color: #ffc107; */
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}
.margin-top-100{
  margin-top: 100px;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #007bff;
  z-index: -1;
}

.multi-step-form{
overflow-x: hidden;
overflow-y: hidden;
}
.multi-step-form h1{
  color: #000;
  font-size: 30px;
  font-weight: 700;
}

.step-buttons-section{
  margin: 55px 0 30px;
}



.next-step, .prev-step{
border-radius: 6px;
border: 1px solid #003972;
background: #FFF;
padding: 10px 50px;
text-transform: uppercase;
font-weight: 600;
color: #003972;
}
@media (max-width: 576px) {
  .next-step, .prev-step{
    padding: 10px 40px;
    font-size: 14px;
  }
}
.next-step:hover{
  background: #003972;
  color: #fff;
}

.btn-secondary{
  color: var(--bs-btn-disabled-border-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-color);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.copytext{
  padding: 11px 13px;
  cursor: pointer;
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.copytext .fa{
  color: #fff;
}

.textcopy{
  left: 128px;
}
.textcopy .fa{
  color: #008bb2;
}

[autocomplete="one-time-code"] {
  --magic-number: 45px;
  
  background-image: linear-gradient(#fff, #fff),
  url("https://assets.codepen.io/3/rounded-rectangle.svg");
  background-size: var(--magic-number);
  background-position-x: right, left;
  background-repeat: no-repeat, repeat-x;
  border: 0;
  height: var(--magic-number);
  width: calc(7 * var(--magic-number));
  font-size: calc(0.6 * var(--magic-number));
  letter-spacing: calc(0.599 * var(--magic-number));
  padding-inline-start: calc(0.3 * var(--magic-number));
  box-sizing: border-box;
  overflow: hidden;
  transform: translatex(calc(0.5 * var(--magic-number)));
  }
  [autocomplete="one-time-code"]:focus {
  outline: none;
  background-image: linear-gradient(#fff, #fff),
  url("https://assets.codepen.io/729148/blue-rounded-rectangle.svg");
  background-size: var(--magic-number);
  background-position-x: right, left;
  background-repeat: no-repeat, repeat-x;
  }
  .wrapper_opt::after {
    width: 45px;
    height: 45px;
    content: "";
    background-color: #fff;
    position: absolute;
    right: -6px;
    top: 0;
  }

  @media (max-width: 576px) {
    [autocomplete="one-time-code"] {
      --magic-number: 30px;
    }
    .wrapper_opt::after {
      right: 10px;
    }
  }
  .digit-group{
    padding: 0 4rem;
  }

  @media (max-width: 1280px) {
    .digit-group{
      padding: 0 2rem;
    }
  }

  @media (max-width: 992px) {
    .digit-group{
      padding: 0;
    }
  }

  /* @media (max-width: 800px) {
    .digit-group{
      padding: 0;
    }
  } */
 
  /* @media (min-width: 1600px) {
    .digit-group{
      padding: 0 12rem;
    }
  }

  @media (min-width: 1800px) {
    .digit-group{
      padding: 0 16.5rem;
    }
  } */

  /* .wrapper_steppers{
    padding: 0 2.5rem;
  }
  @media (max-width: 1280px) {
    .wrapper_steppers{
      padding: 0;
    }
  }

  @media (min-width: 1400px) {
    .wrapper_steppers{
      padding: 0 4.5rem;
    }
  } */

  .digit-group .form-control{
    border-color:var(--primary-bg-color);
    height: 50px;
  }
  @media (min-width: 1400px) {
    .digit-group .form-control{
      height: 60px;
    }
  }
  @media (max-width: 992px) {
    .digit-group .form-control{
      height: 40px;
    }
  }
  .digit-group .form-control:focus{
    border-color:#000 !important;
  }

  .wrapper_instruction_clipcopy{
    margin: 0 7.5rem;
  }

 
  @media (max-width: 1280px) {
    .wrapper_instruction_clipcopy{
      margin: 0 5.5rem;
    }
  }
  @media (max-width: 1024px) {
    .wrapper_instruction_clipcopy{
      margin: 0 1rem;
    }
  }

  @media (min-width: 1400px) {
    .wrapper_instruction_clipcopy{
      margin: 0 11rem;
    }
  }
  @media (min-width: 1600px) {
    .wrapper_instruction_clipcopy{
      margin: 0 13.5rem;
    }
  }
  @media (min-width: 1800px) {
    .wrapper_instruction_clipcopy{
      margin: 0 19.5rem;
    }
  }

  .wrapper_list_instructions{
    padding: 16px 0 16px 16px;
    border-radius: 4px;
    background: #F1F1F1;
    
  }
  .list_instructions{
    height: 200px;
    overflow-y: scroll;
   padding-right: 10px;
  }
  .list_instructions h2{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .list_instructions li{
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .list_instructions li span{
    font-weight: 600;
    font-size: 13px;
  }

  
  .wrapper_copyblock dl{
    list-style-type: decimal;
  }
  .wrapper_copyblock dl li{
    background: #E8E8E8;
    color: #000;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 5px 5px 0 0;
    display: inline-block;
    font-size: 14px;
  }
  @media (max-width: 430px) {
    .wrapper_copyblock dl li{
      padding: 8px 8px;
    }
  }
 
  @media (max-width: 414px) {
    .wrapper_copyblock dl li{
      padding: 8px 6px;
    }
  }
  
  @media (max-width: 390px) {
    .wrapper_copyblock dl li{
      padding: 8px 5px;
    }
  }

  @media (max-width: 375px) {
    .wrapper_copyblock dl li{
      padding: 8px 8px;
    }
  }
  @media (max-width: 360px) {
    .wrapper_copyblock dl li{
      padding: 8px 5px;
    }
  }
  @media (min-width: 1600px) {
    .wrapper_copyblock dl li{
      padding: 8px 11px;
    }
  }
  .wrapper_cliplist{
    padding: 10px 14px 14px;
    border-radius: 4px;
    border: 1px solid #003972;
  }
  .wrapper_copyblock button{
    font-size: 14px;
    color: #222121;
    background: #fff;
  }
  .wrapper_copyblock button:focus:not(:focus-visible), .wrapper_copyblock button:hover {
    color: #000d50;
  }

  .progress-bar{
    background-color: #002F6B;
  }

  .swal2-popup{
    align-items: center;
    padding-bottom: 40px;
    border-radius: 8px;
  }

  div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
    background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%) !important;
  }
  .iti__dropdown-content input{
    font-size: 14px;
  }

  .confirmbtn {
    margin: .3125em;
    transition: box-shadow .1s;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0);
    font-weight: 500;
    display: inline-block;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 24px;
}
.sweetsuccess{
  background: linear-gradient(91.37deg, #6818C7 1.57%, #5E77D3 98.04%);
  border: 1px solid #6818C7;
  &:hover{
  color: #6818C7;
  background: #fff !important;
  }
}

.sweetdanger{
  background: #d33 !important;
  border: 1px solid #d33 !important;
  &:hover{
     color: #d33 !important;
     background: #fff !important;
  }
}

.swal2-confirm{
    margin: .3125em;
    padding: .625em 1.1em;
    transition: box-shadow .1s;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0);
    font-weight: 500;
    display: inline-block;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    background: linear-gradient(91.37deg, #6818C7 1.57%, #5E77D3 98.04%);
    border: 1px solid #6818C7;
    margin-left: 6px;
    &:hover{
    color: #6818C7;
    background: #fff !important;
    }
}

.alert-success .close{  
    padding: 0px 10px;
    background: linear-gradient(91.37deg, #6818C7 1.57%, #5E77D3 98.04%);
    border: none;
    color: #fff;
    border-radius: 6px;  
}
.swal2-warning{
  position: relative;
  /* left: 42%; */
  margin-top: 25px;
  color: #d33;
}
.swal2-warning .swal2-icon-content{
  color: #d33;
  border: 2px solid #d33;
  border-radius: 50%;
  padding: 30px;
}
div:where(.swal2-container) .swal2-html-container{
  color: #000 !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus-visible {
  box-shadow: none !important;
}

.catcard_wrapper .text_wrapper .card-text{
  text-overflow: ellipsis;
  overflow: hidden;
  width: 340px;
  white-space: nowrap;
  min-height: 16px;
}
@media (max-width: 992px) {
  .catcard_wrapper .text_wrapper .card-text{
    width: 200px;
    min-height: auto;
  }
}
@media (max-width: 576px) {
  .catcard_wrapper .text_wrapper .card-text{
    width: 250px;
  }
}

.toggle-password .input-group-text{
cursor: pointer;
margin-top: 1.3px;
}
.password_wrapper .form-control.is-valid, .password_wrapper .was-validated .form-control:valid, .password_wrapper .form-control.is-invalid, .password_wrapper .was-validated .form-control:invalid{
  background-image: none;
}


.upload_wrapper label {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%233333334A' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.upload_wrapper .fa {
  color: #008bb2;
  font-size: 30px;
  padding: 0 15px;
}

.preview_wrapper img {
  width: 100px;
  height: 100px;
  padding-right: 10px;
  margin-top: 0.5rem;
  cursor: pointer;
}
.preview_wrapper span{
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 200px;
  white-space: nowrap;
  min-height: 16px;
}
.uploaded_link{
  color: #fff;
  border: 0;
  text-decoration: none;
  font-size: 12px !important;
  padding: 5px 10px !important;
}
.uploaded_link:hover{
  color: #fff;
}
.info-msg{
  font-size: 12px;
}
.preview_wrapper .delete_wrapper {
  position: relative;
}

.delete_wrapper:hover + .overlay_preview {
  display: none;
}

.preview_image_wrapper {
  position: relative;
}
.preview_image_wrapper .preview_image_delete {
  position: absolute;
  right: 11px;
  top: -9px;
}
.preview_image_wrapper .preview_image_delete .delete_button {
  padding: 2px 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}
.preview_image_wrapper img {
  border: 1px dotted #eee;
}

.wrapper_upload_img {
  float: left;
}
.file_name_display_wrapper{
  font-size: 14px;
  margin-top: 15px;
}
.file_name_display_wrapper a{
  color: #008bb2;
}
body.dark .color-black{
  color: black !important;
}
body.dark .modal-body p{
  color: black !important;
}

body.dark {
  background-color: #080808 !important;
}
body.dark th ,
body.dark td{
  background-color: #080808 !important;
  color: white !important;
}
/* body.dark .wrapper_page, */
body.dark .wrapper_innerpage,
body.dark .wrapper_ah {
  background-image: url(../images/frame-dark.png) !important;
}
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark p,
body.dark label,
body.dark .card-title,
body.dark .card-text,
body.dark .flag_wrapper .fa,
body.dark .transaction-nav-link {
  color: #fff !important;
}
body.dark #toast-message h4,
body.dark #toast-message p
{
  color:black !important;
}
body.dark .ball {
  background-color: #080808 !important;
}
body.dark .line-wrapper{
  color: white; 
}
body.dark .form_field .error{
  color: #e9b5b5 !important;
}

body.dark .tab_wrapper .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
}
body.dark .tab_wrapper .nav-link.active {
  color: #008bb2 !important;
}
body.dark .tab_wrapper .card {
  border: 0.8px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(45, 45, 45, 0.3);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
}
body.dark .tab_wrapper .card .link {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .accordion-body {
  background-color: #080808 !important;
}
body.dark .accordion-body li {
  color: #fff !important;
}
body.dark .accordion-body li:hover {
  background: rgba(70, 112, 196, 0.1) !important;
}
body.dark .accordion-header {
  background-color: #080808 !important;
}
body.dark .accordion-button {
  color: #fff !important;
  background: #1c1c1d !important;
}
body.dark .accordion-button::after {
  color: #fff !important;
}
body.dark .accordion-button:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
body.dark .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
body.dark .accordion-button.collapsed::after,
body.dark .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
body.dark .catcard_wrapper .card {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.1);
}
body.dark .form-control:focus {
  box-shadow: none !important;
  border-color: white !important;
}

body.dark .catcard_wrapper .card:hover{
  box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.2);
}
body.dark .wrapper_views .fa-angle-down {
  display: block !important;
  color: #fff;
  position: absolute;
  right: 15px;
  top: 10px;
}
body.dark .wrapper_views .fa {
  color: #fff;
}
body.dark .wrapper_views select {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
body.dark .wrapper_views select option {
  background: #1c1c1d !important;
}
body.dark .details_card {
  border: 0.8px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(45, 45, 45, 0.3);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
}
body.dark .details_card p {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .details_card .details_item p {
  color: rgba(255, 255, 255, 0.6) !important;
}
body.dark .details_card .details_item a {
  color: #fff !important;
}
body.dark .details_card li {
  color: #fff;
}
body.dark .content-right p {
  color: rgba(255, 255, 255, 0.6) !important;
}
body.dark .dropdown-menu-center {
  background: rgba(45, 45, 45, 0.3);
  border: 1px solid #fff;
}
body.dark .dropdown-item {
  color: #fff;
}
body.dark .dropdown-item:hover,
body.dark .dropdown-item.active {
  background: #080808;
}
body.dark .auth_wrapper {
  background-color: rgba(45, 45, 45, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
body.dark .steps_section .auth_wrapper{
  background-color: rgb(8 8 8) !important;
  border: none;
}
body.dark .wrapper_cliplist{
  border: 1px solid #fff;
}

body.dark .auth_wrapper input ,
body.dark .input-group-text {
  background: transparent;
  color: #fff;
}
body.dark .auth_wrapper input::placeholder {
  color: #fff;
}
body.dark .auth_wrapper input:focus {
  box-shadow: 0 0 5px 0.25rem rgb(255 255 255 / 20%);
}
body.dark .auth_wrapper input::-ms-input-placeholder {
  color: #fff;
}
body.dark .auth_wrapper .search-box {
  color: #080808;
  border: none;
}
body.dark .auth_wrapper .search-box::placeholder {
  color: #080808;
}
body.dark .auth_wrapper .select-box .options::before {
  color: #fff;
}

body.dark .footer_wrapper {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
body.dark .amount-number,
body.dark .amount-aed,
body.dark .slider-title{
  color: #080808 !important;
}
body.dark .slider-text{
  color: rgba(33, 37, 41, 0.75) !important;
}
body.dark .username,
body.dark .dropdown-item,
body.dark .wallet-address {
  color: #191e3b !important;
}
body.dark .offcanvas-body ul li:hover .dropdown-item{
color: #fff !important;
padding-left: 8px;
}

body.dark .iti__dropdown-content input{
  color: #080808;
}

body.dark .digit-group .form-control:focus{
  border-color: #7A7979 !important;
}

body.dark .details_card .send-for-verification-btn, body.dark .details_card .pay-for-service-btn, body.dark .uploaded_link{
  background: #008bb2 !important;
}

@media (max-width: 576px) {
  body.dark header .navbar-collapse {
    background: #080808;
  }
}

body.dark.scroll .navbar {
  background: #080808;
  box-shadow: 0px 0px 4px 3px rgb(255 255 255 / 12%);
}

body.dark .auth_main .auth_wrapper .forgot_password,
body.dark .auth_main .auth_wrapper .already_signin a,
body.dark .auth_wrapper .profile_process,
body.dark .profile_iconify {
  color: #fff;
}
body.dark .username {
  color: #fff;
}

body.dark .customer-journey-wrapper .tab-box .accordion-body {
  color: #fff;
}

body.dark .mdi-eye-outline::before, body.dark .mdi-eye-off-outline::before{
  color: #fff;
}

body.dark .auth_wrapper input:-webkit-autofill,
body.dark .auth_wrapper input:-webkit-autofill:hover, 
body.dark .auth_wrapper input:-webkit-autofill:focus, 
body.dark .auth_wrapper input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #3b3353 inset !important;
    -webkit-text-fill-color: #fff !important;
}

body.dark .list_instructions h2{
  color: #000 !important;
}

body.dark .wrapper_copyblock button{
  background: rgb(8 8 8);
  color: #fff;
}

body.dark .wrapper_copyblock button:focus:not(:focus-visible), body.dark .wrapper_copyblock button:hover {
  color: #ffffff96;
}

body.dark .services_wrapper .tab_wrapper .card .view_more a, .services_wrapper .tab_wrapper .nav-link.active{
  background: #008bb2;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.dark .upload_wrapper label{
  border: .5px dotted rgba(255, 255, 255, 0.2);
}
body.dark  .modalinfotext_darkmode{
  color: #000 !important;
}

.footer-links{
  padding-left: 20%;
}

.footer-social-links {
  padding-left: 14%;
}

@media (max-width: 991px) {
  .footer-links{
    padding-left: 0;
  }
  .footer-social-links {
    padding-left: 10px;
  }
}

@media (min-width: 1600px) {
  .footer-social-links {
    padding-left: 15%;
  }
}

@media screen and (min-width: 250px) and (max-width: 768px) {
  .footer_wrapper .footer-social-links ul li {
    padding-right: 10px;
    padding-left: 0px;
  }

  .footer_wrapper .footer-social-links ul li a img {
    width: 24px;
  }
}
@media screen and (max-width: 425px) {
  .w-15 {
    width: 40%;
  }
  .iti--allow-dropdown input.iti__tel-input[type="tel"] {
    padding-left: 25px !important;
  }
}
@media screen and (max-width: 1200px) and (min-width: 992px) {
  .w-15 {
    width: 40%;
  }
}


/* .wrapper_banner{
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  background-repeat: no-repeat;
  background-size: 100% 103%;
  height: 300px;
} */
.services-subbanner{
  background: linear-gradient(108deg, #1d2157 -0.79%, #1d2058 100%);
  background-image: url(./../images/landing-banner.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-breadcrumb{
  position: absolute;
  /* left: 5%; */
  top: 10%;
}
/* .services-subbanner .banner_section {
  height: 85%;
} */

@media screen and (min-width: 250px) and (max-width: 768px) {
	.services-subbanner{
    overflow-x: hidden;
    padding: 10px 20px;
	}
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

.text-oriented{
  writing-mode: vertical-lr;
  text-align: center;
  transform: scale(-1);
  font-weight: 600;
  letter-spacing: 1px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
.identity-card{
  
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif !important; 
}

.edit-icon{
  filter: brightness(0) invert(1);
}

.img-100{
  width: 100px;
  height: 100px;
}

.font-large{
  font-size: 2.5rem;
  font-weight: bold;
}
.flip-card {  
  background-color: transparent;
  width: 300px;
  height: 450px;
}
#flip-card,
#flip-card1 {
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -o-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.do-flip {
  -o-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
#flip-card-btn-turn-to-back, #flip-card-btn-turn-to-front,
#flip-card-btn-turn-to-back1, #flip-card-btn-turn-to-front1 {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 30px;
  background: white;
  cursor: pointer;
  visibility: hidden;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: .7em;
  padding: 0px 5px;
  color: grey;
  border: 1px solid grey;
}
#flip-card .flip-card-front, #flip-card .flip-card-back
#flip-card1 .flip-card-front, #flip-card1 .flip-card-back{
  width: 100%;
  height: 100%;
  position: absolute;
  -o-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 2;
  -webkit-box-shadow: 5px 6px 32px 2px rgba(133,133,133,0.71);
  -moz-box-shadow: 5px 6px 32px 2px rgba(133,133,133,0.71);
  box-shadow: 5px 6px 32px 2px rgba(133,133,133,0.71);
}
#flip-card .flip-card-back,
#flip-card1 .flip-card-back {
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
#flip-card .flip-card-front p, #flip-card .flip-card-back p,
#flip-card1 .flip-card-front p, #flip-card1 .flip-card-back p {
  color: grey;
  display: block;
  position: absolute;
  top: 40%;
  width: 100%;
}

@media (max-width: 400px) {
  .flip-card {
    width: 250px;
  }
}
@media (min-width: 1200px) {
  .flip-card {
    width: 350px;
  }
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.avatar-upload {
  position: relative;
  max-width: 80px;
  /* margin: 50px 0px; */
  margin: 10px 0;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 0;
  z-index: 1;
  top: 10px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:after {
  content: "\f040";
  font-family: 'FontAwesome',sans-serif;
  color: #757575;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  font-size: 10px;
  text-align: center;
  margin: auto;
}
.avatar-upload .avatar-preview {
  /* width: 150px;
  height: 150px; */
  width:80px;
  height: 80px;
  position: relative;
  border-radius: 100%;
  /* border: 6px solid #F8F8F8; */
  border:none;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.font-medium{
  font-weight: 600;
}
body.dark .identity-title{
/* color:#000 !important;  */
}

div.g-recaptcha .rc-anchor-light {
  color: white !important;
}

.font-13{
  font-size: 13px !important;
}
.f-25{
  font-size: 25px;
}

.min-width-110{
  min-width: 110px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
.transaction-table{
    border-radius:8px 8px 0 0;
    border:1px solid var(--border-color);
    overflow:hidden;
    overflow-x: auto;
}
.transaction-table table{
    margin-bottom: 0;
}
.transaction-table .transaction-head{
    background-color: var(--bg-custom);
    border-bottom: none;
}
th, td {
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.transaction-table .transaction-head span{
 display: flex;
 padding: 6px;
 font-size: 14px;
 font-family: Poppins,sans-serif;
 color:var(--primary-text-color);
}
.transaction-table .transaction-td{
  padding: 6px 12px;
  font-size: 12px;
  line-height: 22px;
  color:var(--primary-text-color);
}
/* .transaction-table .transaction-clip {
  width: 150px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} */
.transaction-table .transfer-details {
  display: block;
  width: 150px;
  color:#828F98;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.transaction-table .transaction-header{
  color: rgb(95, 94, 94);
}

.transaction-table .transaction-type:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-size: cover;
  margin-left: -27px;
  margin-top: 3px;
  z-index: 2;
}
.transaction-table .transaction-type.type-indicator-send:before {
    background-image: url(./../images/sent-indicator.svg);
}
.transaction-table .transaction-type.type-indicator-received:before {
  background-image: url(./../images/received-indicator.svg);
}
.transaction-table .transaction-type{
    margin-left: 28px;
}
.transaction-table .transaction-type:after{
    position:absolute;
    content:'';
    width: 22px;
    height: 22px;
    border-radius:4px;
    left: 10px;
}
.transaction-table .transaction-type.type-indicator-send:after {
  background:#FFEAEC;
}
.transaction-table .transaction-type.type-indicator-received:after {
    background:#DFF8EA;
}
.transaction-table .transaction-status{
  position: relative;
}
.transaction-table .transaction-status:before {
    position: absolute;
    content: '';
    height: 12px;
    width: 2px;
    border-radius: 4px;
    margin-left: -5px;
    margin-top: 4px;
}
.transaction-status.status-indicator-completed:before{
    background-color: #1DB765;
}
.transaction-status.status-indicator-rejected:before{
  background-color: #FF3649;
}
.transaction-status.status-indicator-failed:before{
    background-color: #FF3649;
}
.transaction-status.status-indicator-process:before{
    background-color: #F19A31;
}
.transaction-table .transaction-td.amount-success{
    color: #1DB765;
}
.transaction-table .transaction-td.amount-pending{
    color: #F19A31;
}
.transaction-table .transaction-td.amount-failed{
    color: #FF3649;
}
.badge-red {
  background-color: rgb(248, 229, 229) !important;
  border:1px solid rgb(247, 73, 73) !important;
  color: rgb(250, 77, 77);
}
.badge-green {
  background-color: rgb(174, 247, 174) !important;
  border:1px solid rgb(4, 167, 4) !important;
  color: rgb(3, 141, 3);
}
.badge-blue {
  background-color: rgb(181, 181, 243) !important;
  border:1px solid rgb(5, 5, 177) !important;
  color: rgb(2, 2, 146);
}
.status-indicator{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 2px;
}
.transaction-department{
  background-color: #828F98;
}
.transaction-td .transfer-type,
.transaction-td .transfer-type-detail{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.transaction-td .transfer-type-detail {
  color:#828F98;
}
.transaction-btn{
  border:1px solid #23699326;
  border-radius:0;
}
.transaction-btn:hover,.transaction-btn.active{
  background:var(--primary-bg-color);
  color:#fff;
  border: 1px solid var(--primary-bg-color);
}
.transaction-btn.success-log-btn{
  border-left:0;
  border-right:0;
}
.transaction-btn.all-log-btn{
  border-top-left-radius:6px;
  border-bottom-left-radius:6px;
}
.transaction-btn.failed-log-btn{
  border-top-right-radius:6px;
  border-bottom-right-radius:6px;
}
.transaction-log-view .select-wrapper {
  position: relative;
  display: inline-block;
}
.transaction-log-view .select-wrapper select {
  padding: 10px 2.5rem 10px 1rem;
  border: 1px solid var(--primary-bg-color);
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--primary-bg-color);
  color: white;
  font-size: 16px;
}

.transaction-log-view .select-wrapper::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 1rem;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.transaction-log-view .select-wrapper select option{
  background-color: #fff;
  color: #000;
}
.transaction-th{
  /* border-bottom: 1px solid rgb(190, 187, 187) !important; */
}
.copy-btn{
  display: none; 
  position: absolute; 
  right: 10px; 
  top: 0; 
  background: transparent; 
  border: none; 
  cursor: pointer;
}
.copy-text {
  color: green;
  display: inline;
}
.transaction-nav .nav-item .nav-link{
  color: black;
  border: 1px solid #008bb2;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  padding: 10px;
}
.transaction-nav .nav-item .nav-link.active{
  background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%);
  color: white;
}
.slick-track{
  margin-left: 0;
}

#toast {
  display: none;
  align-items: center;
  max-width: 400px;
  width: fit-content;
  padding: 10px 14px;
  position: fixed;
  border-radius: 5px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  z-index: 9999;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

#icon-wrapper{
  width: 30px;
  height: 30px;
  background: var(--secondary);
  border-radius: 5px;
  box-sizing: border-box;
  padding: 5px;
}

#icon {
  background: var(--primary);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  position: relative;
}
#icon::before, #icon::after {
  position: absolute;
  content: "";
  background: var(--secondary);
  border-radius: 5px;
  top: 50%;
  left: 50%;
}

#toast-message {
  padding: 5px 20px 5px 10px;
}
#toast-message h4, #toast-message p {
  margin: 0;
  line-height: 1.2em;
}
#toast-message h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #404040;
}
#toast-message p {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .05em;
  color: #606060;
}

#toast-close {
  position: relative;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: rgba(0,0,0,0);
  transition: background 0.2s ease-in-out;
}
#toast-close:hover {
  background: rgba(0,0,0,0.1);
}
#toast-close::before, #toast-close::after {
  position: absolute;
  content: '';
  height: 12px;
  width: 1px;
  border-radius: 5px;
  background: #606060;
  top: 50%;
  left: 50%;
  transition: background 0.2s ease-in-out;
}
#toast-close:hover::before, #toast-close:hover::after {
  background: #404040;
}
#toast-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#toast-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes close {
  from {
    top: 5px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    visibility: visible;
  }
  to {
    top: -25px;
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
    visibility: hidden;
  }
}

@keyframes open {
  from {
    top: -25px;
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
    visibility: hidden;
  }
  to {
    top: 5px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    visibility: visible;
  }
}

#timer {
  width: 0%;
  height: 4px;
  background: var(--primary);
  position: absolute;
  bottom: 0;
  left: 0;
  border-top-right-radius: 5px;
  box-shadow: 0 0 8px var(--primary);
}
.timer-animation {
  animation: countdown 5s linear forwards;
}
@keyframes countdown {
  from {
    width: 100%;
  } 
  to {
    width: 0%;
  } 
}

/* ----------------------- */
/* Success Styling         */
/* ----------------------- */
.success {
  --primary: #2DD743;
  --secondary: #E3FEE6;
}
.success #icon {
  transform: rotate(-45deg);
}
.success  #icon::before{
  width: 10px;
  height: 3px;
  transform: translate(calc(-50% + 1px), calc(-50% + 1px));
}
.success  #icon::after{
  width: 3px;
  height: 6px;
  transform: translate(calc(-50% - 3px), calc(-50% - 1px));
}
/* ----------------------- */
/* Warning Styling         */
/* ----------------------- */
.warning {
--primary: #F29208;
--secondary: #FFEEDF;
}
.warning  #icon::before{
width: 3px;
height: 3px;
transform: translate(-50%, calc(-50% + 4px));
}
.warning  #icon::after{
width: 3px;
height: 7px;
transform: translate(-50%, calc(-50% - 2px));
}

/* ----------------------- */
/* Error Styling           */
/* ----------------------- */
.error {
--primary: #E63435;
--secondary: #FFEAEC;
}
.error  #icon::before{
width: 3px;
height: 3px;
transform: translate(-50%, calc(-50% + 4px));
}
.error  #icon::after{
width: 3px;
height: 7px;
transform: translate(-50%, calc(-50% - 2px));
}

/* ----------------------- */
/* Info Styling            */
/* ----------------------- */
.info {
--primary: #42C0F2;
--secondary: #CFEFFC;
}
.info  #icon::before{
width: 3px;
height: 7px;
transform: translate(-50%, calc(-50% + 2px));
}
.info  #icon::after{
width: 3px;
height: 3px;
transform: translate(-50%, calc(-50% - 4px));
}

/* sign up contact-input */
.iti__flag {
  width: 20px !important;
}
.form-control.iti__tel-input.is-valid{
  background:none;
}

.iti__dropdown-content{
  width:auto!important;
}

.iti--allow-dropdown input.iti__tel-input[type="tel"] {
  /* width:0; */
  padding-left: 35px !important;
  border:none!important;
}
.flag-dropdown{
  width: 25%!important;
}
.iti--allow-dropdown .iti__country-container,
.iti__selected-country {
  width: 100% !important;
}
@media(min-width:1080px) and (max-width:1199px){
  .flag-dropdown{
    width: 27%!important;
  }
  .iti__arrow {
    right: 5px !important;
  }
}

body.dark .password_changed_wrapper .toggle-password{
  color:#dedbe6;
}

body.dark .card-body .payment-text {
  color:#fff;
}
body.dark hr{
  color: rgba(255, 255, 255, 0.6);
}
body.dark .payment-div input {
  background: transparent;
  color: #fff;
}
body.dark .payment-div input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
body.dark .modal .modal-content{
  background-color: #212529!important;
}
body.dark .modal .modal-body p,
body.dark .modal .modal-body li{
  color: #dedbe6 !important;
}

.sidefilter_wrapper {
  min-height: calc(100vh - 505px);
}
body.dark .iti__country-list .iti__country-name{
  color:rgb(33, 37, 41);
}

.password_changed_wrapper input.form-control{
  padding-right: 35px;
}

.password_changed_wrapper .toggle-password {
  position: absolute;
  top: 25%;
  right: 10px;
  cursor: pointer;
}

.password_changed_wrapper .form-control.is-invalid + .toggle-password {
    top: 9px;
}

.payment-div .btn:hover{
  color:#fff;
  background: var(--primary-bg-color);
}
#mount-id{
  height: 54vh;
}
@media (min-width: 1280px) {
  #mount-id{
    height: 37vh;
  }
}
.services_wrapper .tab_wrapper .card {
  /* border: 1px solid rgba(194, 194, 194, 0.2); */
  border: 1px solid #0C1D461A;
  background-color: var(--bg-custom);
  box-shadow: none ;
  border-radius: 16px;
}
.services_wrapper .tab_wrapper .card:hover {
  /* box-shadow: 3px 3px 7px 1px rgba(0, 0, 0, 0.3); */
  -webkit-box-shadow: 0px 4px 16px 0px #D9E5FF;
  box-shadow: 0px 4px 16px 0px #D9E5FF;
}
.services_wrapper .tab_wrapper .card .services_img {
  height: auto;
}
.services_wrapper .tab_wrapper .card .services_img img{
  height:auto;
  width:100%;
  object-fit:cover;
  border:none;
  border-radius:8px;
}
.services_wrapper .tab_wrapper .card .card-title {
  color: var(--primary-text-color);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 1.5em;
}
.services_wrapper .tab_wrapper .card .service-card-text {
    color: var(--secondary-text-color);
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 6em;
}

body.dark .timerBtnEnabled {
  color: #dedede !important;
}
.actionTimerbtn.fs-7{
  font-size: 14px;
}
.actionTimerbtn, .resendBtn{
  cursor: pointer;
}
.resendBtn{
  color: var(--primary-text-color);
}
.payment-form input[type=number]::-webkit-inner-spin-button, 
.payment-form input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.catcard_wrapper.listView .text_wrapper .card-text,
.catcard_wrapper.gridView .text_wrapper .card-text{
  display: -webkit-box;           /* Use a flex container for text */
  -webkit-line-clamp: 2;         /* Limit the text to 2 lines */
  -webkit-box-orient: vertical;  /* Set box orientation to vertical */
  overflow: hidden;              /* Hide overflowed content */
  text-overflow: ellipsis;
  width: auto;
  white-space: normal;
  min-height:auto;
}
.category_cards .catcard_wrapper.listView .card .card-body .img-wrapper{
  height: 85px;
  margin-right: 20px;
  width: 150px;
}
.sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.gridView .card .card-body img  {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.listView .card .btn,
.sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.gridView .card .btn{
  margin-top: 0;
}
.sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper .card .card-body {
  padding: 1rem;
}
.sidefilter_wrapper .rightside_bar .form-select {
  box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
}
.sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper .card{
  box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
}
.sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper .card:hover{
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 8px;
}
@media (min-width: 768px) {
  .sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.gridView .card .card-body {
      padding: 1rem;
  }
  .sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.listView .card .card-body {
    padding: 1.5rem;
  }
  .sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.listView .card .card-body img {
    width:100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
}
@media(max-width: 576px) {
  .category_cards .catcard_wrapper.listView .card .card-body .img-wrapper {
    height: 200px;
    margin-right: 0px;
    width: 100%;
  }
  .sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.listView .card .card-body img  {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.listView .card .card-body .text_wrapper,
  .sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.gridView .card .card-body .text_wrapper {
      margin: 0;
  }
  .sidefilter_wrapper .rightside_bar .category_cards .catcard_wrapper.listView .card .card-body .text_wrapper{
    padding: 1rem 0;
  }
}

.qrcode-contentWrapper{
  box-shadow: 4px 4px 21px 0px #B9B9B9;
}
.qrcode-contentWrapper .modal-header{
  background: #F5F7FF;
  border-bottom: 1px solid #DFE7FA;
}
body.dark .modal .qrcode-contentWrapper .modal-header .modal-title{
  color:#fff!important;
}
.qrcode-contentWrapper .step-to-activate {
  display: flex;
  align-items: center;
  margin: 10px 0 15px;
}
.qrcode-contentWrapper .step-count {
  width: 40px;
  height: 40px;
  background: #DFE7FA;
  color: var(--primary-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 600;
  margin-right: 10px;
  font-size: 20px;
}
.qrcode-contentWrapper .step-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.4;
}
.qrcode-contentWrapper .modal-body .qrcodeWrapper{
  position: relative;
  height: 200px;
  width: 200px;
  margin: auto;
}
.qrcode-contentWrapper .corner-border-left:before {
  position:absolute;
  content:'';
  width:50px;
  height:50px;
  top:-12px;
  left:-12px;
  border-top:10px solid #DFE7FA;
  border-left:10px solid #DFE7FA;
  border-radius: 0;
}
.qrcode-contentWrapper .corner-border-left:after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  left: -12px;
  bottom: -12px;
  border-left: 10px solid #DFE7FA;
  border-bottom: 10px solid #DFE7FA;
  border-radius: 0;
}
.qrcode-contentWrapper .corner-border-right:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  right: -12px;
  top: -12px;
  border-top: 10px solid #DFE7FA;
  border-right: 10px solid #DFE7FA;
  border-radius: 0;
}
.qrcode-contentWrapper .corner-border-right:after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  right: -12px;
  bottom: -12px;
  border-bottom: 10px solid #DFE7FA;
  border-right: 10px solid #DFE7FA;
  border-radius: 0;
}
.qrcode-contentWrapper .modal-body .col-6:first-child {
  border-right:1px solid #cecece
}
.recovery-code-container {
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  padding: 20px;
  border-radius: 8px;
  background: #0C1D46;
  color:#fff;
  border: 1px solid #CFDCFC;
}
.recovery-code-container .text-container{
  letter-spacing: 1.2px;
}
.recovery-code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  border: 1px dashed #fff;     
  border-radius: 5px;
  font-size: 18px;
  font-family: Poppins,sans-serif;
}
.recovery-code-container .text-container{
  width: calc(100% - 290px);
}
.recovery-code-box .icons button {
  border: none;
  cursor: pointer;
  background: #DDE2FF;
  border-radius: 4px;
  padding: 4px 6px;
}
.recovery-code-box .icons img{
  height: 16px;
}
.recovery-code-box button.download-app-btn{
  font-size:10px;
  padding:5px 10px;
}
body.dark .qrcode-contentWrapper .recovery-code-container{
  border: 0.8px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(45, 45, 45, 0.3);  
}
body.dark .qrcode-contentWrapper .recovery-code-box{
  border: 0.8px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(45, 45, 45, 0.4);
}
body.dark .qrcode-contentWrapper .text-primary {
  color:#dedbe6 !important;
}
@media(max-width:992px){
  .qrcode-contentWrapper .modal-body .qrcodeWrapper{
    position: relative;
    height: 150px;
    width: 150px;
    margin: auto;
  }
  .recovery-code-container{
      flex-direction: column;
      max-width: 350px;
  }
 .recovery-code-container .text-container{
      width: 100%;
  } 
}

.payment-form .custom-radio span:first-child{
  font-size:12px;
}
.payment-form input[type="radio"].amount-button{
  display:none;
}
body.dark .payment-form input[type=radio].amount-button + label,
body.dark .payment-form input[type=radio].amount-button + label:after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.payment-form input[type=radio].amount-button:checked + label:after,
body.dark .payment-form input[type=radio].amount-button:checked + label:after {
    border: 2px solid #fff;
    background: transparent;
}
.payment-form input[type=radio].amount-button + label {
  display: block;
  color: #02064B;
  border:1px solid #023f9a;;
  padding: 8px;
  border-radius: 8px;
}
.payment-form input[type=radio].amount-button + label:after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  border: solid 1px #02064B;
  box-sizing: border-box;
}
.payment-form input[type=radio].amount-button:checked + label,
body.dark .payment-form input[type=radio].amount-button:checked + label {
  color: #FFF;
  border:none;
  background: linear-gradient(to right, #00054A, #1257A7);
}
.payment-form input[type=radio].amount-button:checked + label:after{
  border:2px solid #fff;
  background:transparent;
}

.payment-form .separator {
  position:relative;
  margin:20px 0;
}
.payment-form .separator span{
  color: #B1B2BC;
}
.payment-form .separator span:before {
  position:absolute;
  content:"";
  width:33%;
  height:1px;
  background:#B7B7B8;
  top:6px;
  left:0;
  margin-left:50px;
}
.payment-form .separator span:after {
  position:absolute;
  content:"";
  width:33%;
  height:1px;
  background:#B7B7B8;
  top:6px;
  right:0;
  margin-right:50px;
}
.payment-form input#amount-input::placeholder {
  color: #B1B2BC;
}
body.dark .modal-title,
body.dark .modal-body .form-control::placeholder{
    color:#fff!important;
}
body.dark .btn-close {
  filter: invert(1);
}
body.dark .modal-body input.form-control{
  background-color: transparent;
  color:#fff;
}
.password_changed_wrapper.reset-new-password .toggle-password{
  top:9px;
}
body.dark .form_field .password_changed_wrapper .error {
  color: #E63435!important;
}
.form_field .password_changed_wrapper .error{
  font-size: 0.875rem;
}

/* terms-and-conditions */
.tenantTermsCondition,
.ownerTermsCondition{
  display: flex;
  /* margin: 50px 100px; */
}
@media (max-width: 767px) {
  .tenantTermsCondition,
  .ownerTermsCondition{
    flex-direction: column;
  }
}
 

.tenantTermsCondition .tab-container,
.ownerTermsCondition .tab-container {
  width: 250px;
  position: sticky;
  top: 80px; 
  align-self: flex-start; /* Ensure it doesn't stretch */
  height: 100vh; 
  overflow-y: auto; 
}

@media (max-width: 767px) {
  .tenantTermsCondition .tab-container,
  .ownerTermsCondition .tab-container {
    width: 100%;
    position: relative;
    top: 0px;
    height: auto;

  }
}

.tenantTermsCondition .tab-button,
.ownerTermsCondition .tab-button {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: left;
  border: none;
  background-color: #fff;
  cursor: pointer;
  line-height: 1.3;
}

.tenantTermsCondition .tab-button:hover,
.ownerTermsCondition .tab-button:hover {
  text-decoration: underline;
}

.tenantTermsCondition .tab-button.active,
.ownerTermsCondition .tab-button.active {
  text-decoration: underline;
  font-weight: bold;
}

.tenantTermsCondition .content-container,
.ownerTermsCondition .content-container {
  flex: 1;
  padding: 20px;
  overflow-y: auto; /* Scrollable content */
  padding-left: 40px;
}

@media (max-width: 767px) {
  .tenantTermsCondition .content-container,
.ownerTermsCondition .content-container {
  padding-left: 15px;
}
}

.tenantTermsCondition .content,
.ownerTermsCondition .content {
  margin-bottom: 40px; /* Space between sections */
}
.tenantTermsCondition .content h2,
.ownerTermsCondition .content h2{
  font-size: 48px;
  /* font-family: Arial, Helvetica, sans-serif; */
  margin-bottom:15px;
}
@media (max-width: 767px) {
.tenantTermsCondition .content h2,
.ownerTermsCondition .content h2{
    font-size: 24px;
}
}
.tenantTermsCondition .content>ul{
  padding-left: 30px;
}
.tenantTermsCondition .content>ul>li{
  font-weight: bold;
  margin-bottom:15px;
  list-style-type: disc;
}
.tenantTermsCondition .content li, .ownerTermsCondition .content li{
  line-height: 1.4;
}
.tenantTermsCondition .content p,
.ownerTermsCondition .content p,
.ownerTermsCondition .content li{
  margin-bottom:15px;
  line-height: 1.35;
}
body.dark .tenantTermsCondition .tab-button,
body.dark .ownerTermsCondition .tab-button{
  background-color: #080808;
  color: #fff;
}
body.dark .tenantTermsCondition .content li,
body.dark .ownerTermsCondition .content li{
    color:#fff;
}



@media(min-width:1200px){
  .multi-step-form{
    min-height: 36px;
  }
}
@media(min-width:1500px){
  .multi-step-form{
    min-height: 182px;
  }
}/* ==============amount ============= */
.amount_title{
  font-size: 28px;
  font-weight: 600;
  color: #00054A;
  /* color: var(--primary-text-color); */
}
.choose_section{
  background: #fff;
}
.choose_section h4{
font-size: 14px;
font-weight: 600;
}
@media(max-width:576px){
  .choose_section h4{
    text-align: center;
  }
}
.choose_section p{
  font-size: 12px;
  text-align: right;
  line-height: 1.2;
}
@media(max-width:576px){
  .choose_section p{
    font-size: 11px;
    text-align: center;
  }
}
.choose_section .btn{
  background: #88888808;
  border: 1px solid var(--bs-border-color) !important;
}
.choose_section .btn-check:checked + .btn, .btn-check + .btn:hover{
  /* background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%); */
  background: #fff;
  color: var(--primary-text-color);
  border: 1px solid #000046 !important;
}
.choose_section label:hover span{
  color: #fff;
}
.choose_section .choose-row-radios label{
  font-size: 14px;
  color: #888888;
  font-weight: 700;
} 
@media(max-width:576px){
  .choose_section .choose-row-radios label{
    font-size: 12px;
  }
}
.choose_section .choose-row-radios label span{
font-size: 12px;
color: #888888;
font-weight: 400;
}
.choose_or_label{
  font-size: 14px;
  color: #B7B7B8;
  background: var(--bg-custom);
  top: -7px;
  left: 34.5%;
}
@media(max-width:1024px){
  .choose_or_label{
    left: 31.5%;
  }
}
@media(max-width:576px){
  .choose_or_label{
    left: 20%;
  }
}

.choose-input-section .main_input{
 border: none;
 border-bottom: 1px solid #02064B;
 width: 86%;
 font-size: 22px;
 background: transparent;
}
@media(max-width:1400px){
  .choose-input-section .main_input{
    width: 84%;
  }
}
@media(max-width:1260px){
  .choose-input-wrap{
    display: flex;
    justify-content: center;
  }
  .choose-input-section .main_input{
    width: 82%;
  }
}
@media(max-width:992px){
  .choose-input-section .main_input{
    width: 76%;
  }
}
@media(max-width:767px){
  .choose-input-section .main_input{
    width: 50%;
  }
}
.choose-input-section .main_input::placeholder{
  color:#CCCCCC;
 }
.choose-input-section .input-group-text{
  border: none;
  border-bottom: 1px solid #02064B;
  background: transparent;
  border-radius: 0;
  font-size: 24px;
  color: #333333;
  font-weight: 600;
}
.choose-input-section button{
  font-size: 20px;
    background: var(--primary-bg-color);
    color: #fff;
    padding: 18px 60px;
    border: none;
    border-radius: 12px;
    letter-spacing: 2px;
}
.edit_topup{
  background: #88888808;
}
.edit_topup .edit_amount, .edit_topup .edit_icon{
  font-size: 24px;
  color: #02064B;
  font-weight: 700;
}
.edit_topup .edit_icon .fa{
  color: #02064B;
}
.card_details .card_details_title{
  font-size: 24px;
}
.card_details p{
  font-size: 12px;
  line-height: 1.4;
  color: #333333;
}
.card_details label{
  font-size: 14px;
}
.card_details .form-control{
  border: none;
  border-bottom: 1px solid var(--bs-border-color);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.card_details .form-control::placeholder{
  font-size: 14px;
  color: #D9D9D9;
}
.payment-status .title{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333333;
}
.payment-status .info, .payment-status a{
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1px;
  
}
.payment-status .info{
  color:#333333;
}
.payment-status a{
  color: #02064B;
}
body.dark .choose_or_label{
  background: #080808;
}
body.dark .choose-input-section .main_input, body.dark .choose-input-section .input-group-text{
  border-bottom: 1px solid #fff;
}
body.dark .choose-input-section .main_input:focus{
  box-shadow: none;
}
body.dark .edit_amount, body.dark .edit_icon .fa-pencil, body.dark  .retry-link, body.dark .fa-chevron-right{
  color: #fff;
}

/* ==============/amount============ */
#toast-close{
  display:none;
}

.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-progress{height: 2px;}
.wizard-step-circle { width: 42px; height: 42px; background: #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 20px;}
.wizard-step-circle.active { background: linear-gradient(108deg, #000046 -0.79%, #008bb2 100%); color: white; }
.wizard-step-circle-wrap{position: relative;top: -38px;}
  
#toast-close{
  display:none;
}

/* wallet steps */
.wallet-steps-wrapper h1{
  font-size: 22px;
  line-height: 1.3;
  color: #191e3b;
  font-weight: 700;
  margin-bottom: 20p
}
.wallet-steps-wrapper h3{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.wallet-steps-wrapper ul{
  list-style: disc;
}
.wallet-steps-wrapper ul li {
  font-size: 14px;
  line-height: 1.5;
}
.reg-download-content p{
  line-height: 1.4;
}
body.dark .wallet-steps-wrapper ul li{
  color: #fff;
}
/* /wallet steps */

.recovery_icon .fa{
    font-size: 16px;
}

body.dark .recovery_title{
  color: #fff;
}

body.dark #profile-update .form-control:disabled{
  background-color: #80808061;
  opacity: 1;
}
.return_home{
  color: #002764 !important;
  background: #fff !important;
  border: 1px solid #002764 !important;
  line-height: 1;
}
.return_home:hover{
  color: #fff !important;
  background: var(--primary-bg-color) !important;
  border: 1px solid #002764 !important;
}

.breadcrumb_wrapper .custom-breadcrumb .breadcrumb-item a {
  color: var(--primary-text-color);
}
/* .breadcrumb_wrapper .custom-breadcrumb .breadcrumb-item::before {
  color: red;
} */
.breadcrumb_wrapper .custom-breadcrumb a{
  font-size: 16px;
}
.breadcrumb_wrapper .custom-breadcrumb .active {
  font-weight: 600;
}
.custom-breadcrumb span{
  width:20px;
}
.custom-breadcrumb span:after {
  position: absolute;
  content: '';
  top: 4px;
  margin-left: 5px;
  height: 10px;
  width: 10px;
  border-top: 2px solid var(--primary-bg-color);
  border-right: 2px solid var(--primary-bg-color);
  transform: rotate(45deg);
}

/* login */
.login-container {
    /* background-color: #fff; */
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 80%;
    max-width: 100%;
    max-height: 100%;
    min-height: 800px;
    margin-bottom: 50px;
    margin-top: 25px;
}

.form_container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}
.sign-in-container .form_field,
.sign-up-container .form_field{
  margin: 0 50px 50px 50px;
}

.login-container.right-panel-active .sign-in-container {
	/* transform: translateX(100%); */
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.login-container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}
	
	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}


.login-container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.overlay-login {
	background: #193579;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.login-container.right-panel-active .overlay-login {
  	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-panel .form-img-wrapper{
  margin-top: 60px;
}
.overlay-left {
	transform: translateX(-20%);
}

.login-container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.login-container.right-panel-active .overlay-right {
	transform: translateX(20%);
}
.toggle-form{
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    outline: none;
    border: none;
}
.auth_main .form_field label {
  color: var(--primary-text-color);
  font-family: Poppins,sans-serif;
  font-size: 18px;
  letter-spacing: 0.4px;
}
.auth_main .form_field .form-control{
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #333;
    color:var(--primary-text-color);
    background-color: transparent;
}
.auth_main .form-control:focus,
.auth_main .input-group .flag-dropdown:focus,
.auth_main .input-group .contact-input:focus {
  box-shadow: none !important;
  border-color: var(--primary-bg-color);
  border-bottom: 2px solid var(--primary-bg-color);
}
.auth_main .input-group .flag-dropdown,
.auth_main .input-group .contact-input{
    border-radius: 0;
    border: none;
    background: none;
    border-bottom: 1px solid #333;
}

.signupButton{
    padding: 12px;
    width: 40%;
    font-size: 18px;
    border-radius: 4px;
}
.main-content-wrapper{
  height: 96px;
}
@media (max-width: 1400px) {
  .auth_main .login-container .form_field label {
    font-size: 13.498px;
  }
}
@media(max-width:1024px){
  .sign-in-container .form_field,
  .sign-up-container .form_field{
    margin: 20px;
  }
  .login-container {
    width:90%;
  }
}
@media(max-width:992px){
  .login-container {
    width:100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .main-content-wrapper{
    height: 87px;
  }
}


.fs-12{
  font-size: 12px;
}
.fs-14{
  font-size: 14px;
}

.auth_main.steps_section .auth_wrapper_multisteps{
  background-color: var(--bg-custom);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}
.auth_main.steps_section .checkotp-btn {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  background: var(--primary-bg-color);
  border: 0px;
  padding: 1rem 3rem;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 8px;
  line-height: 22px;
}
.auth_main .step-container .step-circle{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--primary-bg-color);
  color: var(--primary-text-color);
  font-size: 22px;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
}
.auth_main .step-container .step-circle img{
  filter: none;
}
.auth_main .step-container .step-circle.active {
  background-color: var(--primary-bg-color);;
  color:#fff;
}
.auth_main .step-container .step-circle.step-complete{
  border: 1px solid var(--border-color);
  background-color: var(--bg-custom);
}
.auth_main .step-container .step-circle .success-icon{
  display: none;
}
.auth_main .step-container .step-circle.step-complete .step-count{
  display: none;
}
.auth_main .step-container .step-circle.step-complete .success-icon{
  display: block;
}

.auth_wrapper_multisteps .separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.auth_wrapper_multisteps .separator::before,
.auth_wrapper_multisteps .separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #B4B4B4;
  margin: 0 10px;
}

.auth_wrapper_multisteps .separator span {
  color: #B4B4B4;
  font-weight: bold;
}
a.custom-link{
  color:#222222;
}
a.custom-link:hover,a.custom-link:active{
  color:#222222;
}

.auth_wrapper_multisteps .qrcodeWrapper{
  position: relative;
  width: 200px;
  height: 200px;
  margin: auto;
}
.corner-border-left:before {
  position:absolute;
  content:'';
  width:50px;
  height:50px;
  top:-12px;
  left:-12px;
  border-top:3px solid #0C1D46;
  border-left:3px solid #0C1D46;
  border-top-left-radius: 24px;
}
.corner-border-left:after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  left: -12px;
  bottom: -12px;
  border-left: 3px solid #0C1D46;
  border-bottom: 3px solid #0C1D46;
  border-bottom-left-radius: 24px;
}
.corner-border-right:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  right: -12px;
  top: -12px;
  border-top: 3px solid #0C1D46;
  border-right: 3px solid #0C1D46;
  border-top-right-radius: 24px;
}
.corner-border-right:after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  right: -12px;
  bottom: -12px;
  border-bottom: 3px solid #0C1D46;
  border-right: 3px solid #0C1D46;
  border-bottom-right-radius: 24px;
}
.extension-btn{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.loader-container {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 50px auto;
}
.extension-loader{
width: 100%;
height: 100%;
border: 8px solid #11224A;
border-radius: 50%;
border-top: 8px solid transparent;
animation: spin 1.5s linear infinite;
}
.loader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #222222;
}
.resetTimerWrapper{
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: max-content;
  margin: auto;
  padding: 6px 15px;
}
.resetTimer{
  font-size: 18px;
  font-weight: 600;
  color:#EA4335;
}

/* pay-amount */
.choose-row-radios input[type=radio].btn-check + label {
  position: relative;
}
.choose-row-radios input[type=radio].btn-check + label:before{
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  position: absolute;
  right: 5px;
  top: 6px;
  border-radius: 25%;
  border: solid 1px  solid var(--primary-bg-color);
  box-sizing: border-box;
}
.btn-check:checked + label:before{
  background:var(--primary-bg-color);
}
.btn-check:checked + label::after {
  position:absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: 4px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  right: 9px;
  top: 10px;
}
@media(max-width:992px){
  .choose_section .choose-row-radios label span{
    text-align: left;
  }
}
.pay-amount-img{
  margin-top: -40px;
}
.payment-div .btn{
  font-size: 20px;
  padding: 18px 60px;
  border: none;
  border-radius: 12px;
  letter-spacing: 2px;
}
.payment-status .choose-input-section{
  display: flex;
  align-content: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
@media(max-width:1200px){
  .payment-status .choose-input-section{
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
}

.avail-badge{
    position: absolute;
    top: 35px;
    right: 35px;
    display: inline-block;
    background: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    line-height: 1.2;
    color: var(--primary-text-color);
}

.avatar-details p{
  color:#9f9f9f;
  letter-spacing:1.2px;
}
.avatar-details h6{
  color:#fff;
  font-weight:600;
  font-size:16px;
  letter-spacing:1.2px;
}
.traderCardWrapper .card{
  border: none;
}
.traderCardWrapper .card-body{
  background-image: url(../images/card.png) ;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  margin: 0 auto;
}
.traderCardWrapper h4{
  color:#fff;
  letter-spacing: 2.5px;
  font-weight: 600;
  font-family: Poppins,sans-serif;
}
.traderCardWrapper .content:before{
  position:absolute;
  content:'';
  width:3px;
  height: calc(100% - 30%);
  margin-left:-8px;
  border-radius:30px;
  background:#E5A324;
}
.traders-qrcodeWrapper{
  position: relative;
  width: 100px;
  height: 100px;
  margin: 10px;
  margin-top: auto;
}
.traders-qrcodeWrapper .corner-border-left:before {
  position:absolute;
  content:'';
  width: 30px;
  height: 30px;
  top: -10px;
  left: -10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-top-left-radius: 10px;
}
.traders-qrcodeWrapper .corner-border-left:after {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  left: -10px;
  bottom: -10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom-left-radius: 10px;
}
.traders-qrcodeWrapper .corner-border-right:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  right: -10px;
  top: -10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-top-right-radius: 10px;
}
.traders-qrcodeWrapper .corner-border-right:after {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  right: -10px;
  bottom: -10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  border-bottom-right-radius: 10px;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px dashed #0C1D46;
    border-radius: 12px;
    padding: 20px;
    justify-content: space-between;
    margin: 10px auto;
    width: 86%;
}

.profile-picture {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-container .btn {
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-decoration: underline;
}

.profile-container .change-btn {
  background-color: var(--primary-bg-color);
  color: white;
  border:1px solid var(--primary-bg-color);
}

.profile-container .change-btn:hover {
  background-color: #1d2b54d9;
  color:#fff;
  border:1px solid #1d2b54d9;
}

.profile-container .delete-btn {
  background-color: white;
  color: #EA4335;
  border: 1px solid #EA4335;
}

.profile-container .delete-btn:hover {
  background-color: #FFE5E5;
}
#profileInput {
  display: none;
}
@media(max-width:1400px){
  .profile-container{
    width: 90%;
  }
}

@media(max-width:1280px){
  .profile-container{
    width: 100%;
  }
}
@media(max-width:992px){
  .profile-container{
    width: 90%;
  }
}

.app-banner-content{
  position: absolute;
  display: flex;
  content: '';
  margin: 20px;
  top: 8%;
  left: 0;
  width: 50%;
  padding-left: 100px;
  flex-direction: column;
  gap: 40px;
}
.app-banner-content h1{
  font-size: 40px;
  color:#fff;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3;
}
.app-banner-content p{
  font-size: 16px;
  color:#fff;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.4;
}
@media(max-width:1200px){
  .app-banner-content {
    top: 0;
    padding-left: 50px;
}
  .app-banner-content h1{
    font-size:32px;
    /* line-height:120%; */
 }
 .app-banner-content p{
  font-size:14px;
  /* line-height:120%; */
}
}
@media(max-width:1024px){
  .app-banner-content {
     padding-left:10px; 
     gap:20px;
     top: 5%;
  }
 
 .app-banner-content h1{
    font-size:24px;
    /* line-height:120%; */
 }
 .app-banner-content p{
    font-size:12px;
    /* line-height:120%; */
 }
 .app-qrcodeWrapper{
    width: 80%;
 }
 .app-qrcodeWrapper .traders-qrcodeWrapper{
    width: 80px;
    height: 80px;
 }
}
@media(max-width:992px){
  .app-banner-content {
     padding-left:10px; 
     gap:30px;
     top: 0;
  }
  .app-banner-content h1{
    font-size:22px;
    /* line-height:100%; */
 }
 .app-qrcodeWrapper p{
    font-size:10px;
    /* line-height:100%; */
 }
}

.app-banner-content .app-playstore-icon{
  width: 80%;
}



@media(min-width:1600px){
  .app-banner-content {
    top: 6%; 
  }
  .app-banner-content h1{
    font-size: 56px;
  }
  .app-qrcodeWrapper .traders-qrcodeWrapper{
    width: 180px;
    height: auto;
  }
  .app-banner-content .app-playstore-icon{
    width: 100%;
  }
}
@media(min-width:1920px){
  .app-banner-content {
    top: 15%;
  }
  .app-banner-content h1 {
    font-size: 60px;
  }
}

@media(max-width:800px){
  .app-banner-content {
     gap:0px;
  }
}

@media(max-width:767px){
  .app-banner-content{
    position: relative;
    margin: 0;
    background-color: #0b1a3f;
    padding: 30px;
    width: 100%;
    max-width: 100%;
  }
}

.slider-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; 
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}
@media (max-width: 1300px) and (min-width: 1101px) {
  .list-wrap {
      max-height: 280px;
      overflow: auto;
  }
}

@media (max-width: 1100px) and (min-width: 1025px) {
  .list-wrap {
      max-height: 240px;
      overflow: auto;
  }
}
.transaction-pagination {
  background: #f2f6ff;
  border: 1px solid #d9e5ff;
  padding: 8px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
}

.transaction-pagination button {
  background: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: Poppins,sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--primary-text-color);
  transition: background 0.2s;
}
.transaction-pagination .active {
  background: var(--primary-bg-color);
  color: white;
}

.transaction-pagination .dots {
  background: transparent;
  border: none;
  color: var(--primary-text-color);
  font-weight: bold;
  cursor: default;
  font-size: 16px;
}

.transaction-pagination .nav-arrow {
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  padding: 5px;
  color: var(--primary-text-color);
}
.transaction-pagination .nav {
  background: transparent;
  font-weight: 400;
  color: var(--primary-text-color);
}
.transaction-pagination .nav-arrow:disabled,
.transaction-pagination .nav:disabled{
  color:grey;
}
.transaction-pagination .nav:hover {
  text-decoration: underline;
}

.slick-prev, .slick-next {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10;
  background: #0b1a3f;
  color: white;
  width: 40px;
  height: 40px;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius:  6px;
}
/* @media(max-width:767px){
  .slick-prev, .slick-next{
    top: 20%;
  }
} */
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{
  background: #0b1a3f;
}
.slick-prev {
  left: 0px;
}

.slick-next {
  right: 16px;
}

@media(max-width:576px){
  /* .sign-up-container, .sign-in-container{
      width: 100%;
  }
  .overlay-container{
      display: none;
  } */
  .login-container {
      flex-direction: column;
      position: static;
      width: 100%;
      min-height: auto;
    }
  
    .form_container {
      position: static;
      width: 100%;
      opacity: 1 !important;
      transform: none !important;
    }
  
    .overlay-container {
      position: static;
      width: 100%;
      height: auto;
      transform: none !important;
      margin-top: 20px;
    }
  
    .overlay-login {
      flex-direction: column;
      position: static;
      width: 100%;
      height: auto;
      left: 0;
      transform: none !important;
    }
  
    .overlay-panel {
      position: static;
      width: 100%;
      height: auto;
      transform: none !important;
      padding: 20px;
    }
  
    .login-container.right-panel-active .overlay-container,
    .login-container.right-panel-active .overlay-login,
    .login-container.right-panel-active .overlay-left,
    .login-container.right-panel-active .overlay-right {
      transform: none !important;
    }
  
    .sign-up-container,
    .sign-in-container {
      z-index: auto !important;
    }


    .sign-up-container,
    .overlay-left {
      display: none;
    }
  
    .sign-in-container,
    .overlay-right {
      display: block;
    }
  
    .sign-up-active .sign-in-container,
    .sign-up-active .overlay-right {
      display: none;
    }
  
    .sign-up-active .sign-up-container,
    .sign-up-active .overlay-left {
      display: block;
    }
    .overlay-panel .form-img-wrapper{
      margin-top: 0;
    }
    .sign-in-container .form_field, .sign-up-container .form_field {
      margin-top: 0;
    }
    .traderCardWrapper .content:before {
      height: calc(100% - 23%);
    }
}

.services-subbanner .profile-dropdown-menu li .primary-text{
  margin-bottom: 0 !important;
}

.no-service-availed{
  background: #0c1d46;
}

.otp-text:hover{
  transition:0.5s;
  font-weight:bold;
}

@media(max-width:767.98px){
  /* .journey-timeline .container-content:nth-child(even) {
     padding-left: 120px;
  } */
  .journey-timeline .container-content:nth-child(even) .date,
  .journey-timeline .container-content:nth-child(odd) .date {
      right: calc(100% - 30px);
      left: auto;
  }
  .journey-timeline .container-content:nth-child(even)::after,
  .journey-timeline .container-content:nth-child(odd)::after{
      left:0;
  }
}
@media(max-width:767.98px){
  .journey-timeline {
      left:0;
  }
  .journey-timeline::after {
      left: 20px;
  }
  .journey-timeline .container-content{
      padding:15px 0 15px 50px;
  } 
}

.button-animate {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.no-service-wrapper img{
  height: 150px;
}
.no-service-wrapper h2{
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-bg-color);
  margin: 20px auto;
}
@media(min-width:992px){
  .no-service-wrapper img{
    height: 250px;
  }
}

.effect-btn {
    transition: all 0.3s ease;
}

.effect-btn:hover {
    transform: scale(1.025);
}

.dropdown-menu.profile-dropdown-menu.show{
	cursor:default;
 }
/* Admin-panel */
.mdi-eye-outline,.mdi-eye-off-outline{
  color:var(--primary-text-color);
}

.not-get{
  padding-left: 75px;
  padding-bottom: 50px;
  margin-top: -10px;
}

.sec-text{
  margin-top: 3px;
  margin-left: 5px;
  font-weight:bold;
}
.resetTimerWrapper{
  margin-top: 5px;
}
