/** bootstrap 5 breakpoints */
/** media query helper with custom breakpoints */
/** color class */
.p-color {
  color: #2A62FF;
}

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

::-webkit-scrollbar-thumb {
  background: #0d1438;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

body.b_login,
html.h_login {
  margin: 0;
  padding: 0;
  font-family: "THICCCBOI", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #111;
  background: #f1f1f1;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "THICCCBOI", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #111;
  background: #f0f0f0;
}

.hidden, [hidden] {
  display: none;
}

.root {
  position: relative;
  min-height: 100vh;
  background: #f0f0f0;
  max-width: 100%;
  overflow-x: hidden;
}

body.b_login .root {
  background: #f1f1f1;	
}

.root.no-auth .container {
  max-width: 1200px;
}

.root.auth .container {
  max-width: 100%;
}

@media (min-width: 992px) {
  .root.auth .container {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .root.auth .container {
    padding: 0 50px;
  }
}

.dashboard-page-info {
  display: none !important;
  visibility: hidden;
}

.dropdown .btn::after {
  display: none;
}

.fw-400 {
  font-weight: 400;
}

.root.no-auth .page-content {
  min-height: calc(100vh - 100px);
}

a {
  color: #2A62FF;
  text-decoration: none;
}

a:hover {
  color: #2A62FF;
}

.btn {
  position: relative;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 23px 30px;
  color: #111;
}

.btn:hover {
  color: #fff;
}

.btn-sm {
  padding: 15px 30px;
}

.btn-rounded {
  border-radius: 50px;
}

.btn-border {
  border: 1px solid #4f75ff !important;
}

.btn-100 {
  display: block;
  width: 100%;
}

.btn-100.btn-icon {
  display: flex;
}

.btn-primary {
  background-color: #0139FF;
  border-color: #0139FF;
  color: #ffffff;
}

.b_login .btn-primary {
  background-color: #547aff;
  border-color: #547aff;	
}

.btn-secondary {
  background: #18214b;
  border-color: #18214b;
  color: #fff;
}

.btn-secondary:focus, .btn-secondary:hover {
  background-color: #212b58;
}

.btn-secondary.btn-border {
  border-color: #222a54 !important;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dropdown-menu {
  background: #fff;
  border-color: #f1f1f1;
  border-radius: 15px;
  top: 4px !important;
  min-width: 100%;
}

.dropdown-item {
  color: #111;
}

.dropdown-item:hover {
  color: #000 !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.login-section .card {
  background: #0d1438;
    border: 1px solid #1d254d;
    border-radius: 25px;
	box-shadow: none;
}

.card {
  background: #fff;
    box-shadow: 0 0 20px 2px #dddddd82;
    border-radius: 25px;
}

.b_login .card {
	background: #fff;
	box-shadow: 0 0 20px 2px #dddddd82;	
	border:none;
}

.card-header, .card-header-navs {
  border-bottom: 1px solid rgb(37 46 93 / 13%);
}

.card-header-navs {
  padding: 0;
}

.card-header {
  padding: 0 30px;
  background:#fff;
}

.card-custom-title {
  padding: 30px 0;
  position: relative;
  display: inline-block;
}

.card-custom-title::after {
  content: "";
  position: absolute;
  background-color: #3461ff;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #3461ff;
}

.card-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #111;
  margin-bottom: 0px;
}

.d-head-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background-color: rgba(43, 98, 255, 0.1);
  color: #2b62ff;
}

.card-body {
  padding: 30px 10px;
}

.header-nav {
  display: flex;
  padding: 0 30px;
  gap: 36px;
}

.header-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: transparent;
  position: relative;
  padding: 24px 0;
}

.header-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
  height: 0;
  background-color: #3461ff;
  transition: 0.14s ease;
}

.header-nav .nav-link.active {
  background-color: transparent;
}

.header-nav .nav-link.active .nav-link-icon {
  background-color: rgba(43, 98, 255, 0.1);
  color: #2b62ff;
}

.header-nav .nav-link.active .nav-link-text {
  color: #111;
}

.header-nav .nav-link.active::after {
  height: 3px;
}

.header-nav .nav-link-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  background: rgba(105, 113, 154, 0.1);
  color: #69719a;
}

.header-nav .nav-link-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #69719a;
}

/**
 * form-label
 */
.form-label {
  font-weight: 600;
  line-height: 16px;
  color: #111;
  margin-bottom: 16px;
}

.b_login .form-label {
  color:#111;	
}





/** 
 * form-control, form-select
 */
.form-control {
  background: #fff;
  box-shadow: 0 0 20px 2px #dddddd82;
  color: #111;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* padding: 19px 26px; */
}

.b_login .form-control {
  background-color: #df1e1e;
  border: 1px solid #f1f1f1;	
  color: #111;
}

.form-control:focus {
  outline: none;
  border-color: #36af32;
  background-color: #418aeb;
  color: #111;
}

.form-control:disabled {
  background-color: #8fbb28;
  border: 1px solid #f1f1f1;
}

.form-select {
  background-color: #fafafa;
  border: 1px solid #f1f1f1;
  color: #111;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  height: 58px;
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); */
  padding: 0 26px;
}

.b_login .form-select {
  background-color: #fafafa;
  border: 1px solid #f1f1f1;
  color: #111;	
}

.form-select:focus {
  outline: none;
  border-color: #f1f1f1;
  background-color: #fff;
  color: #111;
}

.form-select:disabled {
  background-color: #fff;
  border: 1px solid #1f284c;
}

.pagination .page-item.active .page-link {
  background-color: #fff;
  color: #111;
}

.pagination .page-item:first-child {
  border-right: 1px solid #1b2454;
}

.pagination .page-item:first-child .page-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-weight: 400;
}

.pagination .page-item:last-child {
  border-left: 1px solid #1b2454;
}

.pagination .page-item:last-child .page-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: 400;
}

.pagination .page-item .page-link {
  background: #fff;
  border: none;
  margin: 0;
  height: 50px;
  padding: 0px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17.3005px;
  line-height: 18px;
  color: #111;
  position: relative;
}

.pagination .page-item .page-link:focus {
  z-index: 20;
}

.nav-custom-pills .nav-link {
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  padding: 17px 26px;
}

.b_login .nav-custom-pills .nav-link {
	color:#111;
}

.nav-custom-pills .nav-link.active {
  border-color: #547aff;
  background-color: #547aff;
  color:#fff;
}

.tooltip-inner {
  background: #192149;
  border: 1px solid #243068;
}

.tooltip-arrow::before {
  border-top-color: #192149 !important;
}

.mobile-nav {
  z-index: 1001;
  position: relative;
  display: block;
  height: 72px;
  border-bottom: 1px solid #2d397a;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(8, 14, 46, 0.8);
  backdrop-filter: blur(15px);
}

.mobile-nav .row {
  height: 72px;
  align-items: center;
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

.menu-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(0, 102, 255, 0.2);
  color: #0066ff;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  bottom: 0px;
  left: 0px;
  background: #080e2f;
}

@media (min-width: 992px) {
  .header {
    height: 110px;
    padding: 5px 0 0 0;
    border-bottom: 1px solid #2d397a8f;
    top: 0;
    bottom: initial;
  }
}

.header .header-row {
  align-items: center;
}

@media (min-width: 992px) {
  .header .header-row {
    height: 105px;
  }
}

.header-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 40px;
  justify-content: center;
}

.header-menu>li {
  margin: 0;
  padding: 0;
}

.nwo-fi-card.card-1 {
    background-image: url('/static/new_order/5sah0eikte3ixxg1.webp');
  }
  
  .nwo-fi-card.card-2 {
    background-image: url('/static/new_order/rmbrchdrwure4i61.png');
  }

