﻿@charset "UTF-8";
@font-face {
  font-family: "Font Awesome 6 Sharp";
  src: url("/lib/fontawesome/webfonts/fa-sharp-solid-900.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  position: relative;
  min-height: 100vh;
  background-size: cover;
  overflow-x: hidden;
  background-color: #121212;
  /*overflow-y:scroll;*/
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.mb-min {
  margin-bottom: 0.5rem !important;
}

.mb-min-2 {
  margin-bottom: 1rem !important;
}

.mb-sm {
  margin-bottom: 2rem !important;
}

.mb-md {
  margin-bottom: 3rem !important;
}

.mb-lg {
  margin-bottom: 4rem !important;
}

.mb-hg {
  margin-bottom: 6rem !important;
}

.mb-reset {
  margin-bottom: 0 !important;
}

.u-txt-c {
  text-align: center !important;
  margin: 0 auto !important;
}

.mr-sm {
  margin-right: 2rem !important;
}

.ml-sm {
  margin-left: 2rem !important;
}

.u-txt-l {
  text-align: left !important;
}

.u-txt-r {
  text-align: right !important;
}

.mt-min {
  margin-top: 0.5rem !important;
}

.mt-min-2 {
  margin-top: 1rem !important;
}

.mt-sm {
  margin-top: 2rem !important;
}

.mt-md {
  margin-top: 3rem !important;
}

.mt-lg {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-hg {
  margin-top: 6rem !important;
}

.flex-right {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: end;
}

.flex-center {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: center;
}

.mr-1 {
  margin-right: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.row {
  display: flex;
  flex-direction: row;
}

.row-end {
  justify-self: end;
  margin-left: auto;
  display: inherit;
}

.d-grid {
  display: grid;
}

.d-flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
  align-items: center;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-row, .flex-row-sm, .flex-row-md, .flex-row-lg {
  display: flex;
  flex-direction: row;
  width: 100%;
  column-gap: 2rem;
}
.flex-row .row-end, .flex-row-sm .row-end, .flex-row-md .row-end, .flex-row-lg .row-end {
  justify-self: end;
  margin-left: auto;
  display: inherit;
  align-items: center;
}
.flex-row .row-start, .flex-row-sm .row-start, .flex-row-md .row-start, .flex-row-lg .row-start {
  justify-self: start;
  margin-right: auto;
  display: inherit;
}
@media only screen and (max-width: 1200px) {
  .flex-row-lg {
    flex-direction: row !important;
  }
}
@media only screen and (max-width: 992px) {
  .flex-row-md {
    flex-direction: row !important;
  }
}
@media only screen and (max-width: 768px) {
  .flex-row-sm {
    flex-direction: row !important;
  }
}

.flex-col {
  display: flex;
  flex-direction: column;
  /*width: 100%;*/
}
.flex-col .col-start {
  justify-self: flex-start;
  margin-right: auto;
  display: inherit;
}
@media only screen and (max-width: 1200px) {
  .flex-col-lg {
    flex-direction: column !important;
  }
}
@media only screen and (max-width: 992px) {
  .flex-col-md {
    flex-direction: column !important;
  }
}
@media only screen and (max-width: 768px) {
  .flex-col-sm {
    flex-direction: column !important;
  }
}

.justify-content-start {
  justify-content: start;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-between {
  justify-content: space-between;
}

.align-content-center {
  align-content: center;
}
.align-content-end {
  align-content: end;
}

.align-items-start {
  align-items: start;
}
@media only screen and (max-width: 1200px) {
  .align-items-start-lg {
    align-items: start !important;
  }
}
@media only screen and (max-width: 992px) {
  .align-items-start-md {
    align-items: start !important;
  }
}
@media only screen and (max-width: 768px) {
  .align-items-start-sm {
    align-items: start !important;
  }
}
.align-items-center {
  align-items: center;
}
@media only screen and (max-width: 1200px) {
  .align-items-center-lg {
    align-items: start !important;
  }
}
@media only screen and (max-width: 992px) {
  .align-items-center-md {
    align-items: start !important;
  }
}
@media only screen and (max-width: 768px) {
  .align-items-center-sm {
    align-items: start !important;
  }
}
.align-items-end {
  align-items: end;
}
@media only screen and (max-width: 1200px) {
  .align-items-end-lg {
    align-items: start !important;
  }
}
@media only screen and (max-width: 992px) {
  .align-items-end-md {
    align-items: start !important;
  }
}
@media only screen and (max-width: 768px) {
  .align-items-end-sm {
    align-items: start !important;
  }
}

.align-self-center {
  align-self: center;
}

.justify-self-start {
  justify-self: start;
  margin-right: auto;
  margin-left: 0;
  display: inherit;
}
.justify-self-center {
  justify-self: center !important;
  display: inherit;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 1200px) {
  .justify-self-center-lg {
    justify-self: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media only screen and (max-width: 992px) {
  .justify-self-center-md {
    justify-self: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media only screen and (max-width: 768px) {
  .justify-self-center-sm {
    justify-self: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.justify-self-end {
  justify-self: end;
  margin-left: auto;
  margin-right: 0;
  display: inherit;
  align-items: center;
}

.absolute-center {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.text-nowrap {
  white-space: nowrap;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  color: black;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.heading--tertiary {
  font-size: 2.4rem;
  font-weight: 600;
}
h1 {
  font-size: 4rem;
  font-weight: 700;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
}

h3 {
  font-size: 2.6rem;
  font-weight: 600;
}

h4 {
  font-size: 2rem;
  font-weight: 600;
}

.text, .text-sm, .text-md, .text-lg, .text-xl, .text-xxl {
  font-weight: 400;
}
.text-xxl {
  font-size: 24px !important;
}
.text-xl {
  font-size: 20px !important;
}
.text-lg {
  font-size: 18px !important;
}
.text-md {
  font-size: 16px;
}
.text-sm {
  font-size: 14px;
}
.text-primary {
  color: #FF7A00 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-black {
  color: black !important;
}
.text-white {
  color: white !important;
}
.text-green {
  color: #0FC537 !important;
}
.text-yellow {
  color: #FFBE08 !important;
}
.text-red {
  color: #E30E18 !important;
}

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

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

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

.heading-4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.paragraph {
  font-size: 1.6rem;
  color: black;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

.note {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #999999;
}

.text-right {
  display: flex;
  justify-content: right;
}

small {
  font-size: 1.3rem;
}

.text-center {
  display: flex;
  justify-content: center;
  text-align: center;
}

.strikethrough {
  text-decoration: line-through;
}

.wrapper {
  display: grid;
  grid-template-columns: max-content 1fr;
  /*height: 100vh;*/
}

.main {
  color: black;
  /*background-color: red;*/
  grid-column: 1/-1;
  padding: 0 2rem;
  margin-left: 28rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 1400px) {
  .main {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .main {
    padding: 0 1rem;
  }
}

.page-content {
  margin-top: 2rem;
  position: relative;
  padding: 1rem;
}

.sidebar {
  grid-row: 1/span 2;
  grid-column: 1;
  width: 28rem;
  position: absolute;
  /*padding: 2rem;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  height: calc(100% - 8rem);
  background-color: black;
  box-shadow: 0;
  /*transition: 0.2s ease;*/
  margin-top: 60px;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 87.5em) {
  .sidebar {
    margin-top: 0px;
  }
}
.sidebar a {
  color: white;
}
.sidebar::-webkit-scrollbar {
  width: 0.5rem;
}
.sidebar::-webkit-scrollbar-track {
  /*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
  background-color: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: #FF7A00;
  outline: none;
  border-radius: 30rem;
}
@media only screen and (max-width: 87.5em) {
  .sidebar {
    /*width: 100%;*/
    top: 0;
    z-index: 999;
    transform: translate(-100vw);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    height: 100%;
    /*z-index: 3;*/
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 768px) {
  .sidebar .btn--lg {
    width: 100%;
    /*z-index: 3;*/
  }
}
.sidebar__header {
  /*padding-top: 2rem;*/
  background-color: black;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  height: 8rem;
  margin-bottom: 1rem;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 87.5em) {
  .sidebar__header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 8rem;
    padding: 2rem;
  }
}
.sidebar__header div:first-child {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.sidebar__container {
  /*padding: 0 3rem;*/
  width: 100%;
  margin: 2rem 0;
  background-color: black;
  /*height: 100%;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*align-items:center;*/
  /*	@include respond(tab-land) {
  	padding: 0 0 2rem 2rem;
  	max-width: 25rem;
  }*/
}
@media only screen and (max-width: 768px) {
  .sidebar__container {
    padding: 0;
    max-width: 25rem;
  }
}
.sidebar__container .btn {
  display: block;
  font-weight: bold;
  font-size: 20px;
  padding: 1rem;
  margin: 1rem 0rem;
}
.sidebar__footer {
  width: 100%;
  padding: 0 3rem;
  font-size: 20px;
}
.sidebar .horizontal-separator {
  border-top: 1px solid;
  display: block;
  margin: 1rem 0.5rem;
}
.sidebar .blink {
  color: white;
  animation: blink 2s infinite;
}
@keyframes blink {
  0% {
    color: white;
  }
  25% {
    color: red;
  }
  50% {
    color: red;
  }
  75% {
    color: white;
  }
}
.sidebar--visible {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
.sidebar--visible .nav__item {
  margin-top: 0.25rem;
}
.sidebar--visible .hamburger-close {
  display: block;
}
.sidebar--visible .sidebar__container {
  width: 100%;
}
.sidebar--visible body {
  overflow: hidden;
}
@media only screen and (max-width: 87.5em) {
  .sidebar--visible {
    position: fixed;
  }
}
.sidebar .hamburger-close {
  display: none;
  position: absolute;
  z-index: 999999;
  left: 1rem;
  /*top: 3.2rem;*/
  font-size: 2.4rem;
  /*padding: 0 1rem;*/
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 87.5em) {
  .sidebar .hamburger-close {
    display: flex;
  }
}
.sidebar .hamburger-close:hover {
  cursor: pointer;
}
.sidebar .logo-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 75em) {
  .sidebar .logo-wrapper {
    width: 100%;
  }
}
.sidebar__divider {
  width: 100%;
  border-bottom: 2px solid;
  margin: 1rem 0;
  border-color: #FF7A00;
}

.sticky-nav {
  width: 100%;
  height: 8rem;
  grid-column: 1/span 2;
  padding: 0.75rem 2rem;
  background-color: white;
  /*border-bottom: 1px solid $color-primary-1;*/
  top: 0;
  display: none;
  z-index: 1;
  display: flex;
}
@media only screen and (max-width: 1400px) {
  .sticky-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .sticky-nav {
    padding: 0.75rem 1rem;
  }
}

.text-color-font-primary {
  color: white;
}

.navbar {
  grid-row: 1/-1;
  grid-column: 1/span 2;
  padding: 2rem 0;
  /*border-bottom: 1px solid rgba($color-primary-1, 0.3);*/
  display: flex;
  align-items: center;
  height: 8rem;
  width: 100%;
  box-shadow: 0;
  background-color: black;
  align-items: center;
}
@media only screen and (max-width: 1400px) {
  .navbar {
    width: 100%;
    height: 8rem;
    grid-column: 1/span 2;
    /*padding: 0.75rem 2rem;*/
    position: sticky;
    top: 0;
    display: none;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .navbar {
    justify-content: flex-start;
    height: 8rem;
  }
}
.navbar .hantec-logo {
  display: flex;
}
@media (max-width: 480px) {
  .navbar .hantec-logo {
    display: none;
  }
}
.navbar .hantec-icon {
  display: none;
}
@media (max-width: 480px) {
  .navbar .hantec-icon {
    display: flex;
    width: 3.6rem;
    height: 2.4rem;
  }
}
.navbar .user-buttons {
  display: flex;
  float: right;
  flex-direction: row;
  justify-self: flex-end;
  margin-left: auto;
  margin-right: 5rem;
  align-items: center;
  font-size: 1rem;
  margin-top: -0.8rem;
}
.navbar .user-buttons .account-icon {
  width: 4rem;
  height: 4rem;
  clip-path: circle(2rem at center);
}
@media (max-width: 380px) {
  .navbar .user-buttons .account-icon {
    width: 2rem;
    height: 2rem;
    clip-path: circle(1rem at center);
  }
}
.navbar .user-buttons .notifications-icon {
  font-size: 2.4rem;
}
@media (max-width: 380px) {
  .navbar .user-buttons .notifications-icon {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .navbar .user-buttons {
    margin-right: 1rem;
  }
}
.navbar .user-buttons .dropdown-container {
  background-color: black;
  color: white;
}
@media only screen and (max-width: 768px) {
  .navbar .user-buttons .customer-name {
    display: none;
  }
}
.navbar .heading-secondary {
  flex: 1;
}
@media only screen and (max-width: 1400px) {
  .navbar .heading-secondary {
    grid-column: 1/span 2;
    margin-bottom: 1.5rem;
  }
}
.navbar .icon-btn {
  padding: 0.5rem;
  /*border: 1px solid black;*/
  margin: 0 3rem;
  /*width: 3.5rem;*/
  /*max-height: 3.5rem;*/
  border-radius: 0.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  /*width: 100%;*/
  font-size: 1.6rem;
  text-transform: uppercase;
  color: white;
}
@media only screen and (max-width: 1400px) {
  .navbar .icon-btn {
    margin: 0.5rem;
  }
}
.navbar .icon-btn:hover {
  cursor: pointer;
}
.navbar .icon-btn span:not(:first-child) {
  padding-left: 1rem;
}
.navbar .icon-btn .icon {
  width: 2.5rem;
  height: 2.5rem;
}
.navbar .icon-btn .icon--circle {
  clip-path: circle(1.24rem at center);
}
.navbar .icon-btn .icon--wide {
  width: 3.33rem;
}
.navbar .icon-btn .icon--large {
  width: 4rem;
  height: 4rem;
  clip-path: circle(2rem at center);
}
.navbar .icon-btn__container {
  display: flex;
  float: right;
  flex-direction: row;
  justify-self: flex-end;
  margin-left: auto;
  margin-right: 5rem;
  align-items: center;
}
.navbar .icon-btn .text, .navbar .icon-btn .text-xxl, .navbar .icon-btn .text-xl, .navbar .icon-btn .text-lg, .navbar .icon-btn .text-md, .navbar .icon-btn .text-sm {
  margin-left: auto;
  align-self: end;
  justify-self: center;
  flex-wrap: nowrap;
  display: flex;
  flex-direction: row;
}
.navbar .icon-btn .name-icon {
  width: 2.5rem;
  clip-path: circle(1.24rem at center);
  background-color: #124877;
  text-align: center;
  margin-right: 1rem;
}
.navbar .hamburger-open {
  display: none;
  font-size: 2.4rem;
  padding: 0 1rem;
}
@media only screen and (max-width: 1400px) {
  .navbar .hamburger-open {
    display: block;
  }
}
.navbar .hamburger-open:hover {
  cursor: pointer;
}
.navbar .user-icon {
  width: 4rem;
  clip-path: circle(1.74rem at center);
  background-color: #d6d6d6;
  color: #999999;
  text-align: center;
  margin-right: 1rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar .user-icon__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar .logo {
  max-width: 20rem;
}
@media only screen and (max-width: 768px) {
  .navbar .logo {
    max-width: 10rem;
  }
}

.logo {
  /*height: 5.8rem;*/
  /*margin-bottom: 3rem;*/
  padding-left: 3rem;
}
@media only screen and (max-width: 768px) {
  .logo {
    padding-left: 0;
  }
}
.logo__mobile {
  /*height: 6rem;*/
}

.logo-new__image {
  max-width: 100%;
}
@media only screen and (max-width: 405px) {
  .logo-new__image {
    max-width: 4rem;
  }
}
.logo-new__image--public {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .logo-new__image--public {
    max-width: 7rem;
  }
}

/*@import "../abstracts/theme-text";*/
.header {
  padding-top: 2rem;
  font-size: 2.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  height: 7rem;
  border-bottom: 1px solid #FF7A00;
  /*margin-left: 2rem;*/
}
.header__content {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  color: white;
}
.header__container {
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 4rem;
}
.header__breadcrumbs {
  display: flex;
  flex-direction: row;
  font-size: 1.6rem;
  color: gray;
}
.header .breadcrumb:not(:first-child):before {
  padding: 0.5rem;
  font-family: "Font Awesome 6 Pro";
  content: "/";
}
.header .select-container {
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 75em) {
  .header .select-container {
    grid-row: 1/2;
    grid-column: 3/2;
    width: 100%;
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .header .select-container {
    grid-row: 2/3;
    grid-column: initial;
  }
}
.header--tertiary {
  display: flex;
  justify-content: space-between;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
.header--tertiary .select-container {
  width: 25rem;
}
@media only screen and (max-width: 37.5em) {
  .header--tertiary {
    flex-direction: column;
    align-items: flex-start;
  }
  .header--tertiary .select-container {
    width: 100%;
  }
}
.header__title {
  font-size: 2rem;
  flex: 1;
}
.header__title--primary {
  font-size: 5.4rem;
  font-weight: 700;
  padding-bottom: 0;
}
.header__title--subtitle {
  font-size: 2.4rem;
  font-weight: 600;
}
.header__title--secondary {
  font-size: 2.8rem;
  color: whitesmoke;
  background-color: black;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
}
.header__title--secondary .icon {
  font-size: 2.2rem;
  transform: translateY(-0.25rem);
}
.header__title-icon {
  margin-right: 0.5rem;
  color: #FF7A00;
}
.header__btn-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: end;
  gap: 1.5rem;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
.header__btn-container .btn--tertiary:not(:last-child) {
  margin-right: 1.5rem;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 48em) {
  .header__btn-container .btn--tertiary:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 48em) {
  .header__btn-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: initial;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__btn-container {
    grid-template-columns: 1fr;
  }
}
.header__acc {
  flex: 1;
}
.header__btns {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
.header__btns > .header__title--secondary:hover {
  cursor: pointer;
  background-color: lightgray;
  /*border: 1px solid black;*/
  color: black;
}
.header__acc-container {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #000000;
  color: #FF7A00;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: max-content;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 75em) {
  .header__acc-container {
    width: 100%;
  }
}
.header .btn--tertiary {
  margin-right: 1.5rem;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 75em) {
  .header .btn--tertiary {
    margin-right: 0;
  }
}

.hantec-bg {
  color: black;
  background-color: black;
}

.fimathe-bg {
  background-color: #FF7A00;
}

.trs-bg {
  background-color: #FF7A00;
}

.header-text {
  font-size: 4rem;
}

.flex-container {
  display: flex;
  margin: 1rem;
  cursor: pointer;
}
.flex-container .active-tab {
  padding: 0.8rem 6rem;
  background-color: #FF7A00;
}
@media only screen and (max-width: 768px) {
  .flex-container .active-tab {
    padding: 0.8rem 4rem;
  }
}
.flex-container .tab {
  padding: 0.8rem 6rem;
  background-color: white;
  color: black;
}
@media only screen and (max-width: 768px) {
  .flex-container .tab {
    padding: 0.8rem 4rem;
  }
}
.flex-container .left-tab {
  border-radius: 1rem 0rem 0rem 1rem;
}
.flex-container .right-tab {
  border-radius: 0rem 1rem 1rem 0rem;
}

.login-dropdown-container {
  margin-left: 3rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .login-dropdown-container {
    margin-left: 0rem;
  }
}

body.login-layout {
  color: black;
}
body.login-layout .background {
  position: fixed;
  z-index: -100;
}
body.login-layout .form {
  width: 100%;
}
body.login-layout .form-logo__login {
  margin-bottom: 0rem;
}
@media only screen and (max-width: 768px) {
  body.login-layout .form-logo__login > img {
    max-width: 10rem;
  }
}
body.login-layout .public-header {
  width: 100%;
  height: 8rem;
  max-height: 90px;
  background-color: #000000;
  padding: 2rem 5rem 5rem 5rem;
  top: 0;
  position: sticky;
  z-index: 100;
}
body.login-layout .public-header .logo {
  max-width: 25rem;
}
@media only screen and (max-width: 768px) {
  body.login-layout .public-header .logo {
    position: absolute;
    left: 2rem;
    bottom: 1rem;
    max-width: 14rem;
    padding-right: 0;
  }
}
body.login-layout .public-header .user-buttons {
  display: flex;
  float: right;
  flex-direction: row;
  justify-self: flex-end;
  margin-left: auto;
  margin-right: 5rem;
  align-items: center;
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  body.login-layout .public-header .user-buttons {
    position: absolute;
    top: 1rem;
    right: 2rem;
    margin-right: 0;
  }
}
body.login-layout .public-logo {
  margin-left: 2rem;
}
body.login-layout .form-wrapper {
  color: white;
  padding: 5rem 5rem;
  margin-top: 5rem;
  border-radius: 3rem;
  border: 2px solid #FF7A00;
}
@media only screen and (max-width: 768px) {
  body.login-layout .form-wrapper {
    padding: 2rem;
  }
}
body.login-layout .form-wrapper a {
  color: #FF7A00;
}
body.login-layout .page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body.login-layout #registerForm input[type=checkbox] {
  border-radius: 0px;
}

.public-submit-btn {
  width: 100%;
}

body.public-layout .hantec-bg {
  background-color: black;
}
body.public-layout .fimathe-bg {
  background-color: white;
}
body.public-layout .trs-bg {
  background-color: white;
}
@media only screen and (max-width: 768px) {
  @-moz-document url-prefix() {
    body.public-layout {
      background-image: none;
    }
  }
}
body.public-layout .main {
  color: white !important;
  margin: 0;
}
body.public-layout .tooltip {
  color: white !important;
}
body.public-layout .page-content {
  padding: 0;
}
body.public-layout .public-header {
  width: 100%;
  height: 8rem;
  max-height: 90px;
  background-color: black;
  padding: 2rem 5rem 5rem 5rem;
  top: 0;
  position: sticky;
  z-index: 100;
}
body.public-layout .public-header .logo {
  max-width: 25rem;
}
@media only screen and (max-width: 768px) {
  body.public-layout .public-header .logo {
    position: absolute;
    left: 2rem;
    bottom: 1rem;
    max-width: 14rem;
    padding-right: 0;
  }
}
body.public-layout .public-header .user-buttons {
  display: flex;
  float: right;
  flex-direction: row;
  justify-self: flex-end;
  margin-left: auto;
  margin-right: 5rem;
  align-items: center;
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  body.public-layout .public-header .user-buttons {
    position: absolute;
    top: 1rem;
    right: 2rem;
    margin-right: 0;
  }
}
body.public-layout .public-logo {
  margin-left: 2rem;
}
body.public-layout .public-footer {
  margin-top: 8rem;
  line-height: 20px;
  padding: 5rem;
  background-color: transparent;
  color: white;
  padding: 2rem 8rem;
}
@media only screen and (max-width: 768px) {
  body.public-layout .public-footer {
    display: none;
  }
}
body.public-layout .btn--disabled {
  background-color: lightgray;
  opacity: 0.75;
}
body.public-layout li span {
  color: black !important;
}
body.public-layout #billingInfo .card {
  color: black;
}
@media only screen and (max-width: 768px) {
  body.public-layout #billingInfo .billingInfo__header {
    margin-left: 2rem;
  }
}
@media (max-width: 570px) {
  body.public-layout #hideBillingInfo {
    position: relative;
    left: 1rem;
  }
}
@media only screen and (min-width: 1850px) {
  body.public-layout #productSelector {
    color: black;
    padding: 0 2rem;
    margin-left: 24rem;
  }
  body.public-layout #productSelector .page-header-text {
    position: relative;
    margin-right: 27rem;
  }
}
body.public-layout .account-type-list {
  gap: 0rem;
}
@media (min-width: 1400px) and (max-width: 1915px) {
  body.public-layout .account-type-list {
    display: flex;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  body.public-layout #productSelector {
    margin-left: unset !important;
  }
  body.public-layout #productSelector .page-header-text {
    position: relative;
  }
  body.public-layout .checkout-details {
    right: 2rem;
  }
  body.public-layout .account-type-list {
    display: flex;
  }
}

.nav {
  list-style: none;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  font-kerning: auto;
  letter-spacing: normal;
  margin-top: 2rem;
}
.nav__item {
  /*padding: 2rem;*/
}
.nav__item:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .nav__item:not(:last-child) {
    margin-bottom: 0.25rem;
  }
}
.nav__item:hover {
  background-color: #FF7A00;
}
.nav__item--active {
  background-color: #FF7A00;
  box-shadow: 0;
}
.nav__icon-container {
  width: 4rem;
  transition: 0.2s ease;
}
.nav__link {
  text-decoration: none;
  color: white;
  width: 100%;
  transition: 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
.nav__text {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 150%;
}
.nav__sub-icon {
  cursor: pointer;
}

.submenu {
  padding: 1.5rem 6.5rem;
  list-style: none;
  transition: 0.2s ease;
}
.submenu--1, .submenu--2 {
  display: none;
}
.submenu--visible {
  display: block;
}
.submenu__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.submenu__link:not(:last-child) {
  margin-bottom: 1rem;
}
.submenu__item {
  color: #FF7A00;
  font-size: 1.5rem;
}

.visible {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}

.transform {
  transform: rotate(180deg);
  transition: 0.2s ease;
}

/*.hamburger-menu-button {
	width: 3.5rem;
	height: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	background-color: $color-tertiary;
	border-radius: 0.5rem;
	border: 1px solid $color-secondary;
	display: none;

	@include respond(tab-land) {
		display: block;
	}
}

.hamburger-menu,
.hamburger-menu::after {
	height: calc(0.125 * 3.5rem);
	border-radius: calc(0.15 * 3.5rem);
	background-color: $color-primary;
	transition: all 0.25s ease-in-out;
}

.hamburger-menu {
	width: calc(0.75 * 3.5rem);
	transform: translateY(calc(-0.125 * 3.5rem));
	background-color: rgba($color-primary, 0.5);
}

.hamburger-menu::after {
	position: absolute;
	width: calc(0.375 * 3.5rem);
	transform: translateY(calc(0.25 * 3.5rem));
	content: '';
}*/
.open {
  transform: translateY(0px) rotate(45deg);
}

.open::after {
  width: 2.625rem;
  transform: translateY(0px) rotate(-90deg);
}

.btn, .btn:link, .btn:visited,
.button,
.button:link,
.button:visited {
  text-decoration: none !important;
  padding: 1rem 3.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
  box-shadow: 0;
}
.btn .fa-light, .btn:link .fa-light, .btn:visited .fa-light,
.button .fa-light,
.button:link .fa-light,
.button:visited .fa-light {
  margin-right: 0.5rem;
}
.btn.icon-button,
.button.icon-button {
  text-align: center;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-shadow: none;
  font-size: 2.2rem;
  width: 4.5rem;
  max-width: 4.5rem;
  border-radius: 0.5rem;
}
.btn.icon-button:hover,
.button.icon-button:hover {
  background-color: rgb(76.5, 36.6, 0) !important;
}
.btn--lg,
.button--lg {
  font-size: 2rem !important;
  font-weight: 700 !important;
  min-width: 210px;
  height: 5rem;
}
.btn--sm,
.button--sm {
  font-size: 1.4rem !important;
  height: 3rem !important;
  padding: 0.5rem 1.5rem !important;
  box-shadow: 0 !important;
}
.btn--sm__contracts,
.button--sm__contracts {
  height: unset !important;
}
.btn--primary,
.button--primary {
  background-color: #FF7A00;
  color: white !important;
}
.btn--primary:hover,
.button--primary:hover {
  background-color: rgb(229.5, 109.8, 0);
}
.btn--primary-text,
.button--primary-text {
  color: #FF7A00 !important;
}
.btn--primary-outlined,
.button--primary-outlined {
  background-color: transparent;
  border: 2px solid #FF7A00 !important;
  color: #FF7A00 !important;
}
.btn--primary-outlined:hover,
.button--primary-outlined:hover {
  background-color: rgb(76.5, 36.6, 0) !important;
}
.btn--primary__v2,
.button--primary__v2 {
  background-color: red;
  color: white !important;
}
.btn--primary__v2:hover,
.button--primary__v2:hover {
  background-color: rgb(163.4153846154, 6.0846153846, 6.0846153846);
}
.btn--primary__v2-text,
.button--primary__v2-text {
  color: #FF7A00 !important;
}
.btn--primary__v2-outlined,
.button--primary__v2-outlined {
  background-color: transparent;
  border: 2px solid #FF7A00 !important;
  color: #FF7A00 !important;
}
.btn--primary__v2-outlined:hover,
.button--primary__v2-outlined:hover {
  background-color: rgb(76.5, 36.6, 0) !important;
}
.btn--secondary,
.button--secondary {
  background-color: #000000;
  color: white;
}
.btn--secondary:hover,
.button--secondary:hover {
  background-color: black;
}
.btn--secondary-outlined,
.button--secondary-outlined {
  background-color: transparent;
  border: 2px solid #000000 !important;
  color: #000000 !important;
}
.btn--secondary-outlined:hover,
.button--secondary-outlined:hover {
  background-color: black !important;
}
.btn--tertiary,
.button--tertiary {
  background-color: #FF7A00;
  color: white !important;
}
.btn--tertiary:hover,
.button--tertiary:hover {
  background-color: rgb(255, 135.3, 25.5);
}
.btn--quarternary,
.button--quarternary {
  background-color: #999999;
  color: white !important;
}
.btn--quinary,
.button--quinary {
  background-color: unset;
  color: #000000;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.32px;
}
.btn--quarternary,
.button--quarternary {
  background-color: #999999;
  color: white !important;
}
.btn--disabled,
.button--disabled {
  opacity: 0.2;
  cursor: initial;
}
.btn--login,
.button--login {
  background-color: red !important;
}
.btn__disabled,
.button__disabled {
  opacity: 0.2;
  cursor: initial !important;
  color: #292727;
  background: #181515;
}
.btn__disabled:hover,
.button__disabled:hover {
  background-color: #999999 !important;
}
.btn--100w,
.button--100w {
  width: 100%;
}
.btn--80w,
.button--80w {
  width: 80%;
}
.btn--no-shadow,
.button--no-shadow {
  box-shadow: none !important;
}
.btn--center,
.button--center {
  align-self: center;
}

a.button {
  text-decoration: none;
  color: inherit;
}

.card {
  padding: 3rem;
  transition: 0.2s ease;
  overflow: hidden;
  background-color: black;
  color: white;
}
.card__y-overflowed {
  overflow-y: auto;
}
.card.non-overflowed {
  overflow: unset;
}
@media (max-width: 480px) {
  .card__header h1 {
    font-size: 2.8rem;
  }
}
.card__body {
  margin-top: 2rem;
}
.card #input_error {
  display: table;
  margin: 0 auto;
}
.card__contracts {
  transform: rotateX(180deg);
}
@media only screen and (max-width: 768px) {
  .card__contracts {
    overflow-x: scroll;
  }
}
.card__contracts .table-container {
  transform: rotateX(180deg);
}

.chip {
  border-radius: 1.5rem;
  font-size: 1.4rem;
  color: white;
  padding: 0 1rem;
  height: min-content;
  display: inline-block;
}
.chip--primary {
  background-color: #FF7A00;
}
.chip--lightblue {
  background-color: skyblue;
}
.chip--darkblue {
  background-color: #1b5091;
}
.chip--red {
  background-color: #E30E18;
}
.chip--green {
  background-color: forestgreen;
}

.input {
  font-family: "Poppins", sans-serif;
  color: #999999;
  background-color: #121212;
  font-size: 1.5rem;
  font-family: inherit;
  padding: 1rem;
  border-radius: 0.5rem;
  box-sizing: border-box;
}
.input__date {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  padding-left: 1rem;
  padding-right: 0;
  height: 4rem;
  background-color: #121212;
  border: 1px solid #000000;
  border-radius: 0.5rem;
  position: relative;
  width: 25rem;
}
.input__date:not(:last-child) {
  margin-right: 1.5rem;
}
.input:focus {
  outline: none;
}
.input__search {
  width: 30rem !important;
}

.form {
  /*&--center {
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
  }*/
}
.form--fluid {
  position: relative;
  /*display: flex;*/
  justify-content: center;
  /*width: max-content;*/
  flex-direction: column;
  align-items: center;
}
.form--fluid-center {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.form__content--2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.5rem;
}
@media only screen and (max-width: 600px) {
  .form__content--2-col {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.form__content--3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2.5rem;
}
@media only screen and (max-width: 1200px) {
  .form__content--3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .form__content--3-col div:nth-child(9) {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 600px) {
  .form__content--3-col {
    grid-template-columns: 1fr;
  }
}
.form__content--1-col {
  width: 25%;
}
@media only screen and (max-width: 1200px) {
  .form__content--1-col {
    width: 100%;
  }
}
.form__group {
  /*	&:not(:last-child) {
  		margin-bottom: 2rem;
  	}*/
  margin-top: 2rem;
}
.form__group .btn--primary {
  margin-top: 0.5rem;
}
.form__group .default-link {
  font-size: 1.4rem;
}
.form__group.inline {
  display: flex;
  flex-direction: row;
}
.form__group.inline button {
  margin-left: 1rem;
}
.form__input {
  font-size: 1.4rem;
  font-family: inherit;
  padding: 1rem 1rem;
  /*background: $color-grey-light;*/
  border: 1px solid #999999;
  width: 100%;
  display: block;
  border-radius: 0.5rem;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.form__input-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}
.form__input-group .form__input {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.form__input-group button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form__input--disabled {
  background-color: #F3F3F3;
  color: #999999;
}
.form__input::-webkit-outer-spin-button, .form__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form__input[type=number] {
  -moz-appearance: textfield;
}
.form__input:focus {
  outline: none;
  border: 1px solid rgba(255, 122, 0, 0.7);
}
.form__input::-webkit-input-placeholder {
  color: #999999;
}
.form__input--sm {
  width: 20rem;
}
.form__input--lg {
  width: 30rem;
}
.form__input--xl {
  width: 50rem;
}
.form__input.disabled {
  background-color: transparent;
}
.form__input--invalid {
  border-color: red;
}
.form__input--valid {
  border-color: green;
}
.form__label {
  /*color: $color-grey-dark-2;*/
  font-size: 1.6rem;
  /*margin-left: 0.5rem;*/
  /*margin-top: 0.2rem;*/
  margin-bottom: 0.5rem;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-logo {
  display: flex;
  flex: 1;
  /*width: 30rem !important;*/
}
@media only screen and (max-width: 768px) {
  .form-logo {
    top: -9rem;
  }
}
.form-logo__login {
  width: 100%;
  display: flex;
  justify-content: center;
  top: -50rem;
  margin-bottom: 4rem;
  height: 10rem !important;
}
.form-logo__login img {
  max-width: 25rem;
}
@media only screen and (max-width: 768px) {
  .form-logo__login {
    top: -13rem;
  }
}

.select-container {
  position: relative;
  width: 25rem;
  background-color: transparent;
  /*border-radius: 2rem;*/
  /*margin-left: 3rem;*/
  /*box-shadow: 0 0rem 0.5rem rgba(0,0,0,0.15);*/
  /*height: contain;*/
  /*border: 1px solid $color-grey-dark;*/
  /*@include respond(tab-port) {
  	margin-left: 0;
  	width: 100%;
  }*/
}

.select-arrow {
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
}

.select {
  font-family: "Poppins", sans-serif !important;
  font-size: 1.5rem;
  color: inherit;
  padding: 0.75rem 1rem;
  background: none;
  background-color: black;
  /*color: $color-grey-dark;*/
  border: 1px solid #999999;
  /*border: none;*/
  border-radius: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s;
  position: relative;
  line-height: 1.7rem;
  /*	display: flex;
  overflow: hidden;
  background-image: none;*/
  /*	@include respond(tab-port) {
  		padding: 2rem;
  	}
  */
  height: 100%;
  /*text-align: center;*/
  text-transform: uppercase;
}
.select:focus {
  outline: none;
  border-bottom: 3px solid none;
}
.select option {
  /*color: $color-secondary-2;*/
}

.image-select-container {
  position: relative;
}

.country-select .list-container {
  max-height: 20rem;
  overflow: auto;
  display: none;
  width: auto;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  background-color: white;
  position: absolute;
  z-index: 500;
  color: black;
}
.country-select .btn-select {
  width: 100%;
  background-color: #fff;
}

.ms-dd .ms-list-option {
  width: auto;
}

#image-list {
  padding-left: 0px;
}

#image-list img, .btn-select img {
  width: 12px;
}

#image-list li {
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

#image-list li:hover {
  background-color: #F4F3F3;
  cursor: default;
}

#image-list li img {
  margin: 5px;
}

#image-list li span, .btn-select li span {
  margin-left: 30px;
}

/* item list */
.open {
  display: show !important;
}

.btn-select li {
  list-style: none;
  float: left;
  padding-bottom: 0px;
}

.btn-select:hover li {
  margin-left: 0px;
}

.btn-select:focus {
  outline: none;
}

.lang-select {
  margin-left: 50px;
}

.custom-table, .table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  /*padding: 0.5rem 1rem;*/
  flex-wrap: nowrap;
  /*width: auto;*/
  /*overflow-x: scroll;*/
}
.custom-table thead, .table thead {
  border-bottom: 1px solid #FF7A00;
}
.custom-table thead tr th, .table thead tr th {
  text-align: left !important;
  padding-left: 1rem;
}
.custom-table tbody tr:nth-of-type(even), .table tbody tr:nth-of-type(even) {
  background-color: #121212;
}
.custom-table tbody tr.selected, .table tbody tr.selected {
  background-color: #ff7a00;
  color: white;
}
.custom-table tbody tr.selected:hover, .table tbody tr.selected:hover {
  background-color: #ff7a00;
  color: white;
}
.custom-table tbody tr:hover, .table tbody tr:hover {
  background-color: rgba(255, 122, 0, 0.15);
  /*opacity: 0.06;*/
  cursor: pointer !important;
}
.custom-table tbody tr td, .table tbody tr td {
  padding: 1rem;
  /*padding-right: 0;*/
  height: 100%;
  min-width: 9rem;
}
.custom-table tbody tr td > div, .table tbody tr td > div {
  display: inherit;
  flex-direction: row;
  flex-grow: 1;
  flex: 1;
  gap: 0.75rem;
  height: 100%;
  justify-content: center;
  width: max-content;
}
.custom-table tbody tr td:first-child, .table tbody tr td:first-child {
  font-weight: 700;
}

.dataTables_wrapper .dataTables_scroll {
  border: 0;
  border-collapse: collapse;
  /*width: 100%;*/
  /*padding: 0.5rem 1rem;*/
  flex-wrap: nowrap;
}
.dataTables_wrapper .dataTables_scroll .dataTables_scrollHead {
  margin-left: 1rem;
  text-align: left !important;
  /*.dataTable {
  		th {
  			text-align: left !important;
  			margin: 1rem !important;
  			color: red;
  		}
  	}*/
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  margin-top: -1px;
  -webkit-overflow-scrolling: touch;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.dataTables_wrapper .dataTables_paginate {
  margin-top: 2rem;
  float: right;
  position: static;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 1rem;
  border: 1px solid #999999;
  margin: 0 0.25rem;
  border-radius: 0.5rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  cursor: pointer;
  background-color: #121212;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:not(first-child) {
  padding: 1rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background-color: #FF7A00;
  color: white;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: lightgray;
}
@media only screen and (max-width: 1600px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
  .dataTables_wrapper table {
    overflow-x: scroll;
  }
}

#leaderboardTable_wrapper #leaderboardTable td {
  height: 6rem;
}
@media only screen and (max-width: 600px) {
  #leaderboardTable_wrapper .paginate_button[data-dt-idx="6"], #leaderboardTable_wrapper .paginate_button[data-dt-idx="7"] {
    position: relative;
    top: 2rem;
  }
}

.dropdown {
  height: auto;
  top: 100%;
  position: absolute;
  display: none;
  padding: 1rem;
  background-color: black;
  color: white;
  box-shadow: 0;
  z-index: 500;
  font-size: 1.4rem;
  color: black;
  width: auto;
  right: 0rem;
  left: auto;
}
.dropdown.bootstrap-select {
  top: 35%;
  width: 100% !important;
  padding: 5px 10px 0px 15px;
  margin-bottom: 10px;
  z-index: 1;
}
.dropdown.bootstrap-select.show {
  z-index: 101;
}
.dropdown.bootstrap-select button {
  padding: 9px;
  text-transform: capitalize;
  font-size: 14px;
}
.dropdown a {
  color: white !important;
}
.dropdown li a {
  color: black !important;
  font-size: 15px;
}
.dropdown-container {
  margin: 0 3rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .dropdown-container {
    margin: 0 0;
  }
}
.dropdown-toggle {
  padding: 0.5rem;
  /*border: 1px solid black;*/
  /*width: 3.5rem;*/
  /*max-height: 3.5rem;*/
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  /*width: 100%;*/
  font-size: 1.6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .dropdown-toggle {
    margin: 0 0;
  }
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle span:not(:first-child) {
  padding-left: 1rem;
}
.dropdown-toggle .icon {
  width: 2.5rem;
  height: 2.5rem;
}
.dropdown-toggle .icon--circle {
  clip-path: circle(1.24rem at center);
}
.dropdown-toggle .icon--wide {
  width: 3.33rem;
}
@media only screen and (max-width: 768px) {
  .dropdown-toggle .icon--wide {
    width: 2.5rem;
  }
}
.dropdown-toggle .icon--large {
  width: 4rem;
  height: 4rem;
  clip-path: circle(2rem at center);
}
.dropdown__profile .profile-info {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
}
.dropdown__profile .profile-info .customer-name-email {
  display: flex;
  flex-direction: column;
}
.dropdown__profile .link-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid transparent;
  text-decoration: none !important;
  /*	@include themed() {
  	background-color: t('sidebar-bg');
  }*/
}
.dropdown__profile .link-button__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dropdown__profile .link-button__icon {
  grid-row: span 2;
  display: inline-flex;
  align-self: center;
  justify-self: center;
  padding: 0.75rem;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
}
.dropdown__profile .link-button__icon img {
  width: 2rem;
  height: 2rem;
}
.dropdown__profile .link-button__content {
  grid-column: 2;
}
.dropdown__profile .link-button__arrow {
  grid-row: 1/-1;
  display: inline-flex;
  align-self: center;
  justify-self: center;
  grid-column: 3;
}
.dropdown__language .icon {
  width: 3.67rem;
  height: 2rem;
}
.dropdown__language .language-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 2rem;
  padding: 1rem;
}
.dropdown__language .language-item:hover {
  cursor: pointer;
}

.accordion {
  width: 100%;
}
.accordion__panel:not(:last-child) {
  margin-bottom: 2rem;
}
.accordion__header {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.5rem 2rem;
  cursor: pointer;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 37.5em) {
  .accordion__header {
    padding: 1rem;
    font-size: 1.5rem;
  }
}
.accordion__body {
  padding: 0 2rem 2rem;
  font-size: 1.5rem;
  /*color: $color-grey-dark-1;*/
}
.accordion__panel > .accordion__body {
  display: none;
}
.accordion__panel.accordion-expanded > .accordion__body {
  display: block;
}
.accordion__icon {
  margin-right: 1rem;
  float: right;
  margin-left: auto;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 37.5em) {
  .accordion__icon {
    margin-left: 0.5rem;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal--visible {
  display: block;
  visibility: visible;
  opacity: 1;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}
.modal__overlay {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 1050;
  display: block;
  backdrop-filter: blur(5px);
}
.modal__close {
  cursor: pointer;
  color: black;
  background-color: transparent;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  height: 3rem;
  width: 3rem;
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1070;
}
.modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 1060;
  max-width: 80rem;
  width: min(90vw, 64rem);
  max-height: calc(100vh - 6rem);
  overflow: visible;
  opacity: 1;
  scale: 1;
  background: transparent;
  transition: opacity 0.18s ease-out, scale 0.18s ease-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100vh;
  border-radius: 12px;
  background: #fff;
  color: #222;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  position: relative;
}
.modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: visible;
  padding: 1rem 1.25rem;
  line-height: 1.55;
}
.modal-buttons {
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 2rem;
  margin-top: 3rem;
}

.popup {
  padding: 3rem;
  border-radius: 1rem;
  background-color: white;
  z-index: 10000;
}
.popup__header {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid black;
  padding-bottom: 2rem;
  color: black;
}
.popup__header__title {
  color: black;
}
.popup__content {
  color: black;
}
.popup__message {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  display: grid;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid;
  padding-bottom: 2rem;
}
.popup .credentials table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  color: black;
}
.popup .credentials table tr td {
  padding: 2rem;
}
.popup .credentials table tr td:nth-child(3) {
  width: 30%;
}
.popup .credentials table tr:not(:last-child) {
  border-bottom: 1px solid;
  /*@include themed() {
  	border-color: t('border');
  }*/
}
.popup .contact-us {
  width: 44rem;
}
.popup .contact-us form {
  row-gap: 2rem;
}
.popup .account-info table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
}
.popup .account-info table tr td {
  padding: 2rem;
}
.popup .account-info table tr td:nth-child(3) {
  width: 30%;
}
.popup .account-info table tr:not(:last-child) {
  border-bottom: 1px solid;
  /*@include themed() {
  	border-color: t('border');
  }*/
}
.popup .rules {
  color: black;
}
.popup .rules__text {
  margin-left: 3rem;
}
.popup .competition-prizes {
  color: black;
}

.timer-container {
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 2rem;
  padding: 1rem;
  padding-bottom: 1.8rem;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  grid-gap: 0.5rem;
}
.timer .timer-label {
  font-size: 2rem;
}
@media only screen and (max-width: 1600px) {
  .timer .timer-label {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1200px) {
  .timer .timer-label {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 992px) {
  .timer .timer-label {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .timer .timer-label {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 405px) {
  .timer .timer-label {
    font-size: 1.2rem;
  }
}
.timer__header {
  text-align: center;
}
.timer__time {
  /*background-color: rgba($color-secondary, 0.3);*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*border-radius: 0.5rem;*/
  padding: 0.5rem;
  width: 100%;
  /*height: 8rem;*/
  flex-direction: column;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  line-height: 1;
}
.timer__time__text {
  font-size: 1.5rem;
}
.timer__bottom {
  display: flex;
  justify-content: space-between;
}
.timer__start-date, .timer__end-date {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #FF7A00;
}

.filter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.filter--center {
  justify-content: center;
}
.filter__button {
  padding: 1rem 1rem;
  border-radius: 1rem;
  /*display: inline-flex;*/
  justify-content: center;
  /*flex: 1;*/
  cursor: pointer;
  width: 150px !important;
  height: 4rem;
  /*max-width: 190px;*/
  font-size: 1.4rem;
  box-shadow: 0;
  background-color: #000000;
  color: white;
}
.filter__button.selected {
  background-color: #FF7A00;
  color: white;
}
.tooltip {
  display: inline-flex;
  position: relative;
  text-align: left;
  font-size: 1.6rem;
  color: white;
  width: 2rem;
  align-items: center;
}

.tooltip .top {
  min-width: 340px;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 10px 13px;
  color: white;
  background-color: black;
  font-weight: normal;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  display: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}

.tooltip:hover .top {
  display: block;
}

.tooltip .top i {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.tooltip .top i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: black;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.tooltip .bottom {
  min-width: 340px;
  top: -20px;
  left: 50%;
  transform: translate(-50%, 15%);
  padding: 10px 13px;
  color: white;
  background-color: black;
  font-weight: normal;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  display: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}

.tooltip:hover .bottom {
  display: block;
}

.tooltip .bottom i {
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.tooltip .bottom i::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: black;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.tooltip .top-left {
  min-width: 340px;
  top: -20px;
  left: 50%;
  transform: translate(-90%, -100%);
  padding: 10px 13px;
  color: white;
  background-color: black;
  font-weight: normal;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  display: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}

.tooltip:hover .top-left {
  display: block;
}

.tooltip .top-left i {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.tooltip .top-left i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: black;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.page-inner-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 2rem;
  padding: 2rem;
  color: white;
  font-weight: bold;
  font-size: 2rem;
}
.page-inner-banner-close-icon {
  cursor: pointer;
  font-size: 4rem;
}

.banner-success {
  background-color: #0FB2A5;
}

.banner-error {
  background-color: #E30E18;
}

.page-content__dashboard .purchase-cards-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: white;
  gap: 3rem;
  margin-top: 2.4rem;
}
@media (max-width: 768px) {
  .page-content__dashboard .purchase-cards-container {
    flex-direction: column;
    align-items: center;
  }
}
.page-content__dashboard .purchase-cards-container .purchase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1.2rem;
  width: 54rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 4rem 2.4rem;
  gap: 1.2rem;
}
@media (max-width: 640px) {
  .page-content__dashboard .purchase-cards-container .purchase-card {
    width: 100%;
  }
}
.page-content__dashboard .purchase-cards-container .purchase-card .promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 1.6rem;
  background: white;
  color: #FF7A00;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 1.2rem;
  user-select: none;
  margin-bottom: 0.6rem;
}
.page-content__dashboard .purchase-cards-container .purchase-card .promo-badge-paid {
  visibility: hidden;
}
.page-content__dashboard .purchase-cards-container .purchase-card .promo-badge .promo-icon {
  width: 2rem;
}
.page-content__dashboard .purchase-cards-container .purchase-card-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  height: 18rem;
}
.page-content__dashboard .purchase-cards-container .purchase-card-paid {
  background: radial-gradient(circle at bottom, #0b1020, #02040a);
}
.page-content__dashboard .purchase-cards-container .purchase-card-free {
  background: radial-gradient(circle at bottom, rgba(255, 140, 0, 0.2), rgba(255, 140, 0, 0.01));
}
.page-content__dashboard .purchase-cards-container .purchase-card-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.page-content__dashboard .purchase-cards-container .purchase-card-description {
  text-align: center;
  font-size: 1.6rem;
}
.page-content__dashboard .purchase-cards-container .purchase-card-button {
  font-size: 2rem;
  font-weight: normal;
}
@media (max-width: 640px) {
  .page-content__dashboard .purchase-cards-container .purchase-card-button {
    font-size: 1.6rem;
  }
}
.page-content__dashboard .purchase-cards-container .purchase-card-button-paid {
  border: 3px solid #FF7A00;
  color: #FF7A00 !important;
  background-color: transparent;
}
@media only screen and (max-width: 768px) {
  .page-content__dashboard .banner {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .page-content__dashboard .timer-title {
    font-size: 1.8rem !important;
  }
}
.page-content__dashboard .text-color {
  color: white;
}
.page-content__dashboard .breached-account-banner {
  background-color: #E30E18 !important;
  color: white !important;
}
.page-content__dashboard .dashboard-header {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 3rem;
  gap: 3rem;
}
@media only screen and (max-width: 992px) {
  .page-content__dashboard .dashboard-header {
    flex-direction: column;
  }
}
.page-content__dashboard .dashboard-header .banner {
  width: 100%;
  background-color: #000000;
  color: #0FB2A5;
  font-size: 2.8rem;
  padding: 2rem;
  display: flex;
  align-content: center;
  justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .page-content__dashboard .dashboard-header .banner {
    flex-direction: column;
  }
}
.page-content__dashboard .dashboard-header .account-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: white;
}
@media only screen and (max-width: 992px) {
  .page-content__dashboard .dashboard-header .account-info {
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    align-items: center;
  }
}
.page-content__dashboard .dashboard-header .account-info__status:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f111";
}
.page-content__dashboard #gaugeWrapper {
  position: relative;
  width: 300px;
  height: 140px;
}
.page-content__dashboard #gaugeChart {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-content__dashboard #needle {
  position: absolute;
  width: 2px;
  height: 130px;
  top: 10px;
  left: 50%;
  transform-origin: bottom center;
  transform: rotate(0deg);
  z-index: 2;
  transition: transform 0.3s ease-in-out;
}
.page-content__dashboard .topneedle {
  height: 30%;
  background: white;
}
.page-content__dashboard .downneedle {
  height: 70%;
  background: transparent;
}
.page-content__dashboard #centerText {
  position: absolute;
  bottom: 0px !important;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: bold;
  color: white;
  z-index: 3;
}
.page-content__dashboard #gaugeTicks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  z-index: 3;
}
.page-content__dashboard .tick {
  position: absolute;
  font-size: 10px;
  color: white;
  transform: translate(-50%, -50%);
}
.page-content__dashboard .dashboard-stats-container {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .page-content__dashboard .dashboard-stats-container {
    flex-direction: column;
  }
}
.page-content__dashboard .dashboard-stats {
  display: flex;
  flex-direction: row;
  row-gap: 3rem;
  flex-grow: 3;
}
@media only screen and (max-width: 2200px) {
  .page-content__dashboard .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1200px) {
  .page-content__dashboard .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .page-content__dashboard .dashboard-stats {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-content__dashboard .dashboard-stats .stats {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  z-index: 99;
  width: 100%;
  display: flex;
  flex-direction: row;
  color: white;
  justify-content: space-between;
  height: fit-content;
}
.page-content__dashboard .dashboard-stats .stats__title {
  font-size: 1.2rem;
  font-weight: 400;
}
.page-content__dashboard .dashboard-stats .stats__value {
  color: #FF7A00;
  font-size: 2.2rem;
  font-weight: 500;
}
.page-content__dashboard .dashboard-stats .stats:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 8px;
  background-color: black;
}
.page-content__dashboard .gauge-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-content__dashboard .consistency-stats {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  justify-content: space-between;
  max-width: 60rem;
  flex-grow: 1;
}
@media only screen and (max-device-width: 1440px) {
  .page-content__dashboard .consistency-stats {
    max-width: 100%;
  }
}
.page-content__dashboard .consistency-stats__title {
  font-size: 1.4rem;
  font-weight: 400;
}
.page-content__dashboard .consistency-stats__value {
  color: #FF7A00;
  font-size: 2.2rem;
  font-weight: 500;
}
.page-content__dashboard .consistency-stats:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 8px;
  background-color: black;
}
.page-content__dashboard .consistency-stats__title {
  font-size: 1.4rem;
  font-weight: 400;
  flex-direction: row;
  margin-bottom: 1.2rem;
}
.page-content__dashboard .stats-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .page-content__dashboard .stats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}
.page-content__dashboard .consistency-stats-values {
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  flex-direction: row;
  align-items: flex-end;
}
.page-content__dashboard .first-value {
  margin-top: 1.2rem;
}
.page-content__dashboard .account-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
}
.page-content__dashboard .account-data .card {
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .page-content__dashboard .account-data {
    flex-direction: column;
  }
}
.page-content__dashboard .chart-container {
  width: 100%;
}
.page-content__dashboard .chart-control {
  background-color: #121212;
  width: 20rem;
  border: none;
  box-shadow: 0;
  border-radius: 0.25rem !important;
  justify-content: center;
  align-content: center;
  color: white;
  padding: 1rem;
  font-size: 1.6rem;
}
.page-content__dashboard .chart-control:hover {
  cursor: pointer;
}
.page-content__dashboard .chart-control-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .page-content__dashboard .chart-control-container {
    flex-direction: column;
    align-items: center;
  }
}
.page-content__dashboard .chart-control.disabled .fa-square {
  color: gray !important;
  opacity: 0.4;
}

#upgradeAccountModal > .modal-dialog {
  max-width: 100rem !important;
}
#upgradeAccountModal .upgrade-option {
  border: 2px solid transparent;
  background-color: #121212;
  text-align: center;
  width: 100%;
  border-radius: 1rem;
  padding: 1.5rem;
}
#upgradeAccountModal .upgrade-option__title {
  font-size: 2rem;
}
#upgradeAccountModal .upgrade-option--selected {
  background-color: #FF7A00;
}
#upgradeAccountModal .upgrade-option-container {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  justify-content: space-evenly;
  margin-top: 2rem;
}
@media only screen and (max-width: 992px) {
  #upgradeAccountModal .upgrade-option-container {
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    align-items: center;
  }
}
#upgradeAccountModal .upgrade-option:hover {
  cursor: pointer;
}

