*,
*::after,
*::before {
  box-sizing: border-box;
}

/**/
/**/
/*---- COLOUR PALETTE ----*/
:root {
  --color-primary: #0c7ea3;
  --color-primary-dark: #084d75;
  --color-primary-accent: #2296b0;
  --color-primary-light: #afdce6;
  --color-secondary: #6cb3db;
  --color-secondary-dark: #44a3d1;
  --color-secondary-accent: #3dc1e4;
  --color-secondary-light: #d5ecfb;
  --color-black: #000000;
  --color-grey-dark: #403f3f;
  --color-grey: #a8a8a8;
  --color-grey-light: #d8d8d8;
  --box-shadow: 0px 8px 16px 0px rgba(26, 26, 26, 0.2);
  --box-shadow-hover: 0px 10px 18px 0px rgba(12, 12, 12, 0.4);
  --color-accent: #e9901b;
  --color-accent-light: #ffc56f;
  --color-accent-dark: #d86728;
  --color-body: rgb(49, 48, 48);
  --color-red: #d52727 rgb(208, 208, 208);
}

/**/
/**/
/*---- TYPOGRAPH ----*/
html {
  /* 62.5% of 16px = 10px*/
  /*font-size: 62.5%; make 52.5 for php*/
  font-size: 62.5%;
  /* font-size: 75%; */
}
@media screen and (max-width: 1280px) and (min-width: 1000px) {
  html {
    font-size: 70%;
  }
}

body {
  font-family: "Poppins", "Inter", Arial, Helvetica, sans-serif;
  color: var(--color-body);
  margin: 5rem;
  position: relative;
  overflow: hidden;
}

h1,
h2,
h3 {
  color: var(--color-primary-dark);
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

/*accent header*/

h5 {
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.1rem;
  line-height: 20px;
}

/*thin header*/

h6 {
  font-size: 1.5rem;
  font-weight: 400;
}

p {
  font-size: 1.2rem;
}

a {
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--color-primary-dark);
  font-weight: 400;
}

a:hover {
  color: var(--color-primary);
}

a::after {
  content: " >";
}

a:hover::after {
  content: " ->";
}

.txt--white {
  color: #fff;
}

.txt--ligt {
  color: var(--color-secondary-light);
}

.txt--sub {
  color: var(--color-grey);
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
}

.txt--warning {
  color: var(--color-accent-dark);

  font-size: 1.3rem;
}

.txt--green {
  color: green;
}

.txt--no-pad {
  padding: 0;
  margin: 0;
  line-height: 2.1rem;
}

.txt--center {
  text-align: center;
}

@media screen and (max-width: 812px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  body {
    margin: 7.5rem 3rem 5rem 3rem;
  }
}

/**/
/**/
/*---- RESPONSIVENESS ----*/
.grid {
  display: grid;
}

.grid--cx1 {
  grid-template-columns: auto;
  grid-template-rows: auto 1fr;
}

.grid--cx2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.grid--cx3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid--cx12 {
  grid-template-columns: auto 1fr;
}

.grid--cx21 {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
}

.grid--home {
  position: absolute;
  height: 100vh;
  width: 95vw;
  top: -5rem;
  right: 0;
  left: 1.2vw;
  overflow: hidden;
}

.gr--1 {
  grid-row-start: 1;
  grid-row-end: 2;
  display: inline-block;
}

.gr--2 {
  padding-left: 2.5rem;
}

.gr--gap {
  column-gap: 5rem;
  row-gap: 5rem;
}

.center {
  width: 80%;
  margin: 2rem auto;
  display: block;
}

.center-sm {
  width: 22vw;
  margin: 2rem auto;
  display: block;
}

.center-xs {
  width: 50%;
  margin: 1rem;
  display: block;
}

.stretch {
  width: 100%;
}

.wide {
  width: 80%;
}

.push {
  padding-left: 5rem;
}

.pull {
  padding-right: 5rem;
}

.mob--hide {
  display: inline-block;
}

.mob--show {
  visibility: hidden;
}

.scroll {
  overflow-y: scroll;
}

.scroll--side {
  overflow-x: scroll;
}

.border--right {
  border-right: 4px solid var(--color-grey);
  border-radius: 5px;
  padding-right: 3rem;
  padding-left: 2rem;
}

.border--light {
  border: 2px solid var(--color-grey-light);
  border-radius: 5px;
  padding: 0.5rem 2rem;
}