.header-menu>li>a {
  display: block;
  margin: 0;
  padding: 42px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.header-menu>li>a::after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #0066ff;
  border-radius: 25px 25px 1px 1px;
}

.header-menu>li>a.active::after {
  display: block;
}

.header-btn {
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 9px 9px 30px;
  overflow: hidden;
  background-color: #0139FF;
  color: #fff;
  text-decoration: none;
  transition: 0.14s ease;
}

.header-btn:hover {
  color: #fff;
}

.header-btn:hover .icon::after {
  transform: scale(8);
}

.header-btn .text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1004;
}

.header-btn .icon {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-btn .icon .icon-ri {
  z-index: 1003;
}

.header-btn .icon::after {
  content: "";
  z-index: 1002;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s ease;
}

@media (min-width: 992px) {
  .header-btn.without-icon {
    background-color: transparent;
    padding: 14px 30px;
  }

  .header-btn.without-icon .icon {
    display: none;
  }
}

footer {
  border-top: 1px solid rgba(74, 79, 110, 0.25);
  padding: 50px 0;
  background: #080e2f;
}

.footer-menu {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li a {
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
}

.footer-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.03em;
  color: #fff;
}

/** sidebar **/
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #0f1739;
  border-right: 1px solid #1b2349;
  width: 260px;
  z-index: 1010;
  transition: 0.14s ease;
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
}

@media (min-width: 768px) {
  .sidebar {
    width: 80px;
  }
}

@media (min-width: 1400px) {
  .sidebar {
    width: 260px;
  }
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.sidebar-content .sidebar-head {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-content .sidebar-balance {
  padding: 20px 30px;
  display: none;
}

@media (min-width: 1400px) {
  .sidebar-content .sidebar-balance {
    display: block;
  }
}

.sidebar-content .sidebar-balance-btn {
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 13px 19px;
  background: #18214b;
  border: 1px solid #222a54;
  border-radius: 12px;
  text-decoration: none;
}

.sidebar-content .sidebar-balance-left {
  flex: 1;
}

.sidebar-content .sidebar-balance-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #69719a;
  width: 100%;
  display: block;
}

.sidebar-content .sidebar-balance-amount {
  font-weight: 600;
  font-size: 19px;
  line-height: 22px;
  color: #ffffff;
  width: 100%;
  display: block;
  padding-top: 6px;
}

.sidebar-content .sidebar-balance-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-content .sidebar-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden
}

.sidebar-content .sidebar-menu {
  padding: 20px 0;
  margin: 0;
  list-style: none;
}

.sidebar-content .sidebar-menu-item {
  position: relative;
  display: block;
}

.sidebar-content .sidebar-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0 16px 40px;
  position: relative;
  color: #69719a;
  text-decoration: none;
}

.sidebar-content .sidebar-menu-link-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-content .sidebar-menu-link-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
}

@media (max-width: 1400px) and (min-width: 768px) {
  .sidebar-content .sidebar-menu-link-text {
    display: none;
  }
}

.sidebar-content .sidebar-menu-link-badge {
  background: rgba(52, 97, 255, 0.25);
  border-radius: 11.771px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #3461ff;
}

.sidebar-content .sidebar-menu-item::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 0px 4px 25px #fff;
  width: 5px;
  height: 36px;
  border-radius: 3px;
  display: none;
}

.sidebar-content .sidebar-menu-item.active {
  color: #3461ff;
}

.sidebar-content .sidebar-menu-item.active::after {
  display: block;
}

.sidebar-content .sidebar-menu-item.active .sidebar-menu-link {
  color: #fff
}

.header-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 19px;
  color: #111;
  display: none;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .header-title {
    display: block;
  }
}

@media (min-width: 992px) {
  .header-title {
    margin-bottom: 16px;
  }
}

.header-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #5b6182;
  margin-bottom: 0;
  display: none;
}

@media (min-width: 992px) {
  .header-text {
    display: block;
  }
}

/**  app-content **/
.app-content {
  margin-left: 0;
  padding-top: 92px;
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  .app-content {
    margin-left: 80px;
  }
}

@media (min-width: 1400px) {
  .app-content {
    margin-left: 260px;
  }
}

/** app-header **/
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 92px;
  transition: 0.14s ease;
}

.app-header.active {
  height: 72px;
  background-color: #fff;
  box-shadow: 0 0 20px 2px #dbdbdbbd;
}

.app-header.active .row {
  height: 72px;
}

.app-header .container {
  position: relative;
}

.app-header .container::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(270deg, rgba(29, 37, 77, 0) 0%, #1d244d 53.13%, rgba(29, 37, 77, 0) 100%);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 1px;
}

.app-header .container>.row {
  margin-left: -5px;
  margin-right: -5px;
}

.app-header .container>.row>* {
  padding-left: 5px;
  padding-right: 5px;
}

@media (min-width: 768px) {
  .app-header .container>.row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .app-header .container>.row>* {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.app-header .row {
  height: 92px;
  align-items: center;
  transition: 0.14s ease;
}

@media (min-width: 768px) {
  .app-header {
    left: 80px;
  }
}

@media (min-width: 1400px) {
  .app-header {
    left: 260px;
  }
}

.app-header .header-icon {
  width: 36px;
  height: 36px;
}

.sidebar-toggle-btn {
  position: relative;
  border-radius: 10px;
  background-color: #16265E;
  color: #0066ff;
  outline: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.14s ease;
}

@media (min-width: 768px) {
  .sidebar-toggle-btn {
    width: 42px;
    height: 42px;
  }
}

/** sidebar-active **/
@media (max-width: 768px) {
  .root.sidebar-active .sidebar {
    transform: translateX(0);
  }

  .root.sidebar-active .header-logo {
    display: block;
  }

  .root.sidebar-active .header-icon {
    display: none;
  }

  .root.sidebar-active .sidebar-balance {
    display: block;
  }

  .root.sidebar-active .sidebar-menu-link-text {
    display: block;
  }
}

@media (max-width: 1400px) and (min-width: 768px) {
  .root.sidebar-active .sidebar-balance {
    display: block;
  }

  .root.sidebar-active .sidebar {
    width: 260px;
  }

  .root.sidebar-active .header-logo {
    display: block;
  }

  .root.sidebar-active .header-icon {
    display: none;
  }

  .root.sidebar-active .sidebar-menu-link-text {
    display: block;
  }
}

.app-header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #29356A;
  background: #18214B;
  border-radius: 12px;
  height: 42px;
  width: 42px;
  color: #fff !important;
  font-size: 20px;
  text-decoration: none;
}

.app-header-btn.style-2 {
  background: #547aff;
  border-color: #547aff;
}
.app-header-btn.style-2:hover {
  background: #3A65FC;	
}

.app-header-btn.style-3 {
  background: rgb(255 38 38 / 83%);
  border-color: #FE7E7E;
}
.app-header-btn.style-3:hover {
  background: rgb(255 38 38 / 100%);	
}

.header-logo {
  display: none;
}

@media (min-width: 1400px) {
  .header-logo {
    display: block;
  }
}

.header-icon {
  display: block;
}

@media (min-width: 1400px) {
  .header-icon {
    display: none;
  }
}

.modal-wrapper {
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px black;
}

.modal-wrapper.active {
  display: flex;
}

.mbo-wrapper {
  height: 100%;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-y: auto;
}

.modal-box {
  margin: auto 0;
  max-width: 560px;
  width: 100%;
  border-radius: 25px;
  background: #10183e;
  border: 1px solid #1e2756;
  text-align: left;
  position: relative;
}

.m-header {
  padding: 30px 30px 60px;
  background-color: #10183e;
  background-image: url('/static/new_order/8k6fkh9w6cr8funu.png');
  background-size: cover;
  background-position: center;
  border-radius: 25px 25px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.m-header>* {
  text-align: center;
}

.m-body {
  padding: 30px;
}

.m-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.005em;
  color: #ffffff;
  margin-bottom: 0;
  word-break: break-word;
  /* doesn't work in firefox */
  word-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  min-width: 40%;
}

.m-close {
  border: none;
  outline: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  border-radius: 15px;
  position: absolute;
  z-index: 3001;
  top: 30px;
  right: 30px;
}

.m-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(1, 57, 255, 0.2);
}