.trade-table .desktop-view {
  display: table-row-group;
}
@media only screen and (max-width: 768px) {
  .trade-table .desktop-view {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .trade-table tr td {
    background-color: black;
  }
}
.trade-table tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .trade-table tr td .table-row {
    font-size: 1.2rem;
  }
}
.trade-table tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
.trade-table tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.trade-table tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
.trade-table tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
.trade-table tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

.page-content__accounts .account-list {
  display: flex;
  flex-direction: column;
}
.page-content__accounts .account-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /*box-shadow: inset $box-shadow-light;*/
  background-color: whitesmoke;
  border-radius: 1rem;
  margin: 1rem 0;
  padding: 2rem;
  /*		align-content: center;
  align-items: center;
  gap: 2rem;*/
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .page-content__accounts .account-item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 992px) {
  .page-content__accounts .account-item {
    font-size: 1.4rem;
  }
}
.page-content__accounts .account-item__login {
  min-width: 25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.page-content__accounts .account-item__content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: space-evenly;
  margin-left: 10rem;
}
@media only screen and (max-width: 992px) {
  .page-content__accounts .account-item__content {
    display: flex;
    flex-direction: column;
    margin-left: 0rem;
  }
}
.page-content__accounts .account-item__content__info {
  /*display: flex;*/
  flex-direction: row;
  justify-content: space-between;
}
.page-content__accounts .account-item__buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.page-content__accounts .account-type {
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  #credentialsPopup {
    font-size: 1.4rem;
  }
  #credentialsPopup .popup__header {
    padding-bottom: 0.8rem;
  }
  #credentialsPopup td {
    padding: 0.8rem;
  }
}

