@import url(fonts.css);
@import url(variables.css);
body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font-400);
  background: url(../img/body-bg.jpg) top center no-repeat;
  background-size: cover;
  transition: background-color 0.3s, color 0.3s;
}

/* Dark theme */
body.dark-theme {
  background-color: #121212;
  color: #ffffff;
}

button, ul, ol {
  all: unset;
  box-sizing: border-box;
}

.no-arrow::after {
  content: none;
}

input:hover, input:focus, input:visited, input:active, button:hover, button:focus, button:visited, button:active, textarea:hover, textarea:focus, textarea:visited, textarea:active, select:hover, select:focus, select:visited, select:active {
  outline: none !important;
  box-shadow: none !important;
}

.color-dark {
  color: var(--primary-dark) !important;
}

.landing_wrapper {
  background: url(../img/landing/landing-bg.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.landing_wrapper .landing_container {
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.landing_wrapper .landing_container::after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: calc(100% - 60px);
  left: -40px;
  top: 30px;
  border: 1px solid var(--BG, #E9F2F9);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  z-index: 0;
}
.landing_wrapper .landing_container .landing_main {
  position: relative;
  z-index: 5;
  padding: 30px 40px;
  border: 1px solid var(--BG, #E9F2F9);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing_header {
  text-align: center;
  margin: 0 0 30px;
}
.landing_header .landing_head {
  color: var(--Primary-Main, #237DC0);
  text-align: center;
  font-family: var(--primary-font-700);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 15px;
}
.landing_header p {
  color: var(--secondary-color);
  font-family: var(--primary-font-400);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-group {
  margin: 0 0 10px;
}

.form-label {
  color: var(--primary-dark);
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 5px;
}

.form-control {
  color: var(--primary-dark);
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #EEE;
  background: #FFF;
  height: 40px;
}
.form-control:hover, .form-control:focus, .form-control:visited, .form-control:active {
  border-color: #fff;
}

.form-control:disabled {
  background: #eee;
  opacity: 1;
}

.form-control[readonly] {
  background-color: #fff;
  opacity: 1;
}

.form-error {
  border-color: #f00;
}
.form-error:hover, .form-error:focus, .form-error:visited, .form-error:active {
  border-color: #f00 !important;
}

.password-container {
  position: relative;
}
.password-container .toggle-icon {
  position: absolute;
  right: 15px;
  top: 13px;
  width: 15px;
  cursor: pointer;
}

.captcha_main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.captcha_main .form-control {
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}
.captcha_main .captcha-area {
  background: var(--secondary-color);
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  gap: 20px;
  border-radius: 0px 10px 10px 0;
  -webkit-border-radius: 0px 10px 10px 0;
  -moz-border-radius: 0px 10px 10px 0;
  -ms-border-radius: 0px 10px 10px 0;
  -o-border-radius: 0px 10px 10px 0;
}
.captcha_main .captcha-area figure {
  margin: 0;
}
.captcha_main .captcha-area figure img {
  width: 30px;
}
.captcha_main .captcha-area .refresh_btn {
  border: none;
  background: none;
  padding: 0;
}
.captcha_main .captcha-area .refresh_btn img {
  width: 12px;
}

.forgot-pass {
  margin: 0 0 15px;
}
.forgot-pass a {
  text-decoration: none;
  color: var(--primary-dark);
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.forgot-pass a:hover {
  color: var(--primary-color);
}

.btn {
  padding: 0px 20px;
  height: 40px;
  color: #FFF;
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
}

.primary-btn {
  background: var(--gradient);
  color: #fff;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}
.primary-btn:hover, .primary-btn:focus, .primary-btn:active, .primary-btn:visited {
  background: var(--gradient-hover);
  color: #fff;
}

.white-btn {
  background: #fff;
  color: var(--primary-color);
}
.white-btn:hover, .white-btn:focus, .white-btn:active, .white-btn:visited {
  color: var(--primary-color);
  background: #fff;
}

.normal-btn {
  background: var(--primary-color);
  color: #fff;
}
.normal-btn:hover, .normal-btn:focus, .normal-btn:active, .normal-btn:visited {
  background: var(--primary-color);
  color: #fff;
}

.blue-btn {
  color: #fff;
  background: #47B0FF;
}
.blue-btn:hover, .blue-btn:focus, .blue-btn:active, .blue-btn:visited {
  background: #47B0FF;
  color: #fff;
}

.bordered-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.form-btns-wrapper {
  display: flex;
  gap: 27px;
  margin: 30px 0 0;
}
.form-btns-wrapper button {
  width: 100%;
  max-width: 190px;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background: rgba(64, 64, 65, 0.3);
}

.custom-select {
  position: relative;
}
.custom-select::before {
  position: absolute;
  content: "";
  right: 15px;
  top: 17px;
  width: 10px;
  height: 6px;
  background: url(../img/icons/down-arrow.svg) center center no-repeat;
  pointer-events: none;
  z-index: 3;
}
.custom-select::after {
  position: absolute;
  content: "";
  width: 40px;
  height: calc(100% - 2px);
  background: #fff;
  pointer-events: none;
  right: 1px;
  top: 1px;
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
  z-index: 2;
}
.custom-select select.form-control {
  position: relative;
  z-index: 1;
  appearance: none;
}

.pass-criteria-main {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: 5px 0 0;
  gap: 3px;
  flex-wrap: wrap;
}
.pass-criteria-main .pass-criteria {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 28, 66, 0.6901960784);
  color: #fff;
  padding: 2px 7px;
  white-space: nowrap;
  font-size: 9px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.back-link {
  text-align: center;
}
.back-link a {
  color: var(--primary-color);
  font-family: var(--primary-font-500);
  text-decoration: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.back-link a:hover, .back-link a:focus {
  color: var(--secondary-color);
}

header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  margin: 0 0 20px;
  position: relative;
  z-index: 99;
}

.header-top {
  display: flex;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header-top .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.marketing a {
  color: var(--secondary-color);
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-decoration: none;
}

.language-main button {
  border: 1px solid var(--secondary-color);
  padding: 10px;
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: var(--Primary-Strong, #131C43);
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dropdown-item {
  font-size: 13px;
  padding: 5px 15px;
}

.scan-theme {
  border-radius: 5px;
  background: #E9F2F9;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: var(--primary-dark);
  font-family: var(--primary-font-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.main-nav {
  border-top: 1px solid #CCC;
}

.main-navbar {
  justify-content: center;
}
.main-navbar .navbar-nav {
  width: 100%;
  justify-content: space-between;
  padding: 0 50px;
}

.nav-link:focus, .nav-link:hover {
  color: var(--primary-color);
}

.content {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.inner-content {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.banner-main {
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}
.banner-main .banner-logo {
  max-width: 200px;
  width: 100%;
}
.banner-main .banner-logo img {
  width: 100%;
}
.banner-main .banner-img img {
  height: 100%;
  object-fit: cover;
}

.time-zone {
  background: linear-gradient(0deg, rgba(19, 28, 67, 0.6) 0%, rgba(19, 28, 67, 0.6) 100%), url(../img/time-zone-bg.jpg) lightgray -122.848px -18.697px/204.552% 160.232% no-repeat;
  height: 100%;
  padding: 20px;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.time-zone .time-icon {
  margin: 0 0 15px;
  width: 20px;
}
.time-zone .time-icon img {
  width: 100%;
}
.time-zone .time-header {
  margin: 0 0 15px;
}
.time-zone .time-header .time-heading {
  color: var(--Primary-White, #FFF);
  font-family: var(--primary-font-700);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.time-zone .time-header .time-para {
  color: var(--Primary-White, #FFF);
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.time-zone .time-secs .time-single {
  margin: -10px 0 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.time-zone .time-secs .time-single:nth-child(1) {
  margin: 0;
}
.time-zone .time-secs .time-single .time-title {
  color: var(--Primary-White, #FFF);
  font-family: var(--primary-font-500);
  font-size: 12px;
  opacity: 0.5;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.time-zone .time-secs .time-single .time-counts {
  background: var(--BG, linear-gradient(180deg, #E9F2F9 0%, #D4ECFF 50%, #609BC6 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: var(--secondary-font-400);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  position: relative;
  top: 10px;
}

.wallet-card {
  background: linear-gradient(104deg, #72D0FF 0%, #1A7AC1 98.61%);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(10px);
  margin: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  padding: 20px;
}
.wallet-card::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 100%;
  background: url(../img/wallet-vector.png) center right no-repeat;
  background-size: contain;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.wallet-card .wallet-content-main {
  position: relative;
  z-index: 2;
}
.wallet-card .wallet-content-main .wallet-icon {
  margin: 0 0 20px;
}
.wallet-card .wallet-content-main .wallet-icon img {
  width: 20px;
}
.wallet-card .wallet-content-main .wallet-title {
  color: var(--Primary-White, #FFF);
  font-family: var(--primary-font-700);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 20px;
}
.wallet-card .wallet-content-main .wallet-value {
  color: var(--Primary-White, #FFF);
  font-family: var(--secondary-font-400);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 50px;
}

.value-cards-main {
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 2px 4px 7px rgba(19, 28, 67, 0.1215686275);
}
.value-cards-main .value-card-icon {
  margin: 0 0 20px;
}
.value-cards-main .value-card-icon img {
  width: 20px;
}
.value-cards-main .card-heading {
  color: var(--Primary-Main, #237DC0);
  font-family: var(--primary-font-700);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.value-cards-main .card-value {
  color: var(--Primary-Strong, #131C43);
  font-family: var(--secondary-font-400);
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bg-1 {
  background: rgba(255, 255, 255, 0.8) url(../img/card-bg-1.png) right bottom no-repeat;
}

.bg-2 {
  background: rgba(255, 255, 255, 0.8) url(../img/card-bg-2.png) right bottom no-repeat;
}

.refferral-card {
  background: linear-gradient(165deg, #9ED5FE 2.79%, #46A0E3 69.31%);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(2.5px);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}
.refferral-card::after {
  position: absolute;
  content: "";
  background: url(../img/referral-bg.png) bottom right no-repeat;
  width: 300px;
  height: 200px;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.refferral-card .refferral-content {
  position: relative;
  z-index: 2;
}
.refferral-card .refferral-content .icon {
  margin: 0 0 20px;
}
.refferral-card .refferral-content .icon img {
  width: 20px;
}
.refferral-card .refferral-content .head {
  color: var(--Primary-White, #FFF);
  font-family: var(--primary-font-700);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 20px;
}
.refferral-card .refferral-content p {
  color: var(--Primary-White, #FFF);
  font-family: var(--primary-font-400);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 20px;
}

.sharable-link {
  margin: 10px 0 0;
}
.sharable-link p {
  margin: 0 0 5px;
  color: var(--Primary-White, #FFF);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.sharable-link .link-area {
  border-radius: 4px;
  background: var(--Primary-White, #FFF);
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
.sharable-link .link-area p {
  color: var(--primary-dark);
  font-family: var(--primary-font-500);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  word-break: break-all;
}
.sharable-link .link-area .message {
  position: absolute;
  bottom: 2px;
  right: 10px;
  font-size: 8px !important;
  color: var(--primary-color) !important;
}

.bordered-link {
  padding: 12px 0;
  border: 1px solid #EEE;
  background: var(--Primary-White, #FFF);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.copy-btn img {
  width: 15px;
}

.qr-img {
  border-radius: 4.031px;
  background: #FFF;
  padding: 5px;
  position: relative;
  z-index: 2;
  margin: 50px 0 0;
}
.qr-img img {
  width: 120px;
}

.qr-large {
  margin: 0;
}
.qr-large img {
  width: 100%;
  max-width: 200px;
}

.copyright {
  color: var(--primary-dark);
  text-align: center;
  font-family: var(--primary-font-400);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 30px 0 25px;
}

.white-card {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  height: 100%;
}
.white-card .card-header {
  padding: 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 13px;
}
.white-card .card-header .card-head-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.white-card .card-header .card-head-left .card-heading {
  margin: 0;
  color: var(--Primary-Strong, #131C43);
  font-family: var(--primary-font-700);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 5px 0 0;
}
.white-card .card-header .card-head-right button {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-table {
  padding: 15px;
  background: var(--Primary-White, #FFF);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  max-height: 207px;
  overflow: hidden;
  overflow-y: auto;
}

.table thead tr th {
  color: var(--Primary-Main, #237DC0);
  font-family: var(--primary-font-500);
  font-size: 12px;
  white-space: nowrap;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  white-space: nowrap;
}
.table tbody tr td {
  white-space: nowrap;
  color: var(--primary-dark);
  font-family: var(--primary-font-400);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
}

.text-grey {
  color: hsla(0, 1%, 25%, 0.5) !important;
}

.bordered-box-main {
  background: rgb(96, 155, 198);
  background: linear-gradient(0deg, rgb(96, 155, 198) 0%, rgb(212, 236, 255) 50%, rgb(233, 242, 249) 100%);
  padding: 0 1px 1px;
  margin: 0 0 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.bordered-box {
  border: 1px solid #E9F2F9;
  background: #fff;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
.bordered-box .bordered-box-title {
  color: var(--primary-dark);
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  width: 50%;
}
.bordered-box .bordered-box-value {
  width: 50%;
  margin: 0;
  color: var(--primary-dark);
  text-align: left;
  font-family: var(--secondary-font-400);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.right-content .bordered-box-value {
  text-align: right;
}

.total-box {
  background: var(--primary-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border: 1px solid var(--BG, #E9F2F9);
  background: rgba(39, 143, 221, 0.8);
  backdrop-filter: blur(10px);
}
.total-box .total-box-title {
  color: #fff;
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  width: 50%;
}
.total-box .total-box-value {
  width: 50%;
  margin: 0;
  color: #fff;
  text-align: left;
  font-family: var(--secondary-font-400);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bordered-box-lg,
.total-box-lg {
  padding-top: 29px;
  padding-bottom: 28px;
}

.package-card-main {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.package-card-main .package-card-content {
  background: rgb(96, 155, 198);
  background: linear-gradient(0deg, rgb(96, 155, 198) 0%, rgb(212, 236, 255) 50%, rgb(233, 242, 249) 100%);
  padding: 0 1px 1px;
  margin: 0 0 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  max-width: 280px;
}
.package-card-main .package-card-content .package-card {
  border: 1px solid #E9F2F9;
  background: #fff;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px 20px;
}
.package-card-main .package-card-content .package-card .package-card-title {
  color: var(--primary-dark);
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.package-card-value {
  color: var(--Primary-Main, #237DC0);
  text-align: right;
  font-family: var(--primary-font-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.lg-btn {
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
}

.col-margin {
  margin-bottom: 20px;
}

.text-left {
  text-align: left !important;
}

.align-end {
  align-items: flex-end;
  display: flex;
}

.filter_main {
  border-bottom: 1px solid #EEEEEE;
  padding: 30px 25px 20px;
  margin: 0 0 20px;
}
.filter_main .form-group {
  margin: 0;
}

.page-title {
  color: var(--Primary-Dark, #404041);
  font-family: var(--primary-font-700);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.white-body {
  background: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.table-wrapper {
  padding: 0 25px;
}

.pagination-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 30px 0 0;
}
.pagination-container .pagination {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 15px;
}
.pagination-container .pagination .page-item a {
  color: #888;
  text-align: center;
  font-family: var(--primary-font-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.pagination-container .pagination .page-item a:hover {
  color: var(--primary-color);
  background: rgba(39, 143, 221, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.pagination-container .pagination .active a {
  color: var(--primary-color);
  background: rgba(39, 143, 221, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.pagination-container .pagination .disabled a:hover {
  background: none;
}

.filter-btn {
  width: 100%;
  max-width: 200px;
}

.price-plans {
  background: var(--Gradient-light-blue, linear-gradient(95deg, #A1D7FF 0%, #237DC0 53.7%));
  border-radius: 21px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  -o-border-radius: 21px;
  padding: 30px 30px 80px;
  min-height: 320px;
  position: relative;
}
.price-plans .price-plan-head {
  color: var(--Primary-White, #FFF);
  font-family: var(--primary-font-700);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 10px;
}
.price-plans .price-lists li {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-plans .price-lists li span {
  color: #FFF;
  font-family: var(--primary-font-400);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 214.286% */
}
.price-plans .price-lists li span:nth-last-child(1) {
  min-width: 85px;
  text-align: left;
}
.price-plans .purchase-btn {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: calc(100% - 60px);
}

.price-plan-01 {
  background: url(../img/pricing-01.jpg) center center no-repeat;
  background-size: cover;
}

.price-plan-02 {
  background: url(../img/pricing-02.jpg) center center no-repeat;
  background-size: cover;
}

.price-plan-03 {
  background: url(../img/pricing-03.jpg) center center no-repeat;
  background-size: cover;
}

.custom-datepicker {
  position: relative;
}
.custom-datepicker::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  background: url(../img/icons/calendar.svg) center center no-repeat;
  background-size: cover;
  right: 12px;
  top: 11px;
  z-index: 3;
  pointer-events: none;
}
.custom-datepicker::after {
  position: absolute;
  content: "";
  width: 40px;
  height: calc(100% - 2px);
  background: #fff;
  pointer-events: none;
  right: 1px;
  top: 1px;
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
  z-index: 2;
}
.custom-datepicker input {
  z-index: 1;
}

.box-with-bg {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}
.box-with-bg::before {
  position: absolute;
  content: "";
  pointer-events: none;
  background: url(../img/deposit-bg.png) top right no-repeat;
  background-size: contain;
  width: 50%;
  height: calc(100% - 60px);
  top: 22px;
  right: 30px;
}

.profile-bg-img::before {
  background: url(../img/profile-bg.png) top right no-repeat;
  background-size: contain;
}

.blurred-card {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  min-height: 450px;
  width: 100%;
  max-width: 745px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.deposit-form {
  width: 100%;
  max-width: 400px;
}

.form-error {
  color: #F00;
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.modal-backdrop {
  background: url(../img/popup-bg.jpg) center center no-repeat;
  background-size: cover;
  pointer-events: none;
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-header {
  flex-direction: column;
  border: none;
  padding-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
}
.modal-header .modal-title {
  color: var(--Primary-Main, #237DC0);
  text-align: center;
  font-family: var(--primary-font-700);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 15px 0 25px;
}
.modal-header p {
  color: var(--Primary-Strong, #131C43);
  font-family: var(--primary-font-400);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 10px;
}

.modal-body, .modal-footer {
  padding-left: 40px;
  padding-right: 40px;
  border: none;
}

.modal-form .form-control:hover, .modal-form .form-control:focus, .modal-form .form-control:visited, .modal-form .form-control:active {
  border-color: #ddd;
}

.autoFade {
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

.transparent-modal {
  background: none;
  padding: 0;
  border: none;
}
.custom-toasts-main {
  width: 100%;
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.custom-toasts-main .custom-toast {
  text-align: center;
  font-family: var(--primary-font-700);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  background: rgba(64, 63, 63, 0.5019607843);
  width: 100%;
  max-width: 240px;
  min-width: 240px;
  margin: 0 0 10px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
}
.custom-toasts-main .success {
  color: #8BCEFF;
}
.custom-toasts-main .failed {
  color: #FF6B6B;
}

.menu-responsive-main {
  position: fixed;
  top: 0;
  left: -290px;
  bottom: 0;
  z-index: 999;
  background: #FFFFFF;
  width: 290px;
  overflow: hidden;
  overflow-y: auto;
  min-height: 100vh;
  background: rgb(255, 255, 255);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(10px);
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}
.menu-responsive-main .menu-responsive {
  padding: 20px;
  max-height: calc(100vh - 100px);
  overflow: hidden;
  overflow-y: auto;
}

.menu-on {
  left: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  background: none;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

.overlay-on {
  opacity: 1;
  pointer-events: all;
}

.menu-header {
  margin: 0 0 40px;
}
.menu-header a {
  display: inline-block;
  width: 130px;
}
.menu-header a img {
  width: 100%;
}

.menu-btn {
  color: #333;
  display: block;
  padding: 15px 20px;
  width: 100%;
  text-decoration: none;
  font-family: var(--primary-font-500);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.menu-btn .menu-arrow {
  position: absolute;
  right: 10px;
  pointer-events: none;
}

.menu-primary {
  color: #fff;
  background: var(--gradient);
}

.menu-lists-wrapper button.menu-btn.btn-toggle {
  background: #EEE;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
}
.menu-lists-wrapper button.menu-btn.btn-toggle.collapsed {
  background: none;
}
.menu-lists-wrapper .menu-drop-down .btn-toggle-nav li {
  list-style: none;
  background: #EEE;
  padding: 0 0 15px 40px;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
}
.menu-lists-wrapper .menu-drop-down .btn-toggle-nav li a {
  color: var(--Primary-Dark, #404041);
  font-family: var(--primary-font-400);
  font-size: 14px;
  font-style: normal;
  line-height: normal;
}
.menu-lists-wrapper .menu-drop-down .btn-toggle-nav li a img.menu-icon {
  width: 11px;
}

.logout-btn {
  color: #333;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #888;
  font-family: var(--primary-font-500);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px 20px;
  border: 1px solid #CCC;
  background: var(--Primary-White, #FFF);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  gap: 10px;
  display: flex;
  align-items: center;
}

.logout-btn-main {
  color: var(--primary-color);
  font-family: var(--primary-font-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px 20px;
  border: none;
  background: #E9F2F9;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  gap: 7px;
  display: flex;
  align-items: center;
}
.logout-btn-main img {
  width: 14px;
}

.maintanence-main {
  background: url(../img/maintenance-bg.jpg) center center no-repeat;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-y: auto;
}
.maintanence-main .maintenance-container {
  width: 480px;
  background: url(../img/maintenance-icon.png) center top no-repeat;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px;
}
.maintanence-main .maintenance-container .maintanence {
  border: 1px solid var(--BG, #E9F2F9);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 5px 10px 0px rgba(19, 28, 67, 0.1);
  backdrop-filter: blur(20px);
  padding: 35px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.maintanence-main .maintenance-container .maintanence .maintanence-logo {
  margin: 0 0 30px;
}
.maintanence-main .maintenance-container .maintanence .maintanence-contents h1 {
  color: var(--Primary-Strong, #131C43);
  text-align: center;
  font-family: var(--primary-font-700);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 15px;
}
.maintanence-main .maintenance-container .maintanence .maintanence-contents p {
  color: var(--Primary-White, #FFF);
  text-align: center;
  font-family: var(--primary-font-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

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