.m-sub-title {
  margin-top: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/** addon*/
#serviceModalText {
  background: #192149;
  border: 1px solid #1e2756;
  border-radius: 15px;
  padding: 30px;
  margin-top: -60px;
  color:#fff;
}

.service-modal-id {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  background: #0139ff;
  border-radius: 15px;
  padding: 14px 23px;
  margin-bottom: 16px;
}

.dashboard-head {
  padding-top: 30px;
}

.dashboard-head-card {
  position: relative;
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid #f1f1f1;
}

.dashboard-head-body {
  padding: 20px;
}

@media (min-width: 768px) {
  .dashboard-head-body {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .dashboard-head-body {
    padding: 44px;
  }
}

.dashboard-head-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 34px;
  color: #ffffff;
}

.dashboard-head-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #4a4f6e;
  margin-bottom: 0px;
}

.dashboard-head-icon {
  width: 44px;
  height: 44px;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .dashboard-head-icon {
    width: 82px;
    height: 82px;
    font-size: 40px;
  }
}

.dashboard-head.add-funds-page .dashboard-head-icon {
  background: rgba(255, 0, 153, 0.15);
  color: #ff0099;
}


.dashboard-head.support-center-page .dashboard-head-icon {
  background-color: rgba(255, 95, 0, 0.15);
  color: #FF5F00;
}


.dashboard-head.child-panel-page .dashboard-head-icon {
  background-color: rgba(6, 253, 193, 0.15);
  color: #06FDC1;
}


.dashboard-head.affiliates-page .dashboard-head-icon {
  background-color: rgba(174, 71, 255, 0.15);
  color: #AE47FF;
}

.dashboard-head.affiliates-page .card {
  background-image: url(/);
}

.currency-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
}

.currency-drawer {
  display: none;
  transform: translateX(100%);
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 2003;
  background: #0f1739;
  border-left: 1px solid #1e2756;
  width: 280px;
  display: flex;
  flex-direction: column;
  transition: 0.14s ease;
}

.currency-drawer .drawer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 80px;
  padding: 0 20px;
  background-color: #0f1739;
}

.currency-drawer .drawer-header-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 22px;
  color: #ffffff;
  margin-bottom: 0;
}

.currency-drawer .drawer-header-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}

.currency-drawer .drawer-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 0 20px 40px;
  overflow-y: auto;
}

.currency-item {
  background: #171f40;
  border: 1px solid #1f284c;
  border-radius: 10px;
  padding: 18px 23px;
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  transition: 0.14s ease;
}

.currency-item:hover, .currency-item:focus {
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(1, 57, 255, 0.4);
}

.currency-item.active {
  background: #0139ff;
  border: 1px solid #4770ff;
}

/** pages **/
.page-head {
  position: relative;
  background: url("/static/new_order/5sah0eikte3ixxg1.webp") no-repeat;
  background-position: center;
  padding-top: 72px;
}

@media (min-width: 992px) {
  .page-head {
    padding-top: 110px;
  }
}

.page-head-container {
  padding: 40px 0 10px 0;
}

@media (min-width: 768px) {
  .page-head-container {
    padding: 100px 0;
  }
}

.ph-t-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  /* identical to box height, or 175% */
  color: #fff;
}

.ph-title {
  padding-top: 40px;
  color: #fff;
  margin-bottom: 35px;
}

.ph-title span {
  font-weight: 700;
  position: relative;
  z-index: 999;
}

.ph-title span::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='136' height='12' viewBox='0 0 136 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M132.864 8.97544C82.1537 4.38991 53.8493 4.86909 3.3148 11.0989C1.94446 11.2678 0.696634 10.2939 0.527701 8.92358C0.358767 7.55324 1.3327 6.30542 2.70304 6.13648C53.5883 -0.136588 82.2487 -0.621901 133.315 3.99576C134.69 4.1201 135.704 5.33565 135.579 6.71075C135.455 8.08585 134.239 9.09979 132.864 8.97544Z' fill='url(%23paint0_linear_142_1034)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_142_1034' x1='139.458' y1='7.3734' x2='1.71801' y2='9.63104' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230139FF'/%3E%3Cstop offset='1' stop-color='%230139FF' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  position: absolute;
  bottom: -16px;
  right: 0;
  height: 20px;
  width: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.ph-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: #f5f5f5bf;
  max-width: 470px;
}

.ph-inft .number {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.02em;
  color: #ffffff;
  padding-bottom: 6px;
}

.ph-inft .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  /* identical to box height, or 100% */
  text-align: center;
  letter-spacing: -0.02em;
  color: #f5f5f5bf;
}

.ph-card {
  border-radius: 35px;
  height: 100%;
  position: relative;
}

.ph-card .img {
  position: absolute;
  display: none;
}

@media (min-width: 992px) {
  .ph-card .img {
    display: block;
  }
}

.ph-card .i-1 {
  top: 10px;
  left: -90px;
}

.ph-card .i-2 {
  top: 10px;
  right: -50px;
}

.ph-card .i-3 {
  bottom: 100px;
  left: -70px;
}

.ph-card .i-4 {
  bottom: 20px;
  right: -80px;
}

.login-remember-me {
  /* input checked */
}

.login-remember-me input {
  display: none;
}

.login-remember-me input:checked+.lgn-btn {
  background: #0139FF;
  border-color: #0139FF;
  color: #fff;
}

.login-remember-me .lgn-btn {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161f46;
  border: 1px solid #161f46;
  border-radius: 15px;
  color: #475285;
  font-size: 24px;
  transition: 0.2s ease;
  cursor: pointer;
}