#accountsCheckBoxHolder {
  display: flex;
  flex-direction: row;
  width: 65%;
}

[id^=sys-set-isenabledpublicurl-] {
  margin: 20px;
}

#enablePublicUrlLabel {
  margin-right: 20px;
  margin-left: -20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#copyPublicUrlButton {
  padding: 10px;
  margin: 10px;
}

.page-content__leaderboard {
  width: 100%;
}
.page-content__leaderboard .user-row {
  background-color: #FF7A00;
}
.page-content__leaderboard .chart-leaderboard-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .page-content__leaderboard .chart-leaderboard-container {
    flex-direction: column;
  }
}
.page-content__leaderboard .chart-leaderboard-container .card {
  margin-bottom: 2rem;
}
.page-content__leaderboard .chart-leaderboard-container .card:nth-of-type(1) {
  width: 40%;
}
@media only screen and (max-width: 1600px) {
  .page-content__leaderboard .chart-leaderboard-container .card:nth-of-type(1) {
    width: 50%;
  }
}
@media only screen and (max-width: 1200px) {
  .page-content__leaderboard .chart-leaderboard-container .card:nth-of-type(1) {
    width: auto;
  }
}
.page-content__leaderboard .chart-leaderboard-container .card:nth-of-type(2) {
  width: 60%;
}
@media only screen and (max-width: 1600px) {
  .page-content__leaderboard .chart-leaderboard-container .card:nth-of-type(2) {
    width: 60%;
  }
}
@media only screen and (max-width: 1200px) {
  .page-content__leaderboard .chart-leaderboard-container .card:nth-of-type(2) {
    width: 100%;
  }
}
.page-content__leaderboard .metrics {
  display: grid;
  flex-direction: row;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
  grid-gap: 0.5rem;
  min-width: 12rem;
  max-width: 1fr;
}
@media only screen and (max-width: 1600px) {
  .page-content__leaderboard .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
}
.page-content__leaderboard .metrics .metric {
  position: relative;
  padding: 5px 30px;
  z-index: 99;
  width: 90%;
  display: flex;
  flex-direction: column;
  color: white;
}
.page-content__leaderboard .metrics .metric__title {
  font-size: 1.4rem;
}
.page-content__leaderboard .metrics .metric__data {
  font-size: 1.8rem;
  font-weight: 600;
}
.page-content__leaderboard .metrics .metric:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: skew(-24deg);
  -moz-transform: skew(-9deg);
  -o-transform: skew(-9deg);
  z-index: -1;
  border-radius: 8px;
  background-color: #FF7A00;
}
.page-content__leaderboard .competition-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 0.5rem;
  min-width: 12rem;
  max-width: 1fr;
  margin-bottom: 2rem;
  margin-left: 3rem;
}
@media only screen and (max-width: 992px) {
  .page-content__leaderboard .competition-metrics {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
}
.page-content__leaderboard .competition-metrics .metric {
  position: relative;
  padding: 5px 30px;
  z-index: 99;
  width: 90%;
  display: flex;
  flex-direction: column;
  color: white;
  justify-content: center;
  align-items: center;
}
.page-content__leaderboard .competition-metrics .metric__title {
  font-size: 1.4rem;
  position: absolute;
  top: 0;
}
.page-content__leaderboard .competition-metrics .metric__data {
  font-size: 1.8rem;
  font-weight: 600;
}
.page-content__leaderboard .competition-metrics .metric:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: skew(-24deg);
  -moz-transform: skew(-9deg);
  -o-transform: skew(-9deg);
  z-index: -1;
  border-radius: 8px;
  background-color: #FF7A00;
}
.page-content__leaderboard .metric-container {
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
@media only screen and (max-width: 1200px) {
  .page-content__leaderboard .metric-container {
    grid-template-columns: 1fr;
  }
}

.apexcharts-menu {
  background-color: #121212 !important;
  border: 1px solid #121212 !important;
}

.apexcharts-menu-item {
  background-color: #121212;
}
.apexcharts-menu-item:hover {
  background-color: #FF7A00 !important;
}

@media only screen and (max-width: 768px) {
  #leaderboardTable_paginate {
    display: none;
  }
}

