@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary_font_family: "Poppins", sans-serif;
  --primary: #4059f4;
  --text_dark: #060918;
  --text_blue: #1a2462;
  --bg_light: #f7f8fb;
  --bg_gray: #eef0f2;
  --text_light: #6e6e6e;
  --border_color: #e6e9ec;
  --white: #ffffff;
  --black: #000000;
  --success: #01ab07;
  --warning: #f59e0b;
  --danger: #cc0001;
  --warningLight: #f9f1e2;
  --dangerLight: #f9e7ea;
  --successLight: #f0ffee;
  --primaryLight: #f5f6fe; }

html {
  overflow: hidden; }

body {
  font-size: 16px;
  font-family: var(--primary_font_family);
  color: var(--text_dark);
  overflow: hidden;
  position: relative;
  height: 100vh;
  background: var(--bg_light); }

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

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

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

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

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

.text_success {
  color: var(--success); }

.text_warning {
  color: var(--warning); }

.text_danger {
  color: var(--danger); }

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

.bg_light {
  background: var(--bg_light) !important; }

p {
  font-size: 15px;
  line-height: 1.3;
  color: var(--text_light);
  font-weight: 400; }

.text_10 {
  font-size: 10px !important; }

.text_12 {
  font-size: 12px !important; }

.text_14 {
  font-size: 14px !important; }

.text_16 {
  font-size: 16px !important; }

.text_18 {
  font-size: 18px !important; 
  color: #A5ABB4; 
  }

.line_height_20 {
  line-height: 20px; }

.line_height_100 {
  line-height: 100%; }

a {
  text-decoration: none;
  color: var(--text_dark);
  font-size: 14px;
  transition: 0.5s ease; }

.link {
  text-decoration: underline;
  text-underline-offset: 2px; }
  .link:hover {
    color: var(--primary);
    text-decoration: none; }

a:hover {
  color: var(--primary); }

h1,
.h1 {
  font-size: 48px;
  font-weight: 500; }

h2,
.h2 {
  font-size: 40px;
  font-weight: 500; }

h3,
.h3 {
  font-size: 32px;
  font-weight: 500; }

h4,
.h4 {
  font-size: 24px;
  font-weight: 500; }

h5,
.h5 {
  font-size: 18px;
  font-weight: 500; }

h6,
.h6 {
  font-size: 16px;
  font-weight: 500; }

.fw_100 {
  font-weight: 100 !important; }

.fw_200 {
  font-weight: 200 !important; }

.fw_300 {
  font-weight: 300 !important; }

.fw_400 {
  font-weight: 400 !important; }

.fw_500 {
  font-weight: 500 !important; }

.fw_600 {
  font-weight: 600 !important; }

.fw_700 {
  font-weight: 700 !important; }

ul {
  padding: 0;
  margin: 0;
  list-style: none; }

img {
  max-width: 100%; }

.container {
  max-width: 1450px; }

::-webkit-scrollbar {
  width: 4px;
  height: 4px; }

/* Track */
::-webkit-scrollbar-track {
  background: #f7f7f7; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c0c0c0; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000; }

.btn_primary {
  background: var(--primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  padding: 20px 30px;
  border-radius: 40px;
  border: 1px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  gap: 10px; }
  .btn_primary img {
    filter: brightness(0) invert(1); }
  .btn_primary:hover {
    background: transparent;
    color: var(--primary); }
    .btn_primary:hover img {
      filter: inherit; }
  .btn_primary.small {
    padding: 8px 20px;
    font-size: 14px; }

.btn_border {
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  color: var(--text_dark);
  padding: 20px 30px;
  border-radius: 40px;
  border: 1px solid var(--text_dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  gap: 20px; }
  .btn_border:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white); }
    .btn_border:hover img {
      filter: brightness(0) invert(1); }
  .btn_border.small {
    padding: 8px 20px;
    font-size: 14px; }

.btn_darkBlue {
  background: var(--text_blue);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  padding: 20px 30px;
  border-radius: 40px;
  border: 1px solid var(--text_blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  gap: 10px; }
  .btn_darkBlue img {
    filter: brightness(0) invert(1); }
  .btn_darkBlue:hover {
    background: transparent;
    color: var(--text_blue); }
    .btn_darkBlue:hover img {
      filter: inherit; }
  .btn_darkBlue.small {
    padding: 8px 20px;
    font-size: 14px; }

.btn_borderDarkBlue {
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  color: var(--text_blue);
  padding: 20px 30px;
  border-radius: 40px;
  border: 1px solid var(--text_blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  gap: 20px; }
  .btn_borderDarkBlue:hover {
    background: var(--text_blue);
    border: 1px solid var(--text_blue);
    color: var(--white); }
    .btn_borderDarkBlue:hover img {
      filter: brightness(0) invert(1); }
  .btn_borderDarkBlue.small {
    padding: 8px 20px;
    font-size: 14px; }

.form_group {
  margin: 0 0 15px; }
  .form_group label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: var(--bg_gray);
    display: inline-block;
    margin: 0 0 10px; }
    .form_group label span {
      color: var(--red); }
  .form_group .form-control {
    border: 1px solid var(--border_color);
    padding: 10px 17px;
    border-radius: 12px;
    box-shadow: none !important; }
    .form_group .form-control.large {
      padding: 15px 17px; }
  .form_group .form-select {
    border: 1px solid var(--border_color);
    padding: 10px 17px;
    border-radius: 12px;
    box-shadow: none !important;
    background: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 16px center; }
    .form_group .form-select.large {
      padding: 15px 17px; }

.btn_primary.click_btn {
  padding: 5px 10px;
  border-radius: 15px; }

.cmn_radio_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px; }
  .cmn_radio_wrap input {
    display: none; }
  .cmn_radio_wrap label {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 400;
    padding: 30px 25px 30px 60px;
    background: var(--white);
    border: 1px solid var(--border_color);
    border-radius: 20px; }
    .cmn_radio_wrap label::after {
      content: "";
      position: absolute;
      width: 25px;
      height: 25px;
      display: inline-block;
      left: 25px;
      top: 50%;
      transform: translateY(-50%);
      border: 2px solid var(--border_color);
      background: var(--white);
      border-radius: 50%; }
    .cmn_radio_wrap label::before {
      content: "";
      position: absolute;
      width: 13px;
      height: 13px;
      display: inline-block;
      left: 31px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--white);
      border-radius: 50%; }
  .cmn_radio_wrap [type="radio"]:checked + label:after {
    background: #b0baf8;
    border-color: var(--primary); }
  .cmn_radio_wrap [type="radio"]:checked + label::before {
    background: var(--primary);
    z-index: 10; }