.login-remember-me .lgn-btn::before {
  content: "\eae5";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.log-remember-pass {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161f46;
  border: 1px solid #161f46;
  color: #475285;
  border-radius: 15px;
  font-size: 24px;
  transition: 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.log-remember-pass::before {
  content: "\eed2";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-icon {
  display: flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  background-color: rgba(43, 98, 255, 0.1);
  color: #2b62ff;
  font-size: 17px;
}

@media (min-width: 992px) {
  .login-row>.col-start {
    flex: 0 0 auto;
    width: 64%;
  }

  .login-row>.col-end {
    flex: 0 0 auto;
    width: 36%;
  }
}

.login-input {
	border: none;
  outline: none;
  width: 100%;
  border-radius: 15px;
  height: 66px;
  padding: 0 24px;
  background-color: #161f46;
  color: #fff;
  font-weight: 600;
}

.login-input::placeholder {
  font-weight: 600;
  color: #757fac;
}

.login-section {
  padding: 50px 0;
  background: #080e2e;
}
.box_cont {
  background: #080e2e;
}

@media (min-width: 768px) {
  .login-section {
    padding: 80px 0;
  }
}

.lg-card {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.lg-card.c-1 {
  background-image: url('/static/new_order/aus87njhqqq93j2j.jpg');
}

.lg-card.c-2 {
  background-image: url('/static/new_order/2beajdi66bghnkw3.jpg');
}

.lg-card .lg-card-body {
  padding: 47px 40px 41px 40px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

@media (max-width: 992px) {
  .lg-card .lg-card-body span {
    color: #fff !important;
  }
}

@media (min-width: 992px) {
  .lg-card .lg-card-body {
    background-color: transparent;
    backdrop-filter: none !important;
    padding: 47px 40px 330px 40px;
  }
}

.lg-card .lgc-title {
  font-weight: 400;
  font-size: 25px;
  line-height: 125%;
  color: #ffffff;
  margin-bottom: 8px;
}

.lg-card .lgc-title span {
  color: #fff;
  font-weight: bold;
}

.lg-card .lgc-text {
  margin-bottom: 0;
  max-width: 380px;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  color: #ffffff;
}

.login-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 36px;
  /*
  background: linear-gradient(270.13deg, rgba(1, 57, 255, 0.28) -1.02%, rgba(12, 58, 250, 0) 42.14%), #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  */
  color: #fff;
}

@media (min-width: 768px) {
  .login-title {
    font-size: 35px;
    line-height: 40px;
  }
}

.login-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #fff;
}

.login-img {
  max-width: 100%;
}

.login-eause {
  padding-top: 40px;
  border-bottom: 1px solid #1d244d;
}

@media (min-width: 992px) {

  .login-eause .col:nth-child(1) .login-eause-item::after,
  .login-eause .col:nth-child(3) .login-eause-item::after {
    display: block;
  }
}

.login-eause-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
  position: relative;
}

.login-eause-item::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -10px;
  right: -10px;
  background: #0139ff;
  height: 5px;
  display: none;
}

.login-eause-item .icon {
  width: 55px;
  height: 55px;
  position: relative;
  margin-bottom: 36px;
  z-index: 1;
  user-select: none;
  transition: 0.14s ease;
}

.login-eause-item .icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.login-eause-item:hover .icon {
  animation: mover 1s infinite alternate;
}

.login-eause-item .title {
  font-weight: 600;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.login-eause-item .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.04em;
  color: #f5f5f5bf;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .login-eause-item .text {
    max-width: 210px;
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

.ea-section {
  background-image: url('/static/new_order/y3q98h0im2xs10fc.png');
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
}

.chfa-section {
  position: relative;
}

.chfa-box {
  background-image: url('/static/new_order/sx0pzd6h75f0h95l.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 55px 55px 0px 0px;
  padding: 105px 20px 234px 20px;
  position: relative;
  z-index: 2;
}

.chfa-box .login-title {
  margin-bottom: 0;
}

.chfa-view {
  margin-top: -172px;
  z-index: 3;
  position: relative;
  text-align: center;
}

.chfa-view img {
  max-width: 100%;
  pointer-events: none;
  user-select: none;
}

.login-pm {
  position: relative;
  background: #0f163a;
    border: 1px solid #151d46;
  border-radius: 15px;
  height: 108px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-tes-title {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-tes-title i {
  color: #ffa800;
  font-size: 24px;
}

.login-tes-title span {
  font-weight: 400;
  font-size: 25px;
  line-height: 140%;
  color: #fff;
}

.login-swiper {
  position: relative;
}

.login-swiper .sw-item {
  background: #0d1438;
  border: 1px solid #1d254d;
  border-radius: 15px;
  padding: 30px;
}

.login-swiper .sw-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #acb5c6;
}

.login-swiper .sw-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.login-swiper .sw-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}

.login-swiper .sw-body {
  padding: 20px 0;
}

.login-swiper .sw-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0px;
}

.login-swiper .sw-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.login-swiper .sw-stars .ri-star-fill {
  color: #ffa800;
}

.login-swiper .sw-stars .point {
  padding-left: 10px;
  color: #fff;
}

.login-sw-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-sw-btns .login-sw-btn {
  border: 1px solid rgba(235, 242, 250, 0.25);
  border-radius: 31.5px;
  background-color: transparent;
  outline: none;
  color: #fff;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.14s ease;
  position: relative;
}

.login-sw-btns .login-sw-btn::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transition: 0.2s ease;
  border-color: #fff;
  background-color: #fff;
  border-radius: 50%;
  transform: scale(0);
}

.login-sw-btns .login-sw-btn:hover::before {
  transform: scale(1);
}

.login-sw-btns .login-sw-btn:hover i {
  color: #0139FF;
}

.login-sw-btns .login-sw-btn i {
  position: relative;
  z-index: 3;
  transition: 0.14s ease;
}

.login-foot-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 630px;
  display: inline-block;
}

@media (max-width: 992px) {
  .login-first-section {
    padding: 10px 0;
  }
}

.nwo-title {
  font-weight: 600;
  font-size: 17.9254px;
  line-height: 21px;
  color: #ffffff;
  margin-bottom: 30px;
}

.nwo-title-2 {
  font-weight: 600;
  font-size: 25px;
  line-height: 29px;
  color: #ffffff;
}

.dh-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.dh-icon.dh-icon-1 {
  background: rgba(52, 97, 255, 0.15);
  color: #3461ff;
}

.dh-icon.dh-icon-2 {
  background: rgba(255, 1, 154, 0.15);
  color: #ff019a;
}

.dh-fi-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #60688b;
  margin-bottom: 6px;
}

.dh-fi-text {
  font-weight: 600;
  font-size: 22.9781px;
  line-height: 26px;
  color: #ffffff;
}

.nwo-fi-card {
  background-size: cover;
  background-position: left center;
}

.nwo-fi-card .card-body {
  padding: 20px;
}

@media (min-width: 768px) {
  .nwo-fi-card .card-body {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .nwo-fi-card .card-body {
    padding: 38px 30px;
  }
}

.nwo-service-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #111;
  padding-bottom: 15px
}

.nwo-service-card {
  display: flex;
  align-items: center;
  background-color: #fafafa;
  border: 1px solid #f1f1f1;
  border-radius: 15px;
  padding: 18px 24px;
}

.nwo-service-card.center {
  justify-content: center;
}

.nwo-service-card .link-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #111;
}

.nwo-service-card .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #111;
}

.nwo-service-card .text {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #111;
  margin-left: auto;
}

.nwo-service-card .long-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #69719a;
  margin-bottom: 0px;
  width: 100%;
  overflow-y: scroll;
  max-height: 300px;
}

/** updates */
.updates-container {
  position: relative;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.updates-card {
  background: #fafafa;
  border: 1px solid #f1f1f1;
  border-radius: 15px;
  padding: 20px 24px;
}

.updates-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: #111;
  margin-bottom: 14px;
}

.updates-footer {
  display: flex;
  gap: 30px;
}

.updates-footer-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #545f8b;
}

.updates-footer-text.c-red {
  color: #fd5f5f;
}

.updates-footer-text.c-green {
  color: #11ff55;
}

.updates-footer-text.c-blue {
  color: #0139ff;
}

/** swiper categories */
.nwo-categories .swiper-slide {
  width: auto !important;
}

.nwo-categories .swiper-wrapper {
  position: relative;
}

.nwo-categories .swiper-wrapper::before, .nwo-categories .swiper-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
}

.nwo-categories .swiper-wrapper::before {
  left: 0;
  width: 50px;
}

.nwo-categories .swiper-wrapper::after {
  left: 0;
  width: 50px;
}

.nwo-categories .swiper-button-next::after,
.nwo-categories .swiper-button-prev::after {
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  color: #fff;
}

.nwo-categories .swiper-button-prev::after {
  content: "\ea64";
}

.nwo-categories .swiper-button-next::after {
  content: "\ea6e";
}

.nwo-cat-btn {
  display: flex;

  align-items: center;
  gap: 15px;
  background: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 24px 15px 15px;
  box-shadow: 0 0 20px 2px #dddddd82;
}

.nwo-cat-btn.active,.nwo-cat-btn:hover {
  background: #547aff;
  border: 1px solid #547aff;
}

