@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');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: var(--black);
}
:root {
  --blue: #127ac0;
  --black: #17191c;
  --black08: #454749;
  --grey: #828282;
  --divider: #f1f1f1;

  --transition: all 0.3s ease-in-out;
}

.p-30 {
  padding: 30px !important;
}

.custom_body {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  height: auto;
}

.custom_link {
  border-radius: 8px;
  background-color: var(--blue);
  padding: 10px 25px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.custom_link:hover {
  background-color: #007dd1;
  color: #fff;
  text-decoration: none;
}

.footer {
  display: none;
}

.main_wrapper {
  width: 100%;
  background: #f4f4f5;
}
.primary-bg-color {
  background-color: #f4f4f5;
}

.custom_sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  width: 295px;
  border-right: 1px solid #ececee;
  background: #fff;
  height: 100vh;
  padding-top: 40px;
  padding-bottom: 30px;
  transition: var(--transition);
}
.sidebar__logo {
  margin: 0 49px;
  margin-bottom: 88px;
}

.sidebar__navigation__field_item:hover .sidebar__navigation__field_item_link,
.sidebar__sign-out:hover {
  /* background: rgba(18, 122, 192, 0.05); */
  color: var(--black);
  text-decoration: none;
}
.sidebar__navigation__field_item:hover
  .sidebar__navigation__field_item_link
  path,
.sidebar__sign-out:hover path {
  stroke: var(--black);
}
.sidebar__navigation__field_item_link,
.sidebar__sign-out {
  display: flex;
  column-gap: 8px;
  align-items: center;
  width: 100%;
  color: var(--grey);
  transition: var(--transition);
  padding: 15.5px 0;
  padding-left: 49px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.sidebar__navigation__field_item-active
  .sidebar__navigation__field_item_link
  path {
  stroke: #127ac0;
}
.sidebar__navigation__field_item-active .sidebar__navigation__field_item_link {
  background: rgba(18, 122, 192, 0.05);
  color: var(--blue);
}
.sidebar__navigation__field_item_link svg path,
.sidebar__sign-out svg path {
  transition: var(--transition);
}
.sidebar__sign-out {
  position: absolute;
  bottom: 30px;
  /* left: 49px; */
}

.sidebar__navigation__field {
  list-style: none;
  padding: 0;
}

section#main-body {
  padding: 40px;
}
.custom_container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