.btn_transparent {
  background: transparent;
  border: none;
  padding: 0; }

.custom_radio_wrapper.inline_radio {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; }
  .custom_radio_wrapper.inline_radio .form-check {
    margin: 0;
    padding: 0; }
    .custom_radio_wrapper.inline_radio .form-check .form-check-input {
      display: none; }
      .custom_radio_wrapper.inline_radio .form-check .form-check-input:checked + .form-check-label {
        background: var(--secondary);
        border-color: var(--secondary);
        color: var(--white); }
    .custom_radio_wrapper.inline_radio .form-check .form-check-label {
      padding: 10px 27px;
      border: 1px solid var(--text_dark);
      border-radius: 14px;
      font-size: 14px;
      font-weight: 500;
      line-height: 18px; }

.custom_checkbox {
  padding: 0;
  margin: 0; }
  .custom_checkbox .form-check-input {
    display: none; }
    .custom_checkbox .form-check-input:checked + .form-check-label:before {
      background: var(--primary);
      border-color: var(--primary); }
  .custom_checkbox .form-check-label {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text_dark);
    padding-left: 33px;
    position: relative; }
    .custom_checkbox .form-check-label:before {
      content: "";
      position: absolute;
      left: 0;
      top: 2px;
      width: 24px;
      height: 24px;
      border-radius: 9px;
      border: 1px solid var(--border_color); }
    .custom_checkbox .form-check-label:after {
      content: "";
      position: absolute;
      left: 6px;
      top: 9px;
      width: 13px;
      height: 10px;
      background: url(../images/check.svg);
      background-size: 13px;
      background-repeat: no-repeat; }

.badge {
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid var(--primary);
  background-color: var(--primaryLight) !important;
  color: var(--primary); }
  .badge.bg-success {
    background-color: var(--successLight) !important;
    color: var(--success);
    border-color: var(--success); }
  .badge.bg-warning {
    background-color: var(--warningLight) !important;
    color: var(--warning);
    border-color: var(--warning); }
  .badge.bg-danger {
    background-color: var(--dangerLight) !important;
    color: var(--danger);
    border-color: var(--danger); }
  .badge.bg-gray {
    color: var(--text_light);
    border-color: var(--text_light);
    background: var(--bg_light); }

.pagination_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px; }
  .pagination_wrapper li button {
    color: var(--text_dark);
    font-size: 16px;
    border: 0;
    background: transparent;
    padding: 0; }
    .pagination_wrapper li button.page {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .pagination_wrapper li button.page.active {
        background: var(--bg_gray); }
    .pagination_wrapper li button.previous, .pagination_wrapper li button.next {
      display: flex;
      align-items: center;
      gap: 10px; }
      .pagination_wrapper li button.previous[disabled], .pagination_wrapper li button.next[disabled] {
        opacity: 0.5; }

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 40px; }
  .breadcrumbs ul li {
    font-size: 16px;
    color: var(--text_dark);
    position: relative; }
    .breadcrumbs ul li:before {
      content: "";
      position: absolute;
      right: -28px;
      top: 3px;
      background: url(../images/right-arrow.svg);
      width: 18px;
      height: 18px;
      background-size: 8px;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.5; }
    .breadcrumbs ul li:last-child:before {
      display: none; }
    .breadcrumbs ul li a {
      color: var(--text_light);
      font-size: 16px;
      font-weight: 500; }

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

.progress {
  width: 100%;
  height: 20px;
  background: var(--bg_gray);
  border-radius: 40px; }
  .progress .progress-bar {
    height: 20px;
    width: 0%;
    border-radius: 40px;
    transition: 0.4s; }
    .progress .progress-bar.success {
      background: #c8eac9;
      color: var(--success); }

.custom_checkbox_wrapper .form-group > input {
  display: none; }
  .custom_checkbox_wrapper .form-group > input:checked + label {
    border-color: var(--primary);
    background: var(--primaryLight);
    border-radius: 8px; }
    .custom_checkbox_wrapper .form-group > input:checked + label input.form-control {
      display: block; }
    .custom_checkbox_wrapper .form-group > input:checked + label:after {
      display: block; }
    .custom_checkbox_wrapper .form-group > input:checked + label:before {
      background: #d5daf9;
      border-color: var(--primary); }