.nwo-cat-btn:hover .icon,.nwo-cat-btn:hover .text {
	color:#fff;	
}

.nwo-cat-btn.active .icon, .nwo-cat-btn.active .text {
  color: #fff;
}

.nwo-cat-btn .icon {
  color: #547aff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nwo-cat-btn .text {
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #111;
}

.swiper {
	padding: 20px 0 !important;
}

.s-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-row.s-title {
  font-weight: 600;
  display: none;
}

@media (min-width: 992px) {
  .s-row.s-title {
    display: flex;
  }
}

.s-col {
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .s-col {
    flex: 0 0 50px;
    width: 50px;
  }

  .s-col.s-col-sm {
    flex: 0 0 70px;
    width: 70px;
  }

  .s-col.s-col-md {
    flex: 0 0 100px;
    width: 100px;
  }

  .s-col.s-col-lg {
    flex: 0 0 180px;
    width: 180px;
  }

  .s-col.s-title {
    flex: 1 0 0;
    width: auto;
  }
}

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (min-width: 992px) {
  .services-wrapper {
    flex-direction: column;
  }
}

.si-wrapper {
  flex: 0 0 auto;
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .si-wrapper {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .si-wrapper {
    width: 100%;
  }
}

.service-item {
  padding: 12px 30px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 20px 2px #dddddd82;
  box-sizing: border-box;
  border-radius: 15px;
}

.b_login .service-item {
	background: #fff;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 20px 2px #dddddd82;	
}

@media (max-width: 992px) {
  .service-item .s-row {
    flex-wrap: wrap;
    align-items: center;
  }

  .service-item .s-col-avtime {
    width: 100%;
    text-align: center;
  }

  .service-item .s-col-btn {
    flex: 1;
  }

  .service-item .s-col {
    padding: 0px 0;
  }

  .service-item .s-col::before {
    content: attr(data-title);
    display: block;
    padding-bottom: 6px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
  }

  .service-item .s-col-fav {
    order: 100;
  }

  .service-item .s-col-id {
    width: 100%;
    text-align: center;
  }

  .service-item .s-title {
    width: 100%;
    text-align: center;
  }

  .service-item .s-col-c {
    width: 30%;
    text-align: center;
  }
}

.services-head-row .service-item {
  background-color: transparent;
  border: none;
}

.sp-serv-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.sp-serv-sm {
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  color: #145bff;
}

@media (min-width: 992px) {
  .sp-serv-sm {
    color: #949494;
    font-size: 14px;
  }
}

.orlc {
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding: 10px 10px;
  background: #f7fafc;
  color: #74809d;
  border-radius: 22px;
}

.orlc.min {
  background: rgba(1, 57, 255, 0.18);
  border: 1px solid #0139ff;
}

.orlc.max {
  background: #192146;
  border: 1px solid #242e5e;
}

.b_login .orlc.max {
  background: #fff;
  border: 1px solid #f1f1f1;
  color:#111;	
}

.sp-services .card {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .sp-services .card {
    background-color: #fff;
    border: 1px solid #eee;
    overflow: hidden;
  }
}

.si-header {
  padding: 25px 30px;
  background: url('/static/new_order/5pjlc1g48q57who9.png') #0f163a;
  background-size: cover;
  background-position: right center;
  border-radius: 15px;
  border: 1px solid #1e2756;
  margin-bottom: 14px;
}

.si-header .si-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 23px;
  color: #ffffff;
  margin-bottom: 0;
}

.search-services {
  height: 40px;
  position: relative;
}

.search-services:focus-within .icon {
  color: #111;
}

.search-services .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #92969d;
  transition: 0.14s ease;
}

.search-services .textbox {
  width: calc(100% - 40px);
  margin-left: 40px;
  height: 40px;
  background-color: transparent;
  outline: none;
  border: none;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.search-services .textbox::placeholder {
  color: #92969d;
}

.fav-btn {
  width: 42px;
  height: 42px;
  background: #18214b;
  outline: none;
  border: none;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.orders-nav-wrapper {
  padding-top: 30px;
  margin-bottom: 30px;
}

.orders-nav {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.orders-nav-link {
  background: #fafafa;
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
  border-radius: 15px;
  color: #637990;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  transition: 0.14s ease;
  text-decoration: none;
}

.orders-nav-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(1, 57, 255, 0.25);
}

.orders-nav-link.active {
  background-color: #0139ff;
  border-color: #0139FF !important;
  color: #fff;
}

.orders-nav-link.active:hover {
  background-color: #0139FF;
  color: #fff;
  border-color: #0139FF;
}

@media (min-width: 992px) {
  .orders-nav-link {
    padding: 10px 13px;
  }
}

@media (min-width: 1200px) {
  .orders-nav-link {
    padding: 11px 15px;
  }
}

@media (min-width: 1400px) {
  .orders-nav-link {
    padding: 14px 18px;
  }
}

.orders-nav-link .icon {
  font-size: 20px;
  display: flex;
  align-items: center;
}

.orders-nav-link .text {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.op-search-box {
  transition: 0.14s ease;
}

.op-search-box:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(1, 57, 255, 0.25);
}

.op-search-box .icon {
  color: #111;
}

.op-search-box input {
  transition: 0.14s ease;
  background-color: transparent;
  border: none;
  outline: none;
  flex: 1;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.op-search-box input::placeholder {
  color: #566676;
}

.op-card {
  margin-bottom: 30px;
}

.op-card .op-card--top {
  padding-bottom: 30px;
  border-bottom: 1px solid #1b2454;
}

.op-card .op-card--bottom {
  padding-top: 30px;
}

.op-stats {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 20px 34px;
  text-decoration: none;
}

.op-stats.op-stats-sm {
  padding: 16px 30px;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.op-stats.op-stats-btn {
  padding: 20px 20px;
  display: inline-block;
  border: none;
  transition: 0.14s ease;
  color: #fff;
  background: #192149;
  border: 1px solid #232e64;
}

.op-stats.op-stats-btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(1, 57, 255, 0.25);
}

.op-stats.op-stats-btn.cs-btn {
  font-size: 24px;
  margin-bottom: 0;
}

.op-stats.primary {
  background: #547aff;
  border: 1px solid #547aff;
  color:#fff;
}

.op-stats.red {
  background: #FF2424;
  border: 1px solid rgba(255, 36, 36, 0.26);
  color:#fff;
}

.op-stats.secondary {
  background: #FF5C00;
  border: 1px solid rgba(255, 92, 0, 0.24);
  color:#fff;
}

.op-stats.success {
  background: #47ab7b;
  border: 1px solid #51dd9a;
  color:#fff;
}

.op-stats.warning {
  background-color: #ffc107;
  border: 1px solid 1px solid rgb(255 219 112);
}

.op-stats.info {
  background-color: #4A629C;
  border: 1px solid rgba(74, 98, 156, 0.24);
  color:#fff;
}

.op-service-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: #111;
  margin-bottom: 0px;
}

.op-search-box.op-order-link {
  display: flex;
  width: 100%;
}

.op-search-box.op-order-link .link {
  display: block;
  width: 100%;
  flex: 1 0 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #111;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.op-date {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #111;
}

.op-date::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #9aacbd;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  margin-left: 0px;
}

.op-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
}

@media (min-width: 992px) {
  .op-item {
    flex-direction: row;
  }
}

.op-item .title {
  font-size: 14px;
  line-height: 18px;
  color: #72879d;
}

.op-item .icon {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #fdfdfd;
}

.op-item .text {
  font-weight: bold;
  font-size: 23px;
  color: #111;
  line-height: 27px;
}

.pm-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 25px;
  color: #111;
}


.pm-about {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #636b82;
  margin-bottom: 0px;
}