@media (min-width: 768px) {
  #leaderboardTableMobile_paginate {
    display: none;
  }
}
#leaderboardClosedTrades .desktop-view {
  display: table-row-group;
}
@media only screen and (max-width: 768px) {
  #leaderboardClosedTrades .desktop-view {
    display: none;
  }
}

#currentCustomerRowTable_paginate {
  display: none;
}

#currentCustomerRowTableMobile_paginate {
  display: none;
}

#currentCustomerRowTable .desktop-view {
  display: table-row-group;
  height: 6rem;
}
#currentCustomerRowTable .desktop-view tr {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  height: 6rem;
}
@media only screen and (max-width: 1600px) {
  #currentCustomerRowTable .desktop-view tr {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1200px) {
  #currentCustomerRowTable .desktop-view tr {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
}
#currentCustomerRowTable .desktop-view tr td {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTable .desktop-view {
    display: none;
  }
}
#currentCustomerRowTable .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTable .mobile-view {
    display: table-row-group;
  }
}
#currentCustomerRowTable .mobile-view .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTable .mobile-view .mobile-view {
    display: table-row-group;
  }
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTable .mobile-view .mobile-view thead {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTable .mobile-view .mobile-view tr td {
    background-color: black;
  }
}
#currentCustomerRowTable .mobile-view .mobile-view tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTable .mobile-view .mobile-view tr td .table-row {
    font-size: 1.2rem;
  }
}
#currentCustomerRowTable .mobile-view .mobile-view tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
#currentCustomerRowTable .mobile-view .mobile-view tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#currentCustomerRowTable .mobile-view .mobile-view tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
#currentCustomerRowTable .mobile-view .mobile-view tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
#currentCustomerRowTable .mobile-view .mobile-view tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