.custom_checkbox_wrapper .form-group label {
  display: block;
  padding: 30px 30px 30px 70px;
  background: var(--white);
  border: 1px solid #ccd2d9;
  border-radius: 20px;
  cursor: pointer;
  position: relative; }
  .custom_checkbox_wrapper .form-group label:before {
    content: "";
    position: absolute;
    left: 24px;
    top: 26px;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    background: #fbfbfb; }
  .custom_checkbox_wrapper .form-group label:after {
    content: "";
    position: absolute;
    left: 32px;
    top: 35px;
    width: 16px;
    height: 11px;
    border-radius: 4px;
    background: url(../images/check-blue.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    display: none; }
  .custom_checkbox_wrapper .form-group label input.form-control {
    margin-top: 20px;
    margin-left: -45px;
    width: calc(100% + 45px);
    border-color: var(--primary);
    background: var(--white);
    color: var(--text_blue);
    display: none; }

.main_wrapper {
  display: flex;
  height: 100%; }
  @media (min-width: 1200px) {
    .main_wrapper.colllapse .sidebar_wrapper {
      width: 100px; }
      .main_wrapper.colllapse .sidebar_wrapper .logo_wrap img.logoMain {
        display: none; }
      .main_wrapper.colllapse .sidebar_wrapper .logo_wrap img.logoIcon {
        display: block; }
      .main_wrapper.colllapse .sidebar_wrapper .logo_wrap .toggle_button {
        transform: rotate(180deg); }
      .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper {
        padding: 10px; }
        .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper:has(.has_submenu ul.open) {
          overflow: inherit; }
        .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper > ul > li a {
          font-size: 0;
          gap: 0;
          justify-content: center; }
        .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper > ul > li .btn_menu {
          justify-content: center;
          font-size: 0;
          gap: 0; }
          .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper > ul > li .btn_menu:after {
            display: none; }
        .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper > ul > li.has_submenu {
          position: relative; }
          .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper > ul > li.has_submenu ul.open {
            position: absolute;
            left: 90px;
            top: 0;
            z-index: 999;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            white-space: nowrap; }
            .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper > ul > li.has_submenu ul.open li a {
              font-size: 13px;
              padding: 7px 20px; }
        .main_wrapper.colllapse .sidebar_wrapper .menu_wrapper .refferalLink p {
          font-size: 0;
          gap: 0; }
      .main_wrapper.colllapse .sidebar_wrapper .copyright_wrap {
        display: none; }
    .main_wrapper.colllapse .main_content {
      width: calc(100% - 100px); }
    .main_wrapper .sidebar_toggle {
      display: none; } }
  .main_wrapper .sidebar_toggle .btn_transparent {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg); }
  .main_wrapper .sidebar_wrapper {
    width: 255px;
    height: 100vh;
    background: var(--white);
    border-right: 1px solid var(--border_color);
    transition: 0.5s ease; }
    .main_wrapper .sidebar_wrapper .logo_wrap {
      padding: 40px 16px;
      border-bottom: 1px solid var(--border_color);
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .main_wrapper .sidebar_wrapper .logo_wrap img {
        height: 40px;
        object-fit: contain; }
        .main_wrapper .sidebar_wrapper .logo_wrap img.logoIcon {
          display: none; }
      .main_wrapper .sidebar_wrapper .logo_wrap .toggle_button {
        transition: 0.5s ease; }
        .main_wrapper .sidebar_wrapper .logo_wrap .toggle_button button img {
          width: 15px; }
    .main_wrapper .sidebar_wrapper .menu_wrapper {
      height: calc(100% - 120px);
      overflow-y: auto;
      padding: 30px; }
      .main_wrapper .sidebar_wrapper .menu_wrapper > ul {
        display: flex;
        flex-direction: column;
        gap: 8px; }
        .main_wrapper .sidebar_wrapper .menu_wrapper > ul hr {
          background-color: var(--border_color);
          opacity: 1;
          margin: 4px 0; }
        .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li.has_submenu:has(ul li a.active) .btn_menu {
          background: #eceefe;
          color: var(--primary); }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li.has_submenu:has(ul li a.active) .btn_menu img {
            filter: inherit; }
        .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li > a {
          padding: 12px 16px;
          font-size: 14px;
          font-weight: 500;
          display: flex;
          align-items: center;
          gap: 8px;
          color: var(--text_dark);
          width: 100%;
          border-radius: 6px; }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li > a img {
            filter: grayscale(1); }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li > a.active {
            background: #eceefe;
            color: var(--primary); }
            .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li > a.active img {
              filter: inherit; }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li > a:hover {
            background: #eceefe; }
        .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li .btn_menu {
          background: transparent;
          padding: 12px 16px;
          font-weight: 500;
          border: 0;
          display: flex;
          align-items: center;
          gap: 8px;
          width: 100%;
          position: relative;
          font-size: 14px;
          border-radius: 6px;
          transition: 0.5s ease; }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li .btn_menu:after {
            content: "";
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: url(../images/chevron-down.svg);
            border: 0;
            margin: 0;
            background-size: 15px;
            background-repeat: no-repeat; }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li .btn_menu img {
            filter: grayscale(1); }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li .btn_menu:hover {
            background: #eceefe; }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li .btn_menu.show {
            background: #eceefe;
            color: var(--primary); }
            .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li .btn_menu.show img {
              filter: inherit; }
        .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li ul {
          display: none; }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li ul.open {
            display: block; }
          .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li ul li a {
            padding: 12px 28px;
            font-size: 12px;
            font-weight: 500;
            display: block; }
            .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li ul li a.active {
              color: var(--primary);
              background: transparent; }
            .main_wrapper .sidebar_wrapper .menu_wrapper > ul > li ul li a:hover {
              color: var(--primary);
              background: transparent; }
      .main_wrapper .sidebar_wrapper .menu_wrapper .refferalLink {
        padding: 16px 24px;
        border: 1px solid var(--border_color);
        border-radius: 12px; }
        .main_wrapper .sidebar_wrapper .menu_wrapper .refferalLink p {
          display: flex;
          align-items: center;
          gap: 5px;
          margin: 0; }
      .main_wrapper .sidebar_wrapper .menu_wrapper .copyright_wrap .support {
        font-size: 10px;
        font-weight: 400;
        margin: 0 0 10px; }
        .main_wrapper .sidebar_wrapper .menu_wrapper .copyright_wrap .support a {
          color: var(--text_dark);
          text-decoration: underline; }
      .main_wrapper .sidebar_wrapper .menu_wrapper .copyright_wrap .copyright {
        font-size: 10px;
        color: var(--text_light); }
  .main_wrapper .main_content {
    width: calc(100% - 255px);
    transition: 0.5s ease;
    height: 100vh; }
    .main_wrapper .main_content .content_wrapper {
      padding: 24px;
      height: calc(100% - 120px);
      overflow: auto; }

header {
  padding: 28px 24px;
  border-bottom: 1px solid var(--border_color); }

.search_bar .form-control {
  padding: 13px 15px 13px 55px;
  background: transparent url(../images/search.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: left 16px center;
  border: 1px solid #939393;
  border-radius: 16px;
  max-width: 430px;
  font-size: 14px;
  box-shadow: none !important; }

ul.user_info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px; }
  ul.user_info li .dropdown {
    margin: 0 0 8px; }
    ul.user_info li .dropdown .dropdown-toggle {
      background: transparent;
      border: 0;
      padding: 0;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 8px; }
      ul.user_info li .dropdown .dropdown-toggle img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover; }
      ul.user_info li .dropdown .dropdown-toggle:after {
        content: "";
        width: 24px;
        height: 24px;
        background: url(../images/chevron-down.svg);
        background-size: 24px;
        border: 0; }
  ul.user_info li .id_wrap {
    display: flex;
    align-items: center;
    gap: 22px; }
    ul.user_info li .id_wrap p {
      margin: 0;
      position: relative; }
      ul.user_info li .id_wrap p:before {
        content: "";
        position: absolute;
        left: -15px;
        top: 6px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #d9d9d9; }
      ul.user_info li .id_wrap p:first-child:before {
        display: none; }

.btn_notification {
  background: #f5f6fe;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0; }

.page_heading {
  padding: 0 0 25px;
  margin: 0 0 25px;
  border-bottom: 1px solid var(--border_color); }

.alert {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  position: relative; }
  .alert .bell_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--warning);
    background: var(--warningLight);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -10px;
    top: -10px;
    position: absolute; }
  .alert.alert-success .bell_icon {
    border: 1px solid var(--success);
    background: var(--successLight); }
    .alert.alert-success .bell_icon span {
      background: var(--success);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 7px;
      color: var(--white);
      position: absolute;
      right: 5px;
      top: 3px;
      transform: rotate(-25deg); }

.alert a {
  color: var(--text_dark);
  text-decoration: underline; }

.alert-warning {
  color: var(--warning);
  background: var(--warningLight);
  border: 1px solid var(--warning); }

.alert-success {
  color: var(--success);
  background: var(--successLight);
  border: 1px solid var(--success); }

.wallet_wrapper {
  padding: 80px;
  background: #f5f6fe;
  border: 1px solid #c2caf8;
  border-radius: 20px; }

.app_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border_color);
  border-radius: 20px;
  gap: 40px;
  padding: 20px; }