.pm-text-container {
  margin-top: 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: #8b98b8;
}

@media (min-width: 768px) {
  .pm-text-container {
    margin-top: 50px;
    padding: 30px;
    background: #171f40;
    border: 1px solid #1f284c;
    border-radius: 20px;
  }
}

.ts-wrapper {
  z-index: 1030;
  position: relative;
  margin-top: -60px;
  overflow-y: scroll;
  max-height: 400px;
}

.ts-item {
  position: inherit;
  background-color: #fafafa;
  border: 1px solid #f1f1f1;
  border-radius: 15px;
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 10px 26px;
}

.ts-item+.ts-item {
  margin-top: 14px;
}

.ts-title {
  padding-top: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #8b98b8;
}

.ts-text {
  padding-bottom: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #111;
}

.ts-text.blue {
  color: #0258FF;
}

.ts-text.red {
  color: #FF2626;
}

.ts-text.green {
  color: #1DB475;
}

.spf-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 31px;
  color: #111;
  margin-bottom: 0;
}

.scf-id-box {
  background: #547aff;
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}

.sc-stat-item {
  position: relative;
  background-color: #fafafa;
  border: 1px solid #f1f1f1;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 30px 22px;
  margin-top: 16px;
}

.sc-stat-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #111;
}

.sc-stat-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #2a62ff;
  margin-left: auto;
}

.sc-card {
  background-image: url('/static/new_order/rmbrchdrwure4i61.png');
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
}

.sc-card-icon {
  background: #547aff;
  border: 1px solid #547aff;
  border-radius: 10px;
  color: #fff;
  font-size: 17px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-card-minititle {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #111;
  margin-bottom: 0;
}

.sc-card-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 29px;
  letter-spacing: -0.04em;
  color: #111;
  margin: 30px 0 16px;
}

.sc-card-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.04em;
  color: #6c7292;
  max-width: 338px;
  margin-bottom: 0;
}

.message-card-header {
  background: #0f1739;
  background-image: url('/static/new_order/rrytu0dfd88azdpu.png');
  background-size: cover;
  background-position: right center;
  padding: 46px 50px;
  border-radius: 25px 25px 0 0;
}

.message-card-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 31px;
  color: #ffffff;
}

.message-card-body {
  position: relative;
  min-height: calc(100vh - 460px);
  max-height: calc(100vh - 460px);
  overflow-y: scroll;
}

.message-card-footer {
  border-top: 1px solid #1e2756;
  padding: 20px 22px;
  transition: 0.14s ease;
}

.message-card-footer:focus-within {
  border-color: #394686;
}

.messages-wrapper {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.message-container {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.message-wrapper {
  display: inline-flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
}

.message-head {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.message-head .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-head .username {
  font-weight: 600;
  font-size: 12px;
  line-height: 26px;
  color: #8b98b8;
}

.message-head .date {
  margin-left: auto;
  font-weight: 600;
  font-size: 12px;
  line-height: 26px;
  color: #8b98b8;
}

.message-box {
  background: linear-gradient(90.54deg, #0139ff 0%, #2a62ff 100%);
  border-radius: 0px 15px 15px 15px;
  padding: 18px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  display: inline-block;
  margin-right: auto;
}

.message-container.message-end {
  margin-left: auto;
}

.message-container.message-end .message-box {
  margin-right: initial;
  margin-left: auto;
  background: #171f40;
  border-radius: 15px 15px 0 15px;
}

.message-input {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  transition: 0.14s ease;
  padding: 14px 6px;
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
  color: #fff;
}

.b_login .message-input {
	color:#111;
}

.message-input::placeholder {
  color: #8b98b8;
}

.ns-setup-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 23px;
  color: #111;
}

.ns-card {
  background: rgba(52, 97, 255, 0.15);
  border-radius: 10px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #3461ff;
}

.ns-card .ns-domain {
  position: relative;
}

.ns-card .ns-domain+.ns-domain::before {
  display: none;
  content: "/";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-20px);
  left: 0;
}

.child-panel-card .title {
  font-weight: 600;
  font-size: 25px;
  line-height: 125%;
  color: #111;
}

.child-panel-card .text {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: #111;
  margin-bottom: 0;
}

.cp-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #111;
  margin-bottom: 0;
  padding: 6px 0;
}

.cp-box {
  background: #fafafa;
  border: 1px solid #f1f1f1;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
}

.cp-box .icon {
  background: rgba(43, 98, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.cp-box .icon::after {
  content: "\eb7b";
  color: #2b62ff;
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cp-box .text {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  color: #111;
}

.cp-title-3 {
  font-weight: 600;
  font-size: 19px;
  line-height: 23px;
  color: #111;
  margin-bottom: 22px;
}

.cp-text-3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: #8b98b8;
  margin-bottom: 0;
}

.af-top-icon {
  background: rgba(43, 98, 255, 0.1);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b62ff;
  font-size: 20px;
}

.af-top-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #111;
  margin-bottom: 0px;
}

.af-avatar {
  background: rgba(42, 98, 255, 0.15);
  color: #2a62ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  font-size: 30px;
}

.af-card {
  background: #fafafa;
  border: 1px solid #f1f1f1;
  border-radius: 15px;
  padding: 14px 20px 14px 14px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.af-card-btn {
  background: #547aff;
  border: 1px solid #547aff;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.af-card-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #4a4f6e;
}

.af-card-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #111;
  margin-top: 6px;
  display: inline-block;
  width: 180px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.af-item {
  position: relative;
  padding-bottom: 10px;
}

.af-item::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 20px;
  background: #547aff;
  border-radius: 10px;
}

.af-item-title {
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  color: #111;
}

.af-item-text {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #111;
}

.account-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #2a62ff;
  background-color: rgba(42, 98, 255, 0.15);
}

.acc-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #4a4f6e;
}

.acc-text {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #111;
}

.api-page p {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #92969d;
}

.api-page .code {
  font-weight: 400;
}

.api-page-title {
  font-weight: 500;
  font-size: 35px;
  line-height: 30px;
  color: #111;
}

.b_login .api-page-title {
	color: #111;	
}

.api-page #PageTitle {
  display: block;
  font-weight: 600;
  font-size: 35px;
  line-height: 30px;
}

.api-page p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
  color: #92969d;
}

.api-page h6 {
  font-weight: 600;
  font-size: 19px;
  line-height: 22px;
  color: #111;
}

.api-title-section {
  padding: 60px 0 30px;
}

.api-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #111;
  margin-bottom: 0;
  margin-top: 10px;
}

.b_login .api-title {
  color: #111;	
}

.api-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #0139ff;
}

.api-section {
  padding: 0 0 30px;
}

.api-section .card-header .api-title {
  margin-bottom: 0;
}
.contact_us {
	background: #fff;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;	
}
.contact_us h3 {
	font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;	
}
.contact_us h3 span {
	background: #0f1739;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    margin-right: 0.5rem;	
}
.contact_us p {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}
.cotct_cont {
	padding-left: 1rem;	
}
.cotct_cont p span {
    background: #ffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    margin-right: 1rem;
    box-shadow: 0 0 12px #6463633d;
    font-size: 25px;
    line-height: 43px;
}

@media (min-width: 992px) {

  .api-section .card .card-body,
  .api-section .code.card-body {
    padding: 40px;
  }
}

.api-section .card-body .row {
  margin-bottom: -2rem;
}

.api-section .code {
  color: rgba(0, 0, 0, 0.6);
}

.b_login .api-section .code {
  color: rgb(0 0 0 / 60%);
}

.blog-head {
  padding-top: 110px;
}

.blog-head-content {
  padding: 40px 0 24px;
}

@media (min-width: 992px) {
  .blog-head-content {

    padding: 110px 0 60px 0;
  }
}