#currentCustomerRowTableMobile .desktop-view {
  display: table-row-group;
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTableMobile .desktop-view {
    display: none;
  }
}
#currentCustomerRowTableMobile .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTableMobile .mobile-view {
    display: table-row-group;
  }
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTableMobile .mobile-view thead {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTableMobile .mobile-view tr td {
    background-color: black;
  }
}
#currentCustomerRowTableMobile .mobile-view tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #currentCustomerRowTableMobile .mobile-view tr td .table-row {
    font-size: 1.2rem;
  }
}
#currentCustomerRowTableMobile .mobile-view tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
#currentCustomerRowTableMobile .mobile-view tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#currentCustomerRowTableMobile .mobile-view tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
#currentCustomerRowTableMobile .mobile-view tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
#currentCustomerRowTableMobile .mobile-view tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

#leaderboardTable .desktop-view {
  display: table-row-group;
}
#leaderboardTable .desktop-view tr {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
}
@media only screen and (max-width: 1600px) {
  #leaderboardTable .desktop-view tr {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1200px) {
  #leaderboardTable .desktop-view tr {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
}
#leaderboardTable .desktop-view tr td {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #leaderboardTable .desktop-view {
    display: none;
  }
}
#leaderboardTable .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #leaderboardTable .mobile-view {
    display: table-row-group;
  }
}
#leaderboardTable .mobile-view .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #leaderboardTable .mobile-view .mobile-view {
    display: table-row-group;
  }
}
@media only screen and (max-width: 768px) {
  #leaderboardTable .mobile-view .mobile-view thead {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #leaderboardTable .mobile-view .mobile-view tr td {
    background-color: black;
  }
}
#leaderboardTable .mobile-view .mobile-view tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #leaderboardTable .mobile-view .mobile-view tr td .table-row {
    font-size: 1.2rem;
  }
}
#leaderboardTable .mobile-view .mobile-view tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
#leaderboardTable .mobile-view .mobile-view tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#leaderboardTable .mobile-view .mobile-view tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
#leaderboardTable .mobile-view .mobile-view tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
#leaderboardTable .mobile-view .mobile-view tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

#leaderboardTableMobile .desktop-view {
  display: table-row-group;
}
@media only screen and (max-width: 768px) {
  #leaderboardTableMobile .desktop-view {
    display: none;
  }
}
#leaderboardTableMobile .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #leaderboardTableMobile .mobile-view {
    display: table-row-group;
  }
}
@media only screen and (max-width: 768px) {
  #leaderboardTableMobile .mobile-view thead {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #leaderboardTableMobile .mobile-view tr td {
    background-color: black;
  }
}
#leaderboardTableMobile .mobile-view tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #leaderboardTableMobile .mobile-view tr td .table-row {
    font-size: 1.2rem;
  }
}
#leaderboardTableMobile .mobile-view tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
#leaderboardTableMobile .mobile-view tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#leaderboardTableMobile .mobile-view tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
#leaderboardTableMobile .mobile-view tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
#leaderboardTableMobile .mobile-view tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

.mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  .mobile-view {
    display: table-row-group;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-view thead {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-view tr td {
    background-color: black;
  }
}
.mobile-view tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .mobile-view tr td .table-row {
    font-size: 1.2rem;
  }
}
.mobile-view tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
.mobile-view tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.mobile-view tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
.mobile-view tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
.mobile-view tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

.page-content__affiliate-portal #affiliateLinkLanguage {
  cursor: pointer;
}
.page-content__affiliate-portal a {
  color: #FF7A00;
}
.page-content__affiliate-portal .text-color {
  color: white;
}
@media only screen and (max-width: 768px) {
  .page-content__affiliate-portal .flex-row, .page-content__affiliate-portal .flex-row-lg, .page-content__affiliate-portal .flex-row-md, .page-content__affiliate-portal .flex-row-sm {
    flex-wrap: wrap;
  }
}
.page-content__affiliate-portal .affiliate-verify-text {
  padding: 1rem 0;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .page-content__affiliate-portal .affiliate-verify-text {
    flex-direction: column;
  }
}
@media only screen and (max-width: 992px) {
  .page-content__affiliate-portal .link-container {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
    flex-direction: column;
  }
}
.page-content__affiliate-portal .link-container .text-container span {
  word-wrap: break-word;
}
@media only screen and (max-width: 992px) {
  .page-content__affiliate-portal .link-container .text-container {
    border-bottom-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    border-top-right-radius: 0.8rem;
    border-top-left-radius: 0.8rem;
  }
}
@media only screen and (max-width: 992px) {
  .page-content__affiliate-portal .link-container .copy-btn {
    overflow-x: auto;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    border-top-right-radius: 0rem;
    border-top-left-radius: 0rem;
  }
}
.page-content__affiliate-portal .affiliate-statistics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /*grid-template-rows: repeat(2, 1fr);*/
  column-gap: 4rem;
  row-gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .page-content__affiliate-portal .affiliate-statistics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .page-content__affiliate-portal .affiliate-statistics {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
}
.page-content__affiliate-portal .affiliate-statistics .statistic {
  /*font-size: 1.6rem;*/
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.page-content__affiliate-portal .affiliate-statistics .statistic .fa-solid {
  width: 2rem;
}
.page-content__affiliate-portal .filter .card__body button {
  padding: 2px 10px;
  width: auto !important;
}
.page-content__affiliate-portal .card .form__group-2-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-content__affiliate-portal .card .form__group-2-col div {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}
.page-content__affiliate-portal .card .form__group-2-col div .form__group {
  flex-basis: 45%;
  box-sizing: border-box;
  padding: 10px 20px;
  margin: 10px 10px;
}
.page-content__affiliate-portal .card .form__group-2-col div .form__group select {
  height: auto;
}

@media (max-width: 800px) {
  .page-content__withdrawals .card .form__group-2-col div {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .page-content__withdrawals .card .form__group-2-col div .form__group {
    flex-basis: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    margin: 10px 10px;
  }
  .page-content__withdrawals .card .form__group-2-col div .form__group select {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  #ordersTable_paginate, #payoutsTable_paginate, #salesRepTable_paginate, #multiLvlOrdersTable_paginate {
    display: none;
  }
}

@media (min-width: 768px) {
  #ordersTableMobile_paginate, #payoutsTableMobile_paginate, #salesRepTableMobile_paginate, #multiLvlOrdersTableMobile_paginate {
    display: none;
  }
}
#ordersTableMobile .mobile-view, #multiLvlOrdersTableMobile .mobile-view, #payoutsTableMobile .mobile-view, #salesRepTableMobile .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #ordersTableMobile .mobile-view, #multiLvlOrdersTableMobile .mobile-view, #payoutsTableMobile .mobile-view, #salesRepTableMobile .mobile-view {
    display: table-row-group;
  }
}
@media only screen and (max-width: 768px) {
  #ordersTableMobile .mobile-view tr td, #multiLvlOrdersTableMobile .mobile-view tr td, #payoutsTableMobile .mobile-view tr td, #salesRepTableMobile .mobile-view tr td {
    background-color: black;
  }
}
#ordersTableMobile .mobile-view tr td .table-row, #multiLvlOrdersTableMobile .mobile-view tr td .table-row, #payoutsTableMobile .mobile-view tr td .table-row, #salesRepTableMobile .mobile-view tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #ordersTableMobile .mobile-view tr td .table-row, #multiLvlOrdersTableMobile .mobile-view tr td .table-row, #payoutsTableMobile .mobile-view tr td .table-row, #salesRepTableMobile .mobile-view tr td .table-row {
    font-size: 1.2rem;
  }
}
#ordersTableMobile .mobile-view tr td .table-row .table-row-header-icon, #multiLvlOrdersTableMobile .mobile-view tr td .table-row .table-row-header-icon, #payoutsTableMobile .mobile-view tr td .table-row .table-row-header-icon, #salesRepTableMobile .mobile-view tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
#ordersTableMobile .mobile-view tr td .table-row .table-row-subheader, #multiLvlOrdersTableMobile .mobile-view tr td .table-row .table-row-subheader, #payoutsTableMobile .mobile-view tr td .table-row .table-row-subheader, #salesRepTableMobile .mobile-view tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#ordersTableMobile .mobile-view tr td .table-row .table-row-subheader .table-row-status, #multiLvlOrdersTableMobile .mobile-view tr td .table-row .table-row-subheader .table-row-status, #payoutsTableMobile .mobile-view tr td .table-row .table-row-subheader .table-row-status, #salesRepTableMobile .mobile-view tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
#ordersTableMobile .mobile-view tr td .table-row .table-row-details, #multiLvlOrdersTableMobile .mobile-view tr td .table-row .table-row-details, #payoutsTableMobile .mobile-view tr td .table-row .table-row-details, #salesRepTableMobile .mobile-view tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
#ordersTableMobile .mobile-view tr td .table-row .table-row-details .table-row-details-item, #multiLvlOrdersTableMobile .mobile-view tr td .table-row .table-row-details .table-row-details-item, #payoutsTableMobile .mobile-view tr td .table-row .table-row-details .table-row-details-item, #salesRepTableMobile .mobile-view tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

.page-content__support {
  /*	max-width: 50%;
  	display:flex;
  	justify-content:center; 

  	@include responsive(sm) {
  		grid-template-columns: 1fr;
  		grid-gap: 0;
  	}*/
}

.page-content__download-center .download-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 1600px) {
  .page-content__download-center .download-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1400px) {
  .page-content__download-center .download-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .page-content__download-center .download-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .page-content__download-center .download-container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
}
.page-content__download-center .download-container .download {
  background-color: white;
  padding: 2rem;
}
.page-content__download-center .download-container .download__title {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  border-bottom: 1px solid #000000;
  font-weight: 600;
}
.page-content__download-center .download-container .download__thumbnail {
  display: flex;
  justify-content: center;
  margin: 2rem;
}
.page-content__download-center .download-container .download__description {
  margin: 2rem;
  text-align: center;
}
.page-content__download-center .download-container .download-button-container {
  flex: 1;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}
.page-content__challenge-history {
  /*table {
  		tbody {
  			tr {
  				height: 7.5rem;

  				&:nth-of-type(even) {
  					background-color: $color-grey-light;
  				}

  				td {
  					padding: 1rem;
  					padding-right: 0;
  					height: 100%;

  					.chip {
  						width: min-content;
  					}
  				}
  			}
  		}
  	}
  */
}
.page-content__challenge-history .table-container {
  overflow-x: auto;
}
.page-content__challenge-history table {
  width: 100%;
  border-collapse: collapse;
  /*overflow-x: scroll;*/
}
.page-content__challenge-history table thead {
  border-bottom: 1px solid #FF7A00;
}
.page-content__challenge-history table thead tr {
  border-bottom: 1px solid #FF7A00;
}
.page-content__challenge-history table thead tr th {
  text-align: left !important;
  padding-left: 2rem;
}
.page-content__challenge-history table tr th {
  text-align: left;
  padding-left: 2rem;
  color: #98A5B2;
  font-weight: 600;
}
.page-content__challenge-history table tbody tr {
  height: 7.5rem;
}
.page-content__challenge-history table tbody tr:nth-of-type(even) {
  background-color: #121212;
}
@media only screen and (max-width: 768px) {
  .page-content__challenge-history table tbody tr:nth-of-type(even) {
    background-color: black;
  }
}
.page-content__challenge-history table tbody tr td {
  padding: 2rem;
  padding-right: 0;
  height: 100%;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .page-content__challenge-history table tbody tr td {
    padding: 2rem 0rem;
  }
}
.page-content__challenge-history table tbody tr td .chip {
  width: min-content;
}

.disabled-btn {
  opacity: 0.4;
  pointer-events: none;
}

#challengeHistoryTable .desktop-view {
  display: table-row-group;
}
@media only screen and (max-width: 768px) {
  #challengeHistoryTable .desktop-view {
    display: none;
  }
}

#challengeHistoryTableMobile .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #challengeHistoryTableMobile .mobile-view {
    display: table-row-group;
  }
}
@media only screen and (max-width: 768px) {
  #challengeHistoryTableMobile .mobile-view tr td {
    background-color: black;
  }
}
#challengeHistoryTableMobile .mobile-view tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #challengeHistoryTableMobile .mobile-view tr td .table-row {
    font-size: 1.2rem;
  }
}
#challengeHistoryTableMobile .mobile-view tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
#challengeHistoryTableMobile .mobile-view tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#challengeHistoryTableMobile .mobile-view tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
#challengeHistoryTableMobile .mobile-view tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
  margin-top: 1.2rem;
}
#challengeHistoryTableMobile .mobile-view tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

.page-content__profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}
.page-content__profile .mt-2 {
  margin-top: 2rem;
}
.page-content__profile .profile .profile-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1B5091;
}
.page-content__profile .profile .profile-body {
  display: flex;
  flex-direction: column;
}

.card.profile {
  width: 30%;
}

@media (max-width: 1536px) {
  .card.profile {
    width: 45%;
  }
}
@media (max-width: 1024px) {
  .card.profile {
    width: 55%;
  }
}
@media (max-width: 600px) {
  .card.profile {
    width: 80%;
  }
}
.page-content__economic-calendar {
  height: 100vh;
}
.page-content__economic-calendar .card {
  height: 80%;
}

/* ==========================================================================
  UTILITIES
  ========================================================================== */
/* Borders */
.border {
  border: 1px solid red;
}

.border-b {
  border-bottom: 1px solid #d6d6d6;
}

.border-b-xl {
  border-bottom: 8px solid #d6d6d6;
}