.white_box {
  background: var(--white);
  border: 1px solid var(--border_color);
  border-radius: 20px;
  padding: 25px; }

.chart_info ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 130px;
  margin-left: auto; }
  .chart_info ul li {
    font-size: 12px;
    padding-left: 16px;
    position: relative; }
    .chart_info ul li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary); }
    .chart_info ul li.withraw:before {
      background: var(--text_blue); }

.radio_button {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  .radio_button .form-check {
    padding: 0; }
    .radio_button .form-check .form-check-input {
      display: none; }
    .radio_button .form-check .form-check-label {
      font-size: 12px;
      color: var(--text_dark);
      padding: 5px 10px;
      border-radius: 8px;
      border: 1px solid var(--text_dark); }
    .radio_button .form-check .form-check-input:checked + .form-check-label {
      background: var(--text_dark);
      color: var(--white); }

.table_box_common {
  background: var(--white);
  border-radius: 24px; }
  .table_box_common .table_box_head {
    padding: 30px; }
  .table_box_common .table_info_wrap {
    border-top: 1px solid var(--border_color);
    border-bottom: 1px solid var(--border_color); }

.live {
  position: relative;
  padding-left: 20px; }
  .live:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%; }

.table_box_common table {
  width: 100%; }
  .table_box_common table thead tr th {
    background: var(--bg_gray);
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 400;
    border-top: 1px solid var(--border_color);
    border-bottom: 1px solid var(--border_color);
    white-space: nowrap; }
  .table_box_common table tbody tr td {
    padding: 30px 24px;
    font-size: 12px;
    font-weight: 400;
    border-bottom: 1px solid var(--border_color);
    white-space: nowrap;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis; }
.table_box_common .form-select {
  background-color: var(--bg_gray);
  border-radius: 8px;
  border: 0;
  color: #747474;
  box-shadow: none !important;
  font-size: 14px;
  padding: 8px 35px 8px 20px;
  position: relative; }
.table_box_common .form-control {
  background-color: var(--bg_gray);
  border-radius: 8px;
  border: 0;
  color: #747474;
  box-shadow: none !important;
  font-size: 14px;
  padding: 8px 20px 8px 20px;
  position: relative; }
.table_box_common .table_pagination {
  padding: 20px 24px; }

.password_wrapper .form-control {
  background: transparent;
  padding: 0;
  border: 0;
  width: inherit;
  font-size: 12px;
  border-radius: 0;
  display: inline-block; }
.password_wrapper.icon_left {
  position: relative; }
  .password_wrapper.icon_left .form-control {
    width: 100%;
    font-size: 16px;
    padding-left: 50px; }
  .password_wrapper.icon_left .toggle-password {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text_light); }
.password_wrapper.icon_right {
  position: relative; }
  .password_wrapper.icon_right .form-control {
    padding-right: 50px;
    width: 100%;
    font-size: 16px; }
  .password_wrapper.icon_right .toggle-password {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text_light); }

.form-control:focus {
  box-shadow: none !important; }

.flex_custom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px; }

.common_tab_wrapper .nav-tabs {
  border-bottom: 1px solid var(--border_color);
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 10px; }
  .common_tab_wrapper .nav-tabs::-webkit-scrollbar {
    display: none; }
  .common_tab_wrapper .nav-tabs .nav-item {
    flex-grow: 1; }
    .common_tab_wrapper .nav-tabs .nav-item .nav-link {
      padding: 25px 20px;
      color: var(--text_light);
      font-size: 16px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border: 0;
      border-radius: 0;
      gap: 10px;
      position: relative; }
      .common_tab_wrapper .nav-tabs .nav-item .nav-link img {
        filter: grayscale(1); }
      .common_tab_wrapper .nav-tabs .nav-item .nav-link:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        background: var(--primary);
        visibility: hidden;
        opacity: 0;
        transition: 0.5s ease; }
      .common_tab_wrapper .nav-tabs .nav-item .nav-link.active {
        background: transparent;
        color: var(--primary); }
        .common_tab_wrapper .nav-tabs .nav-item .nav-link.active:before {
          visibility: visible;
          opacity: 1; }
        .common_tab_wrapper .nav-tabs .nav-item .nav-link.active img {
          filter: inherit; }
.common_tab_wrapper .tab-content {
  padding: 30px 0 0; }

.info_box_wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 24px 30px;
  border-top: 4px solid #b8b8b8;
  box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.1);
  height: 100%; }
  .info_box_wrapper h2 span {
    font-size: 14px; }
  .info_box_wrapper.primary {
    border-color: var(--primary); }
  .info_box_wrapper.success {
    border-color: var(--success); }
  .info_box_wrapper.warning {
    border-color: var(--warning); }
  .info_box_wrapper.danger {
    border-color: var(--danger); }

.identity_proof_Wrapper {
  border-radius: 16px; }