.display-box {
  border-top: 0.2rem solid var(--color-secondary-light);
  border-bottom: 0.2rem solid var(--color-secondary-light);
  border-radius: 15px;
  height: auto;
  max-height: 50vh;
  overflow-y: scroll;
  width: 90%;
  margin: auto;
}

.display-box::-webkit-scrollbar {
  display: none;
}

.display-box {
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

@media screen and (max-width: 1086px) {
  .grid {
    grid-template-rows: auto auto;
  }
  .grid--home {
    width: 100vw;
    top: 0;
    left: 0;
  }
  .grid--cx2 {
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  .center-sm {
    width: 25vw;
  }
  .display-box {
    height: 60vw;
  }
}

@media screen and (max-width: 810px) {
  .grid {
    grid-template-rows: auto;
  }
  .wide {
    width: 100%;
  }
  .grid--cx12 {
    grid-template-columns: auto;
  }
  .mob--hide {
    display: none;
  }
  .mob--show {
    visibility: visible;
  }
  .push {
    padding-left: 0;
  }
}

/**/
/**/
/*----BACKGROUNDS----*/
.bg--login {
  background-color: #193c6d;
  filter: progid: DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#003073', endColorstr='#029797');
  background-image: url(//img.alicdn.com/tps/TB1d.u8MXXXXXXuXFXXXXXXXXXX-1900-790.jpg);
  background-size: 100%;
  background-image: -webkit-gradient(
    linear,
    0 0,
    100% 100%,
    color-stop(0, #003073),
    color-stop(100%, #029797)
  );
  background-image: -webkit-linear-gradient(135deg, #003073, #029797);
  background-image: -moz-linear-gradient(45deg, #003073, #029797);
  background-image: -ms-linear-gradient(45deg, #003073 0, #029797 100%);
  background-image: -o-linear-gradient(45deg, #003073, #029797);
  background-image: linear-gradient(135deg, #003073, #029797);
  text-align: center;
  margin: 0px;
  overflow: hidden;
}

.bg--push {
  margin-left: 4vw;
  overflow-x: hidden;
}

.bg--dark {
  background-color: var(--color-primary-dark);
}

@media screen and (max-width: 1024px) {
  .bg--push {
    margin-left: 0;
  }
}

/**/
/**/
/*---- BUTTONS ----*/
.btn {
  padding: 1rem;
  margin: 1rem 1rem 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  border-radius: 5px;
}

.btn:hover {
  cursor: pointer;
}

.fab {
  color: var(--color-primary-light);
}

.btn--invis {
  background-color: transparent;
  color: var(--color-primary-light);
  border: none;
}

.btn--light {
  background-color: var(--color-primary-light);
  border: 1px solid var(--color-primary-light);
  color: #fff;
}

.btn--light:hover {
  color: var(--color-primary-light);
  background-color: #fff;
}

.btn--primary {
  background-color: var(--color-primary-accent);
  border: 1px solid var(--color-primary-accent);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--color-primary);
}

.btn--notice {
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: #fff;
}

.btn--notice:hover {
  background-color: var(--color-accent-dark);
}

.btn--stretch {
  width: 40vw;
  max-width: fit-content;
}

.btn--outline {
  background-color: var(--color-secondary-dark);
  border: 1px solid var(--color-secondary-dark);
  color: #fff;
}

.btn--outline:hover {
  color: var(--color-secondary-dark);
  background-color: #fff;
}

.btn--pay {
  background-color: var(--color-primary-accent);
  border: 1px solid var(--color-primary-accent);
  color: #fff;
}

.btn--pay:hover,
.btn--pay:hover .txt--sub {
  background-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}

.btn--pay:hover::after {
  color: #fff;
  content: "PAY NOW";
}

.btn--grey,
.btn--grey-light {
  border: none;
  cursor: not-allowed;
}

.btn--grey {
  background-color: var(--color-grey);
  color: #fff;
}

.btn--grey-light {
  background-color: var(--color-grey-light);
  color: #fff;
}

.btn--grey:hover,
.btn--grey-light:hover {
  cursor: not-allowed;
}

@media screen and (max-width: 1024px) {
  .btn {
    font-size: 1.8rem;
  }
}

/**/
/**/
/*---- CARDS ----*/
.card {
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  padding: 2rem 4rem;
}

.active:hover {
  box-shadow: var(--box-shadow-hover);
  background-color: #fff;
}

.card a {
  color: #000000;
}

.card a:hover {
  color: #000000;
  text-decoration: none;
}

.card a::after {
  content: "";
}

.card--site {
  display: inline-block;
  width: 22vw;
  height: 16vh;
  margin: 1vw 0.5rem 7rem 0.3rem;
}

.card--site h5 {
  height: 5vh;
}

.active {
  background-color: var(--color-secondary-light);
  cursor: pointer;
}

.inactive {
  background-color: var(--color-grey-light);
  cursor: none;
}

.inactive a {
  cursor: none;
}

.card--block {
  text-align: center;
  background-color: var(--color-primary-accent);
  color: var(--color-secondary-light);
  font-size: 1.8rem;
  margin: 3vh 0;
  display: block;
  white-space: nowrap;
}

.inactive .card--block {
  cursor: none;
}

.active:hover .card--block {
  background-color: var(--color-primary-dark);
}

@media screen and (max-width: 1240px) {
  .card--site {
    width: 40vw;
    height: 20vh;
    margin: 4vh 3.2vw;
  }
  .card--site h5 {
    height: 5vh;
  }
}

@media screen and (max-width: 812px) {
  .card {
    padding: 2rem;
  }
  .card--site h5 {
    height: 7vh;
    margin: 0.2rem;
  }
  .card--site {
    width: 80vw;
    height: 17vh;
    margin: 5vh 10vw;
  }
}

@media screen and (max-width: 568px) {
  .card--block {
    font-size: 1.8rem;
    margin: 2vh 0;
  }
  .card--site {
    height: 25vh;
  }
}

/**/
/**/
/*---- FORMS ----*/
/* Chrome, Safari, Edge, Opera */
nput::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

textarea:focus,
input:focus {
  outline: none;
}

.width--auto

form {
  padding: 1rem;
}

form input,
form textarea,
form select {
  padding: 0.8rem;
  margin: 0.8rem 0;
  outline: 0;
  border: 2px solid var(--color-primary-light);
  border-radius: 5px;
}

form::placeholder {
  color: var(--color-grey-light);
  font-size: 0.8;
}

form label {
  font-size: 1.8rem;
}

.table_input,
.user--page table input {
  padding: 0.8rem;
  margin: 0.8rem 0;
  outline: 0;
  border: 2px solid var(--color-primary-light);
  border-radius: 5px;
  width: 12vw;
}

/*login form*/
.form--login {
  position: absolute;
  left: 50%; /* relative to nearest positioned ancestor or body element */
  top: 50%; /*  relative to nearest positioned ancestor or body element */
  transform: translate(-50%, -50%); /* relative to element's height & width */
  background-color: #fff;
  border-radius: 5px;
  text-align: left;
  font-size: 1.8rem;
  padding: 2rem;
}

.form--login input {
  font-size: 1.8rem;
}

/*reset password form*/
.form--reset {
  background-color: #fff;
  border-radius: 5px;
  margin: 10rem 30vw;
  padding: 1rem 3rem;
}

.reset_code {
  font-size: 4rem;
}

.form--border {
  border: 3px solid var(--color-primary-light);
  border-radius: 5px;
  padding: 1rem;
}

.form--narrow {
  width: 70%;
  margin: auto;
  display: block;
  padding: 0.5rem;
}

.form--narrow > table > tbody > tr > td:first-of-type {
  width: 30%;
}

/*Search Bar*/
.search {
  font-size: 2.5rem;
}

.search--head {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  color: var(--color-secondary);
}

/*Checkboxes*/
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -5px;
  left: 0;
  height: 2.2rem;
  width: 2.2rem;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: var(--color-secondary-light);
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: var(--color-primary-accent);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1555px) {
  .form--narrow {
    width: 90%;
  }
}
/*End Checkbox Style*/
@media screen and (max-width: 1024px) {
  form input,
  form textarea,
  form select {
    font-size: 2.2rem;
  }
  .form--reset {
    margin: 2rem 8vw;
  }
}

@media screen and (max-width: 812px) {
  .form--reset {
    margin: 2rem 0;
  }
}

/**/
/**/
/*---- TABLES ----*/
table {
  font-size: 1.8rem;
  border: 2px solid var(--color-primary-light);
  width: 80%;
  border-radius: 5px;
}

.table--wide {
  width: 100%;
}

.table--plain {
  border: none;
  width: 100%;
}

.table--lines td {
  font-size: 80%;
}

.table--lines td {
  border-bottom: 1px solid var(--color-grey-light);
  border-right: 1px solid var(--color-grey-light);
  padding-left: 1rem;
}

.table--lines tr:last-child td {
  border-bottom: none;
}

.table--lines td:last-child,
.table--lines th:last-child {
  border-right: none;
}

.table--lines th {
  border-right: 1px solid var(--color-grey-light);
}

th {
  text-align: left;
  border-bottom: 1px solid var(--color-primary);
}

tr:not(:last-child) {
  border-bottom: 1px solid var(--color-primary-light);
}

/**/
/**/
/*---- NAVIGATION ----*/
nav {
  width: 15vw;
  height: 100vh;
  background-color: var(--color-black);
  color: #fff;
  overflow: hidden;
  z-index: 2;
  position: fixed;
  left: -10.5vw; /* relative to nearest positioned ancestor or body element */
  top: 0; /*  relative to nearest positioned ancestor or body element */
  transition: 0.3s;
  padding: 8rem 6rem 6rem 0rem;
}

nav:hover {
  transform: translate(10vw, 0%);
  padding: 8rem 3rem 3rem 3rem;
}

nav::after {
  content: "<";
  color: #fff;
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  font-size: 3rem;
  transition: 0.3s;
}

nav:hover::after {
  content: ">";
}

nav img {
  width: 4.5rem;
  height: auto;
  position: absolute;
  right: 1rem;
  transition: all 0.2s ease-in-out;
}

nav:hover img {
  left: 3rem;
}

nav hr {
  height: 1px;
  background-color: var(--color-primary-accent);
  border: none;
}

.nav--links {
  padding: .5rem 0 .5rem 0;
  font-size: 50%;
  line-height: 1.8rem;
}
.nav--links ul {
  padding: 0 0.5rem;
}

.nav--links li {
  padding: 0.2rem 0;
  line-height: 1.4rem;
}

.nav--links a {
  list-style: none;
  color: var(--color-primary-light);
  font-size: 1.4rem;
}

.nav--links a::after {
  content: "";
}

.nav--links a:hover {
  color: var(--color-primary-accent);
}

.nav--footer {
  position: absolute;
  bottom: 15rem;
  left: 5rem;
  width: 7vw;
}
.nav--footer img {
  width: 100%;
  height: auto;
  float: left;
  margin-left: -2rem;
  padding: 0;
}

.nav--footer a::after {
  content: "";
}

@media screen and (max-width: 1025px) {
  nav {
    left: -13vw; /* relative to nearest positioned ancestor or body element */
    width: 20vw;
  }

  .nav--links li {
    padding: 1rem 0;
  }
}

/**/
/**/
/*---- MOBILE NAVIGATION ----*/
.mob-nav {
  width: 100vw;
  height: 10vh;
  background-color: var(--color-black);
  color: #fff;
  overflow: hidden;
  display: block;
  z-index: 2;
  display: inline-block;
  position: fixed;
  left: 0; /* relative to nearest positioned ancestor or body element */
  bottom: 0; /*  relative to nearest positioned ancestor or body element */
  top: 85vh;
  transition: 0.3s;
}
/*  relative to nearest positioned ancestor or body element */
/* .bg--push .mob-nav {
  top: -60%; 
} */
/*  relative to nearest positioned ancestor or body element */
/* .bg--push .two .mob-nav {
  top: -50%; 
} */
/* .mob-nav:hover {
  transform: translate(0, 80%);
} */
/* .mob-nav::after {
  content: "<";
  color: #fff;
  position: absolute;
  bottom: 1rem;
  right: 2.5rem;
  font-size: 3rem;
  transition: 0.3s;
  transform: rotate(90deg);
} */
/* .mob-nav:hover::after {
  content: ">";
  transform: rotate(90deg);
} */
.mob-nav img {
  width: 15vw;
  height: auto;
  position: absolute;
  left: 2.5rem;
  top: 1.5rem;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 812px) {
  .nav--links {
    padding: 0rem 0;
  }
  .nav--links ul {
    padding: 0 1rem;
  }
  .nav--links li {
    padding: 0.8rem 0;
  }
}

@media screen and (max-width: 320px) {
}

/**/
/**/
/*---- USER ADMIN ----*/
.user--list {
  width: 20vw;
  background-color: var(--color-grey-light);
  border-radius: 5px;
  margin: 0.5rem 1rem;
  padding: 1.2rem 3rem;
  text-align: left;
  border: 0;
  display: block;
}

.user--list:hover {
  cursor: pointer;
  background-color: var(--color-grey);
}

.user--list:hover > .txt--sub {
  color: var(--color-grey-light);
}

.user--list-bg {
  border-right: 2px solid var(--color-primary);
  padding-left: 1.5rem;
  padding-top: 2rem;
}

.user--list a > p,
.user--list h5 {
  margin: 0;
  letter-spacing: 0.02rem;
}
.user--list h4 {
  padding: 0;
  margin: 0;
}

.user--page {
  padding: 3rem 5rem;
}

.user--page-mob {
  padding: 10;
}

.user--page h5 {
  margin: 1rem 0 1rem 0;
}

.user--page label {
  margin-right: 2.5rem;
}

.user--page input,
.user--page textarea {
  width: 30vw;
}

.user--page .fit {
  width: fit-content;
  min-width: 25vw;
}

.user--page select {
  font-size: 1.5rem;
}

@media screen and (max-width: 1025px) {
  .user--list {
    width: 25vw;
  }
}

/**/
/**/
/*---- USER PROFILE ----*/
.table--user {
  border: none;
  width: 80%;
  /* display: inline; */
}

.user {
  display: block;
  padding-left: 10vw;
}

.user h4,
.user h5,
.user h3 {
  margin: 1rem 0;
  display: inline;
}

.user h4 {
  padding-left: 1rem;
}

.user form {
  border: 3px solid var(--color-secondary-light);
  border-radius: 5px;
  margin: 8rem 0;
  display: block;
  width: 40vw;
  padding: 3rem 5rem;
}

@media screen and (max-width: 1086px) {
  .user form {
    width: 80vw;
  }
}

@media screen and (max-width: 812px) {
  .user {
    padding-left: 2rem;
  }
  .user form {
    padding: 2rem;
    width: 85vw;
    margin: 2rem 0;
  }
  .user input::placeholder {
    font-size: 1.5rem;
  }
}

/**/
/**/
/*---- Subscription ----*/
.total {
  text-decoration: underline;
  margin: 2.37rem 0 1rem 1rem;
}

.accordion {
  cursor: pointer;
  padding: 0.2rem 1.8rem;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 5px;
  margin: 0;
}
.accordion:after {
  content: "\002B";
  color: #777;
  font-weight: bold;
  float: right;
  margin: 5px auto ;
  display: inline;
}

.accordion .acc--grey {
  content: "";
}

.acc--head {
  color: var(--color-grey);
  border-bottom: 5px solid var(--color-grey-light);
  padding: 1.5rem 1rem;
  width: 100%;
}

.acc--head--active,
.acc--head:hover {
  background-color: #efefef;
  border-bottom: 5px solid var(--color-primary-accent);
  color: var(--color-primary-accent);
}

.acc--plain {
  width: 70%;
  padding: 0.5rem;
}

.acc--plain--active,
.acc--plain:hover {
  border-top: 3px solid var(--color-primary-accent);
  color: var(--color-primary-accent);
}

.acc--plain--active:after {
  content: "\2212";
}

.acc--grey {
  width: 100%;
  background-color: var(--color-grey-light);
  color: var(--color-grey-dark);
  height: 40px;
}

.acc--grey--active,
.acc--grey:hover {
  background-color: var(--color-primary-light);
}

.acc--grey p {
  margin: 0;
}

.acc--grey table {
  float: left;
}

.acc--grey .accordion::after {
  margin-top: 15px;
}

.acc--grey--active:after,
.acc--head--active:after,
.acc--plain--active:after {
  content: "\2212";
  color: #fff;
}

.accordion--panel {
  /* padding: 0 0 0.5rem 0; */
  margin-bottom: 0;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  display: inline-block;
  width: 100%;
}

.accordion--panel a::after {
  content: "";
}

.accordion--panel a:hover::after {
  content: "";
}

.accordion--panel .charts {
  margin: 0;
}
table.payment--table {
  width: 100%;
}
.payment--table th {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--color-grey-light);
}

.payment--table td,
.payment--table th {
  font-size: 1.2rem;
  padding: 0 10px;
}

.payment--table p {
  line-height: 1.8rem;
  margin: 0;
}

table.payment--table  td:not(:last-child) {
  border-right: 1px solid var(--color-grey-light);
}
table.payment--table  td {
  border-bottom: 1px solid var(--color-grey-light);
}

/**/
/**/
/*---- Server Space ----*/
.scontainer {
  width: 80%;
  margin: auto;
}

.space--container {
  display: flex;
}

.space {
  height: 35px;
  width: 100%;
  background: var(--color-grey-light);
  display: block;
  border-radius: 5px;
  position: relative;
}

.used {
  height: 35px;
}

.used--marker {
  position: absolute;
  width: 1%;
  height: 45px;
  z-index: 2;
  left: 80%;
  top: -5px;
  border-left: 3px dashed var(--color-accent-dark);
  display: inline;
}

.used--left {
  position: absolute;
  display: inline;
  justify-content: left;
  width: 100%;
  left: 2%;
  font-size: 200%;
  padding: 0;
  margin: 0;
  z-index: 1;
  top: 10%;
}

.used--cent {
  font-size: 500%;
  padding: 0;
  margin: 0;
  font-family: code--pro;
  display: inline-block;
}

.used--head {
  font-size: 430%;
  padding: 0;
  margin: 0;
  font-family: code--pro;
  display: inline-block;
  white-space: nowrap;
}

.used--right {
  position: absolute;
  text-align: right;
  display: inline;
  justify-content: right;
  width: 100%;
  right: 2%;
  top: 50%;
  font-size: 200%;
  padding: 0;
  margin: 0;
  top: 10%;
}

.used--right1,
.used--left1 {
  position: absolute;
  display: inline;
  width: 100%;
  padding: 0;
  margin: 0;
  letter-spacing: 0.3rem;
  font-size: 150%;
  color: var(--color-grey-dark);
}

.used--right1 {
  text-align: right;
  justify-content: right;
}

.used--left1 {
  justify-content: left;
}

/**/
/**/
/*---- Modal Box ----*/
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.EULA-modal {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 4; /* Sit on top */
  padding-top: 80px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.EULA-modal .btn--primary {
  display: none;
}

.EULA-modal .btn--light {
  float: right;
  padding: 0.2rem 1rem;
}

/* Modal Content */
.modal--content {
  background-color: #fff;
  margin: auto;
  padding: 4rem;
  border: 1px solid #888;
  border-radius: 5px;
  width: 54vw;
  box-shadow: var(--box-shadow);
  max-height: 80vh;
  overflow-y: scroll;
}

/* The Close Button */
.modal--close,
.modal--close_del {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal--close:hover,
.modal--close:focus,
.modal--close_del:hover,
.modal--close_del:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/**/
/**/
/* CHARTS*/
.data--block {
  /* border: 1px solid var(--color-grey-light);
  border-radius: 15px; */
  width: 1000px;
  margin: 2rem auto;
}

.charts {
  border: 2px solid var(--color-grey);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem;
  width: 99%;
  max-width: 440px;
  display: inline-block;
}

.charts table {
  display: inline-block;
}

#my-chart {
  --color: #d85728;
  --heading-size: 3rem;
}

#my-chart.column {
  height: 200px;
  max-width: 400px;
  margin: 0 auto;
  display: inline-block;
}

#my-chart.line {
  height: 200px;
  max-width: 400px;
  margin: 0 auto;
  display: inline-block;
}

#my-chart caption {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.25rem;
  color: var(--color-grey);
}

#my-chart .th {
  padding: 1rem;
  margin: 1rem;
}

#my-chart td .data {
  transition-duration: 0.6s;
  transform: scale(0);
  background-color: #ffffff;
  border-radius: 15px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

#my-chart td:hover .data {
  transform: scale(1);
}

#my-chart tr {
  transition-duration: 0.3s;
}

#my-chart tr:hover {
  background-color: rgba(201, 201, 201, 0.2);
}

#my-chart tr:hover th {
  background-color: rgba(130, 130, 130, 0.33);
  color: #fff;
}

.notifications {
  background-color: #eee;
  border-radius: 15px;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 400px;
  margin: 2rem;
  padding: 2rem;
  display: inline-block;
}

.notifications > ul > li {
  font-size: 1.4rem;
}