.border-t {
  border-top: 1px solid #d6d6d6;
}

.border-success {
  border: 3px solid #0FB2A5 !important;
}

.border-error {
  border: 3px solid #F40000 !important;
}

/* Display / Flex */
.flex {
  display: flex;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

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

.align-baseline {
  align-items: baseline;
}

.justify-between {
  justify-content: space-between;
}

.center {
  align-items: center;
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Radius */
.bradius1 {
  border-radius: 1rem;
}

.bradius04 {
  border-radius: 0.4rem;
}

/* Positioning */
.pos-right {
  position: relative;
  float: right;
}

/* Overflow */
.overflow-x {
  overflow-x: auto;
}

/* Sizing */
.w-full {
  width: 100%;
}

.w-60p {
  width: 60%;
}

.w-challenge-type-selector {
  width: -webkit-fill-available;
}

.w-size-selector {
  width: 10rem;
  height: 4rem;
}

/* Gap */
.gap8 {
  gap: 0.8rem;
}

.gap16 {
  gap: 1.6rem;
}

.gap24 {
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .gap24 {
    gap: 1.2rem;
  }
}

.gap40 {
  gap: 4rem;
}
@media (max-width: 768px) {
  .gap40 {
    gap: 2.4rem;
  }
}

/* Padding */
.p08 {
  padding: 0.8rem;
}

.p1 {
  padding: 1rem;
}

.p1-6 {
  padding: 1.6rem;
}

.p2 {
  padding: 2rem;
}

.p2b1 {
  padding: 2rem;
  padding-bottom: 1rem;
}

.p2b1-freetrial {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0.8rem;
}

.py3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Margin */
.mb2 {
  margin-bottom: 2rem;
}

.ml1 {
  margin-left: 1rem;
}

.ml2 {
  margin-left: 2rem;
}

.mr1 {
  margin-right: 1rem;
}

.mr2 {
  margin-right: 2rem;
}

.mt04 {
  margin-top: 0.4rem;
}

.mt08 {
  margin-top: 0.8rem;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.my08 {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

/* Text: weight / color */
.bold {
  font-weight: 600;
}

.primary {
  color: white;
}

.secondary {
  color: black;
}

.accent {
  color: #FF7A00;
}

.faded {
  color: rgba(255, 255, 255, 0.6);
}

.grey {
  color: #d6d6d6;
}

.dark-grey {
  color: #999999;
}

.success {
  color: #0FB2A5;
}

.error {
  color: #F40000;
}

.yellow2 {
  color: #EFBF04;
}

/* Text: size */
.xxl {
  font-size: 3.6rem;
}
@media (max-width: 768px) {
  .xxl {
    font-size: 2.4rem;
  }
}

.xl {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .xl {
    font-size: 1.6rem;
  }
}

.lg2 {
  font-size: 2rem;
}

.lg {
  font-size: 1.8rem;
}

.md {
  font-size: 1.6rem;
}

.sm2 {
  font-size: 1.4rem;
}

.sm {
  font-size: 1.2rem;
}

.xs2 {
  font-size: 1rem;
}

/* Text: align */
.center-text {
  text-align: center;
}

.end-text {
  text-align: end;
}

/* Cursor */
.pointer {
  cursor: pointer;
}

/* Backgrounds */
.bg-light-gray {
  background-color: #F3F3F3;
}

/* ==========================================================================
   PAGE / LAYOUT
   ========================================================================== */
#signupFormContainer {
  justify-self: center;
}
@media (min-width: 1280px) {
  #signupFormContainer {
    max-width: 124rem;
  }
}
@media (max-width: 768px) {
  #signupFormContainer {
    margin-bottom: 8rem;
  }
}

#purchaseHeaderSection {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  #purchaseHeaderSection {
    margin-bottom: 2.4rem;
  }
}

#purchaseSelectProgramSection {
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 768px) {
  #purchaseSelectProgramSection {
    flex-direction: column;
    margin-bottom: 10rem;
  }
}

@media (max-width: 768px) {
  #checkoutDetailsFooter {
    display: none;
  }
}

.main-container {
  margin-top: 6rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .main-container {
    margin-top: 2rem;
  }
}

/* Responsive footer (mobile) */
.checkout-footer {
  display: none; /* hidden by default */
}

@media (max-width: 768px) {
  .checkout-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  }
  .price-info {
    display: flex;
    flex-direction: column;
  }
  .price-info .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: black;
  }
  .price-info .label {
    font-size: 1.4rem;
    color: #777;
  }
  .continue-btn {
    background: #FF7A00;
    color: white;
    border: none;
    border-radius: 0.6rem;
    padding: 1.2rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
  }
}
#planSelectionFooter,
#formFooter {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#formFooter {
  gap: 1.6rem;
}

@media (max-width: 768px) {
  #chat-widget-container {
    bottom: 8rem !important;
  }
}

/* ==========================================================================
   SECTIONS / VALUES
   ========================================================================== */
#savingsValue {
  font-size: 2.2rem;
}

#totalPriceValue {
  font-size: 3rem;
}

#challengeTypeSection {
  padding-bottom: 2rem;
}

#planSelectionSection {
  background-color: black;
  padding: 1.6rem;
}

@media (max-width: 768px) {
  #checkoutDetailsCardHeader {
    display: none;
  }
}
@media (min-width: 1024px) {
  #checkoutDetailsCardHeader {
    display: block;
  }
}

@media (max-width: 768px) {
  #mobileCheckoutDetailsCardHeader {
    display: flex;
  }
}
@media (min-width: 1024px) {
  #mobileCheckoutDetailsCardHeader {
    display: none;
  }
}

/* Hide sections on mobile */
@media (max-width: 768px) {
  #independentPricesSection,
  #totalPriceSection,
  #buyBtn,
  .form-buttons-section {
    display: none;
  }
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* Selectable card */
.selectable-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  line-height: normal;
}
.selectable-card-selected {
  border: 2px solid #FF7A00;
  color: #FF7A00;
  font-weight: 600;
}
.selectable-card-disabled {
  opacity: 0.5;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

/* Plan selection container widths */
@media (max-width: 1024px) {
  .plan-selection-container {
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1536px) {
  .plan-selection-container {
    width: 66.5rem;
  }
}
@media (min-width: 1536px) {
  .plan-selection-container {
    width: 120rem;
  }
}

/* Checkout details card */
.checkout-details-card {
  color: black;
  background-color: white;
  height: fit-content;
}
@media (max-width: 768px) {
  .checkout-details-card {
    padding-bottom: 1rem;
  }
}
@media (max-width: 1024px) {
  .checkout-details-card {
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1536px) {
  .checkout-details-card {
    width: 38rem;
  }
}
@media (min-width: 1536px) {
  .checkout-details-card {
    width: 44rem;
  }
}

.checkout-details-card-header {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

/* Buttons disabled */
.disabled-btn {
  opacity: 0.5;
  pointer-events: none;
}

.disabled-btn-primary {
  background-color: #c9c9c9;
  pointer-events: none;
}

/* Popups */
.code-popup,
.process-order-popup,
.plans-popup {
  z-index: 10000;
  color: black;
  background-color: white;
}

.code-popup {
  width: 100%;
}
@media (max-width: 480px) {
  .code-popup {
    width: 100%;
  }
}

.process-order-popup {
  width: 20rem;
  padding: 2rem;
}
@media (max-width: 480px) {
  .process-order-popup {
    width: 100%;
  }
}

.plans-popup {
  width: 100%;
}

/* Coupon */
.coupon {
  font-size: 1.6rem;
  width: fit-content;
  border: 1px dashed;
  padding: 2.4px 1rem;
}
.coupon-selected {
  border: 1px dashed #FF7A00;
  color: #FF7A00;
  font-weight: bold;
}

.codes-container {
  overflow-y: auto;
  height: 20rem;
}

/* Badges & indicators */
.badge {
  color: white;
  background-color: #0FB2A5;
  font-weight: normal;
  border-radius: 10rem;
  padding: 0.2rem 1rem;
  margin-left: 0.8rem;
}

.green-dot {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 1rem;
  height: 1rem;
  background-color: #0FB2A5;
  border-radius: 50%;
  z-index: 10;
}

/* ==========================================================================
   INPUTS
   ========================================================================== */
/* Radio */
.radio-wrapper {
  /* checked ring */
  /* inner dot when checked */
}
.radio-wrapper-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.radio-wrapper input[type=radio] {
  display: none; /* hide native */
}
.radio-wrapper label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-size: 1.6rem;
  /* default gray ring */
}
@media (max-width: 768px) {
  .radio-wrapper label {
    font-size: 1.4rem;
  }
}
.radio-wrapper label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 4px solid #b3b3b3;
  border-radius: 50%;
  background-color: transparent;
}
.radio-wrapper input[type=radio]:checked + label::before {
  border-color: #FF7A00;
  background-color: white;
}
.radio-wrapper input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #FF7A00;
  border-radius: 50%;
}
.radio-wrapper input[type=radio]:checked + label {
  color: #FF7A00;
  font-weight: 600;
}

/* Checkbox (circle + check) */
.checkbox-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.checkbox-wrapper input[type=checkbox] {
  display: none;
}
.checkbox-wrapper label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 3rem;
  font-size: 1.6rem;
  color: #b3b3b3;
  font-weight: 400;
  transition: all 0.2s ease;
}
.checkbox-wrapper label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 4px solid #b3b3b3;
  border-radius: 50%;
  background-color: transparent;
}
.checkbox-wrapper input[type=checkbox]:checked + label::before {
  border-color: white;
  background-color: #FF7A00;
}
.checkbox-wrapper input[type=checkbox]:checked + label::after {
  content: "✔";
  position: absolute;
  left: 0.8rem;
  top: 55%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: white;
}
.checkbox-wrapper input[type=checkbox]:checked + label {
  color: #FF7A00;
  font-weight: 600;
}

/* Coupon checkbox (circle + check) */
.coupon-checkbox-wrapper input[type=checkbox] {
  display: none;
}
.coupon-checkbox-wrapper label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .coupon-checkbox-wrapper label {
    font-size: 1.4rem;
  }
}
.coupon-checkbox-wrapper label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 4px solid #b3b3b3;
  border-radius: 50%;
  background-color: transparent;
}
.coupon-checkbox-wrapper input[type=checkbox]:checked + label::before {
  border-color: #FF7A00;
  background-color: #FF7A00;
}
.coupon-checkbox-wrapper input[type=checkbox]:checked + label::after {
  content: "✔";
  position: absolute;
  left: 0.4rem;
  top: 30%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: white;
}

/* Code input */
.code-input-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  padding: 0;
  width: 100%;
  max-width: 600px;
}
.code-input-wrapper input {
  border: none;
  flex: 1;
  padding: 1rem;
  font-size: 1.6rem;
  outline: none;
}
@media (max-width: 768px) {
  .code-input-wrapper input {
    font-size: 1.2rem;
  }
}
.code-input-wrapper button {
  border: none;
  background: none;
  color: #FF7A00;
  font-weight: bold;
  padding: 0 1.6rem;
  font-size: 1.6rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .code-input-wrapper button {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   PLANS MATRIX
   ========================================================================== */
.plans-table-wrapper {
  overflow-x: auto;
  border-radius: 0.8rem;
}
@media (max-width: 768px) {
  .plans-table-wrapper {
    display: none;
  }
}

.plan-cards-wrapper {
  display: none;
}
@media (max-width: 768px) {
  .plan-cards-wrapper {
    display: block;
  }
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  text-align: start;
}
.plans-table th,
.plans-table td {
  padding: 1.2rem;
  font-size: 1.4rem;
}
.plans-table td {
  padding: 0.8rem;
}
.plans-table th {
  position: sticky;
  top: 0;
}
.plans-table tbody tr:nth-child(odd) {
  color: white;
  background: black;
}
.plans-table tbody tr:nth-child(even) {
  color: white;
  background: #3B3B3B;
}
.plans-table .border-left-top-selector {
  border-radius: 0.8rem 0 0 0;
}
.plans-table .border-right-top-selector {
  border-radius: 0 0.8rem 0 0;
}

.plan-types-container {
  padding: 1.6rem 0;
  display: flex;
  overflow-x: auto;
  gap: 1.2rem;
}

.highlighted-plan-container {
  border: 1px solid #3B3B3B;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0.8rem;
  font-weight: normal;
  white-space: nowrap;
  position: relative;
  min-width: 14rem;
}
@media (min-width: 1024px) {
  .highlighted-plan-container {
    min-width: 16rem;
  }
}
.highlighted-plan-container-selected {
  border: 3px solid #FF7A00;
}

.targets-dropped-badge {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF7A00;
  color: white;
  padding: 0.2rem 1.2rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 768px) {
  .targets-dropped-badge {
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
  }
}

.crossed-over {
  position: relative;
  display: inline-block;
}
.crossed-over::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: white;
  transform: translateY(-50%) rotate(-10deg);
  transform-origin: center;
  pointer-events: none;
}

/* Plans popup sizing */
.plans-popup-padding {
  padding: 2rem;
}
@media (max-width: 768px) {
  .plans-popup-padding {
    padding: 1rem;
  }
}

#plansModalDialog {
  width: 120rem;
  max-width: 120rem;
}
@media (max-width: 1024px) {
  #plansModalDialog {
    width: 90%;
    max-width: 90%;
  }
}

.first {
  border-radius: 1rem 1rem 0 0;
}

.last {
  border-radius: 0 0 1rem 1rem;
}

.odd {
  color: white;
  background: black;
}

.even {
  color: white;
  background: #3B3B3B;
}

/* ==========================================================================
   FORM
   ========================================================================== */
.purchaseSignUp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
@media (max-width: 768px) {
  .purchaseSignUp-form-grid {
    grid-template-columns: 1fr;
  }
}

.purchaseSignUp-form-group {
  display: flex;
}
.purchaseSignUp-form-group-normal {
  flex-direction: column;
}
.purchaseSignUp-form-group-special {
  flex-direction: row;
}
@media (max-width: 768px) {
  .purchaseSignUp-form-group-special {
    flex-direction: column;
  }
}
.purchaseSignUp-form-group label {
  margin-bottom: 0.4rem;
}
.purchaseSignUp-form-group input,
.purchaseSignUp-form-group select {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 2px;
}
@media (max-width: 380px) {
  .purchaseSignUp-form-group input,
  .purchaseSignUp-form-group select {
    width: 30rem;
  }
}
.purchaseSignUp-form-group input:focus,
.purchaseSignUp-form-group select:focus {
  outline-color: #FF7A00;
}
.purchaseSignUp-form-group input:disabled,
.purchaseSignUp-form-group select:disabled {
  background-color: white;
  color: black !important;
  opacity: 0.8;
}
.purchaseSignUp-form-group .special-group {
  display: flex;
  flex-direction: column;
}
.purchaseSignUp-form-group .phone-code {
  width: 25%;
}
@media (max-width: 768px) {
  .purchaseSignUp-form-group .phone-code {
    width: 100%;
  }
}
.purchaseSignUp-form-group .purchaseSignUp-btn {
  width: 100%;
}
.purchaseSignUp-form-group .phone {
  width: 100%;
}

.purchaseSignUp-form-actions {
  grid-column: span 2;
  text-align: right;
}

.purchaseSignUp-form-divider {
  width: 100%;
  border-bottom: 4px solid #FF7A00;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.purchaseSignUp-checkbox {
  display: flex;
  align-items: start;
  gap: 1rem;
}
.purchaseSignUp-checkbox input[type=checkbox] {
  appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid #FF7A00;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.purchaseSignUp-checkbox input[type=checkbox]:checked {
  background-color: #FF7A00;
}
.purchaseSignUp-checkbox input[type=checkbox]:checked::after {
  content: "✔";
  position: absolute;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.6rem;
}

