@import url(./preset.css);
*:hover,
*:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: var(--font-primary-400);
  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;
  background: var(--background-color);
}

a {
  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;
}

.select2-container {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 1px 23px 11px rgba(255, 255, 255, 0.25);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #EEE;
}

.select2-container--default .select2-selection--single {
  border: none;
  background: none;
  height: 40px;
  font-size: 14px;
  padding: 0 1.2rem;
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
  padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--primary-color);
}

.select2-container--default .select2-results__option--selected {
  background: var(--primary-color);
  color: var(--white);
}

.select2-results__option {
  font-size: 12px;
  padding: 5px 10px;
}

.common-section {
  padding: 60px 0;
}

.curved_box {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(233, 242, 249, 0.8) 100%);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #B9B9BB;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

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

.disabled-btn {
  background: #C7C7C7;
}

button:focus {
  outline: none;
}

.btn {
  text-align: center;
  font-family: var(--font-primary-500);
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  padding: 0;
  min-width: 120px;
  padding: 7px 20px;
  border: none;
  white-space: nowrap;
  color: var(--white);
  background: var(--btn-color);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  letter-spacing: 3.8px;
}
.btn:hover {
  color: var(--white);
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.btn-large {
  height: 50px;
  font-family: var(--font-primary-600);
  font-size: 18px;
}

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

.lite-btn {
  background: #FBF8F3;
  color: #E89F72;
}
.lite-btn img {
  margin: 0 10px 0 0;
}

.white-btn {
  background: var(--color-white);
  color: var(--primary-color);
}

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

.bordered-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
  background: none;
}
.bordered-btn:hover, .bordered-btn:focus {
  color: var(--primary-color);
}

.disabled-btn {
  background: #C7C7C7;
  box-shadow: none;
  pointer-events: none;
}

.grey-btn {
  background: #E9E9E9;
  color: #959595;
  box-shadow: none;
}
.grey-btn:hover, .grey-btn:focus {
  color: #959595;
}

a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-weight: bold;
  color: #0074cc;
  font-size: 18px;
}

