@charset "UTF-8";
:root {
  --color-red: rgb(148, 23, 40);
  --color-blue:rgb(35, 62, 99);
  --color-orange:rgb(236, 103, 38);
  --color-grey-dark:rgb(51, 51, 51);
  --color-grey-light:rgb(226, 226, 226);
  --color-grey-medium:rgb(171, 171, 171);
  --color-white:rgb(255, 255, 255);
  --color-black:rgb(0, 0, 0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, sans-serif;
  background: var(--color-white);
  color: var(--color-grey-dark);
  font-size: 62.5%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

.u-margin-top {
  margin-top: 2.2vmin;
}

.u-offline {
  filter: grayscale(100%) !important;
}

.u-flex-break {
  flex-basis: 100%;
  height: 0;
  border: none;
}

.u-full-line {
  width: 100%;
}

.navbar {
  width: 100%;
  height: 2.5rem;
  background: var(--color-grey-dark);
  color: var(--color-grey-light);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
.navbar__textbox {
  width: 80%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__icons {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.main {
  width: 80%;
  max-width: 1200px;
  flex: 1 0 auto;
  margin: 1% auto 2% auto;
}

.header {
  width: 100%;
  height: 16rem;
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/header.png") no-repeat center 0%/cover;
  position: relative;
}
.header_box {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  left: 15%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}
.header_logo {
  position: absolute;
  width: 15%;
  height: 15%;
  top: 2%;
  right: 1%;
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/logo.png") no-repeat center center/contain;
}

.info__wrap {
  width: 100%;
  display: flex;
}

.section {
  width: 50%;
  height: auto;
  max-height: 75%;
  padding: 3% 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.section--number-bar {
  flex-direction: column;
  justify-content: center;
}

.footer {
  height: 8rem;
  flex-shrink: 0;
  background: var(--color-grey-dark);
  color: var(--color-grey-light);
}
.footer__textbox {
  width: 80%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  line-height: 1.8;
}
.footer__social h4 {
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.heading-primary {
  font-family: "RobotoSlab Regular", "Roboto Slab", serif;
  color: var(--color-white);
  font-weight: 400;
  font-size: 3vw;
  letter-spacing: 0.05rem;
  margin-bottom: 0.5rem;
}

.heading-secondary {
  font-family: "RobotoSlab Regular", "Roboto Slab", serif;
  color: var(--color-white);
  font-weight: 400;
  font-size: 2.6vw;
  letter-spacing: 0.05rem;
}
.heading-secondary--darker {
  color: var(--color-grey-dark);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: normal;
  padding-bottom: 0.4rem;
  margin: 0.4rem auto;
}

.heading-tertiary {
  font-family: "RobotoSlab Regular", "Roboto Slab", serif;
  color: var(--color-grey-dark);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}

.btn-text__main {
  font-family: Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  display: block;
}
.btn-text__secondary {
  font-size: 0.6rem;
}

p {
  font-size: 0.9rem;
  padding: 0.3rem;
  line-height: 1.4;
}

.p__game {
  font-family: Roboto, sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 500;
  width: 100%;
  display: inline-block;
}

.label {
  font-family: Roboto, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  position: relative;
  left: 4%;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 1050px) {
  .label {
    left: 7%;
  }
}
.label--closed {
  color: var(--color-blue);
}
.label--closed::after {
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-blue);
  position: Absolute;
  top: 130%;
  right: 0;
  transition: all 0.5s ease-in;
}
.label--closed:hover::after {
  width: 100%;
}
.label--running {
  color: var(--color-orange);
}
.label--running::after {
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-orange);
  position: Absolute;
  top: 130%;
  right: 0;
  transition: all 0.5s ease-in;
}
.label--running:hover::after {
  width: 100%;
}
.label--other {
  color: var(--color-grey-dark);
}
.label--other::after {
  content: "";
  width: 0%;
  height: 1px;
  background: var(--color-grey-dark);
  position: Absolute;
  top: 130%;
  right: 0;
  transition: all 0.5s ease-in;
}
.label--other:hover::after {
  width: 100%;
}

label input {
  position: absolute;
  right: 20px;
  opacity: 0;
  cursor: none;
}

.game__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border: 1px solid var(--color-grey-medium);
  background-color: var(--color-white);
  transition: all 0.2s;
}
.game__checkbox::after {
  content: "✓";
  position: absolute;
  opacity: 0;
  left: 20%;
  top: -10%;
  font-size: 0.6rem;
  color: var(--color-white);
}

label input:checked ~ .game__checkbox::after {
  opacity: 1;
}

label input:checked ~ .game__checkbox::after {
  opacity: 1;
}

label input:checked ~ .game__checkbox--closed {
  background: var(--color-blue);
}

label input:checked ~ .game__checkbox--running {
  background: var(--color-orange);
}

label input:checked ~ .game__checkbox--other {
  background: var(--color-grey-dark);
}

.social {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.2rem;
  transition: all 0.2s ease-out;
}
.social--facebook {
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/fb.svg") no-repeat center center/contain;
}
.social--instagram {
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/instagram.svg") no-repeat center center/contain;
}
.social--linkedin {
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/linkedin.svg") no-repeat center center/contain;
}
.social--youtube {
  background: var(--color-grey-medium);
  position: relative;
}
.social--youtube:after {
  content: "";
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/youtube.svg") no-repeat center center/contain;
  position: Absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  filter: brightness(20%);
}
.social--home {
  background: var(--color-grey-medium);
  position: relative;
}
.social--home:after {
  content: "";
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/home.svg") no-repeat center center/contain;
  color: var(--color-grey-dark);
  fill: currentColor;
  position: Absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  filter: brightness(110%);
}
.social:hover {
  filter: brightness(80%);
}

.section-text {
  background: var(--color-white);
  font-family: Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  display: block;
  font-size: 0.9rem;
  position: absolute;
  top: -1000%;
  left: 10%;
  z-index: 2;
  padding: 0 1rem;
}

.text-zone {
  background: var(--color-grey-light);
  width: 50%;
  height: auto;
  padding: 2% 4%;
  position: relative;
}

.text-zone label {
  display: inline-block;
  position: relative;
  height: 1.8rem;
  width: 100%;
}

.text-zone .heading-tertiary {
  margin-bottom: 0.6rem;
}

.color-bar {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, var(--color-red) 0, var(--color-red) 33%, var(--color-blue) 33%, var(--color-blue) 66%, var(--color-orange) 66%, var(--color-orange) 100%);
}

.section-bar {
  width: 100%;
  height: 1px;
  margin: 2.6rem auto 0.2rem auto;
  position: relative;
  z-index: 0;
}

.btn {
  color: var(--color-red);
  background: var(--color-white);
  border: 1px solid var(--color-red);
  padding: 1.2rem 1.6rem;
  display: inline-block;
  transition: all 0.4s;
  text-align: center;
  min-width: 14rem;
  max-width: 45%;
  cursor: pointer;
}
.btn:active, .btn:hover {
  color: var(--color-white);
  background: var(--color-red);
  border: 1px solid var(--color-red);
}
.btn--active {
  color: var(--color-white);
  background: var(--color-red);
  border: 1px solid var(--color-red);
}
.btn--inactive {
  color: var(--color-white);
  background: var(--color-grey-light);
  border: 1px solid var(--color-grey-light);
  cursor: default;
}
.btn--inactive:hover {
  color: var(--color-white);
  background: var(--color-grey-light);
  border: 1px solid var(--color-grey-light);
  cursor: default;
}
.btn__smaller {
  padding: 0.4rem 0.8rem;
  min-width: 5rem;
  max-height: 3rem;
  max-width: 100%;
}
.btn__reverse {
  color: var(--color-white);
  background: var(--color-red);
  border: 1px solid var(--color-red);
  padding: 1rem 2.4rem;
  display: inline-block;
}
.btn__dark {
  background: var(--color-grey-dark);
  color: var(--color-grey-light);
  border: none;
}
.btn__dark:hover {
  background: var(--color-grey-dark);
  color: var(--color-grey-light);
  border: none;
  filter: brightness(150%);
}

.btn-login {
  color: inherit;
  background: inherit;
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 0.15rem 0.5rem;
  height: 1.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.btn-login:hover {
  color: var(--color-black);
  background: var(--color-grey-medium);
}

.btn-copy {
  color: var(--color-red);
  background: var(--color-white);
  border: 1px solid var(--color-red);
}

input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

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

.btn-number {
  border: 1px solid var(--color-red);
  display: inline-flex;
  align-self: center;
}

.btn-number button {
  outline: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 3.4rem;
  cursor: pointer;
  position: relative;
}

.btn-number button:before,
.btn-number button:after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 1rem;
  height: 2px;
  background-color: var(--color-grey-dark);
  transform: translate(-50%, -50%);
}

.btn-number button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.btn-number input[type=number] {
  width: 4.9rem;
  height: 3.4rem;
  padding: 0.5rem;
  border: solid var(--color-red);
  color: var(--color-red);
  border-width: 0 1px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.select {
  width: 12rem;
  color: var(--color-red);
  background-color: var(--color-white);
  background-image: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/arrow-red.png");
  background-position: right 10% center;
  background-repeat: no-repeat;
  background-size: auto 20%;
  border: 1px solid var(--color-red);
  padding: 1rem 1.8rem;
  font-family: Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  display: block;
  position: absolute;
  display: inline-block;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.select::-ms-expand {
  display: none;
}

.select-language {
  color: var(--color-red);
  background-color: var(--color-white);
  background-image: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/arrow-red.png");
  background-position: right 10% center;
  background-repeat: no-repeat;
  background-size: auto 20%;
  border: 1px solid var(--color-red);
  font-family: Roboto, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  padding: 0.35rem 4.5rem 0.4rem 0.8rem;
  margin-right: 0.5rem;
  min-width: 5rem;
  max-height: 3rem;
  display: inline;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.select-item {
  font-size: 0.8rem;
  text-transform: none;
}

.login__main div:has(select) {
  display: flex;
  width: 80%;
  justify-content: space-evenly;
}

.drop-switch,
.submenu {
  display: none;
}

.drop-label {
  position: relative;
  display: flex;
  gap: 0.2rem;
  align-items: baseline;
  justify-content: baseline;
  cursor: pointer;
  margin-bottom: 0.3rem;
}

.drop-switch:checked ~ .submenu {
  display: block;
}

.submenu {
  background: var(--color-white);
}

.icon {
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/arrow-white.png") no-repeat -50% 50%/contain;
  margin: 0 0.5rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
}

.submenu li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--color-red);
  padding: 0.5rem 0rem 0.5rem 0.3rem;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-out;
}

.game {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.7rem 3rem;
}

.single-game {
  color: var(--color-grey-dark);
}

.running {
  color: var(--color-orange);
}

.closed {
  color: var(--color-blue);
}

.p--italic {
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
}

.login__container {
  width: 80%;
  height: auto;
  max-width: 1200px;
  margin: 1% auto;
}
@media screen and (max-width: 1000px) {
  .login__container {
    width: 100%;
    max-width: auto;
    margin-top: 0%;
  }
}

.login__header {
  width: 100%;
  height: 20rem;
  background: url("https://mindlab-zulu-files.s3.eu-central-1.amazonaws.com/img/trainer/header.png") no-repeat center/cover;
  position: relative;
}
.login__header__box {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  left: 15%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}

.login__main {
  position: relative;
  width: 50%;
  margin: 2rem auto 0rem auto;
  padding: 2.5rem;
  border: 1px solid var(--color-grey-light);
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .login__main {
    width: 70%;
  }
}

.color-bar {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, var(--color-red) 0, var(--color-red) 33%, var(--color-blue) 33%, var(--color-blue) 66%, var(--color-orange) 66%, var(--color-orange) 100%);
}

.login__form {
  width: 70%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.login__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0.5rem;
}
.login__wrap input {
  width: 100%;
  height: 2.2rem;
  margin: 0.5rem auto;
  padding: 0.3rem;
  color: var(--color-black);
  border: 2px solid var(--color-grey-light);
  border-radius: 3px;
  box-shadow: 5rem 5rem 5rem inset var(--color-white);
}
.login__wrap input::-moz-placeholder {
  color: var(--color-grey-medium);
}
.login__wrap input::placeholder {
  color: var(--color-grey-medium);
}
.login__wrap input:focus, .login__wrap input:active {
  border: none;
  outline: 2px solid var(--color-red);
  color: var(--color-red);
  box-shadow: 5rem 5rem 5rem inset var(--color-white);
}
.login__wrap--column {
  margin-top: 0.6rem;
  flex-direction: column;
}

.button {
  color: var(--color-white);
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 3px;
  padding: 0.6rem 1rem;
  margin: 1.2rem 0 0 0;
  display: inline-block;
  transition: all 0.4s;
  text-align: center;
  width: 100%;
  cursor: pointer;
}
.button:hover, .button:active {
  color: var(--color-red);
  background: var(--color-white);
  border: 1px solid var(--color-red);
}
.button:focus {
  outline: var(--color-grey-medium);
}
.button:disabled {
  background: var(--color-grey-light);
  border: 1px solid var(--color-grey-light);
  color: var(--color-white);
  cursor: default;
}
.button-text__main {
  font-family: Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  display: block;
}

.button--italic {
  border: none;
  background-color: inherit;
  color: var(--color-red);
  cursor: pointer;
  margin-left: 0.4rem;
  transition: all 0.4s;
}
.button--italic:hover {
  filter: brightness(130%);
}/*# sourceMappingURL=trainer.css.map */