.purchaseSignUp-checkbox-link {
  color: #FF7A00;
  text-decoration: underline;
}

/* ==========================================================================
   MISC / BANNERS / DIVIDERS
   ========================================================================== */
.h-divider {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.discount-banner-background {
  background: #1b5091;
  justify-content: center;
  margin-left: -2rem;
  margin-right: -2rem;
}

.discount-banner {
  display: flex;
  min-height: 40px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 992px) {
  .discount-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    align-self: stretch;
  }
}
.discount-banner h1 {
  color: var(--White-100, #fff);
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .discount-banner h1 {
    font-size: 14px;
  }
}
.discount-banner h2 {
  color: var(--White-100, #fff);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .discount-banner h2 {
    font-size: 12px;
  }
}
.discount-banner .discount-text-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 992px) {
  .discount-banner .discount-text-wrapper {
    flex-direction: column;
    gap: 2px;
  }
}

.discount-dismissal-button {
  position: relative;
  float: right;
  right: 24px;
  top: 12px;
}
@media only screen and (max-width: 992px) {
  .discount-dismissal-button {
    right: 8px;
    top: 8px;
  }
}

.dismissed {
  display: none;
}

/* ==========================================================================
   SELECTED PLAN DETAILS
   ========================================================================== */
#selectedPlanDetailsContainer {
  margin-top: -2rem;
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  #selectedPlanDetailsContainer {
    margin-top: -0.8rem;
    gap: 0rem;
  }
}
#selectedPlanDetailsContainer .plan-details-section {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2rem;
}
@media (max-width: 768px) {
  #selectedPlanDetailsContainer .plan-details-section {
    flex-direction: column;
    gap: 0rem;
  }
}
#selectedPlanDetailsContainer .plan-details-section .right-item {
  padding-left: 2rem;
}
@media (max-width: 768px) {
  #selectedPlanDetailsContainer .plan-details-section .right-item {
    padding-left: 0rem;
  }
}
#selectedPlanDetailsContainer .plan-details-section .left-border {
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  #selectedPlanDetailsContainer .plan-details-section .left-border {
    border: none;
  }
}
#selectedPlanDetailsContainer .plan-details-section .plan-detail-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.page-content__notifications .notification {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*box-shadow: inset $box-shadow-light;*/
  background-color: #121212;
  color: white;
  border-radius: 1rem;
  margin: 1rem 0;
  padding: 2rem;
  /*		align-content: center;
  	align-items: center;
  	gap: 2rem;*/
  align-items: start;
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .page-content__notifications .notification {
    flex-direction: column;
  }
}
@media only screen and (max-width: 992px) {
  .page-content__notifications .notification {
    font-size: 1.4rem;
  }
}
.page-content__notifications .notification-list {
  display: flex;
  flex-direction: column;
}
.page-content__notifications .notification__header {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #FF7A00;
}

.page-content__platforms .platform {
  padding: 3rem;
  background-color: black;
  color: white;
  margin-bottom: 3rem;
}
.page-content__platforms .platform__header {
  font-size: 3.6rem;
  font-weight: 700;
}
.page-content__platforms .platform__buttons {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
  gap: 3rem;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .page-content__platforms .platform__buttons {
    flex-direction: column;
  }
}
.page-content__platforms .platform__body {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .page-content__platforms .platform__body {
    flex-direction: column;
  }
}
.page-content__platforms .platform__body div:first-child {
  width: auto;
  margin-right: 5rem;
}
.page-content__platforms .platform__body img {
  width: 35rem;
  border-radius: 10px;
  height: 25rem;
  display: none;
}

.app-icon-download {
  margin-top: 6px;
}

.page-content__faq .faq {
  padding: 2rem;
  background-color: #121212;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
.page-content__faq .faq-list {
  display: flex;
  flex-direction: column;
}
.page-content__faq .faq__header {
  /*padding: 2rem;*/
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: 500;
}
.page-content__faq .faq__header:hover {
  cursor: pointer;
}
.page-content__faq .faq__header > div:first-child {
  width: 20%;
}
.page-content__faq .faq__header > div:nth-child(2) {
  width: 20%;
}
.page-content__faq .faq .expand-icon {
  flex: 1;
  text-align: start;
}
.page-content__faq .faq-category {
  padding: 3rem;
  border-radius: 1rem;
  background-color: black;
  color: white;
}

.page-content__videos .video {
  /*border: 1px solid $color-grey-dark-1;*/
  border-radius: 1rem;
  padding: 2rem;
  background-color: white;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-content__videos .video-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 62em) {
  .page-content__videos .video-list {
    grid-template-columns: 1fr;
  }
}
.page-content__videos .video iframe {
  width: 540px;
  height: 360px;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 87.5em) {
  .page-content__videos .video iframe {
    width: 320px;
    height: 240px;
  }
}
.page-content__videos .video .description {
  margin-top: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
}
.page-content__videos .divider--horizontal {
  margin: 6rem 0 !important;
}
.page-content__videos .tab-buttons__container .btn {
  flex: 1;
  max-width: 15%;
}

.page-content__announcements .announcement {
  padding: 2rem;
  background-color: white;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}
.page-content__announcements .announcement-list {
  display: flex;
  flex-direction: column;
}
.page-content__announcements .announcement__header {
  /*padding: 2rem;*/
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: 500;
}
.page-content__announcements .announcement__header:hover {
  cursor: pointer;
}
.page-content__announcements .announcement__header > div:first-child {
  width: 20%;
}
.page-content__announcements .announcement__header > div:nth-child(2) {
  width: 20%;
}
.page-content__announcements .announcement .expand-icon {
  flex: 1;
  text-align: start;
}
.page-content__announcements .announcement-category {
  padding: 3rem;
  border-radius: 1rem;
  background-color: white;
}

@media only screen and (max-width: 992px) {
  .page-content__withdrawals .card {
    padding: 2rem 1.2rem;
  }
}
@media only screen and (max-width: 992px) {
  .page-content__withdrawals .inner-card {
    padding: 0rem;
    padding-top: 1.6rem;
  }
}
.page-content__withdrawals .payment-methods-container {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 992px) {
  .page-content__withdrawals .payment-methods-container {
    flex-direction: column;
  }
}
.page-content__withdrawals .warning {
  color: #E30E18;
  border: 2px solid #E30E18;
  padding: 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.page-content__withdrawals .warning .warning-icon {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .page-content__withdrawals .warning {
    font-size: 1.4rem;
  }
}
.page-content__withdrawals .paymentMethod-selector-item {
  padding: 2rem;
  margin: 0.8rem;
  background-color: transparent;
  border-radius: 5px;
  text-decoration: none;
  min-width: 24rem;
  text-align: left;
  color: white;
  border: 3px solid white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .page-content__withdrawals .paymentMethod-selector-item {
    width: 15.5rem;
  }
}
.page-content__withdrawals .paymentMethod-selector-item:hover {
  cursor: pointer;
}
.page-content__withdrawals .paymentMethod-selector-item--selected {
  box-shadow: none !important;
  border: 3px solid #FF7A00;
  background: #FF7A00;
  color: white;
}
.page-content__withdrawals .paymentMethod-selector-item__checkbox {
  border-radius: 50px;
}
.page-content__withdrawals .alternativelty-txt {
  color: #000000;
  font-weight: 700;
}
.page-content__withdrawals .custom-hantec-paymentMethod {
  background-color: black;
  color: #E30E18;
  border: 3px solid #E30E18;
}
.page-content__withdrawals .hantec-paymentMethod-check-container input[type=checkbox]:checked:after {
  content: "\f00c";
  font-family: FontAwesome;
  color: #E30E18;
  font-size: 1.3rem;
}
.page-content__withdrawals .hantec-paymentMethod-check-container input[type=checkbox] {
  text-align: center;
  vertical-align: middle;
  min-width: 20px !important;
  height: 20px !important;
  appearance: none;
  border-radius: 50%;
  border: 3px solid #E30E18;
}
.page-content__withdrawals .hantec-paymentMethod-check-container input[type=checkbox]:checked {
  background: white;
  border: 3px solid #E30E18;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-content__withdrawals .hantec-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-content__withdrawals .hantec-text .latin-text {
  color: white;
  font-size: 1.2rem;
}
.page-content__withdrawals .left-container {
  margin-left: 6.4rem;
}
.page-content__withdrawals .hantec-btn {
  padding: 1.4rem;
  color: white;
  background-color: #E30E18;
  margin: 0.4rem;
  border-radius: 0.4rem;
}
.page-content__withdrawals .hantec-link {
  color: #E30E18;
  font-size: 1.2rem;
}
.page-content__withdrawals .account-details {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
}
.page-content__withdrawals .account-details .detail {
  /*width: 100%;*/
  display: flex;
  flex-direction: column;
}
.page-content__withdrawals .account-details .detail > span:first-child {
  font-size: 1.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  .page-content__withdrawals .account-details {
    flex-direction: column;
  }
}
.page-content__withdrawals .filter {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-content__withdrawals .filter .card__body button {
  padding: 2px 10px;
  width: auto !important;
}
.page-content__withdrawals .card .form__group-2-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-content__withdrawals .card .form__group-2-col div {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}
.page-content__withdrawals .card .form__group-2-col div .form__group {
  flex-basis: 45%;
  box-sizing: border-box;
  padding: 10px 20px;
  margin: 10px 10px;
}
.page-content__withdrawals .card .form__group-2-col div .form__group select {
  height: auto;
}

@media (max-width: 800px) {
  .page-content__withdrawals .card .form__group-2-col div {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .page-content__withdrawals .card .form__group-2-col div .form__group {
    flex-basis: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    margin: 10px 10px;
  }
  .page-content__withdrawals .card .form__group-2-col div .form__group select {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  #profitShareTable_paginate {
    display: none;
  }
}

@media (min-width: 768px) {
  #profitShareTableMobile_paginate {
    display: none;
  }
}
.page-content__web-trader .credentials {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media only screen and (max-width: 992px) {
  .page-content__web-trader .credentials {
    flex-direction: column;
  }
}
.page-content__web-trader .credentials-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media only screen and (max-width: 1200px) {
  .page-content__web-trader .credentials-container {
    flex-direction: column;
  }
}
.page-content__web-trader .credentials-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0 1rem;
  align-items: center;
}
.page-content__web-trader .credentials-item:not(:last-child) {
  border-right: solid 1px black;
}
@media only screen and (max-width: 992px) {
  .page-content__web-trader .credentials-item:not(:last-child) {
    border-right: 0px;
  }
}

.web-trader-container {
  display: grid;
  grid-template-columns: repeat(2, max-content) 1fr;
  grid-gap: 3rem;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 75em) {
  .web-trader-container {
    grid-template-columns: 1fr;
  }
}

.web-trader__box:nth-child(3) {
  text-align: right;
}
.web-trader__box .custom-select-container {
  width: 100%;
}
.web-trader__box .credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 87.5em) {
  .web-trader__box .credentials {
    grid-template-columns: 1fr;
  }
}
.web-trader__box .credentials__item {
  padding: 0;
  border-bottom: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.web-trader__box .credentials__text {
  font-weight: 500;
  color: var(--text-grey-2);
  font-size: var(--default-font-size);
}
.web-trader__box .credentials__login,
.web-trader__box .credentials__password,
.web-trader__box .credentials__server {
  color: var(--color-primary) !important;
}
.web-trader__box .copy-credentials-btn {
  flex: 1;
  justify-content: end;
}
.web-trader__box .copy-credentials-btn__icon {
  color: var(--color-primary);
  width: 3.5rem;
  height: 3.5rem;
  background: none;
  margin-right: 0;
  margin-left: 0.5rem;
  font-size: var(--default-font-size);
}
.web-trader__title {
  font-size: var(--default-font-size);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.page-content__invoice {
  background-color: #FAFAFA;
  display: flex;
  justify-content: center;
}
.page-content__invoice .invoice {
  max-width: 750px;
  height: 1000px;
  max-height: 1000px;
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-self: center;
  justify-self: center;
  border-radius: 1rem;
  padding: 5rem;
  justify-content: space-between;
  position: relative;
}
.page-content__invoice .invoice__header div {
  /*margin: 1rem 0 !important;*/
}
.page-content__invoice .invoice .address-items__container {
  display: flex;
  flex-direction: row;
}
.page-content__invoice .invoice .address-items__container .address__item {
  width: 50%;
}
.page-content__invoice .invoice .address-items__container .address__item div {
  padding: 0.25rem 0 !important;
}
.page-content__invoice .invoice .address-items__container .address__item:nth-of-type(2) {
  margin-left: 32rem;
}
.page-content__invoice .invoice .address-items__container .address__item:nth-of-type(2) div {
  margin-left: 4.5rem;
}
.page-content__invoice .invoice .payment-type {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
}
.page-content__invoice .invoice .payment-type div:last-child {
  margin-left: 1rem;
}
.page-content__invoice .invoice .line-items__table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  padding: 0.5rem 1rem;
  margin-top: 3rem;
}
.page-content__invoice .invoice .line-items__table thead {
  /*border-bottom: 1px solid $border-light;*/
  font-size: 14px;
  color: #98A5B2;
  margin-bottom: 1rem;
}
.page-content__invoice .invoice .line-items__table tbody td {
  padding: 1rem 0;
  font-weight: bold;
}
.page-content__invoice .invoice .line-items__table tbody tr {
  /*border-bottom: 1px solid $border-light;*/
}
.page-content__invoice .invoice .line-total {
  margin-top: 1rem;
}
.page-content__invoice .invoice .line-total table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
}
.page-content__invoice .invoice .footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  /*			position: fixed;
  bottom: 10px;*/
}
.page-content__invoice .invoice a {
  max-width: 30rem;
  display: flex;
  justify-content: center;
  align-self: center;
}
.page-content__invoice .invoice a .invoice-logo {
  max-width: 30rem;
  position: absolute;
  margin-top: 7rem;
}

.page-content__certificates .no-certificates {
  padding: 4rem;
  border-radius: 1rem;
  background: rgba(0, 164, 221, 0.1);
  width: 100%;
  border: 1px solid #00A4DD;
  gap: 4rem;
}
.page-content__certificates .certificate {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.page-content__certificates .certificate a {
  color: #FF7A00;
}
.page-content__certificates .certificate__content img {
  width: 584.75px;
  height: 413.5px;
}
@media only screen and (max-width: 992px) {
  .page-content__certificates .certificate__content img {
    width: 389px;
    height: 275.66px;
  }
}
.page-content__certificates .certificate-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  flex: 1;
  align-items: center;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 112.5em) {
  .page-content__certificates .certificate-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 75em) {
  .page-content__certificates .certificate-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 62em) {
  .page-content__certificates .certificate-list {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
}
.page-content__certificates .certificate-card img {
  height: 512px;
  /*  @if $breakpoint == phone-small {
     @media only screen and (max-width: 25.714em) {
       @content;
     } //360px
   }*/
}
@media only screen and (max-width: 87.5em) {
  .page-content__certificates .certificate-card img {
    height: 384px;
  }
}

.competitions-page .popup__body {
  max-height: 50rem;
  overflow-y: auto;
}
@media (max-width: 640px) {
  .competitions-page .modal-dialog {
    width: 90%;
  }
}
.competitions-page .competition-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  border: 3px solid;
  border-radius: 1rem;
  background-color: transparent;
  color: white;
}
.competitions-page .competition-card--upcoming {
  border-color: #FFBE08;
}
.competitions-page .competition-card--upcoming .competition-card__status {
  color: #FFBE08;
}
.competitions-page .competition-card--upcoming .fa-trophy-star {
  color: #FFBE08;
}
.competitions-page .competition-card--in-progress {
  border-color: #FF7A00;
}
.competitions-page .competition-card--in-progress .competition-card__status {
  color: #FF7A00;
}
.competitions-page .competition-card--in-progress .fa-trophy-star {
  color: #FF7A00;
}
.competitions-page .competition-card--finished {
  border-color: #8e90ad;
}
.competitions-page .competition-card--finished .competition-card__status {
  color: #8e90ad;
}
.competitions-page .competition-card--finished .fa-trophy-star {
  color: #8e90ad;
}
.competitions-page .competition-card__header {
  font-size: 3rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
  word-wrap: break-word; /* Forces long words to wrap */
  word-break: break-word; /* Breaks words at boundaries */
  white-space: normal; /* Allows wrapping */
}
@media only screen and (max-width: 768px) {
  .competitions-page .competition-card__header {
    line-height: 1.4 !important;
  }
}
@media only screen and (max-width: 600px) {
  .competitions-page .competition-card__header {
    flex-direction: column-reverse;
  }
}
.competitions-page .competition-card__status {
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1.6rem !important;
  height: min-content;
  width: max-content;
}
@media only screen and (max-width: 600px) {
  .competitions-page .competition-card__status {
    padding: 0rem;
  }
}
.light-theme .competitions-page .competition-card__status {
  background-color: #efefef;
}
.dark-theme .competitions-page .competition-card__status {
  background-color: #282E39;
}
.competitions-page .competition-card__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: -webkit-fill-available;
}
.competitions-page .competition-card__body > div {
  margin-top: 1rem;
}
.competitions-page .competition-card__buttons {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .competitions-page .competition-card__buttons {
    flex-direction: column;
    margin-top: 2rem;
    padding-top: 0;
    gap: 1rem;
    line-height: 1.2 !important;
  }
  .competitions-page .competition-card__buttons .btn {
    min-width: 15rem;
  }
}
.competitions-page .competition-card__buttons .btn {
  min-width: 10rem;
  width: auto;
}
.competitions-page .competition-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  grid-auto-rows: 1fr !important;
  grid-auto-columns: 1fr !important;
}
@media only screen and (max-width: 1600px) {
  .competitions-page .competition-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1200px) {
  .competitions-page .competition-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .competitions-page .competition-cards {
    display: flex;
    flex-direction: column;
  }
}