.blog-head-title {
  font-weight: 600;
  font-size: 35px;
  line-height: 45px;
  color: #111;
}

.blog-head-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: #9fa2b0;
}

.blogs-section {
  padding-bottom: 40px;
}

.blog-item {
  display: block;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 0 20px 2px #dddddd82;
  border:none;
}

.blog-item .blog-thumb {
  position: relative;
  padding-top: 60%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.blog-item .blog-thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item .blog-title {
  padding-top: 30px;
  font-weight: 600;
  font-size: 21px;
  line-height: 25px;
  color: #ffffff;
}


.blog-item .blog-author {
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: #9fa2b0;
}

.blog-single-head {
  padding-top: 110px;
}

.blog-single-head-content {
  padding: 40px 0 30px;
}

@media (min-width: 992px) {
  .blog-single-head-content {
    padding: 84px 0 60px;
  }
}

.bs-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.bs-head-cat {
  background: #0f1739;
  border: 1px solid #252e5d;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  text-decoration: none;
  padding: 17px 26px;
  transition: 0.14s ease;
}

.bs-head-cat:hover {
  color: #fff;
}

.bs-head-title {
  font-weight: 600;
  font-size: 35px;
  line-height: 44px;
  color: #111;
  text-align: center;
  margin-bottom: 50px;
}

.bs-head-date {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bs-head-share-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bs-head-share-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #111;
}

.bs-head-share-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  text-decoration: none;
  font-size: 22px;
  color: #fff;
  transition: 0.14s ease;
}

.bs-head-share-icon:hover {
  color: #fff;
  transform: scale(1.1);
  opacity: 0.7;
}

.bs-head-share-icon.bs-reddit {
  background: #fd5f5f;
}

.bs-head-share-icon.bs-twitter {
  background: #00caff;
}

.bs-head-share-icon.bs-telegram {
  background: #0139ff;
}

.bs-single-thumbnail {
  padding: 0px 0 30px 0;
}

.bs-single-thumbnail .blog-single-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-single-thumbnail .blog-single-image-wrapper {
  position: relative;
  padding-top: 34%;
  width: 100%;
  border-radius: 50%;
  user-select: none;
  pointer-events: none;
  border-radius: 25px;
  overflow: hidden;
}

.bs-single-content {
  padding: 30px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
}

.bs-single-content img {
  margin: 20px 0;
  max-width: 100%;
  border-radius: 20px;
  transition: 0.1s ease;
}

.bs-single-content img:hover {
  border-radius: 0;
}

.bs-single-footer {
  padding: 30px 0 80px;
}

.bs-footer-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 98, 255, 0.15);
  color: #2a62ff;
  font-size: 35px;
}

.bs-footer-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 22px;
  color: #111;
  margin-bottom: 10px;
}

.bs-footer-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #111;
  margin-bottom: 0;
}


.register-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.register-page::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-image: url('/static/new_order/zr1om91w5nd89eu0.png');
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .register-page::before {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .register-page::before {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .orlc {
    border-radius: 10px
  }
}

.time_replaced {
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  color: #545f8b !important;
}

.register-container {
  padding: 40px 0;
  position: relative;
  z-index: 100;
}

.register-title {
  font-weight: 600;
  font-size: 19px;
  line-height: 22px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 20px;
}

.register-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.03em;
  color: #4a4f6e;
}