#custom_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #ececee;
  background: #fff;
}
.custom_header_greeting {
  font-size: 20px;
  font-weight: 700;
}
.user_dropdown .dropdown-toggle {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.user_dropdown:hover .dropdown-toggle {
  text-decoration: none;
}
.logout_header {
  margin: 0 auto;
}
.custom_content {
  padding: 0;
}
.tiles_field {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.tile_icon {
  height: 50px;
  width: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 122, 192, 0.05);
  align-self: end;
}
.tiles div:nth-child(1) > .tile,
.tiles div:nth-child(2) > .tile {
  border: 1px solid transparent;
}

.tiles .tile {
  border-right: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;

  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
}
.tiles .tile:hover {
  border-color: var(--grey) !important;
  cursor: pointer;
  background-color: #fff;
}

.tiles .tile .stat {
  color: var(--blue);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 14px;
}
.tiles .tile .title {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}

.tiles .row > div:last-child .tile:hover {
  border: var(--grey) 1px solid;
}
.tiles .row > div:last-child .tile {
  border: transparent 1px solid;
}

.custom_card_title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px !important;
  font-weight: 600;
}
.block_icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(18, 122, 192, 0.05);
}
.custom_card {
  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
  padding: 30px;
  height: 100%;
}
.custom_card_header {
  padding: 0;
  margin-bottom: 20px;
}
.custom_list_group {
  border: none;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.custom_list_group_item {
  border-radius: 8px !important;
  border: 1px solid var(--divider) !important;
  padding: 8px 10px !important;
}

.custom_div-service-item {
  display: flex;
  align-items: center;
}

.custom_div-service-item .div-service-status {
  display: flex;
}

.client-home-cards_wrapper {
  display: flex;
  flex-direction: column;
}

.setup_guide_link .custom_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.setup_guide_link_left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.setup_guide_link_left p {
  font-weight: 700;
}

.custom_label_status {
  padding: 6px 8px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.label-success {
  background: #f3fcf0;
  color: #5bc02f !important;
}
.custom_breadcrumb {
  padding: 0;
  background-color: transparent;
}
.custom_breadcrumb-item a {
  color: rgba(69, 71, 73, 0.5);
  transition: var(--transition);
}
.custom_breadcrumb-item:hover a {
  text-decoration: none;
  color: rgba(69, 71, 73, 1);
}
.custom_breadcrumb-item.active {
  color: rgba(69, 71, 73, 1);
}
.custom_table-container {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
  overflow-x: auto;
}
.custom_table-container table {
  min-width: 1000px;
}
.table.table-list thead th {
  text-align: left;
}

table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_asc:before {
  opacity: 1;
  top: 33%;
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8.96114 4.41821H14.6668M8.96114 7.62806H13.0366M8.96114 10.8379H11.4064M3.87059 4V12M3.87059 12L1.3335 9.55448M3.87059 12L6.50456 9.55448" stroke="%23828282" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
table.dataTable thead > tr > th.sorting::after,
table.dataTable thead > tr > th.sorting_asc:after {
  content: none;
  opacity: 1;
}
table.dataTable thead > tr > th.sorting_desc:before {
  opacity: 1;
  top: 33%;
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8.96114 4.41821H14.6668M8.96114 7.62806H13.0366M8.96114 10.8379H11.4064M3.87059 4V12M3.87059 12L1.3335 9.55448M3.87059 12L6.50456 9.55448" stroke="%23828282" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
table.dataTable thead > tr > th.sorting_desc::after {
  content: none;
}
.dataTables_wrapper table.table-list thead th {
  border-bottom: none;
}
.dataTables_wrapper table.table-list {
  border: none;
}

.custom_login label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.custom_login .card,
.custom_reset {
  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
}

.remember_label {
  margin-left: 20px;
}

.custom_login #login,
.custom_reset button[type='submit'] {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 50px;
  padding: 10px 25px;
  border-radius: 8px;
  background: var(--blue);
  transition: var(--transition);
  border: none;
}

.custom_login #login:hover,
.custom_reset button[type='submit']:hover {
  background: #007dd1;
}

.custom_login .forgot_link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--black);
}

.custom_login input,
.custom_reset input {
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background: #fff;

  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px 14px;
}

.custom_login .login_title,
.custom_reset .login_title {
  font-size: 24px;
  font-weight: 700;
}
.custom_login .login_subtitle,
.custom_reset .login_subtitle {
  font-size: 16px;
  font-weight: 400;
}

.custom_product-details .card {
  background-color: transparent;
  border: none;
}

.custom_product-details .card-body {
  padding: 0;
  overflow: initial;
}

.custom_product-details .product-icon {
  background-color: #fff !important;
}
.custom_product-details .product-icon h3 {
  font-size: 20px;
  font-weight: 500;
}
.custom_product-details .product-icon h4 {
  font-size: 14px;
  font-weight: 500;
}
.custom_product-details .product-icon span {
  max-width: 121px;
  max-height: 121px;
}

.custom_product-details .product-status-text {
  color: var(--black08);
  font-size: 16px;
  font-weight: 500;
}

div.custom_product-details div.product-icon {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom_product-details-field {
  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
  padding: 30px 50px;
}
.custom_product-details-field {
  display: flex;
  /* row-gap: 32px; */
  column-gap: 60px;
  flex-wrap: wrap;
}
.custom_product-details-item {
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.custom_product-details-item-title {
  color: var(--black08);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.custom_product-details-value {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.custom_product-details .product-details {
  display: flex;
}
.custom_product-details div.product-details-tab-container {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.custom_activate_affiliate_title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.custom_activate_affiliate_icon {
  border-radius: 4px;
  background: rgba(18, 122, 192, 0.05);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom_activate_affiliate_title h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.custom_activate_affiliate .lead {
  color: var(--black08);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.custom_white_button {
  padding: 10px 25px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  background-color: #fff;
  cursor: pointer;
  text-decoration: none;

  gap: 10px;
  margin-top: 20px;
  border: 1px solid var(--blue);
}
.custom_white_button:hover {
  background: rgba(18, 122, 192, 0.05);
  color: var(--blue);
}

.custom_main_button {
  padding: 10px 25px;
  border-radius: 8px;
  background: var(--blue) !important;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff !important;
  gap: 10px;
  margin-top: 20px;
  cursor: pointer;
  text-decoration: none;
}
.custom_main_button:hover {
  background: #007dd1 !important;
  color: #fff !important;
  text-decoration: none;
}
.custom_buttons_block {
  display: flex;
  gap: 20px;
}
.small_button {
  max-width: max-content;
}
.custom_activate_affiliate ul li {
  font-size: 14px;
  color: var(--black08);
  margin-left: 20px;
}
.custom_activate_affiliate {
  border-radius: 10px;
  border: 1px solid var(--Devider, #f1f1f1);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
  padding: 30px;
}
.custom_activate_affiliate .card-body {
  padding: 0;
}

.custom_statistic_item {
  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
  padding: 20px 20px 26px 30px;
}
.custom_statistic_item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.custom_statistic_item-top span {
  color: var(--blue);
  font-size: 36px;
  font-weight: 500;
}

.custom_statistic_item_icon {
  border-radius: 8px;
  background: rgba(18, 122, 192, 0.05);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom_statistic {
  display: flex;
}

.custom_card_title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.custom_card_icon {
  height: 24px;
  width: 24px;
  border-radius: 4px;
  background: rgba(18, 122, 192, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom_cart_description {
  margin-bottom: 10px;
  color: var(--black08);
  font-size: 14px;
}
.affiliate_table {
  border-top: 1px solid #d9d9d9;
  padding-top: 10px;
}

.affiliate_table_row {
}
.affiliate_table_row_name {
  color: var(--black08);
}
.affiliate_table_row_value {
  font-weight: 600;
  font-size: 18px;
}
/* another css */

.step {
  max-width: 950px;
}

.step_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step_text {
  color: var(--black08);
  font-size: 14px;
  font-weight: 400;
}

.step_text p {
  padding: 0;
  margin: 0;
}
.step_text_bold {
  color: var(--black08);
  font-size: 14px;
  font-weight: 700;
}

.text_block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blue_text {
  color: var(--blue);
  font-size: 14px;
  font-weight: 400;
  text-decoration-line: underline;
}
.two_videos_block {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 20px;
}
.small_video {
  height: 274px;
}
.video_with_link {
  width: 50%;
}
.video_wrapper {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
  padding: 12px;
}
.video_wrapper iframe {
  width: 100%;
  height: 100%;
}
.video_with_link-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration-line: underline;
  margin-bottom: 30px;
}

.large_video {
  height: 550px;
  margin: 10px 0;
}

.coupon_code {
  border-radius: 5px;
  background: var(--divider);
  max-width: max-content;
  margin-top: 10px;
  padding: 10px;
  color: var(--black08);
  font-size: 16px;
  font-weight: 500;
}
.coupon_code span {
  font-weight: 800;
}

.setup {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.trader_options {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}
.trader_options_block {
  border-radius: 10px;
  flex: 1;
  border: 1px solid var(--divider);
  background: #fff;
  box-shadow: 0px 4px 25.7px 0px rgba(0, 0, 0, 0.04);
  padding: 30px;
}
.trader_options_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.trader_options_link {
  font-size: 14px;
  color: var(--black08);
}
.trader_options_link a {
  color: var(--blue);
  font-size: 14px;
  text-decoration-line: underline;
}

.downloads {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.downloads_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.downloads_text {
  color: var(--black08);
  font-size: 14px;
}

.table-container {
  overflow-x: auto;
}
.table-container table {
  min-width: 1000px;
}

/* ////////////////////////////////////// */
/* ////////////////////////////////////// */
/* ////////////////////////////////////// */
/* ////////////////////////////////////// */
/* ////////////////////////////////////// */
/* ////////////////////////////////////// */
/* ////////////////////////////////////// */
/* ////////////////////////////////////// */
/* ////////////////////////////////////// */
/* ////////////////////////////////////// */

@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800&display=swap);

.new_Design_sub_header {
  border-radius: 6px;
  text-align: center;
  font-size: 22px;
  background: #1475bd;
  color: #fff;
  padding: 10px;
  margin: 10px 0 11px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.new_Design_sub_header p {
  padding: 0;
  color: #fff;
}

@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9 {
    float: left;
  }
}

@media (min-width: 992px) {
  .pull-md-left {
    float: left;
  }
  .pull-md-right {
    float: right;
  }
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9 {
    float: left;
  }
}

.hidden {
  display: none !important;
}

#order-standard_cart .prepend-icon {
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 100%;
  font-weight: 400;
}

#order-standard_cart .prepend-icon .field-icon i {
  position: relative;
  font-size: 14px;
}

#order-standard_cart .field-icon i {
  color: #bbb;
}

#order-standard_cart .prepend-icon .field-icon {
  top: 0;
  z-index: 4;
  width: 42px;
  height: 36px;
  color: inherit;
  line-height: 36px;
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  pointer-events: none;
}

#order-standard_cart .field,
#order-standard_cart .form-control {
  position: relative;
  vertical-align: top;
  border: 1px solid #ddd;
  display: -moz-inline-stack;
  display: inline-block;
  color: #626262;
  outline: 0;
  background-color: #fff;
  height: 36px;
  width: 100%;
  border-radius: 3px;
  font-size: 13px;
}
#order-standard_cart {
  /* margin: 0; */
  padding: 0 0 40px 0;
}

#order-standard_cart .sub-heading {
  height: 0;
  border-top: 1px solid #ddd;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
#order-standard_cart .sub-heading span,
#order-standard_cart .sub-heading-borderless span {
  display: inline-block;
  position: relative;
  padding: 0 17px;
  top: -11px;
  font-size: 16px;
  color: #058;
  background-color: #fff;
}

.custom_content > p {
  display: none;
}
.client-home-cards .custom_card .custom_list_group {
  border: none !important;
}

.burger-menu {
  display: inline-block;
  cursor: pointer;
  z-index: 2;
  display: none;
}
.burger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px 0;
  background-color: #333;
  transition: 0.4s;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-7px, 4px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -4px);
}

.custom_sidebar.active {
  left: 0;
  width: 100%;
}
.custom_sidebar.active .sidebar__logo {
  margin: 0 auto;
}
.custom_sidebar.active .sidebar__navigation {
  margin-top: 50px;
}
.mobile__logo {
  display: none;
}

/* ///////////////////////////   Media   ////////////////////////////// */
.sidebar-secondary {
  display: none;
}

@media (max-width: 992px) {
  .custom_sidebar {
    position: absolute;
    z-index: 2;
    left: -300px;
  }
  .custom_header_greeting {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .mobile__logo {
    display: block;
  }
  .custom_statistic {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .large_video {
    height: 50vw;
  }
  .small_video {
    height: 50vw;
  }
}
@media (max-width: 768px) {
  section#main-body {
    padding: 10px;
  }
  .tiles .tile .stat {
    margin-top: -20px;
  }
  .mobile__logo img {
    max-width: 130px;
  }
  .trader_options {
    flex-direction: column;
  }
  .two_videos_block {
    flex-wrap: wrap;
  }
  .video_with_link {
    width: 100%;
  }
  .trader_options_block {
    padding: 10px;
  }
  .custom_breadcrumb {
    font-size: 14px;
  }
}

.knowledgebase-article ul,
.knowledgebase-article ol {
  margin-left: 2rem;
}