.market-analysis-banner {
  color: white;
  padding: 2rem;
  margin-top: 2rem;
  font-size: 2.4rem;
  background-color: #FF7A00;
}
@media only screen and (max-width: 768px) {
  .market-analysis-banner {
    font-size: 1.6rem;
  }
}
.market-analysis-banner__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  width: fit-content;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

#contractPreviewModal .modal-content {
  height: 80rem;
}
@media (min-width: 768px) and (max-width: 1280px) {
  #contractPreviewModal .modal-content {
    height: 64rem;
  }
}
@media (max-width: 768px) {
  #contractPreviewModal .modal-content {
    height: 52rem;
  }
}
#contractPreviewModal .modal-content .card {
  overflow-y: auto;
}

.overlay-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 25rem;
  z-index: 99;
  backdrop-filter: blur(0.6rem);
  background-color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

.check-container {
  margin: 2rem;
  display: flex;
  align-items: center;
}
.check-container .check-label {
  margin-left: 1rem;
}

.apexcharts-tooltip {
  color: black;
}

.text-danger {
  color: red;
}

.divider--horizontal {
  width: 100%;
  border-bottom: 1px solid;
  margin: 4rem 0;
  border-color: white;
}
.divider--gray {
  border-color: #DBDBDB;
}

.notifications-badge {
  border-radius: 2rem;
  background-color: red;
  height: 2rem;
  width: auto;
  color: white;
  border: 3px solid;
  padding: 1rem;
  position: absolute;
  right: 70px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: -40px;
}
.notifications-badge.active {
  position: relative;
}
.notifications-badge.active::before {
  content: "";
  width: 9px;
}

.hidden {
  display: none;
}

.fa:visited {
  text-decoration: none;
}

.divider--horizontal {
  width: auto;
  border-bottom: 1px solid;
  margin: 2rem 5rem;
}
@media only screen and (max-width: 768px) {
  .divider--horizontal {
    margin: 1rem 1rem;
  }
}
.divider--gray {
  border-color: #DBDBDB;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid black;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: none;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin: 2rem;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#PreferredLanguage {
  font-size: 1.4rem;
  font-family: inherit;
  padding: 1rem 1rem;
  border: 2px solid #DDD;
  width: 100%;
  display: block;
}

.time-units-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .time-units-container {
    font-size: 1.4rem;
  }
}

.select2-container--default .select2-selection--single {
  font-size: 1.4rem;
  padding-bottom: 3.2rem;
  padding-top: 0.6rem;
  border: 1px solid #999999 !important;
  border-radius: 4px;
}

.select2-selection__arrow {
  padding-top: 4rem;
}

.select-2-container {
  display: flex;
  flex-direction: column;
  margin-top: 1.4rem;
}

.error-message-container {
  display: flex;
  align-items: center;
  background: #E30E18;
  color: white;
  padding: 10px;
  border: 1px solid #E30E18;
  border-radius: 5px;
  margin: 10px 0;
  width: 100%;
}

.error-message-icon {
  margin-right: 10px;
}

.color-primary {
  color: #FF7A00;
}

.desktop-view {
  display: inline-table;
}
@media only screen and (max-width: 768px) {
  .desktop-view {
    display: none;
  }
}

.mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  .mobile-view {
    display: inline-table;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-view .mobile-view-table thead {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-view .mobile-view-table tr td {
    background-color: black;
  }
}
.mobile-view .mobile-view-table tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .mobile-view .mobile-view-table tr td .table-row {
    font-size: 1.2rem;
  }
}
.mobile-view .mobile-view-table tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
.mobile-view .mobile-view-table tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.mobile-view .mobile-view-table tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
.mobile-view .mobile-view-table tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
.mobile-view .mobile-view-table tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .mobile-view-table thead {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-view-table tr td {
    background-color: black;
  }
}
.mobile-view-table tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .mobile-view-table tr td .table-row {
    font-size: 1.2rem;
  }
}
.mobile-view-table tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
.mobile-view-table tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.mobile-view-table tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
.mobile-view-table tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
.mobile-view-table tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

#contractTable .desktop-view {
  display: table-row-group;
}
@media only screen and (max-width: 768px) {
  #contractTable .desktop-view {
    display: none;
  }
}
#contractTable .mobile-view {
  display: none;
}
@media only screen and (max-width: 768px) {
  #contractTable .mobile-view {
    display: table-row-group;
  }
}
@media only screen and (max-width: 768px) {
  #contractTable .mobile-view tr td {
    background-color: black;
  }
}
#contractTable .mobile-view tr td .table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #121212;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #contractTable .mobile-view tr td .table-row {
    font-size: 1.2rem;
  }
}
#contractTable .mobile-view tr td .table-row .table-row-header-icon {
  margin-right: 0.2rem;
}
#contractTable .mobile-view tr td .table-row .table-row-subheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#contractTable .mobile-view tr td .table-row .table-row-subheader .table-row-status {
  display: flex;
  align-items: center;
}
#contractTable .mobile-view tr td .table-row .table-row-details {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #121212;
  display: none;
  flex-direction: column;
}
#contractTable .mobile-view tr td .table-row .table-row-details .table-row-details-item {
  display: flex;
  justify-content: space-between;
}

input:disabled {
  color: white !important;
}

@media only screen and (max-width: 768px) {
  .action-btn-mobile {
    padding: 0.2rem 0.4rem;
    font-size: 1.2rem;
  }
}

.global-banner {
  display: none;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 1.2rem;
  background-color: #FF7A00;
  color: white;
  font-size: 1.8rem;
  width: 100% !important;
}
@media only screen and (max-width: 600px) {
  .global-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.2rem;
    width: 360px;
    height: 111px;
  }
}
@media only screen and (max-width: 600px) {
  .global-banner .text-close-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100%;
    padding: 0rem 2.8rem;
  }
}
.global-banner #bannerCloseIcon-mobile {
  display: none;
}
@media only screen and (max-width: 600px) {
  .global-banner #bannerCloseIcon-mobile {
    display: block;
    margin: -2rem -2.5rem 0rem 0.5rem;
    font-size: 18px;
    font-weight: 300;
  }
}
@media only screen and (max-width: 600px) {
  .global-banner #bannerCloseIcon-desktop {
    display: none;
  }
}
.global-banner .dc-group {
  display: flex;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-texts-container {
    text-align: center;
  }
}
.global-banner .banner-texts-container .banner-text {
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-texts-container .banner-text {
    font-family: Poppins;
    font-size: 14px;
    padding: 1rem 1.2rem 0rem 2rem;
    margin: -0.5rem 0.5rem 0rem 0.5rem;
  }
}
.global-banner .banner-texts-container .banner-subtext {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-texts-container .banner-subtext {
    font-size: 10px;
    margin-bottom: 0.8rem;
  }
}
.global-banner .banner-right-container {
  display: flex;
  gap: 12rem;
}
.global-banner .banner-right-container .contcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.global-banner .banner-right-container .contcontainer .btncont {
  padding: 0.8rem 0.4rem 0.4rem 0.4rem;
  display: flex;
  justify-content: center;
  gap: 2.8rem;
}
.global-banner .banner-right-container .contcontainer .btncont .cbtn {
  cursor: pointer;
  height: 1rem;
  width: 1rem;
  background-color: white;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-right-container .contcontainer .btncont .cbtn {
    height: 0.8rem;
    width: 0.8rem;
  }
}
.global-banner .banner-right-container .contcontainer .btncont .cbtn-active {
  background-color: red;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-right-container .contcontainer .btncont {
    padding: 0rem;
  }
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-right-container .contcontainer {
    margin-bottom: 0.6rem;
  }
}
@media only screen and (max-width: 1200px) {
  .global-banner .banner-right-container {
    gap: 0rem;
  }
}
.global-banner .invisible {
  display: none;
}
.global-banner .block {
  display: block;
}
.global-banner .banner-codes-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.global-banner .banner-codes-container .banner-code-left {
  padding: 0.8rem 1.2rem 1.2rem 2rem;
  background-color: black;
  margin: -0.5rem 0.5rem 0rem 0.5rem;
  height: 60px;
  width: 250px;
  top: 5px;
  left: 668px;
}
@media only screen and (max-width: 1200px) {
  .global-banner .banner-codes-container .banner-code-left {
    height: 76px;
    max-width: 240px;
  }
}
@media only screen and (max-width: 992px) {
  .global-banner .banner-codes-container .banner-code-left {
    margin: 0rem 1rem;
    padding: 0.4rem 0.8rem;
    height: 48px;
    width: 164px;
  }
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-codes-container .banner-code-left {
    width: 173px;
    height: 42px;
    top: 59px;
    left: 5px;
    padding: 0.4rem 0.6rem 0.6rem 1rem;
    margin: -0.25rem 0.25rem 0.75rem 0.25rem;
  }
}
@media only screen and (max-width: 350px) {
  .global-banner .banner-codes-container .banner-code-left {
    width: 148px;
  }
}
.global-banner .banner-codes-container .banner-code-left .code-name {
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (max-width: 992px) {
  .global-banner .banner-codes-container .banner-code-left .code-name {
    font-size: 1rem;
  }
}
.global-banner .banner-codes-container .banner-code-left .code-name .code-label {
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0rem;
  vertical-align: middle;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-codes-container .banner-code-left .code-name .code-label {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    margin: 0.5rem;
  }
}
.global-banner .banner-codes-container .banner-code-left .code-name .code-text {
  color: #FF7A00;
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0rem;
  vertical-align: middle;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-codes-container .banner-code-left .code-name .code-text {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    margin: 0.5rem;
    margin-left: -0.3rem;
  }
}
.global-banner .banner-codes-container .banner-code-left .code-description {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0rem;
}
@media only screen and (max-width: 992px) {
  .global-banner .banner-codes-container .banner-code-left .code-description {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-codes-container .banner-code-left .code-description {
    font-family: Poppins;
    font-weight: 400;
    font-size: 10px;
    margin: 0.25rem 0.5rem 0.5rem 0.5rem;
  }
}
.global-banner .banner-codes-container .banner-code-right {
  padding: 0.8rem 1.2rem 1.2rem 2rem;
  background-color: black;
  margin: -0.5rem 0.5rem 0rem 0.5rem;
  height: 60px;
  width: 250px;
  top: 5px;
  left: 668px;
}
@media only screen and (max-width: 1200px) {
  .global-banner .banner-codes-container .banner-code-right {
    height: 76px;
    max-width: 240px;
  }
}
@media only screen and (max-width: 992px) {
  .global-banner .banner-codes-container .banner-code-right {
    margin: 0rem 1rem;
    padding: 0.4rem 0.8rem;
    height: 48px;
    width: 164px;
  }
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-codes-container .banner-code-right {
    width: 173px;
    height: 42px;
    top: 59px;
    left: 182px;
    padding: 0.4rem 0.6rem 0.6rem 1rem;
    margin: -0.25rem 0.25rem 0rem 0.25rem;
  }
}
@media only screen and (max-width: 350px) {
  .global-banner .banner-codes-container .banner-code-right {
    width: 148px;
  }
}
.global-banner .banner-codes-container .banner-code-right .code-name {
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (max-width: 992px) {
  .global-banner .banner-codes-container .banner-code-right .code-name {
    font-size: 1rem;
  }
}
.global-banner .banner-codes-container .banner-code-right .code-name .code-label {
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0rem;
  vertical-align: middle;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-codes-container .banner-code-right .code-name .code-label {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    margin: 0.5rem;
  }
}
.global-banner .banner-codes-container .banner-code-right .code-name .code-text {
  color: #FF7A00;
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0rem;
  vertical-align: middle;
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-codes-container .banner-code-right .code-name .code-text {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    margin: 0.5rem;
    margin-left: -0.3rem;
  }
}
.global-banner .banner-codes-container .banner-code-right .code-description {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0rem;
}
@media only screen and (max-width: 992px) {
  .global-banner .banner-codes-container .banner-code-right .code-description {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .global-banner .banner-codes-container .banner-code-right .code-description {
    font-family: Poppins;
    font-weight: 400;
    font-size: 10px;
    margin: 0.25rem 0.5rem 0.5rem 0.5rem;
  }
}
.global-banner .banner-icon {
  font-size: 3rem;
  margin: 1.2rem;
  margin-top: -0.4rem;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .global-banner .banner-icon {
    font-size: 3.2rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.header-logo-container {
  font-size: 14px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo-container img {
  width: 16px;
  margin-left: 2px;
  margin-right: 2px;
}
@media only screen and (max-width: 1200px) {
  .header-logo-container .text, .header-logo-container .text-xxl, .header-logo-container .text-xl, .header-logo-container .text-lg, .header-logo-container .text-md, .header-logo-container .text-sm {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .header-logo-container .text, .header-logo-container .text-xxl, .header-logo-container .text-xl, .header-logo-container .text-lg, .header-logo-container .text-md, .header-logo-container .text-sm {
    font-size: 6px;
  }
}