.form-check-input[type=checkbox] {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-check-input[type=checkbox]:checked {
  background-color: #2a62ff;
  border: 1px solid #5475ff;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
}

.page-head .ph-title .ph-title-sp::after {
  content: '';
  position: absolute;
  background: url('/static/new_order/4jggk2461zgrymu6.png') no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 40px;
  left: 0px;
  bottom: -30px;
}

.page-head .ph-title .ph-title-sp {
  position: relative;
  color: #355DF2;
}

.form-group.fields {
  margin-bottom: 1.5rem !important
}

.form-group.fields label {
  font-weight: 600;
  line-height: 16px;
  color: #111;
  margin-bottom: 16px;
}

.select2-results__option a {
  color: #111 !important;
  font-weight: 600;
  font-size: 1rem;
  line-height: 20px;
  border-bottom: 1px solid #edebeb;
  padding: 5px 20px !important;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option:hover {
  background-color: #e0dddd !important;
}

.fav-btn .ri-star-fill {
  color: #0139FF
}

.form-control:disabled, .form-control[readonly] {
  background-color: #fafafa;
}

.modal-content {
  background: #fff;
  border-radius: 15px
}

.modal-header {
  border-bottom: 1px solid #171f40
}

button.close {
  background: none;
  border: none
}

.mbo-wrapper {
  white-space: normal !important;
}



/** actulus */

.select-container {
  position: relative;
  width: 100%;
}

.select-container.open .select-options-wrapper {
  display: flex;
}

.select-container.open .select-arrow {
  transform: rotate(180deg);
}

.select-button {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  transition: 0.14s ease;
  outline: none;
  line-height: 20px;
  background-color: #171f40;
  border: 1px solid #1f284c;
  box-sizing: border-box;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  padding: 21px 25px;
}

.select-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

.selected-text {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}


.select-arrow {
  position: absolute;
  right: 14px;
  top: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.14s ease;
}

.select-options-wrapper {
  border-radius: 20px;
  position: absolute;
  z-index: 6;
  display: none;
  align-items: center;
  flex-direction: column;
  transition: 0.14s ease;
  background: #181f40;
  border: 1px solid #60657d;
  top: 70px;
  width: 100%;
}

.select-options {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10px 8px;
  display: flex;
  gap: 2px;
  flex-direction: column;
  max-height: 240px;
  overflow-y: auto;
}


.select-options::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.select-options::-webkit-scrollbar-track {
  background: #2e384c;
  border-radius: 3px;
}

/* Handle */
.select-options::-webkit-scrollbar-thumb {
  background: #3b4456;
  border-radius: 3px;
}

/* Handle on hover */
.select-options::-webkit-scrollbar-thumb:hover {
  background: #434e64;
}

.select-option {
  display: block;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
  text-align: left;
  color: #8598ac;
}

.select-option:hover,
.select-option:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.select-option.active {
  color: #fff;
}

.panel-body {
    background: #171f40;
    border: 1px solid #1b2447;
    border-radius: 15px;
    padding: 20px;
}
.b_login .panel-body {
	background-color: #fafafa;
    border: 1px solid #f1f1f1;	
}
.b_login .pm-text-container {
	background-color: #fafafa;
    border: 1px solid #f1f1f1;
	color: #111;
}
.login-title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 36px;
    color: #fff;
}
.social-logos {
    filter: contrast(0.3);
}
.root.no-auth .page-content.p_no_auth {padding-top: 110px}
.root.no-auth .page-content.p_no_auth .well h2,.root.no-auth .page-content.p_no_auth .well h3 {color:#111 !important;}
.root.no-auth .page-content.p_no_auth .well h2,.root.no-auth .page-content.p_no_auth .well h3,.root.no-auth .page-content.p_no_auth .well p {font-family: inherit !important;}
@media (min-width: 768px) {
  .login-title {
      font-size: 35px;
      line-height: 40px;
  }
}
.login-title span {
    font-weight: 700;
    position: relative;
    z-index: 999;
}
  .login-title span::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='136' height='12' viewBox='0 0 136 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M132.864 8.97544C82.1537 4.38991 53.8493 4.86909 3.3148 11.0989C1.94446 11.2678 0.696634 10.2939 0.527701 8.92358C0.358767 7.55324 1.3327 6.30542 2.70304 6.13648C53.5883 -0.136588 82.2487 -0.621901 133.315 3.99576C134.69 4.1201 135.704 5.33565 135.579 6.71075C135.455 8.08585 134.239 9.09979 132.864 8.97544Z' fill='url(%23paint0_linear_142_1034)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_142_1034' x1='139.458' y1='7.3734' x2='1.71801' y2='9.63104' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230139FF'/%3E%3Cstop offset='1' stop-color='%230139FF' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
    position: absolute;
    bottom: -16px;
    right: 0;
    height: 20px;
    width: 100%;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

.bs-single-body, .bs-single-body p, .bs-single-body h1, .bs-single-body h2, .bs-single-body h3, .bs-single-body h4, .bs-single-body h5, .bs-single-body h6 {
	color: #111!important
}
.badge {
	color:#111;	
}
/* fa */
html[lang="fa"] .search-services .textbox {
    margin-right: 40px;
	margin-left:0;
}
html[lang="fa"] .me-2 {
    margin-left: 0.5rem!important;
	margin-right: auto !important;
}
html[lang="fa"] .op-date::before {
	margin-left: 14px;
    margin-right: 0px;	
}
html[lang="fa"] .sidebar-content .sidebar-menu-link {
	padding: 16px 40px 16px 0;
}
html[lang="fa"] .sidebar {
	right:0;
	left:auto;
}
html[lang="fa"] .app-content {
    margin-right: 0;
}
html[lang="fa"] .srch_n_s {
	border-radius: 15px 0 0 15px !important;	
}
html[lang="fa"] .sc-stat-text {
	margin-right:auto;
	margin-left:0;	
}
html[lang="fa"] .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),html[lang="fa"] .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
html[lang="fa"] .nwo-fi-card.card-2,html[lang="fa"] .dashboard-head.add-funds-page .card,html[lang="fa"] .dashboard-head.support-center-page .card,html[lang="fa"] .card.dashboard-head-card,html[lang="fa"] .dashboard-head.child-panel-page .card,html[lang="fa"] .nwo-fi-card.card-1 {
	background:none;	
	position: relative;
    z-index: 9999;
}
html[lang="fa"] .nwo-fi-card.card-2:before,html[lang="fa"] .nwo-fi-card.card-1:before,html[lang="fa"] .card.dashboard-head-card:before,html[lang="fa"] .dashboard-head.support-center-page .card:before,html[lang="fa"] .dashboard-head.child-panel-page .card:before {
	content: '';
    position: absolute;
    left: 0;
    transform: rotateY(-180deg);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 25px;
}

html[lang="fa"] .app-header {
	z-index: 9999999;	
}
html[lang="fa"] .si-header {
	background:none;
	position: relative;
    z-index: 99;	
}
html[lang="fa"] .sidebar {
	z-index:99999999999;	
}
html[lang="fa"] .si-header:before {
    top: 0;
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('/static/new_order/5pjlc1g48q57who9.png') #0f163a;
    border-radius: 15px;
    background-size: 100% 100%;
    transform: rotateY(-180deg);
    z-index: -1;
}
html[lang="fa"] .dropdown-menu,html[lang="fa"] .modal-box {
	text-align:right;	
}
html[lang="fa"] .modal-header .btn-close {
	margin:0;	
}
html[lang="fa"] .modal-wrapper {
	z-index: 9999999;
}
.btn_lang {
	background: #547aff;
    padding: 11px 11px 11px 25px;
    border-radius: 12px;	
	color: #fff;
}
.root.no-auth .btn_lang {
	background: #0138ff;	
}
.btn_lang:before {
	content: '';
    border-top: 6px solid #fff;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    top: 50%;
    position: absolute;
    left: 7px;
    margin-top: -3px;	
}
@media (min-width: 768px) {
	html[lang="fa"] .app-content {
		margin-right: 80px;
		margin-left:0;
	}
	html[lang="fa"] .app-header {
		right: 80px;
		left:0;
	}
	html[lang="fa"] .ms-md-3 {
		margin-right: 1rem !important;
		margin-left:auto !important;
	}
}
@media (min-width: 992px) {
	html[lang="fa"] .ms-lg-auto {
		margin-right: auto!important;
		margin-left: 0 !important;
	}
	html[lang="fa"] .ms-lg-4 {
		margin-right: 1.5rem!important;
		margin-left: 0 !important;
	}
	html[lang="fa"] .ms-lg-3 {
		margin-right: 1rem!important;
		margin-left: 0 !important;
	}
}
@media (min-width: 992px) {
  .header.active {
    padding-top: 0;
    height: 90px;
    background: rgba(8, 14, 46, 0.8);
    backdrop-filter: blur(15px);
    transition: 0.14s ease;
  }

  .header.active .row {
    height: 90px;
  }

  .header.active .header-menu>li>a {
    padding: 36px 20px;
  }
}

.header .menu-toggle-close {
  display: none;
}

@media (max-width: 992px) {
  .header {
    background-color: #080e2e;
    padding: 20px 20px 30px 20px;
    border-radius: 20px 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-height: calc(100vh - 100px);
    transform: translateY(100%);
    transition: 0.2s ease;
  }

  .header.opened {
    transform: translateY(0);
  }

  .header .menu-toggle-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    background-color: rgba(0, 102, 255, 0.2);
    color: #0066ff;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 17px;
    right: 20px;
  }

  .header .header-menu {
    padding-top: 30px;
    flex-direction: column;
    gap: 10px;
  }

  .header .header-menu li {
    padding: 0;
  }

  .header .header-menu li a {
    padding: 10px 0;
    font-weight: 700;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .header-btn {
		padding:5px;  
  }

  .header .header-menu li a.active {
    color: #fff;
  }

  .header .header-menu li a::after {
    background-color: transparent !important;
  }
}
@media (min-width: 1400px) {
	html[lang="fa"] .app-content {
		margin-right: 260px;
		margin-left:0;
	}
	html[lang="fa"] .app-header {
		right: 260px;
		left:0;
	}
}
@media (max-width: 768px) {
	html[lang="fa"] .sidebar {
		transform: translateX(100%);

	}
	.f_site .container>.row {
		display: flex;
		flex-direction: column;
		gap: 20px;	
	}
}
@media (max-width: 500px) {
	.contact_us {
		padding: 2rem 1rem;	
	}
	.cotct_cont {
		padding-left: 0;
		font-size: 14px;
	}
	.cotct_cont p span {
		margin-right: 0.5rem;	
	}
}


/* call  */
.mobilephone-outer {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 16px;
  /* left: 0px; */
  z-index: 10;
}
.mobilephone-outer a {
  display: block;
  min-height: 60px;
  z-index: 20;
}
.mobilephone-outer .wrap-mobilephone {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2980b9;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mobilephone-outer .wrap-mobilephone i {
  -webkit-animation: phone-ring 1.5s infinite;
  animation: phone-ring 1.5s infinite;
}
.mobilephone-outer .border-small-mobilephone {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 10;
  -webkit-animation: scale-phone 1.5s infinite;
  animation: scale-phone 1.5s infinite;
}
.mobilephone-outer .border-big-mobilephone {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 3;
  -webkit-animation: scale-phone 1.5s infinite;
  animation: scale-phone 1.5s infinite;
}

@-webkit-keyframes scale-phone {
  from {
    transform: scale(1, 1);
    border: 5px rgba(41, 128, 185, 0.67) solid;
  }
  to {
    transform: scale(2, 2);
    border: 5px rgba(41, 128, 185, 0) solid;
  }
}
@keyframes scale-phone {
  from {
    transform: scale(1, 1);
    border: 5px rgba(41, 128, 185, 0.67) solid;
  }
  to {
    transform: scale(2, 2);
    border: 5px rgba(41, 128, 185, 0) solid;
  }
}
@-webkit-keyframes phone-ring {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@keyframes phone-ring {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}