.fileUploader {
  border-radius: 12px;
  background: var(--primaryLight); }
  .fileUploader.large .dropFiles {
    height: 400px; }
  .fileUploader .dropFiles {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .fileUploader .dropFiles p {
      color: var(--text_dark);
      font-weight: 500; }
    .fileUploader .dropFiles .selectFileBtn {
      background: transparent;
      border: 0;
      padding: 0;
      color: var(--primary); }
  .fileUploader.default .dropFiles {
    background: repeating-linear-gradient(90deg, var(--primary) 0 10px, transparent 10px 20px) top/100% 1px no-repeat, repeating-linear-gradient(90deg, var(--primary) 0 10px, transparent 10px 20px) bottom/100% 1px no-repeat, repeating-linear-gradient(0deg, var(--primary) 0 10px, transparent 10px 20px) left/1px 100% no-repeat, repeating-linear-gradient(0deg, var(--primary) 0 10px, transparent 10px 20px) right/1px 100% no-repeat; }
    .fileUploader.default .dropFiles .icon svg {
      margin: 0 0 8px; }
      .fileUploader.default .dropFiles .icon svg path {
        stroke: #505964; }
  .fileUploader.danger {
    background: var(--dangerLight); }
    .fileUploader.danger .dropFiles {
      background: repeating-linear-gradient(90deg, var(--danger) 0 10px, transparent 10px 20px) top/100% 1px no-repeat, repeating-linear-gradient(90deg, var(--danger) 0 10px, transparent 10px 20px) bottom/100% 1px no-repeat, repeating-linear-gradient(0deg, var(--danger) 0 10px, transparent 10px 20px) left/1px 100% no-repeat, repeating-linear-gradient(0deg, var(--danger) 0 10px, transparent 10px 20px) right/1px 100% no-repeat; }
      .fileUploader.danger .dropFiles .icon svg {
        margin: 0 0 8px; }
        .fileUploader.danger .dropFiles .icon svg path {
          stroke: var(--danger); }
      .fileUploader.danger .dropFiles .browse {
        color: var(--danger); }
  .fileUploader.success {
    background: var(--successLight); }
    .fileUploader.success .dropFiles {
      background: repeating-linear-gradient(90deg, var(--success) 0 10px, transparent 10px 20px) top/100% 1px no-repeat, repeating-linear-gradient(90deg, var(--success) 0 10px, transparent 10px 20px) bottom/100% 1px no-repeat, repeating-linear-gradient(0deg, var(--success) 0 10px, transparent 10px 20px) left/1px 100% no-repeat, repeating-linear-gradient(0deg, var(--success) 0 10px, transparent 10px 20px) right/1px 100% no-repeat; }
      .fileUploader.success .dropFiles .icon svg {
        margin: 0 0 8px; }
        .fileUploader.success .dropFiles .icon svg path {
          stroke: var(--success); }
      .fileUploader.success .dropFiles .browse {
        color: var(--success); }

.highlightDropArea {
  border-color: #007bff;
  background: #f0f8ff; }

.messages {
  font-family: Arial;
  font-size: 14px;
  color: #333; }

.form-group label {
  font-size: 16px;
  display: inline-block;
  margin: 0 0 10px; }
.form-group .form-select {
  background-color: var(--white);
  border: 1px solid var(--border_color);
  padding: 12px 40px 12px 20px;
  color: var(--text_light);
  box-shadow: none !important; }
  .form-group .form-select:focus {
    border-color: var(--text_light); }
.form-group .form-control {
  background-color: var(--white);
  border: 1px solid var(--border_color);
  padding: 12px 40px 12px 20px;
  color: var(--text_light);
  box-shadow: none !important; }
  .form-group .form-control:focus {
    border-color: var(--text_light); }

.info_list {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  .info_list li {
    font-size: 18px;
    font-weight: 500;
    color: var(--text_dark);
    display: flex;
    align-items: center;
    gap: 16px; }

.step {
  display: none; }

.progress_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 300px;
  margin-left: auto;
  margin-bottom: -75px; }
  .progress_wrapper .progress {
    width: 100%;
    max-width: 240px;
    height: 30px;
    background: #d5daf9;
    border-radius: 40px;
    margin: 0 0 10px; }
    .progress_wrapper .progress .progress-bar {
      height: 30px;
      width: 0%;
      background: var(--primary);
      border-radius: 40px;
      transition: 0.4s; }

.step-item {
  display: none; }
  .step-item.active {
    display: inline-block; }

.step_head {
  padding: 0 0 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border_color); }
  .step_head h6 {
    padding: 8px 16px 8px 35px;
    border: 1px solid var(--text_light);
    color: var(--text_light);
    display: inline-block;
    border-radius: 30px;
    position: relative;
    margin: 0 0 15px; }
    .step_head h6:before {
      content: "";
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--text_light); }

.btn_border[disabled] {
  display: none; }

.step_footer .buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px; }
  .step_footer .buttons .btn_border {
    border-color: #939393;
    color: #939393; }
    .step_footer .buttons .btn_border:hover {
      color: var(--white);
      border-color: var(--primary); }

.form-check {
  padding-left: 35px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px; }
  .form-check .form-check-input {
    margin-left: -35px;
    width: 30px;
    height: 30px;
    margin-top: 0;
    box-shadow: none !important; }
    .form-check .form-check-input:checked {
      background-color: var(--primary);
      border-color: var(--primary); }
  .form-check .form-check-label {
    font-size: 18px; }
    .form-check .form-check-label a {
      color: var(--primary);
      font-size: 18px; }

.thankModal img {
  max-width: 250px;
  margin: 0 auto; }
.thankModal .modal-content {
  padding: 40px;
  border-radius: 24px;
  align-items: center; }

.feature_wrapper {
  background: var(--white);
  border: 1px solid var(--border_color);
  border-radius: 24px;
  padding: 80px 120px 80px 65px; }
  .feature_wrapper * {
    color: var(--text_blue); }
  .feature_wrapper hr {
    background-color: var(--text_blue);
    margin: 30px 0;
    opacity: 1; }

ul.list_check {
  display: flex;
  flex-direction: column;
  gap: 19px; }
  ul.list_check li {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    font-weight: 500; }
    ul.list_check li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      background: url(../images/check-blue.svg);
      width: 16px;
      height: 11px;
      background-size: 16px;
      background-repeat: no-repeat; }

.payment_radio label {
  padding: 45px 32px;
  border: 1px solid var(--border_color);
  border-radius: 22px;
  display: block;
  background: var(--white);
  position: relative; }
  .payment_radio label:before {
    content: "";
    position: absolute;
    right: 13px;
    top: 13px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #939393; }
  .payment_radio label:after {
    content: "";
    position: absolute;
    background: url(../images/check-white.svg);
    width: 11px;
    height: 8px;
    background-size: 11px;
    background-repeat: no-repeat;
    right: 20px;
    top: 21px;
    display: none; }
  .payment_radio label h3 {
    color: var(--text_dark);
    margin: 0; }
  .payment_radio label p {
    display: none;
    margin: 12px 0 0;
    color: var(--text_blue);
    font-weight: 600; }
.payment_radio input {
  display: none; }
.payment_radio input:checked + label {
  background: linear-gradient(68deg, #eaf2ff 45%, #9bbaff 180%);
  border-color: var(--primary);
  padding: 27px 32px; }
  .payment_radio input:checked + label p {
    display: block; }
.payment_radio input:checked + label:after {
  display: block; }
.payment_radio input:checked + label:before {
  background: var(--primary);
  border-color: var(--primary); }

.info_wrapper {
  border: 1px solid var(--warning);
  border-radius: 22px;
  overflow: hidden; }
  .info_wrapper .info_head {
    background: var(--warningLight);
    border-bottom: 1px solid var(--warning);
    padding: 30px; }
    .info_wrapper .info_head h5 {
      color: var(--warning); }
  .info_wrapper .info_body {
    padding: 30px; }
    .info_wrapper .info_body .info_content {
      padding: 25px;
      height: 100%;
      border-radius: 8px;
      border: 1px solid var(--border_color);
      display: flex;
      flex-direction: column;
      gap: 30px; }
      .info_wrapper .info_body .info_content p {
        font-size: 18px;
        font-weight: 400;
        margin: 0; }
        .info_wrapper .info_body .info_content p span {
          font-weight: 700;
          color: var(--text_dark);
          display: block; }
      .info_wrapper .info_body .info_content ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        list-style: disc;
        color: var(--text_light);
        font-weight: 500;
        font-size: 18px;
        padding-left: 30px; }

.card_input {
  position: relative; }
  .card_input img {
    position: absolute;
    right: 20px;
    top: 19px; }

.payment_summary_wrapper {
  padding: 50px 40px; }
  .payment_summary_wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    .payment_summary_wrapper ul li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      font-weight: 400;
      color: var(--text_light); }
      .payment_summary_wrapper ul li span {
        font-weight: 500;
        color: var(--text_dark); }

.btn_border_primary {
  background: transparent;
  border: 1px solid var(--primary);
  padding: 16px 24px;
  border-radius: 12px;
  color: var(--primary);
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  font-size: 16px; }
  .btn_border_primary:hover {
    background: var(--primary);
    color: var(--white); }
    .btn_border_primary:hover img {
      filter: brightness(0) invert(1); }

.tree_chart_wrapper {
  overflow: auto; }
  .tree_chart_wrapper > ul {
    position: relative;
    padding-left: 30px; }
    .tree_chart_wrapper > ul:before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: calc(100% - 90px);
      background: #0d0f11; }
    .tree_chart_wrapper > ul > li {
      margin: 30px 0; }
      .tree_chart_wrapper > ul > li > b {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 25px 45px;
        border: 1px solid var(--primary);
        border-radius: 15px;
        color: var(--primary);
        background: var(--primaryLight);
        margin: 0 0 30px;
        font-size: 24px;
        font-weight: 600;
        min-width: 300px;
        position: relative; }
        .tree_chart_wrapper > ul > li > b:before {
          content: "";
          position: absolute;
          left: -31px;
          top: 50%;
          transform: translateY(-50%);
          width: 31px;
          height: 1px;
          background: #0d0f11; }
        .tree_chart_wrapper > ul > li > b:after {
          content: "";
          position: absolute;
          left: -4px;
          top: 50%;
          transform: translateY(-50%);
          width: 7px;
          height: 7px;
          border-radius: 50%;
          background: #0d0f11; }
        .tree_chart_wrapper > ul > li > b span {
          width: 30px;
          height: 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 18px;
          color: var(--white);
          font-weight: 500;
          background: var(--primary);
          border-radius: 50%; }
      .tree_chart_wrapper > ul > li ul {
        margin-left: 130px; }
        .tree_chart_wrapper > ul > li ul li {
          position: relative; }
          .tree_chart_wrapper > ul > li ul li:before {
            content: "";
            position: absolute;
            left: 30px;
            top: -70px;
            width: 1px;
            height: calc(100% - 0px);
            border-left: 1px dashed #505964;
            z-index: -1; }
          .tree_chart_wrapper > ul > li ul li b {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 20px 45px;
            border: 1px solid var(--text_light);
            border-radius: 15px;
            color: var(--text_dark);
            background: var(--white);
            margin: 0 0 30px;
            font-size: 24px;
            font-weight: 600;
            min-width: 230px;
            position: relative; }
            .tree_chart_wrapper > ul > li ul li b:before {
              content: "";
              position: absolute;
              left: -161px;
              top: 50%;
              transform: translateY(-50%);
              width: 161px;
              border-top: 1px dashed #505964; }
            .tree_chart_wrapper > ul > li ul li b:after {
              content: "";
              position: absolute;
              left: -4px;
              top: 50%;
              transform: translateY(-50%);
              width: 7px;
              height: 7px;
              border-radius: 50%;
              background: #505964; }
            .tree_chart_wrapper > ul > li ul li b span {
              width: 30px;
              height: 30px;
              display: flex;
              align-items: center;
              justify-content: center;
              font-size: 18px;
              color: var(--white);
              font-weight: 500;
              background: var(--primary);
              border-radius: 50%; }
          .tree_chart_wrapper > ul > li ul li ul li b:before {
            width: 101px;
            left: -101px; }

.filter_date_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px; }
  .filter_date_wrapper .form-group {
    max-width: 300px;
    width: 100%; }
    .filter_date_wrapper .form-group .form-control {
      padding: 12px 20px;
      border-color: #c2c2c2; }

.primary_info_wrapper {
  padding: 70px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px; }
  .primary_info_wrapper .btn_border_primary {
    border-radius: 40px;
    padding: 20px 30px; }
  .primary_info_wrapper img {
    max-width: 150px; }

.max-w-100 {
  max-width: 100% !important; }

.modal_default .modal-content {
  border-radius: 28px; }
  .modal_default .modal-content .modal-header {
    padding: 30px;
    background: var(--primaryLight);
    border-radius: 28px 28px 0 0; }
    .modal_default .modal-content .modal-header .btn-close {
      background-color: #e3e6e9;
      width: 36px;
      height: 36px;
      border-radius: 50%; }
  .modal_default .modal-content .modal-body {
    padding: 25px; }
    .modal_default .modal-content .modal-body .change_email_form {
      max-width: 440px;
      margin: 0 auto; }
      .modal_default .modal-content .modal-body .change_email_form .form-control {
        padding: 11px 20px;
        border-radius: 6px; }
      .modal_default .modal-content .modal-body .change_email_form button {
        min-width: 200px; }

.modal_success .modal-content {
  background: #e1f2e2; }
  .modal_success .modal-content h4 {
    color: #014403;
    font-weight: 500;
    margin: 0; }

ul.action {
  white-space: nowrap; }

.login_wrapper {
  background: #111e3a;
  width: 100%;
  overflow: auto; }
  .login_wrapper .login_inner {
    max-width: 920px;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 80px 0;
    min-height: 100%;
    display: flex;
    flex-direction: column; }
    .login_wrapper .login_inner .logo_wrapper {
      text-align: center;
      margin: 0 0 100px; }
    .login_wrapper .login_inner .login_title {
      max-width: 520px;
      margin: 0 auto 50px; }
    .login_wrapper .login_inner .login_box {
      padding: 60px;
      border-radius: 25px;
      background: #3468CF33;
      /*background: rgba(11, 57, 149, 0.16);*/
      border: 1px solid #566789;
      box-shadow: inset 10px 10px 16px #101e3dc2, inset -10px -10px 16px #ffffff0a;
      margin: auto 0; }
      .login_wrapper .login_inner .login_box .form-group label {
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
        display: inline-block;
        margin: 0 0 5px; }
      .login_wrapper .login_inner .login_box .form-group .form-control {
        background: #062563;
        color: var(--white);
        border: 0;
        border: 1px solid #062563; }
        .login_wrapper .login_inner .login_box .form-group .form-control:focus {
          border-color: #123f9a; }
      .login_wrapper .login_inner .login_box .form-check-label {
        color: #a5abb4;
        font-size: 18px; }
        .login_wrapper .login_inner .login_box .form-check-label a {
          color: #fff; }
          .login_wrapper .login_inner .login_box .form-check-label a:hover {
            color: #c8ced4; }
      .login_wrapper .login_inner .login_box .form-check-input {
        background-color: transparent;
        border-color: #fff; }
        .login_wrapper .login_inner .login_box .form-check-input:checked {
          background-color: var(--primary);
          border-color: var(--primary); }

.otp_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px; }
  .otp_wrapper .form-group {
    width: calc(100% - 110px); }
  .otp_wrapper .otp_btn_wrapper {
    width: 100px; }
    .otp_wrapper .otp_btn_wrapper label {
      font-size: 14px;
      font-weight: 500;
      color: var(--white);
      display: inline-block;
      margin: 0 0 5px; }
    .otp_wrapper .otp_btn_wrapper .btn_send {
      background: #123f9a;
      border-radius: 6px;
      font-size: 17px;
      color: #fff;
      border: 0;
      padding: 13px 20px;
      width: 100%;
	  margin-top: 27px;
      text-align: center; }
  .otp_wrapper p {
    color: #fff; }
    .otp_wrapper p .btn_transparent {
      color: #c8ced4;
      text-decoration: underline; }

.phone_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .phone_wrapper label {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    display: inline-block;
    margin: 0 0 5px;
    width: 100%; }
  .phone_wrapper .form-group {
    width: calc(100% - 110px); }
  .phone_wrapper .country_dropdown {
    width: 100px; }
    .phone_wrapper .country_dropdown .dropdown .dropdown-toggle {
      background: #062563;
      border: 0;
      border-radius: 5px;
      color: #fff;
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 5px; }
      .phone_wrapper .country_dropdown .dropdown .dropdown-toggle img {
        height: 15px; }

.info_note p {
  color: #A5ABB4;
  font-size: 18px; }

.btn_white {
  padding: 15px;
  border-radius: 50px;
  color: var(--text_blue);
  font-weight: 600;
  border: 0;
  transition: 0.5s ease; }
  .btn_white:hover {
    background: var(--primary);
    color: var(--white); }

.have_account {
  text-align: center;
  margin: 25px 0 0; }
  .have_account p {
    color: #A5ABB4;
    font-size: 18px;
    margin: 0; }
    .have_account p a {
      color: var(--white);
      font-size: 18px; }
      .have_account p a:hover {
        color: var(--primary); }

.forgot_password p {
  font-size: 14px;
  color: #C8CED4; }
  .forgot_password p a {
    color: #fff; }
    .forgot_password p a:hover {
      color: var(--primary); }

@media (min-width: 992px) {
  .custom-lg-5 {
    width: 20%;
    /* 5 columns */
    flex: 0 0 20%; } }
@media (max-width: 1500px) {
  .wallet_wrapper {
    padding: 50px; }

  .feature_wrapper {
    padding: 40px; }

  h2, .h2 {
    font-size: 34px; } }
@media (max-width: 1200px) {
  .sidebar_wrapper {
    position: fixed;
    left: -255px;
    top: 0;
    z-index: 99;
    transition: 0.5s ease; }

  .main_wrapper .main_content {
    width: 100%; }

  .main_wrapper.colllapse .sidebar_wrapper {
    left: 0; }

  .main_wrapper.colllapse {
    position: relative; }

  .main_wrapper.colllapse:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8; }

  h2,
  .h2 {
    font-size: 32px; }

  h3,
  .h3 {
    font-size: 26px; }

  h4,
  .h4 {
    font-size: 20px; } }
@media (max-width: 991px) {
  .payment_radio label {
    padding: 35px 25px; }

  .payment_radio label h3 {
    font-size: 20px; }

  .info_wrapper .info_body .info_content ul {
    gap: 20px;
    font-size: 16px; }

  .info_wrapper .info_body .info_content p {
    font-size: 16px; }

  .info_wrapper .info_head {
    padding: 20px; }

  .info_wrapper .info_body {
    padding: 15px; }

  .payment_summary_wrapper {
    padding: 0; }

  .page_heading .btn_border_primary {
    padding: 12px 20px;
    gap: 15px;
    font-size: 14px; }

  .page_heading .btn_border_primary img {
    max-width: 20px; }

  .tree_chart_wrapper > ul > li > b {
    padding: 17px 25px;
    font-size: 18px;
    min-width: 240px; }

  .tree_chart_wrapper > ul > li ul li b {
    padding: 14px 25px;
    font-size: 18px;
    min-width: 210px; }

  .tree_chart_wrapper > ul:before {
    height: calc(100% - 65px); }

  .tree_chart_wrapper > ul > li ul li:before {
    top: -60px; }

  .tree_chart_wrapper > ul > li ul li b span,
  .tree_chart_wrapper > ul > li > b span {
    width: 25px;
    height: 25px;
    font-size: 14px; }

  .modal_success .modal-body img {
    max-width: 150px; } }
@media (max-width: 767px) {
  ul.user_info li .id_wrap {
    display: none; }

  ul.user_info li .dropdown {
    margin: 0; }

  ul.user_info li .dropdown .dropdown-toggle {
    font-size: 0;
    gap: 0; }

  ul.user_info {
    gap: 10px; }

  ul.user_info li .dropdown .dropdown-toggle:after {
    display: none; }

  header {
    padding: 15px 15px; }

  .btn_notification {
    width: 35px;
    height: 35px; }

  .main_wrapper .main_content .content_wrapper {
    height: calc(100% - 80px); }

  .table_box_common .table_box_head h6 {
    text-align: center;
    margin: 0 0 20px;
    justify-content: center; }

  .table_box_common .table_box_head .flex_custom {
    flex-wrap: wrap;
    justify-content: center; }

  .info_list li {
    font-size: 14px; }

  .form-group label {
    font-size: 14px; }

  .btn_primary,
  .btn_border,
  .btn_border_primary {
    font-size: 15px;
    padding: 13px 25px; }

  .fileUploader .dropFiles .icon svg {
    width: 40px; }

  h4,
  .h4 {
    font-size: 18px; }

  h3,
  .h3 {
    font-size: 22px; }

  h2,
  .h2 {
    font-size: 24px; }

  .progress_wrapper {
    margin-bottom: 10px; }

  .form-check .form-check-label,
  .form-check .form-check-label a {
    font-size: 14px; }

  .form-check .form-check-input {
    width: 25px;
    height: 25px; }

  h1,
  .h1 {
    font-size: 38px; }

  .thankModal img {
    max-width: 100px; }

  .feature_wrapper {
    padding: 20px; }

  ul.list_check li {
    font-size: 14px; }

  ul.list_check {
    gap: 10px; }

  .feature_wrapper hr {
    margin: 15px 0; }

  .flex_custom {
    justify-content: flex-start; }

  .table_pagination p {
    text-align: center; }

  .pagination_wrapper {
    justify-content: center; }

  .fileUploader.large .dropFiles {
    height: 240px; }

  .table_box_head .radio_button {
    justify-content: center !important; }

  .table_box_common .form-control {
    max-width: 300px;
    margin: 0 auto; }

  .modal_success .modal-body img {
    max-width: 120px; } }
@media (max-width: 575px) {
  .search_bar .form-control {
    padding: 10px 15px 10px 37px;
    background-size: 18px;
    background-position: left 11px center;
    border-radius: 8px;
    font-size: 13px; }

  .app_wrapper {
    flex-direction: column;
    align-items: flex-start; }

  .main_wrapper .main_content .content_wrapper {
    height: calc(100% - 72px);
    padding: 15px; }

  .alert {
    font-size: 14px; }

  h2,
  .h2 {
    font-size: 26px; }

  .white_box {
    padding: 20px; }

  .chart_info ul {
    margin-left: 0; }

  .table_box_common .table_box_head {
    padding: 15px; }

  .step_footer .buttons .btn_border,
  .step_footer .buttons .btn_primary {
    font-size: 0;
    gap: 0; }

  .step_head {
    padding: 0 0 20px;
    margin-bottom: 30px; }

  .cmn_radio_wrap label {
    font-size: 14px;
    padding: 20px 25px 20px 60px; }

  .main_wrapper .sidebar_wrapper .logo_wrap img {
    height: 32px; }

  .main_wrapper .sidebar_wrapper .logo_wrap {
    padding: 20px 16px; }

  .main_wrapper .sidebar_wrapper .menu_wrapper {
    height: calc(100% - 73px);
    padding: 15px; }

  .table_box_common table tbody tr td {
    padding: 15px 20px; }

  .table_box_common table thead tr th {
    padding: 13px 20px; }

  .page_heading {
    padding: 0 0 15px;
    margin: 0 0 15px; }

  .info_wrapper .info_body .info_content ul {
    font-size: 14px; }

  .info_wrapper .info_body .info_content p {
    font-size: 14px; }

  .info_wrapper .info_body .info_content {
    padding: 0;
    border-radius: 0;
    border: 0; }

  .breadcrumbs ul li a,
  .breadcrumbs ul li {
    font-size: 14px; }

  h5, .h5 {
    font-size: 16px; }

  .modal_default .modal-content .modal-body .change_email_form button {
    min-width: inherit; }

  .modal_success .modal-content h4 {
    font-size: 16px; }

  .login_wrapper .login_inner .login_box {
    padding: 20px; }

  .login_wrapper .login_inner .logo_wrapper {
    margin: 0 0 50px; }

  h1, .h1 {
    font-size: 28px; } }
@media (max-width: 481px) {
  .wallet_wrapper {
    padding: 20px; } }

/*# sourceMappingURL=style.css.map */
.phoneflag {
    width: 100%;
}
.phoneflag .iti__selected-flag {
    color: #fff !important;
}
.iti__arrow {
    border-top-color: #fff !important;
}
.iti__arrow--up {
    border-bottom-color: #fff;
}
.phoneflag .iti__country-list {
    background: #062563 !important;
    color: #fff !important;
}
.phoneflag #phone {
    background: #062563;
    border-color: #062563;
    color: #fff !important;
    padding: 12px 40px 12px 20px;
}
.form-control{
	border-radius:6px;
}
.login_wrapper .login_inner .login_box .form-group .form-control
 {
    border-color: #123f9a;
}
.eye-icon {
    float: right;
    margin-right: 10px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    color: #fff;
	font-weight:300;
}
.eye-icon .fa{
	font-weight:300;
}
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #062563 inset !important;
    -webkit-text-fill-color: #fff !important;
	background:#062563;
}
 