.menu {
  display: flex;
  align-items: stretch;
  gap: 0px;
}
.menu a {
  white-space: nowrap;
  text-decoration: none;
  color: var(--primary-color);
  text-align: center;
  font-family: var(--font-primary-600);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  padding: 16px 14px;
}
.menu .active {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.menu a.logout {
  color: #404041;
  font-weight: normal;
  background: #ccc;
  font-family: var(--font-primary-300);
}

.toggle-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.lan_drop_main .lan_drop_btn {
  border: none;
  background: none;
  padding: 0 0 0 15px;
  font-family: var(--font-primary-600);
  color: var(--primary-color);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.lan_drop_main .lan_drop_btn .lan_icon {
  width: 20px;
}
.lan_drop_main .lan_drop_btn .down_arrow {
  width: 13px;
}
.lan_drop_main .dropdown-menu .dropdown-item {
  padding: 3px 15px;
  font-size: 14px;
  text-align: right;
}

.investor_banner_sec {
  padding: 50px 0;
  background: linear-gradient(180deg, #B9E1FF 0%, #EFF2FA 50%, #B9E1FF 100%);
  position: relative;
}
.investor_banner_sec::before {
  position: absolute;
  content: "";
  width: 301px;
  height: 259px;
  background: url(../img/banner/banner_vector.png) center center no-repeat;
  background-size: cover;
  top: 10px;
  right: 50px;
  z-index: 0;
}
.investor_banner_sec .investor_details_main {
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
}
.investor_banner_sec .investor_details_main .head_area {
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-500);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px; /* 103.125% */
}
.investor_banner_sec .investor_details_main .fund_details_card_main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single {
  justify-content: space-between;
  display: flex;
  gap: 15px;
  min-height: 300px;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single .fund_details_card_main_card {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  overflow: hidden;
  flex-grow: 1;
  padding: 30px 25px;
  position: relative;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single .fund_details_card_main_card::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 85%;
  height: 85%;
  z-index: 0;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single .fund_details_card_main_card .title {
  color: var(--Primary-White, #FFF);
  font-family: var(--font-primary-700);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
  position: relative;
  z-index: 1;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single .fund_details_card_main_card .value {
  color: var(--Primary-White, #FFF);
  font-family: var(--font-primary-600);
  font-size: 35px;
  font-style: normal;
  line-height: normal;
  margin: 0;
  position: relative;
  z-index: 1;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single .vertical_card {
  width: 65px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single .vertical_card .go {
  color: #000;
  text-align: center;
  font-family: var(--font-primary-600);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  width: 50px;
  height: 50px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single .two_cards_main {
  width: 100%;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .fund_details_card_main_single .two_cards_main .fund_details_card_main_card:nth-child(1) {
  margin: 0 0 20px;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .escrow_card .fund_details_card_main_card {
  background: linear-gradient(176deg, #4599F8 3.32%, #E4EFF5 97.55%);
}
.investor_banner_sec .investor_details_main .fund_details_card_main .escrow_card .fund_details_card_main_card::after {
  background: url(../img/banner/escrow-bg.png) bottom right no-repeat;
  background-size: cover;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .escrow_card .vertical_card {
  background: #4599F8;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .dividends_card .fund_details_card_main_card {
  background: linear-gradient(120deg, rgb(130, 144, 202) 5.04%, #8f94ce 91.06%);
}
.investor_banner_sec .investor_details_main .fund_details_card_main .dividends_card .fund_details_card_main_card::after {
  background: url(../img/banner/divident-bg.png) bottom right no-repeat;
  background-size: cover;
  width: 100%;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .dividends_card .vertical_card {
  background: #828EC0;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .contract_card .fund_details_card_main_card {
  background: linear-gradient(180deg, #7B81FA 0%, #C5C7FF 100%);
}
.investor_banner_sec .investor_details_main .fund_details_card_main .contract_card .fund_details_card_main_card::after {
  background: url(../img/banner/contract-bg.png) bottom left no-repeat;
  background-size: cover;
  left: -20px;
  height: 100%;
  width: 100%;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .contract_card .fix_term_note::after {
  background: url(../img/banner/fix_term_note.png) bottom left no-repeat;
  background-size: cover;
}
.investor_banner_sec .investor_details_main .fund_details_card_main .contract_card .vertical_card {
  background: #7F84FA;
}

.vertical_card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding: 10px;
}
.vertical_card .vertical_title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  margin: 0;
  color: #FFF;
  text-align: center;
  font-family: var(--font-primary-600);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px; /* 126.923% */
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 20px 0 15px;
  flex-grow: 1;
}

.my_contracts_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 2rem;
}

.left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.left .title {
  line-height: 20px;
  margin: 0;
}

.value_tabs_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.value_tabs_main .single_value {
  color: #000;
  font-family: var(--font-primary-300);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #E0E2E6;
  padding: 8px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  border: none;
}
.value_tabs_main .active {
  background: #0090FF;
  color: #fff;
}

.title {
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-600);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.more_link {
  background: #E0E2E6;
  padding: 8px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  color: #404041;
  font-family: var(--font-primary-300);
  font-size: 16px;
  cursor: pointer;
}

.contract_cards_main {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
.contract_cards_main .contract_card_single .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E9F2F9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contract_cards_main .contract_card_single .header .title {
  margin: 0;
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-500);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.contract_cards_main .contract_card_single .header .contract_logo_area {
  width: 100px;
}
.contract_cards_main .contract_card_single .header .contract_logo_area img {
  width: 100%;
}

.stats-row {
  display: flex;
  justify-content: space-between; /* Or use space-around / center */
  align-items: center;
  padding: 0;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}
.stats-row .stat-item {
  text-align: center;
  width: 28%;
}
.stats-row .stat-item:nth-child(1), .stats-row .stat-item:nth-child(2) {
  width: 46%;
}
.stats-row .stat-item .stat-label {
  margin: 0 0 4px;
  color: #0090FF;
  text-align: center;
  font-family: var(--font-primary-400);
  font-size: 13px;
  font-style: normal;
  line-height: 15px;
}
.stats-row .stat-item .stat-value {
  color: var(--Primary-Dark, #404041);
  text-align: center;
  font-family: var(--font-primary-500);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.custom-progress {
  background-color: #d9dde0;
  border-radius: 30px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 0;
  font-weight: bold;
  font-size: 14px;
}
.custom-progress .custom-progress-bar {
  background-color: #0098ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  height: 100%;
  white-space: nowrap;
  padding: 0 15px;
  font-size: 14px;
}
.custom-progress .amount {
  color: #404041;
  font-size: 14px;
}

.custom-progress .amount {
position:absolute;
right: 15px;
}

.custom-progress {
  position: relative;
  padding: 0px;
}

.custom-progress .custom-progress-bar { color: black;}

.card_footer {
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card_footer .countdown_mian {
  display: flex;
  align-items: center;
  gap: 6px;
}
.card_footer .countdown_mian .countdown {
  color: #333;
  letter-spacing: 1px;
  text-align: center;
  color: #404041;
  text-align: center;
  font-family: var(--font-primary-300);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.table_scroll {
  max-height: 550px;
  overflow-y: auto;
}
.table_scroll table th {
  position: sticky;
  top: 0;
  z-index: 1;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
table th {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-primary-400);
  font-weight: 400;
  padding: 15px 10px;
  text-align: center;
}
table th:nth-child(1) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
table th:nth-last-child(1) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
table td {
  background-color: #ffffff;
  padding: 10px 10px;
  color: #333;
  font-size: 14px;
  font-family: var(--font-primary-400);
  text-align: center;
  white-space: nowrap;
}
table td:nth-child(1) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
table td:nth-last-child(1) {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
table td.amount, table .amount {
  color: var(--primary-color);
  font-family: var(--font-primary-600);
}

.disburse {
  color: #131C43;
  text-align: center;
  font-family: var(--font-primary-600);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 5rem;
}

.recent_activities_main {
  padding: 35px 0 20px;
}

.section_title {
  color: #404041;
  font-family: var(--font-primary-500);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}

footer {
  background: #fff;
  text-align: center;
}
footer p {
  margin: 0;
  padding: 20px 0;
  font-size: 14px;
  font-family: var(--font-primary-400);
}

.menu_close {
  display: none;
}

.landing_wrapper {
  background: url(../img/landing_pages/bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 15px 0 50px;
  min-height: 100vh;
  overflow: auto;
}

.landing_main .header {
  width: 153px;
  margin: 0 0 2rem;
}
.landing_main .header img {
  width: 100%;
}

.landing_section {
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 25px 35px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px;
}
.landing_section figure img {
  width: 100%;
}
.landing_section figure, .landing_section article {
  width: 48%;
}
.landing_section article .lan_drop_main {
  display: flex;
  justify-content: flex-end;
}

.landing_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 1.5rem 2rem 1rem;
}
.landing_header .lan_title {
  margin: 0;
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-700);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.landing_header .register {
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.landing_header .register a {
  color: var(--primary-color);
}
.landing_header .register a:hover {
  color: var(--secondary-color);
}

.landing_form {
  max-height: 410px;
  overflow: hidden;
  padding: 0 2rem;
  overflow-y: auto;
}

.form-group {
  margin: 0 0 1.5rem;
}
.form-group label {
  color: #404041;
  font-family: var(--font-primary-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 5px;
}
.form-group .form-control {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #EEE;
  font-size: 14px;
  height: 40px;
  padding: 0 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 1px 23px 11px rgba(255, 255, 255, 0.25);
}
.form-group .form-control:hover, .form-group .form-control:active, .form-group .form-control:focus {
  background: var(--white);
}

.password-container {
  position: relative;
}

img.toggle-icon {
  width: 20px;
  position: absolute;
  right: 14px;
  top: 12px;
  cursor: pointer;
}

.captcha_main {
  position: relative;
}
.captcha_main .form-control {
  padding-right: 11rem;
}
.captcha_main .captcha_content {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px 0 0;
}
.captcha_main .captcha_content .captcha_img {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  margin: 0 12px 0 0;
  background: #1560B4;
  min-width: 110px;
  text-align: center;
  padding: 2px 10px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.captcha_main .captcha_content .captcha_img img {
  mix-blend-mode: screen;
  filter: invert(1) brightness(2) contrast(10) saturate(0);
  -webkit-filter: invert(1) brightness(2) contrast(10) saturate(0);
}
.captcha_main .captcha_content .reload_icon {
  width: 18px;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s ease, top 0.5s ease;
  z-index: 9999;
  min-width: 220px;
  text-align: center;
}

.toast.success {
  background-color: #e0f7ff;
  color: #007bff;
}

.toast.failed {
  background-color: #ffe0e0;
  color: #ff4c4c;
}

.toast.show {
  opacity: 1;
  top: 20px;
}

.inner_page_wrapper {
  background: linear-gradient(180deg, #B9E1FF 0%, #EFF2FA 50%, #B9E1FF 100%);
  padding: 2rem 0 3rem;
  min-height: calc(100vh - 120px);
}
.inner_page_wrapper .refer_friends {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  overflow: hidden;
  background: linear-gradient(176deg, #87C8F9 3.32%, #D9EEF9 97.55%);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.inner_page_wrapper .refer_friends::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  height: 100%;
  background: url(../img/refer/bg.png) center right no-repeat;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}
.inner_page_wrapper .refer_friends article {
  position: relative;
  z-index: 1;
  max-width: 350px;
}
.inner_page_wrapper .refer_friends article .head {
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-600);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.inner_page_wrapper .refer_friends article p {
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-400);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.qr_section {
  width: 40%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr_area {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.78);
  padding: 30px;
}
.qr_area canvas {
  width: 140px;
}

.refer_diagram_main {
  margin: 2rem 0 0;
}
.refer_diagram_main .head {
  color: #404041;
  font-family: var(--font-primary-500);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.refer_diagram_content {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  background: var(--BG, linear-gradient(180deg, #E9F2F9 0%, #D4ECFF 50%, #75C3FF 100%));
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 50px;
}

.accordion-down {
  display: none;
}

.diagram-card {
  background: url(../img/refer/diagram_bg.png) center center no-repeat;
  background-size: 660px;
  min-height: 520px;
}

.hierarchy-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
}
.hierarchy-box .diagram_user_icon {
  width: 45px;
}
.hierarchy-box .hierarchy-title {
  padding: 0;
  color: var(--Dark-Grey, #2F2E2A);
  font-family: var(--font-primary-600);
  font-size: 18px;
  font-style: normal;
  line-height: 18px;
}
.hierarchy-box .user_value {
  color: #237DC0;
  font-family: "Avenir Next";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 5px 0 0;
}

.walletbgforprogram .bgfirst {
  border-radius: 50px;
  border: 1px solid var(--Primary-Main, #237DC0);
  background: var(--Off-White, #FFF);
}

.ciclebx {
  right: 10px;
}

.archive_0 ul li:before {
  content: "";
  display: block;
  height: 120px;
  width: 65px;
  border-left: 1px solid #237DC0;
  border-bottom: 1px solid #237DC0;
  position: absolute;
  left: -33px;
  top: -60px;
  border-bottom-left-radius: 0;
}

.archive_0 ul li:after {
  border-left: 1px solid #237DC0;
  border-bottom: 0px solid #237DC0;
  left: -33px;
}

.diagram-card-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.search-id-area {
  display: flex;
  align-items: stretch;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #EEE;
  opacity: 0.7;
  background: var(--Primary-White, #FFF);
  box-shadow: 0px 1px 23px 11px rgba(255, 255, 255, 0.25);
}
.search-id-area .form-control {
  border: none;
  padding: 0 15px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.search-btnss {
  border: none;
  padding: 0 15px 0 0;
  background: none;
}

.inner_page_card {
  border-radius: 50px;
  padding: 2rem 2.5rem;
  background: var(--BG, linear-gradient(180deg, #E9F2F9 0%, #D4ECFF 50%, #75C3FF 100%));
  position: relative;
}

.inner_page_card::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  right: 20px;
  pointer-events: none;
  z-index: 0;
}

.deposit_card::after {
  background: url(../img/deposit_bg.png) 95% 78% no-repeat;
  background-size: contain;
}

.fix_contract_card::after {
  background: url(../img/fix_contract.png) 95% 78% no-repeat;
  background-size: contain;
}

.contract_period_card::after {
  background: url(../img/contract_period_bg.png) 95% 78% no-repeat;
  background-size: contain;
}

.inner_page_card_content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 50px;
}
.inner_page_card_content .card_header, .inner_page_card_content .card_form {
  width: 35%;
  position: relative;
  padding-bottom: 50px;
}
.inner_page_card_content .card_header button, .inner_page_card_content .card_form button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  right: 0;
}
.inner_page_card_content .card_header .head {
  color: #404041;
  font-family: var(--font-primary-600);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 1rem;
}
.inner_page_card_content .card_form .form-group {
  margin: 0 0 0.5rem;
}
.inner_page_card_content .card_form .form-group label {
  color: #404041;
  font-family: var(--font-primary-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.inner_page_card_content .card_form .form-group .form-control {
  font-size: 13px;
  height: 37px;
}
.inner_page_card_content .contract_form {
  padding-bottom: 0;
}
.inner_page_card_content .contract_form button {
  margin: 0.5rem 0 0;
  position: relative;
}
.inner_page_card_content .contract_form .form-group label {
  margin: 0 0 0.6rem;
}

.contract_period_area .card_header, .contract_period_area .card_form {
  padding: 0;
}

.package_btns_main {
  position: relative;
  z-index: 2;
  width: 74%;
  gap: 40px;
  display: flex;
}

.tooltip_btn {
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
}
.tooltip_btn img {
  width: 100%;
}
.tooltip_btn:hover, .tooltip_btn:focus, .tooltip_btn:active {
  background: none;
}

.tooltip-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  display: inline-block;
}
.tooltip-wrapper .tooltip-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-weight: bold;
  font-size: 14px;
}
.tooltip-wrapper .tooltip-icon img {
  width: 100%;
}
.tooltip-wrapper .tooltip-text {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  left: -50px;
  top: 180%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(170, 170, 170, 0.8);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  font-family: var(--font-primary-700);
  padding: 6px 10px;
  white-space: nowrap;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tile_filter_main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  margin: 0 0 1rem;
}
.tile_filter_main .section_title {
  margin: 0;
  line-height: 30px;
}
.tile_filter_main .filter_main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: flex-end;
  gap: 25px;
}
.tile_filter_main .filter_main .form-group {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.tile_filter_main .filter_main .form-group .form-control, .tile_filter_main .filter_main .form-group .select2-container--default .select2-selection--single, .tile_filter_main .filter_main .form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
}
.tile_filter_main .filter_main button {
  height: 40px;
}

.filter_btn, .filter_close_btn {
  display: none;
}

.disclaimer_card {
  position: relative;
  z-index: 2;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2.5px);
  padding: 20px 50px 30px;
  margin: 3rem 0 0;
}
.disclaimer_card .head {
  color: #404041;
  font-family: var(--font-primary-500);
  font-size: 32px;
  font-style: normal;
  line-height: 36px;
}
.disclaimer_card p {
  margin: 0;
  color: #7F7F7F;
  font-family: var(--font-primary-400);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.with_checkbox {
  padding-left: 75px;
}

.agreement_checkbox {
  left: -35px;
  top: 5px;
}

.fund_card {
  padding: 25px;
  min-height: 140px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border-radius: 40px;
  background: linear-gradient(176deg, #4599F8 3.32%, #E4EFF5 97.55%);
  display: flex;
  flex-direction: column;
  position: relative;
}
.fund_card::before {
  position: absolute;
  content: "";
  background: url(../img/fund_card_bg.png) bottom right no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.fund_card .title {
  color: #fff;
  line-height: 24px;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
.fund_card .value {
  color: var(--Primary-White, #FFF);
  font-family: var(--font-primary-600);
  font-size: 30px;
  font-style: normal;
  line-height: 24px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.custom_radio_main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.custom_radio_main .radio_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
}
.custom_radio_main .radio_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom_radio_main .radio_container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
}
.custom_radio_main .radio_container:hover input ~ .checkmark {
  background-color: #fff;
}
.custom_radio_main .radio_container input:checked ~ .checkmark {
  background-color: #fff;
}
.custom_radio_main .radio_container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom_radio_main .radio_container input:checked ~ .checkmark:after {
  display: block;
}
.custom_radio_main .radio_container .checkmark:after {
  top: 6px;
  left: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-color);
}

.checkbox_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox_container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1.5px solid #404041;
}
.checkbox_container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox_container .checkmark:after {
  left: 8px;
  top: 1px;
  width: 7px;
  height: 16px;
  border: solid #000;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.inner_page_card_content .contract_form .custom_radio_main .radio_container {
  margin: 0;
}

.two_value_main .two_value_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem;
}
.two_value_main .two_value_row .head, .two_value_main .two_value_row .value {
  margin: 0;
  color: #000;
  font-family: var(--font-primary-500);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.sec_head {
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-600);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.custom-modal-content {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  border: none;
  padding: 1rem;
}

.nodata_main {
  background: none;
}
.nodata_main .nodata {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 45px 0;
}
.nodata_main .nodata figure {
  margin: 0;
  width: 250px;
}
.nodata_main .nodata figure img {
  width: 100%;
}
.nodata_main .nodata article {
  margin: 0;
  color: var(--Primary-Dark, #404041);
  text-align: center;
  font-family: var(--font-primary-600);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.select_dropdown {
  position: relative;
}
.select_dropdown::after {
  position: absolute;
  content: "";
  pointer-events: none;
  width: 10px;
  height: 10px;
  background: url(../img/icons/down_arrow_dark.svg) center center no-repeat;
  background-size: cover;
  top: 15px;
  right: 15px;
}

.phone_number {
  display: flex;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #EEE;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 1px 23px 11px rgba(255, 255, 255, 0.25);
  padding: 5px;
}
.phone_number select.js-example-basic-single {
  width: 110px;
  padding: 0 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  background: rgba(209, 209, 209, 0.8);
  appearance: none;
}
.phone_number select.js-example-basic-single:hover, .phone_number select.js-example-basic-single:focus, .phone_number select.js-example-basic-single:active, .phone_number select.js-example-basic-single:visited {
  background: rgba(209, 209, 209, 0.8);
}
.phone_number .select2-container--default .select2-selection--single {
  height: 26px;
}
.phone_number .select2-container {
  background: rgba(209, 209, 209, 0.8) !important;
}
.phone_number .form-control {
  background: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  height: auto;
}
.phone_number .select_dropdown::after {
  top: 8px;
  right: 10px;
}

.profile_page_contents {
  display: flex;
  justify-content: space-between;
}
.profile_page_contents .head {
  color: #404041;
  font-family: var(--font-primary-600);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 1.5rem;
}
.profile_page_contents article {
  margin: 0;
  width: 40%;
}
.profile_page_contents figure {
  width: 50%;
  margin: 0;
}
.profile_page_contents figure img {
  width: 100%;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  padding-top: 30px;
}

.white_gradient_bg {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  padding: 2rem 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(233, 242, 249, 0.02) 100%);
}

.btn-bordered {
  background: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #4599F8;
  color: #4599F8;
}
.btn-bordered:hover, .btn-bordered:visited, .btn-bordered:active, .btn-bordered:focus {
  background: none;
  color: #4599F8;
}

.with_icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

select.form-control {
  appearance: none;
}

.word_wrap {
  word-break: break-all;
  padding-right: 50px !important;
}

.support_table_header {
  margin: 50px 0 0;
}

.tile_filter_main .support_filter {
  grid-template-columns: 1fr 1fr 1fr;
}

.support_chat_main {
  padding: 60px;
  border-radius: 50px;
  background: var(--card-bg, linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(233, 242, 249, 0.8) 100%));
}

.chat_area_main {
  flex: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 15px 0 0;
  background: #fff;
  padding: 20px 100px;
}

.chat-container {
  margin: 0 auto;
}

.date-divider {
  text-align: center;
  font-weight: 700;
  color: #000;
  margin: 10px 0;
  font-size: 12px;
}

.message-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.message-row.receiver {
  justify-content: flex-start;
}

.message-row.sender {
  justify-content: flex-end;
}
.message-row.sender .message-group {
  align-items: flex-end;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1D4E89;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.message-bubble {
  max-width: 75%;
  padding: 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.receiver .message-bubble {
  background-color: #F2F2F2;
  color: #333;
  border-top-left-radius: 0;
}

.sender .message-bubble {
  background-color: #EAF6FF;
  color: #333;
  border-top-right-radius: 0;
}

.timestamp {
  font-size: 10px;
  color: #666;
  margin-top: 5px;
}

.message-group {
  display: flex;
  flex-direction: column;
  margin: 0 0 1.4rem;
}

/* Input area */
.input-area {
  display: flex;
  align-items: flex-start;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--Primary-Color, #CCC);
  background: var(--Primary-White, #FFF);
  box-shadow: 0 1px 23px 11px rgba(255, 255, 255, 0.25);
}
.input-area input {
  flex: 1;
  padding: 0;
  border-radius: 20px;
  border: none;
  outline: none;
}
.input-area button {
  margin: 30px 0 0;
  padding: 4px 20px;
  border-radius: 20px;
  border: none;
  background-color: #ccc;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 110px;
}

.input-area button:hover {
  background-color: #999;
}

/* Active State */
.input-area.active {
  border-color: #0090FF; /* Blue border */
}

.input-area.active button {
  background-color: #0090FF; /* Blue button */
}

/* Responsive */
@media (max-width: 600px) {
  .message-bubble {
    max-width: 85%;
  }
}
.support_chat_header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.support_chat_header .back_btn {
  background: #fff;
  border-radius: 50px;
  padding: 1px 20px;
  color: #0090FF;
  text-align: center;
  font-family: var(--font-primary-600);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 3.8px;
}
.support_chat_header .support_chat_heading {
  color: var(--Primary-Dark, #404041);
  font-family: var(--font-primary-700);
  font-size: 20px;
  margin: 0;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/*# sourceMappingURL=layout.css.map */
