@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100&display=swap";
@import "https://min.gamelearn.io/gl-style-dictionary/css/variables.css";
@import "https://min.gamelearn.io/gl-style-dictionary/css/fonts.css";
@import "https://min.gamelearn.io/gl-style-dictionary/fonticons/fonticons.css";

/* src/styles.scss */
@-webkit-keyframes fadeIn-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut-animation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut-animation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut-animation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes open {
  25% {
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(1, 1) rotateY(89.7deg);
    -moz-transform: scale(1, 1) rotateY(89.7deg);
    -ms-transform: scale(1, 1) rotateY(89.7deg);
    -o-transform: scale(1, 1) rotateY(89.7deg);
    transform: scale(1, 1) rotateY(89.7deg);
  }
  100% {
    -webkit-transform: scale(1, 1) rotateY(0);
    -moz-transform: scale(1, 1) rotateY(0);
    -ms-transform: scale(1, 1) rotateY(0);
    -o-transform: scale(1, 1) rotateY(0);
    transform: scale(1, 1) rotateY(0);
    opacity: 1;
  }
}
@keyframes close {
  65% {
    -webkit-transform: scale(1, 1) rotateY(89.7deg);
    -moz-transform: scale(1, 1) rotateY(89.7deg);
    -ms-transform: scale(1, 1) rotateY(89.7deg);
    -o-transform: scale(1, 1) rotateY(89.7deg);
    transform: scale(1, 1) rotateY(89.7deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5, 0.5) rotateY(89.7deg);
    -moz-transform: scale(0.5, 0.5) rotateY(89.7deg);
    -ms-transform: scale(0.5, 0.5) rotateY(89.7deg);
    -o-transform: scale(0.5, 0.5) rotateY(89.7deg);
    transform: scale(0.5, 0.5) rotateY(89.7deg);
    opacity: 0;
  }
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes progress-left {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes progress-left {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@-webkit-keyframes progress-right {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
@keyframes progress-right {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}
.animation {
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  width: 100%;
  display: block;
  height: 50px;
  margin-bottom: 6px;
}
.animation--fadeIn {
  background-color: #ff634d;
}
.animation--fadeIn.fadeIn-play {
  animation-name: fadeIn-animation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
  -o-animation-name: fadeIn-animation;
  -o-animation-duration: 0.5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: linear;
  -o-animation-direction: normal;
  -moz-animation-name: fadeIn-animation;
  -moz-animation-duration: 0.5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: normal;
  -webkit-animation-name: fadeIn-animation;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.animation--fadeOut {
  background-color: #8020bb;
}
.animation--fadeOut.fadeOut-play {
  animation-name: fadeOut-animation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
  -o-animation-name: fadeOut-animation;
  -o-animation-duration: 0.5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: linear;
  -o-animation-direction: normal;
  -moz-animation-name: fadeOut-animation;
  -moz-animation-duration: 0.5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: normal;
  -webkit-animation-name: fadeOut-animation;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.animation--open {
  background-color: #009dda;
}
.animation--open.open-play {
  -webkit-transform: scale(0.5, 0.5) rotateY(90deg);
  -moz-transform: scale(0.5, 0.5) rotateY(90deg);
  -ms-transform: scale(0.5, 0.5) rotateY(90deg);
  -o-transform: scale(0.5, 0.5) rotateY(90deg);
  transform: scale(0.5, 0.5) rotateY(90deg);
  animation-name: open;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
  -o-animation-name: open;
  -o-animation-duration: 0.5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: linear;
  -o-animation-direction: normal;
  -moz-animation-name: open;
  -moz-animation-duration: 0.5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: normal;
  -webkit-animation-name: open;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.animation--closed {
  background-color: rgb(102, 102, 102);
}
.animation--closed.closed-play {
  -webkit-transform: scale(1, 1) rotateY(0deg);
  -moz-transform: scale(1, 1) rotateY(0deg);
  -ms-transform: scale(1, 1) rotateY(0deg);
  -o-transform: scale(1, 1) rotateY(0deg);
  transform: scale(1, 1) rotateY(0deg);
  animation-name: close;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
  -o-animation-name: close;
  -o-animation-duration: 0.5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: linear;
  -o-animation-direction: normal;
  -moz-animation-name: close;
  -moz-animation-duration: 0.5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: normal;
  -webkit-animation-name: close;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.animation--rotateY {
  background-color: #ef5350;
}
.animation--rotateY.rotate-play {
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.animation--gradient {
  background:
    linear-gradient(
      -45deg,
      rgb(255, 255, 255),
      #009dda,
      #6aa84f,
      #009dda);
  background-size: 400% 400%;
}
.animation--gradient.gradient-play {
  animation-name: gradient-animation;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
  -o-animation-name: gradient-animation;
  -o-animation-duration: 5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease;
  -o-animation-direction: normal;
  -moz-animation-name: gradient-animation;
  -moz-animation-duration: 5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
  -moz-animation-direction: normal;
  -webkit-animation-name: gradient-animation;
  -webkit-animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.fadeIn--animation {
  animation-name: fadeIn-animation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
  -o-animation-name: fadeIn-animation;
  -o-animation-duration: 0.5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: linear;
  -o-animation-direction: normal;
  -moz-animation-name: fadeIn-animation;
  -moz-animation-duration: 0.5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: normal;
  -webkit-animation-name: fadeIn-animation;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.fadeOut--animation {
  animation-name: fadeOut-animation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
  -o-animation-name: fadeOut-animation;
  -o-animation-duration: 0.5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: linear;
  -o-animation-direction: normal;
  -moz-animation-name: fadeOut-animation;
  -moz-animation-duration: 0.5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: normal;
  -webkit-animation-name: fadeOut-animation;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.open--animation {
  -webkit-transform: scale(0.5, 0.5) rotateY(90deg);
  -moz-transform: scale(0.5, 0.5) rotateY(90deg);
  -ms-transform: scale(0.5, 0.5) rotateY(90deg);
  -o-transform: scale(0.5, 0.5) rotateY(90deg);
  transform: scale(0.5, 0.5) rotateY(90deg);
  animation-name: open;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
  -o-animation-name: open;
  -o-animation-duration: 0.5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: linear;
  -o-animation-direction: normal;
  -moz-animation-name: open;
  -moz-animation-duration: 0.5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: normal;
  -webkit-animation-name: open;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.closed--animation {
  -webkit-transform: scale(1, 1) rotateY(0deg);
  -moz-transform: scale(1, 1) rotateY(0deg);
  -ms-transform: scale(1, 1) rotateY(0deg);
  -o-transform: scale(1, 1) rotateY(0deg);
  transform: scale(1, 1) rotateY(0deg);
  animation-name: close;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-direction: normal;
  -o-animation-name: close;
  -o-animation-duration: 0.5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: linear;
  -o-animation-direction: normal;
  -moz-animation-name: close;
  -moz-animation-duration: 0.5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: normal;
  -webkit-animation-name: close;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.rotateY--animation {
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.gradient--animation {
  background:
    linear-gradient(
      -45deg,
      rgb(255, 255, 255),
      #009dda,
      #6aa84f,
      #009dda);
  background-size: 400% 400%;
  animation-name: gradient-animation;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-direction: normal;
  -o-animation-name: gradient-animation;
  -o-animation-duration: 5s;
  -o-animation-fill-mode: forwards;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease;
  -o-animation-direction: normal;
  -moz-animation-name: gradient-animation;
  -moz-animation-duration: 5s;
  -moz-animation-fill-mode: forwards;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
  -moz-animation-direction: normal;
  -webkit-animation-name: gradient-animation;
  -webkit-animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -webkit-animation-direction: normal;
  animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.green-text {
  color: green;
}
.red-text {
  color: red;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}
a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 400;
  transition: var(--transition);
}
a:hover {
  text-decoration: none;
  color: var(--primary-darken);
}
a:focus {
  outline: none;
  color: var(--primary);
}
a:active,
a:hover {
  outline: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--basefont);
  font-weight: normal;
  color: inherit;
  text-rendering: optimizelegibility;
}
h1 small,
h2 small,
h3 small {
  font-weight: normal;
  display: block;
  color: rgb(102, 102, 102);
}
h1,
.h1 {
  margin-bottom: 12px;
  font-size: 2.5rem;
  line-height: 1.5;
}
h2,
.h2 {
  margin-bottom: 12px;
  font-size: 1.75rem;
  line-height: 1.5;
}
h3,
.h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
  line-height: 1.5;
}
h4,
.h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}
h5,
.h5 {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}
h6,
.h6 {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}
p,
ol,
ul,
dl,
address {
  margin-bottom: 24px;
  line-height: 1.3em;
}
small {
  font-size: 0.75rem;
  color: rgb(102, 102, 102);
}
ul,
ol {
  margin: 0 0 1.3em 0;
  padding: 0 0 0 24px;
  list-style: none;
}
li {
  list-style: none;
}
li ul,
li ol {
  margin: 0;
}
blockquote {
  margin: 0 0 1.3em 0;
  padding-left: 24px;
  border-left: 2px solid rgb(153, 153, 153);
  font-family: var(--basefont);
  font-style: normal;
}
blockquote p {
  font-size: 2.5rem;
  color: rgb(153, 153, 153);
  font-style: italic;
}
q {
  quotes: none;
  font-style: italic;
}
blockquote p::before,
blockquote p::after,
q:before,
q:after {
  content: "";
}
cite {
  font-style: normal;
}
dl,
dd {
  margin-bottom: 1.3em;
}
dt {
  font-weight: bold;
}
abbr[title] {
  border-bottom: 1px dotted rgb(153, 153, 153);
  cursor: help;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
ins {
  background-color: white;
  color: rgb(102, 102, 102);
  text-decoration: none;
}
mark {
  background-color: yellow;
  color: rgb(102, 102, 102);
}
pre,
code,
kbd,
samp {
  font-family: var(--basefont);
  font-size: 0.87rem;
  line-height: 1.3em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
sub,
sup {
  position: relative;
  font-size: 0.75rem;
  line-height: 0;
  vertical-align: 1.3em;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
hr {
  clear: both;
  display: block;
  margin: 1em 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(153, 153, 153);
}
app-dynamic-form,
app-question {
  width: 100%;
}
.form__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: var(--gutterwidth);
}
.form__group label {
  font-weight: 300;
  font-size: var(--x-small);
  color: var(--dusk);
  padding-bottom: var(--gap);
}
.form__group input {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: solid 1px var(--pale-blue);
  background-color: var(--white);
  color: var(--charcoal-grey);
  font-family: var(--basefont);
  font-size: var(--normal);
  font-weight: 400;
  padding: 0 calc(var(--gutterwidth) / 2);
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form__group input::placeholder {
  color: #b0b7c3;
  font-size: var(--x-small);
  font-weight: 400;
}
.form__group input.read-only,
.form__group input:disabled,
.form__group input:read-only {
  background-color: var(--pale-blue);
  border: solid 1px var(--pale-blue);
  cursor: not-allowed;
}
.form__group input.read-only:focus,
.form__group input:disabled:focus,
.form__group input:read-only:focus {
  border: solid 1px var(--pale-blue);
}
.form__group input.show-data {
  background-color: var(--pale-blue);
}
.form__group input:focus {
  border: 1px solid var(--primary);
}
.form__group input.focus {
  background-color: white;
  border: solid 1px var(--pale-blue);
}
.form__group input.failed {
  background-color: rgba(255, 99, 77, 0.16);
  border: 1px solid var(--error);
}
.form__group input.success {
  border: solid 1px var(--aqua-marine);
  background-color: rgba(68, 215, 171, 0.16);
}
.form__group .form__field--icon {
  position: relative;
  width: 100%;
}
.form__group .form__field--icon [class^=glicon-],
.form__group .form__field--icon [class*=" glicon-"] {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  cursor: pointer;
  font-size: var(--medium);
  transition: var(--transition);
}
.form__group .form__field--icon [class^=glicon-]:hover,
.form__group .form__field--icon [class*=" glicon-"]:hover {
  color: var(--primary);
}
.form__group .form__error {
  display: flex;
  align-items: center;
  color: var(--error);
  font-size: var(--small);
  font-weight: 400;
  padding-top: var(--gap);
  text-align: left;
}
.form__group .form__error [class^=glicon-],
.form__group .form__error [class*=" glicon-"] {
  align-self: flex-start;
  font-size: var(--normal);
  font-weight: 600;
  margin-right: 5px;
}
.radio {
  margin: calc(var(--gutterwidth) / 2) 0;
}
.radio label {
  color: var(--color-text);
  cursor: pointer;
  font-size: var(--x-small);
}
[type=radio]:checked,
[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  color: var(--color-text);
  cursor: pointer;
  display: inline-block;
}
@media (min-width: 18em) {
  [type=radio]:checked + label,
  [type=radio]:not(:checked) + label {
    line-height: 19px;
  }
}
@media (min-width: 60em) {
  [type=radio]:checked + label,
  [type=radio]:not(:checked) + label {
    line-height: 18px;
  }
}
[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  background: var(--white);
}
@media (min-width: 18em) {
  [type=radio]:checked + label:before,
  [type=radio]:not(:checked) + label:before {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 60em) {
  [type=radio]:checked + label:before,
  [type=radio]:not(:checked) + label:before {
    width: 18px;
    height: 18px;
  }
}
[type=radio]:checked + label:before {
  border: 1px solid var(--primary);
}
[type=radio]:not(:checked) + label:before {
  border: 1px solid var(--light-blue-grey);
}
[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary);
  position: absolute;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (min-width: 18em) {
  [type=radio]:checked + label:after,
  [type=radio]:not(:checked) + label:after {
    top: 5px;
    left: 5px;
  }
}
@media (min-width: 60em) {
  [type=radio]:checked + label:after,
  [type=radio]:not(:checked) + label:after {
    top: 4px;
    left: 4px;
  }
}
[type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.checkbox {
  margin: 6px 0;
  display: block;
}
.checkbox [type=checkbox] {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
  transition: var(--transition);
}
.checkbox label {
  position: relative;
  color: var(--charcoal-grey);
  cursor: pointer;
  font-weight: 300;
}
@media (min-width: 18em) {
  .checkbox label {
    font-size: var(--small);
  }
}
@media (min-width: 60em) {
  .checkbox label {
    font-size: var(--x-small);
  }
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--primary);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  transition: var(--transition);
  top: 0;
}
.checkbox input[type=checkbox]:checked + label:before {
  content: "";
  border: 1px solid var(--primary);
  background-color: var(--primary);
  transition: var(--transition);
}
.checkbox input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: var(--transition);
}
@media (min-width: 18em) {
  .checkbox input[type=checkbox]:checked + label:after {
    top: 1px;
  }
}
@media (min-width: 60em) {
  .checkbox input[type=checkbox]:checked + label:after {
    top: 3px;
  }
}
.checkbox.small-check label {
  font-size: var(--x-small);
  transition: var(--transition);
}
@media (min-width: 60em) {
  .checkbox.small-check label:hover:before {
    border: 1px solid var(--primary);
  }
}
.checkbox.small-check label:before {
  width: 16px;
  height: 16px;
  border: 1px solid var(--light-grey-blue);
  border-radius: 2px;
  padding: 8px;
}
.checkbox.small-check [type=checkbox]:checked + label:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 11px;
}
.checkbox.checkbox-with-link {
  display: flex;
  align-items: center;
}
.checkbox.checkbox-with-link a {
  align-self: flex-start;
  color: var(--charcoal-grey);
}
.checkbox.checkbox-with-link a:hover {
  color: var(--primary);
}
@media (min-width: 18em) {
  .checkbox.checkbox-with-link a {
    font-size: var(--small);
  }
}
@media (min-width: 60em) {
  .checkbox.checkbox-with-link a {
    font-size: var(--x-small);
  }
}
.checkbox.checkbox-with-link label {
  align-self: flex-start;
}
.checkbox.checkbox-with-link .no-label-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: var(--charcoal-grey);
  align-self: flex-start;
  margin-top: -1px;
}
.validate.required label:after {
  content: "*";
  font-size: 12px;
  line-height: 0;
  vertical-align: middle;
  color: #ff634d;
  left: auto;
  top: auto;
  position: relative;
  display: inline;
  opacity: 1;
  margin-left: 4px;
}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}
.grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -6px;
  margin-right: -6px;
}
.grid.grid-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.grid.grid-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.grid.grid-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.grid.grid-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
.grid.grid-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.grid.grid-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.grid.grid-middel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.grid.grid-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
.grid.grid-reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 18em) {
  .s-1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 8.3333333333%;
    -moz-flex-basis: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0 6px;
  }
  .s-2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 16.6666666667%;
    -moz-flex-basis: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0 6px;
  }
  .s-3 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0 6px;
  }
  .s-4 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 33.3333333333%;
    -moz-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0 6px;
  }
  .s-5 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 41.6666666667%;
    -moz-flex-basis: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0 6px;
  }
  .s-6 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 6px;
  }
  .s-7 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 58.3333333333%;
    -moz-flex-basis: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0 6px;
  }
  .s-8 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 66.6666666667%;
    -moz-flex-basis: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0 6px;
  }
  .s-9 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0 6px;
  }
  .s-10 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 83.3333333333%;
    -moz-flex-basis: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0 6px;
  }
  .s-11 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 91.6666666667%;
    -moz-flex-basis: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0 6px;
  }
  .s-12 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 6px;
  }
}
@media (min-width: 48em) {
  .m-1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 8.3333333333%;
    -moz-flex-basis: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0 6px;
  }
  .m-2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 16.6666666667%;
    -moz-flex-basis: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0 6px;
  }
  .m-3 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0 6px;
  }
  .m-4 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 33.3333333333%;
    -moz-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0 6px;
  }
  .m-5 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 41.6666666667%;
    -moz-flex-basis: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0 6px;
  }
  .m-6 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 6px;
  }
  .m-7 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 58.3333333333%;
    -moz-flex-basis: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0 6px;
  }
  .m-8 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 66.6666666667%;
    -moz-flex-basis: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0 6px;
  }
  .m-9 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0 6px;
  }
  .m-10 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 83.3333333333%;
    -moz-flex-basis: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0 6px;
  }
  .m-11 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 91.6666666667%;
    -moz-flex-basis: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0 6px;
  }
  .m-12 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 6px;
  }
}
@media (min-width: 60em) {
  .l-1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 8.3333333333%;
    -moz-flex-basis: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0 6px;
  }
  .l-2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 16.6666666667%;
    -moz-flex-basis: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0 6px;
  }
  .l-3 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0 6px;
  }
  .l-4 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 33.3333333333%;
    -moz-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0 6px;
  }
  .l-5 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 41.6666666667%;
    -moz-flex-basis: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0 6px;
  }
  .l-6 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 6px;
  }
  .l-7 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 58.3333333333%;
    -moz-flex-basis: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0 6px;
  }
  .l-8 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 66.6666666667%;
    -moz-flex-basis: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0 6px;
  }
  .l-9 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0 6px;
  }
  .l-10 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 83.3333333333%;
    -moz-flex-basis: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0 6px;
  }
  .l-11 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 91.6666666667%;
    -moz-flex-basis: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0 6px;
  }
  .l-12 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 6px;
  }
}
@media (min-width: 80em) {
  .d-1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 8.3333333333%;
    -moz-flex-basis: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 0 6px;
  }
  .d-2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 16.6666666667%;
    -moz-flex-basis: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 0 6px;
  }
  .d-3 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    padding: 0 6px;
  }
  .d-4 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 33.3333333333%;
    -moz-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 0 6px;
  }
  .d-5 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 41.6666666667%;
    -moz-flex-basis: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 0 6px;
  }
  .d-6 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 6px;
  }
  .d-7 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 58.3333333333%;
    -moz-flex-basis: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 0 6px;
  }
  .d-8 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 66.6666666667%;
    -moz-flex-basis: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 0 6px;
  }
  .d-9 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    padding: 0 6px;
  }
  .d-10 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 83.3333333333%;
    -moz-flex-basis: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 0 6px;
  }
  .d-11 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 91.6666666667%;
    -moz-flex-basis: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 0 6px;
  }
  .d-12 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 6px;
  }
}
@media (min-width: 18em) {
  .s-offset-1 {
    margin-left: 8.3333333333%;
  }
  .s-offset-2 {
    margin-left: 16.6666666667%;
  }
  .s-offset-3 {
    margin-left: 25%;
  }
  .s-offset-4 {
    margin-left: 33.3333333333%;
  }
  .s-offset-5 {
    margin-left: 41.6666666667%;
  }
  .s-offset-6 {
    margin-left: 50%;
  }
  .s-offset-7 {
    margin-left: 58.3333333333%;
  }
  .s-offset-8 {
    margin-left: 66.6666666667%;
  }
  .s-offset-9 {
    margin-left: 75%;
  }
  .s-offset-10 {
    margin-left: 83.3333333333%;
  }
  .s-offset-11 {
    margin-left: 91.6666666667%;
  }
  .s-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 48em) {
  .m-offset-1 {
    margin-left: 8.3333333333%;
  }
  .m-offset-2 {
    margin-left: 16.6666666667%;
  }
  .m-offset-3 {
    margin-left: 25%;
  }
  .m-offset-4 {
    margin-left: 33.3333333333%;
  }
  .m-offset-5 {
    margin-left: 41.6666666667%;
  }
  .m-offset-6 {
    margin-left: 50%;
  }
  .m-offset-7 {
    margin-left: 58.3333333333%;
  }
  .m-offset-8 {
    margin-left: 66.6666666667%;
  }
  .m-offset-9 {
    margin-left: 75%;
  }
  .m-offset-10 {
    margin-left: 83.3333333333%;
  }
  .m-offset-11 {
    margin-left: 91.6666666667%;
  }
  .m-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 60em) {
  .l-offset-1 {
    margin-left: 8.3333333333%;
  }
  .l-offset-2 {
    margin-left: 16.6666666667%;
  }
  .l-offset-3 {
    margin-left: 25%;
  }
  .l-offset-4 {
    margin-left: 33.3333333333%;
  }
  .l-offset-5 {
    margin-left: 41.6666666667%;
  }
  .l-offset-6 {
    margin-left: 50%;
  }
  .l-offset-7 {
    margin-left: 58.3333333333%;
  }
  .l-offset-8 {
    margin-left: 66.6666666667%;
  }
  .l-offset-9 {
    margin-left: 75%;
  }
  .l-offset-10 {
    margin-left: 83.3333333333%;
  }
  .l-offset-11 {
    margin-left: 91.6666666667%;
  }
  .l-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 80em) {
  .d-offset-1 {
    margin-left: 8.3333333333%;
  }
  .d-offset-2 {
    margin-left: 16.6666666667%;
  }
  .d-offset-3 {
    margin-left: 25%;
  }
  .d-offset-4 {
    margin-left: 33.3333333333%;
  }
  .d-offset-5 {
    margin-left: 41.6666666667%;
  }
  .d-offset-6 {
    margin-left: 50%;
  }
  .d-offset-7 {
    margin-left: 58.3333333333%;
  }
  .d-offset-8 {
    margin-left: 66.6666666667%;
  }
  .d-offset-9 {
    margin-left: 75%;
  }
  .d-offset-10 {
    margin-left: 83.3333333333%;
  }
  .d-offset-11 {
    margin-left: 91.6666666667%;
  }
  .d-offset-12 {
    margin-left: 100%;
  }
}
.grid-auto {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 6px;
  max-width: 100%;
}
.order-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -moz-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.header {
  width: 100%;
  height: 75px;
  display: block;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(204, 204, 204);
  color: #455a64;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 1;
}
@media (min-width: 18em) {
  .header {
    position: static;
    z-index: 0;
  }
}
@media (min-width: 80em) {
  .header {
    z-index: 1;
  }
}
.header .h1 {
  font-size: 3.5rem;
  margin: 0;
  padding-top: 6px;
  text-transform: Capitalize;
  line-height: 1.3em;
}
.header .subtitle {
  width: 100%;
  display: block;
  font-size: 1rem;
  margin: -12px 0;
  padding-left: 3px;
}
.app-footer {
  position: relative;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 112px;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 300;
  color: var(--charcoal-grey);
  z-index: 2;
}
@media (min-width: 18em) {
  .app-footer {
    padding: 0 16px;
    bottom: 62px;
  }
}
@media (min-width: 48em) {
  .app-footer {
    bottom: 32px;
  }
}
@media (min-width: 60em) {
  .app-footer {
    padding: 0 112px;
  }
}
.app-footer span:last-child {
  font-weight: 200px;
  color: #82868e;
}
@media (min-width: 60em) {
  .app-footer span:last-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.app-footer__logo {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 135px;
  height: 24px;
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/logo-gamelearn-footer.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
@media (min-width: 18em) {
  .app-footer__logo {
    display: none;
  }
}
@media (min-width: 48em) {
  .app-footer__logo {
    display: block;
    left: 32px;
  }
}
@media (min-width: 60em) {
  .app-footer__logo {
    left: 112px;
  }
}
.app-footer.scorm {
  position: absolute;
  width: 100%;
  justify-content: center;
  padding: 0;
  z-index: 9999;
}
.app-footer.campus {
  position: fixed;
  left: 0;
}
@media (min-width: 18em) {
  .app-footer.campus {
    padding: 0 80px;
    bottom: 64px;
  }
}
@media (min-width: 48em) {
  .app-footer.campus {
    bottom: 32px;
  }
}
.app-footer.payment {
  position: fixed;
  min-height: 62px;
}
@media (min-width: 18em) {
  .app-footer.payment {
    bottom: 0px;
    z-index: 999999;
  }
}
@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport {
  width: device-width;
}
@-o-viewport { width: device-width; }
@viewport {
  width: device-width;
}
* {
  margin: 0;
  padding: 0;
  outline: 0;
}
html {
  font-size: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--basefont);
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}
.main {
  width: 100%;
  padding: 0;
  margin: 0;
}
.section {
  width: 100%;
  display: block;
  padding-bottom: 48px;
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}
.article {
  width: 100%;
  display: block;
  padding: 0 12.5%;
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}
.article--heading {
  position: relative;
  margin-top: 48px;
}
.article--heading:before {
  content: "";
  width: 5rem;
  height: 0.3rem;
  display: block;
  background-color: #009dda;
  position: absolute;
  top: -0.5rem;
  left: 0;
}
.article--subtitle {
  margin: 0;
  padding: 12px 0 6px;
  color: #009dda;
  font-size: 1.25rem;
  text-transform: lowercase;
  font-weight: bold;
}
.logo {
  margin-left: auto;
  margin-right: auto;
  max-width: 100px;
  display: block;
}
.btn {
  display: inline-block;
  cursor: pointer;
  font-family: var(--basefont);
  vertical-align: middle;
  text-align: center;
  outline: 0;
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}
.btn--primary,
.btn--submit,
.buttons--test .btn--cancel {
  background-color: #009dda;
  border: none;
  border-radius: 40px;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  line-height: 0.7rem;
  padding: 18px 24px;
}
.btn--primary.hover,
.hover.btn--submit,
.buttons--test .hover.btn--cancel,
.btn--primary:hover,
.btn--submit:hover,
.buttons--test .btn--cancel:hover {
  box-shadow: 0 0 30px 0 rgba(0, 157, 218, 0.4);
  background-color: rgb(255, 255, 255);
  color: #009dda;
}
.btn--primary.active,
.active.btn--submit,
.buttons--test .active.btn--cancel,
.btn--primary:active,
.btn--submit:active,
.buttons--test .btn--cancel:active {
  box-shadow: 0 0 30px 0 rgba(0, 157, 218, 0.4);
}
.btn--primary.disabled,
.disabled.btn--submit,
.buttons--test .disabled.btn--cancel,
.btn--primary[disabled],
[disabled].btn--submit,
.buttons--test [disabled].btn--cancel {
  opacity: 0.5;
  cursor: not-allowed;
}
a.btn--primary,
a.btn--submit,
.buttons--test a.btn--cancel {
  color: rgb(255, 255, 255);
}
.btn--secondary {
  background-color: rgb(255, 255, 255);
  border: 1px solid #009dda;
  border-radius: 0;
  color: #009dda;
  font-size: 1rem;
  line-height: 1rem;
  padding: 12px 24px;
}
.btn--secondary [class^=glicon-],
.btn--secondary [class*=" glicon-"] {
  padding: 1px 0 0 12px;
  float: right;
}
.btn--secondary.hover,
.btn--secondary:hover {
  color: #009dda;
  box-shadow: 0 0 30px 0 rgba(0, 157, 218, 0.4);
}
.btn--secondary.active,
.btn--secondary:active {
  background-color: #009dda;
  color: rgb(255, 255, 255);
}
.btn--secondary.disabled {
  opacity: 0.5;
}
.btn--rounded {
  width: 50px;
  height: 50px;
  background-color: #009dda;
  border-radius: 40px;
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  line-height: 0.625rem;
}
.btn--rounded.hover,
.btn--rounded:hover {
  box-shadow: 0 0 30px 0 rgba(0, 157, 218, 0.4);
}
.btn--rounded.active,
.btn--rounded:active {
  background-color: #009dda;
  color: rgb(255, 255, 255);
}
.btn--rounded.disabled {
  opacity: 0.5;
}
.btn--submit,
.buttons--test .btn--cancel {
  width: 100%;
  padding: 18px 24px;
  border: 1px solid #009dda;
  cursor: pointer;
}
.btn--info {
  cursor: pointer;
  display: inline-block;
  margin-top: 24px;
  font-size: 1rem;
  padding: 12px;
  border: 1px solid #009dda;
  color: #009dda;
  -webkit-transition: 0.3s cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 0.3s cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 0.3s cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 0.3s cubic-bezier(0.5, 0, 0.1, 1);
  transition: 0.3s cubic-bezier(0.5, 0, 0.1, 1);
}
.btn--info:hover {
  background-color: #009dda;
  color: rgb(255, 255, 255);
}
.btn--info [class^=glicon-],
.btn--info [class*=glicon-] {
  float: right;
  padding: 3px 0 0 6px;
}
.btn--dropdown {
  border-bottom: 1px solid rgb(153, 153, 153);
  padding-bottom: 12px;
  cursor: pointer;
}
.btn--expert {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: none;
  color: rgb(255, 255, 255);
  background-color: var(--expert-orange);
  border: 1px solid transparent;
}
.btn--expert:hover,
.btn--expert:focus {
  box-shadow: none;
  background-color: var(--expert-orange-dark);
  color: var(--white);
}
.btn--expert[disabled],
.btn--expert.disabled {
  pointer-events: none;
  background-color: var(--pale-blue);
  color: var(--light-grey-blue-two);
}
.buttons-design-system .btn--languages {
  display: flex;
  align-items: center;
}
.buttons-design-system .btn {
  min-width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding-left: calc(var(--gutterlarge) / 2);
  padding-right: calc(var(--gutterlarge) / 2);
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1.2;
  box-shadow: none;
  font-weight: 400;
  height: 48px;
  outline: 0;
  text-transform: none;
  transition: 0.2s ease-out;
  cursor: pointer;
}
.buttons-design-system .btn:hover {
  box-shadow: none;
}
.buttons-design-system .btn [class^=glicon-] {
  font-size: var(--medium);
}
.buttons-design-system .btn > [class^=glicon-]:first-child {
  margin-right: calc(var(--gutterwidth) / 4);
}
.buttons-design-system .btn > [class^=glicon-]:last-child {
  margin-left: calc(var(--gutterwidth) / 4);
}
.buttons-design-system .btn--full {
  display: flex;
  width: 100%;
}
.buttons-design-system .btn--primary,
.buttons-design-system .btn--submit,
.buttons-design-system .buttons--test .btn--cancel,
.buttons--test .buttons-design-system .btn--cancel {
  background-color: var(--primary);
  border: 1px solid transparent;
  color: var(--white);
}
.buttons-design-system .btn--primary:focus,
.buttons-design-system .btn--submit:focus,
.buttons-design-system .buttons--test .btn--cancel:focus,
.buttons--test .buttons-design-system .btn--cancel:focus,
.buttons-design-system .btn--primary:hover,
.buttons-design-system .btn--submit:hover,
.buttons-design-system .buttons--test .btn--cancel:hover,
.buttons--test .buttons-design-system .btn--cancel:hover {
  background-color: var(--primary-darken);
}
.buttons-design-system .btn--secondary {
  color: var(--primary);
  background-color: var(--white);
  border: 1px solid var(--primary);
}
.buttons-design-system .btn--secondary:focus,
.buttons-design-system .btn--secondary:hover {
  color: var(--primary-darken);
  border-color: var(--primary-darken);
}
.buttons-design-system .btn--secondary.disabled,
.buttons-design-system .btn--secondary[disabled] {
  background-color: var(--pale-blue);
  border-width: 1px;
  border-color: var(--pale-blue);
}
.buttons-design-system .btn--success {
  background-color: var(--aqua-marine);
  border: 1px solid var(--aqua-marine);
  color: var(--white);
}
.buttons-design-system .btn--success:focus,
.buttons-design-system .btn--success:hover {
  background-color: var(--greeny-blue);
  border-color: var(--greeny-blue);
  color: var(--white);
}
.buttons-design-system .btn.disabled,
.buttons-design-system .btn.disabled:hover,
.buttons-design-system .btn[disabled],
.buttons-design-system .btn[disabled]:hover {
  background-color: var(--pale-blue);
  color: var(--light-grey-blue);
  cursor: not-allowed;
}
.buttons-design-system .btn.big-size {
  min-width: 100px;
  height: 48px;
  justify-content: center;
}
.buttons-design-system.login-panel .btn {
  height: 48px;
  justify-content: center;
  padding: 0 calc(var(--gutterlarge) / 2);
  margin-top: 16px;
}
@media (min-width: 18em) {
  .buttons-design-system.login-panel .btn.activate-account {
    margin-top: 32px;
  }
}
@media (min-width: 60em) {
  .buttons-design-system.login-panel .btn.activate-account {
    margin-bottom: 100px;
  }
}
.buttons-design-system.login-panel .btn--create__account {
  margin: 0 0 18px;
}
.buttons-design-system .un-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.buttons-design-system .circle-btn {
  color: var(--color-text);
  padding: 0;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  display: flex;
  border: solid 1.4px var(--pale-blue);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 3px 3px -1px rgba(10, 22, 70, 0.16), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
}
.buttons-design-system .circle-btn:hover {
  color: var(--primary);
  box-shadow: 0 6px 6px -1px rgba(10, 22, 70, 0.1), 0 0 1px 0 rgba(10, 22, 70, 0.06);
}
@media (min-width: 48em) {
  .buttons-design-system .circle-btn {
    width: 36px;
    height: 36px;
  }
}
.tooltip--text {
  position: relative;
}
.tooltip--text:hover .tooltip--text__item {
  display: inline;
}
.tooltip--text__item {
  width: 450px;
  position: absolute;
  z-index: 9999;
  top: 24px;
  left: 0;
  padding: 24px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(153, 153, 153);
  border-radius: 6px;
  color: rgb(0, 0, 0);
  display: none;
}
.tooltip--text__item b {
  width: 100%;
  display: block;
  color: rgb(153, 153, 153);
  padding-bottom: 6px;
}
.progress {
  position: relative;
  height: 5px;
  display: block;
  width: 100%;
  background-color: #5bd1ff;
  margin: 0;
  overflow: hidden;
}
.progress--bar {
  background-color: #009dda;
}
.progress--bar:before {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: progress-left 2s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: progress-left 2s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.progress--bar:after {
  content: "";
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: progress-right 2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: progress-right 2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 33%;
  text-align: center;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 157, 218, 0.4);
  box-shadow: 0 0 24px 0 rgba(0, 157, 218, 0.4);
}
.loading--bar {
  position: absolute;
  height: 100%;
  overflow: hidden;
  background-color: #009dda;
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}
.loading--bar__label {
  position: relative;
  z-index: 9999;
  color: rgb(255, 255, 255);
}
.gradient {
  width: 150px;
  height: 50px;
}
.gradient--pacific {
  background-color: #216ca7;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#49b2c3), to(#216ca7));
  background-image: -webkit-linear-gradient(to right, #49b2c3, #216ca7);
  background-image: -moz-linear-gradient(to right, #49b2c3, #216ca7);
  background-image: -ms-linear-gradient(to right, #49b2c3, #216ca7);
  background-image: -o-linear-gradient(to right, #49b2c3, #216ca7);
  background-image:
    linear-gradient(
      to right,
      #49b2c3,
      #216ca7);
  background-repeat: repeat-x;
}
.gradient--triskelion {
  background-color: #e74630;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#f7b431), to(#e74630));
  background-image: -webkit-linear-gradient(to right, #f7b431, #e74630);
  background-image: -moz-linear-gradient(to right, #f7b431, #e74630);
  background-image: -ms-linear-gradient(to right, #f7b431, #e74630);
  background-image: -o-linear-gradient(to right, #f7b431, #e74630);
  background-image:
    linear-gradient(
      to right,
      #f7b431,
      #e74630);
  background-repeat: repeat-x;
}
.gradient--triskelion5 {
  background-color: #e74630;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#f7b431), to(#e74630));
  background-image: -webkit-linear-gradient(to right, #f7b431, #e74630);
  background-image: -moz-linear-gradient(to right, #f7b431, #e74630);
  background-image: -ms-linear-gradient(to right, #f7b431, #e74630);
  background-image: -o-linear-gradient(to right, #f7b431, #e74630);
  background-image:
    linear-gradient(
      to right,
      #f7b431,
      #e74630);
  background-repeat: repeat-x;
}
.gradient--2100 {
  background-color: #632157;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#e94730), to(#632157));
  background-image: -webkit-linear-gradient(to right, #e94730, #632157);
  background-image: -moz-linear-gradient(to right, #e94730, #632157);
  background-image: -ms-linear-gradient(to right, #e94730, #632157);
  background-image: -o-linear-gradient(to right, #e94730, #632157);
  background-image:
    linear-gradient(
      to right,
      #e94730,
      #632157);
  background-repeat: repeat-x;
}
.gradient--merchants {
  background-color: #91c684;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#49b2c3), to(#91c684));
  background-image: -webkit-linear-gradient(to right, #49b2c3, #91c684);
  background-image: -moz-linear-gradient(to right, #49b2c3, #91c684);
  background-image: -ms-linear-gradient(to right, #49b2c3, #91c684);
  background-image: -o-linear-gradient(to right, #49b2c3, #91c684);
  background-image:
    linear-gradient(
      to right,
      #49b2c3,
      #91c684);
  background-repeat: repeat-x;
}
.gradient--ada {
  background-color: #00f690;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#33c9c0), to(#00f690));
  background-image: -webkit-linear-gradient(to right, #33c9c0, #00f690);
  background-image: -moz-linear-gradient(to right, #33c9c0, #00f690);
  background-image: -ms-linear-gradient(to right, #33c9c0, #00f690);
  background-image: -o-linear-gradient(to right, #33c9c0, #00f690);
  background-image:
    linear-gradient(
      to right,
      #33c9c0,
      #00f690);
  background-repeat: repeat-x;
}
.gradient--ada-gdpr {
  background-color: #709ad1;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#497fc5), to(#709ad1));
  background-image: -webkit-linear-gradient(to right, #497fc5, #709ad1);
  background-image: -moz-linear-gradient(to right, #497fc5, #709ad1);
  background-image: -ms-linear-gradient(to right, #497fc5, #709ad1);
  background-image: -o-linear-gradient(to right, #497fc5, #709ad1);
  background-image:
    linear-gradient(
      to right,
      #497fc5,
      #709ad1);
  background-repeat: repeat-x;
}
.gradient--rgpd {
  background-color: #2692a2;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#30b7cb), to(#2692a2));
  background-image: -webkit-linear-gradient(to right, #30b7cb, #2692a2);
  background-image: -moz-linear-gradient(to right, #30b7cb, #2692a2);
  background-image: -ms-linear-gradient(to right, #30b7cb, #2692a2);
  background-image: -o-linear-gradient(to right, #30b7cb, #2692a2);
  background-image:
    linear-gradient(
      to right,
      #30b7cb,
      #2692a2);
  background-repeat: repeat-x;
}
.gradient--mars {
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#e94730), to(#ffffff));
  background-image: -webkit-linear-gradient(to right, #e94730, #ffffff);
  background-image: -moz-linear-gradient(to right, #e94730, #ffffff);
  background-image: -ms-linear-gradient(to right, #e94730, #ffffff);
  background-image: -o-linear-gradient(to right, #e94730, #ffffff);
  background-image:
    linear-gradient(
      to right,
      #e94730,
      #ffffff);
  background-repeat: repeat-x;
}
.gradient--circle {
  background-image:
    radial-gradient(
      top,
      circle farthest-corner,
      #3c3b52 0%,
      #252233 80%);
}
.gradient--ellipse {
  background:
    -webkit-radial-gradient(0% 100%, ellipse farthest-corner, rgba(104, 128, 138, 0.4) 10%, rgba(138, 114, 76, 0) 40%),
    linear-gradient(
      to bottom,
      rgba(57, 173, 219, 0.25) 0%,
      rgba(42, 60, 87, 0.4) 100%),
    linear-gradient(
      135deg,
      #670d10 0%,
      #092756 100%);
}
.gradient--default {
  background-image: linear-gradient(#8b9da9, #fff6e4);
}
.gradient--left {
  background:
    radial-gradient(
      ellipse at top left,
      rgb(105, 155, 200) 0%,
      rgb(181, 197, 216) 57%);
}
.gradient--right {
  background-image:
    linear-gradient(
      45deg,
      rgba(194, 233, 221, 0.5) 1%,
      rgba(104, 119, 132, 0.5) 100%),
    linear-gradient(
      -45deg,
      #494d71 0%,
      rgba(217, 230, 185, 0.5) 80%);
}
.box--shadow {
  position: relative;
  width: 150px;
  height: 50px;
  background-color: rgb(255, 255, 255);
}
.shadow-1 {
  box-shadow: 0 10px 6px -6px rgb(204, 204, 204);
}
.shadow-2:after,
.box--alert:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(204, 204, 204);
  z-index: -1;
}
.shadow-3 {
  box-shadow: 0 15px 38px rgb(204, 204, 204), 0 5px 12px rgb(204, 204, 204);
}
.shadow-4 {
  box-shadow: 0 1px 4px rgba(204, 204, 204, 0.3), 0 0 40px rgba(204, 204, 204, 0.1) inset;
}
.shadow-4:after,
.shadow-4:before {
  content: "";
  position: absolute;
  z-index: -1;
  box-shadow: 0 0 20px rgba(204, 204, 204, 0.8);
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
  border-radius: 10;
}
.shadow-4:after {
  right: 10px;
  left: auto;
  -webkit-transform: skew(8deg, 0);
  -moz-transform: skew(8deg, 0);
  -ms-transform: skew(8deg, 0);
  -o-transform: skew(8deg, 0);
  transform: skew(8deg, 0);
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  transform: rotate(3deg);
}
.shadow-5,
.box--form {
  box-shadow: 0 0 12px 0 rgb(204, 204, 204);
}
.shadow-6 {
  box-shadow: 0px 0px 63px 12px rgb(204, 204, 204);
}
.color {
  width: 150px;
  height: 50px;
  display: table-cell;
  color: rgb(255, 255, 255);
  text-align: center;
  vertical-align: middle;
}
.bg--black {
  background-color: rgb(0, 0, 0);
}
.bg--grey {
  background-color: rgb(153, 153, 153);
}
.bg--darkgrey {
  background-color: rgb(102, 102, 102);
}
.bg--lightgrey {
  background-color: rgb(204, 204, 204);
}
.bg--lightergrey {
  background-color: #f5f7fa;
}
.bg--red {
  background-color: #ef5350;
}
.bg--green {
  background-color: #6aa84f;
}
.bg--orange {
  background-color: #ff634d;
}
.bg--blue {
  background-color: #009dda;
}
.bg--violet {
  background-color: #8020bb;
}
.error-wrapper {
  background-color: var(--bgcolor);
  z-index: 99999;
  position: absolute;
  width: 100%;
  height: 100%;
}
.not-found-page {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/background-error.png) no-repeat center fixed;
  background-size: cover;
}
.not-found-page__image {
  width: 95px;
  background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/character-error.png) no-repeat left top;
  background-size: contain;
  min-height: 400px;
}
.not-found-page__message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-left: 16px;
}
.not-found-page__title {
  width: 100%;
  color: #3f4146;
  line-height: 30px;
  font-weight: 400;
  padding-bottom: 16px;
  font-size: 26px;
}
.not-found-page__text {
  max-width: 350px;
  color: #3f4146;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  padding-bottom: 40px;
}
.not-found-page__logo {
  position: absolute;
  left: 48px;
  bottom: 48px;
  width: 100%;
  max-width: 150px;
  height: 30px;
  background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/logo-gl.png) no-repeat left top;
  background-size: contain;
}
.tooltip--text {
  position: relative;
}
.tooltip--text:hover .tooltip--text__item {
  display: inline;
}
.tooltip--text__item {
  width: 450px;
  position: absolute;
  z-index: 9999;
  top: 24px;
  left: 0;
  padding: 24px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(153, 153, 153);
  border-radius: 6px;
  color: rgb(0, 0, 0);
  display: none;
}
.tooltip--text__item b {
  width: 100%;
  display: block;
  color: rgb(153, 153, 153);
  padding-bottom: 6px;
}
.box--login {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  width: 100%;
  display: block;
  padding: 48px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 63px 12px #d0d1d9;
}
.box--login .text,
.box--login .link {
  width: 100%;
  display: block;
  text-align: center;
}
.box--login .link {
  padding-top: 24px;
}
.box--alert {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 48px;
  margin: 24px;
  background-color: rgb(255, 255, 255);
  border-radius: 4.5px;
}
.box--alert .h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.box--alert .h2 [class^=glicon-],
.box--alert .h2 [class*=" glicon-"] {
  padding-right: 12px;
}
.box--error {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  margin: 12px 0;
  background-color: rgb(255, 255, 255);
  border-radius: 4.5px;
  color: #ff634d;
}
.box--grid {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 1rem;
  padding: 1rem;
  background: #009dda;
  border: 1px solid rgb(255, 255, 255);
  overflow: hidden;
  text-align: center;
  color: rgb(255, 255, 255);
}
.box--form {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  width: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
}
.box--form .header--info {
  position: relative;
  width: 100%;
  display: block;
  padding: 24px;
  border-radius: 6px 6px 0 0;
}
.box--form .header--info .header--info__item {
  padding-bottom: 2px;
}
.box--form .btn:hover {
  color: rgb(255, 255, 255);
}
.box--globe {
  position: relative;
  width: 100%;
  max-width: 60%;
  padding: 48px;
  background-color: #009dda;
  border-radius: 18px;
  color: rgb(255, 255, 255);
}
.box--globe:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: 0px;
  right: auto;
  top: auto;
  bottom: -20px;
  border: 22px solid;
  border-color: transparent transparent transparent #009dda;
}
.box--info {
  width: 100%;
  padding: 24px;
  margin: 24px 0 0 0;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 3px;
}
.technical--test {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin: 0;
  font-family: "Roboto Mono", monospace;
  background: rgb(243, 243, 243);
  padding-bottom: 48px;
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}
.technical--test .h2 {
  width: 100%;
  color: #455a64;
  text-align: center;
  padding-top: 4px;
}
.main--test {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.main--test audio {
  display: block;
  margin: 0 auto;
}
.header--test {
  width: 100%;
  height: 75px;
  background: url(/assets/img/blue-logo.png) no-repeat 24px 12px;
  background-size: auto 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  color: #455a64;
  text-transform: uppercase;
  font-weight: bold;
}
.header--test .h1 {
  font-size: 1.25rem;
  padding-top: 22px;
  padding-left: 85px;
  font-weight: 500;
}
.video--test {
  border: 2px solid rgb(153, 153, 153);
  border-radius: 6px;
  padding: 24px;
}
.block--result__test {
  min-width: 520px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  border: 2px solid rgb(153, 153, 153);
  border-radius: 6px;
  padding-left: 24px;
  margin: 6px 0;
}
.block--result__test i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-left: 2px solid rgb(153, 153, 153);
  margin-left: 24px;
  padding: 24px;
  font-size: 3.5rem;
  font-weight: bold;
}
.buttons--test {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 24px;
}
.buttons--test .btn--submit,
.buttons--test .btn--cancel {
  margin: 0 12px;
}
.buttons--test .btn--cancel {
  background-color: rgb(255, 255, 255);
  color: #455a64;
  border-color: #455a64;
}
.buttons--test .btn--cancel:hover {
  color: #455a64;
  box-shadow: none;
}
.content--test {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.content--test i {
  margin-left: 24px;
  font-size: 2.5rem;
  font-weight: bold;
}
.expert-register {
  max-width: 1050px;
  margin: 0 auto;
}
@media (min-width: 18em) {
  .expert-register {
    padding-bottom: 52px;
  }
}
@media (min-width: 48em) {
  .expert-register {
    padding-bottom: 32px;
  }
}
.expert-register * {
  font-family: var(--basefont);
}
.expert-register__header {
  margin-top: var(--gutterlarge);
}
@media (min-width: 18em) {
  .expert-register__header {
    text-align: center;
  }
}
@media (min-width: 60em) {
  .expert-register__header {
    text-align: left;
  }
}
.expert-register__wrap {
  margin-top: calc(var(--gutterwidth) * 2);
  display: flex;
  justify-content: space-around;
}
.expert-register__aside {
  margin-right: auto;
}
@media (min-width: 18em) {
  .expert-register__aside {
    display: none;
  }
}
@media (min-width: 60em) {
  .expert-register__aside {
    display: block;
  }
}
.expert-register__aside img {
  margin-top: calc(var(--gutterwidth) * 2);
}
.expert-register__aside-title {
  margin-top: 52px;
}
.expert-register__main {
  border-radius: 10px;
  width: 676px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}
.expert-register__bigtitle {
  font-weight: 200;
  font-size: var(--s-big);
  color: var(--color-text);
}
.expert-register__basetitle {
  font-weight: 200;
  font-size: var(--base);
  color: var(--color-text);
}
.expert-register__xsmalltitle {
  font-weight: 200;
  font-size: var(--x-small);
  color: var(--color-text);
}
.expert-register__titlestrong {
  font-weight: 300;
}
.expert-register__steplabel {
  font-weight: 500;
  font-size: var(--s-small);
  color: var(--dusk);
}
.expert-register__step3wrap {
  max-width: 560px;
  margin: 0 auto;
}
.expert-register__step3columns {
  display: grid;
  grid-template-columns: 316px 227px;
  grid-gap: 19px;
}
.expert-register__step3billing {
  border: solid 1px var(--color-text);
  border-radius: 4px;
  padding: 30px 16px 35px;
  display: grid;
  grid-template-rows: 1fr 82px 82px 40px;
  color: var(--steel);
  font-weight: 200;
  font-size: var(--small);
}
.expert-register__step3billing strong {
  font-weight: 400;
}
.expert-register__totalbox {
  padding: 16px 0;
  border-top: 1px solid var(--light-grey-blue);
  border-bottom: 1px solid var(--light-grey-blue);
  text-transform: uppercase;
}
.expert-register__boxesprices {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  grid-column-gap: 16px;
}
.expert-register__boxprice {
  cursor: pointer;
  border: solid 1px var(--light-grey-blue);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: var(--small);
  color: var(--color-text);
  border-radius: 4px;
}
.expert-register__boxprice--selected {
  border: solid 1px var(--expert-orange);
  color: var(--expert-orange);
}
.expert-register__price {
  margin: 10px auto;
  font-size: var(--medium);
}
.expert-register__discount {
  margin: 24px auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 16px;
}
.expert-register__discount label {
  grid-column: 1/-1;
}
.expert-register__discountcta {
  font-size: var(--x-small);
  color: var(--expert-orange);
  align-self: center;
  cursor: pointer;
}
.expert-register__confirmMessage {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  margin: 0 auto;
  color: var(--color-text);
  font-weight: 200;
}
.expert-register__payment {
  margin-bottom: 0;
}
.expert-register__payment .input.StripeElement {
  display: flex;
  align-items: center;
  border: 1px solid var(--light-grey-blue);
  margin-top: 5px;
}
.expert-register__payment .input.StripeElement > *:first-child {
  flex: 1 0 100%;
}
.expert-register__cards img {
  margin-right: 6px;
}
.expert-register__cards img:last-child {
  margin-right: 0;
}
.expert-register__stripelogo {
  display: flex;
  align-items: center;
  font-size: var(--small);
  color: var(--color-text);
}
.expert-register__stripelogo > * {
  margin-right: 5px;
}
.expert-register__checkboxwrap {
  display: flex;
  align-items: center;
  font-weight: 200;
  font-size: var(--small);
  color: var(--color-text);
  margin-left: 0;
}
.expert-register__checkboxwrap a {
  color: var(--expert-orange);
}
.expert-register__checkboxwrap a:hover {
  color: var(--expert-orange-dark);
}
.expert-register__checkboxwrap .checkbox {
  margin: 12px 0;
}
.expert-register__checkboxwrap .checkbox label {
  cursor: pointer;
}
.expert-register__checkboxwrap input[type=checkbox] {
  display: none;
}
.expert-register__checkboxwrap input[type=checkbox] + label:before {
  content: "\eb15";
  font-family: "icomoon";
  color: transparent;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(102, 102, 102);
  border-radius: 2px;
  margin-right: 12px;
  position: relative;
  top: -1px;
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}
.expert-register__checkboxwrap input[type=checkbox]:checked + label:before {
  content: "\eb15";
  font-family: "icomoon";
  color: #009dda;
  border: 1px solid transparent;
  -webkit-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -moz-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -ms-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}
.expert-register__checkboxwrap input[type=checkbox] + label:before {
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 8px;
  text-align: center;
}
.expert-register__checkboxwrap input[type=checkbox]:checked + label:before {
  color: var(--white);
  background: var(--expert-orange);
}
.expert-register form {
  display: block;
  margin: 0 auto;
  max-width: 310px;
}
.expert-register .input-field {
  width: 100%;
}
.expert-register .form__group {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.expert-register .form__group,
.expert-register label {
  position: static;
}
.expert-register label {
  font-size: 12px;
  font-weight: 200;
  color: var(--dusk);
}
.expert-register input,
.expert-register textarea {
  box-sizing: border-box;
  padding: 0 calc(var(--gutterwidth) / 2);
  border-radius: 4px;
  border: solid 1px var(--pale-blue);
  background-color: #ffffff;
  color: var(--color-text);
  font-size: var(--small);
}
.expert-register input:focus,
.expert-register textarea:focus {
  border: solid 1px var(--expert-orange);
  box-shadow: none;
}
.expert-register input:focus + label,
.expert-register textarea:focus + label {
  color: var(--steel);
}
.expert-register input {
  height: 36px;
  margin-bottom: 0;
}
.expert-register .form__error {
  display: flex;
  align-items: center;
  color: var(--error);
  font-size: var(--small);
  font-weight: 300;
  padding-top: var(--gap);
}
.expert-register .form__error [class^=glicon-],
.expert-register .form__error [class*=" glicon-"] {
  font-size: var(--normal);
  margin-right: 5px;
}
.expert-register .message--error {
  width: 100%;
  display: block;
  text-align: left;
  color: #ff634d;
  font-size: 0.87rem;
}
.expert-register app-password-strength-bar .pwd-strength {
  margin: 0 auto;
}
.expert-register .mat-form-field-appearance-legacy .mat-form-field-infix {
  border: solid 1px var(--pale-blue);
  width: 100%;
  padding-left: calc(var(--gutterwidth) / 2);
  padding-right: calc(var(--gutterwidth) / 2);
  color: var(--color-text);
  border-radius: 4px;
}
.expert-register .mat-select-value-text {
  font-size: var(--small);
}
.expert-register .mat-form-field-appearance-legacy .mat-form-field-underline {
  display: none;
}
.legacy-expert__item {
  display: flex;
  align-items: center;
}
.legacy-expert__item input,
.legacy-expert__item label {
  align-self: flex-start;
}
.legacy-text-expert {
  font-size: 11px;
  font-weight: 300;
  line-height: 17px;
  color: #858a94;
  padding: 16px 0 8px;
}
.legacy-text-expert a {
  font-size: 11px;
  font-weight: 500;
  color: var(--expert-orange);
}
.legacy-text-expert a:hover {
  color: var(--expert-orange-dark);
}
.gl-expert__editorScreen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  z-index: 99999;
}
@media (min-width: 18em) {
  .gl-expert__editorScreen {
    background-color: #ffffff;
  }
}
@media (min-width: 60em) {
  .gl-expert__editorScreen {
    background-color: #f5f7fa;
  }
}
.gl-expert__editorScreen--nav {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 6px -1px rgba(10, 22, 70, 0.1), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #fff;
  padding: 0 56px;
}
@media (min-width: 18em) {
  .gl-expert__editorScreen--nav {
    display: none;
  }
}
@media (min-width: 60em) {
  .gl-expert__editorScreen--nav {
    display: flex;
  }
}
.gl-expert__editorScreen--nav .l-image {
  width: 85px;
  height: 23px;
  background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/services/logo-editor-expert.svg) no-repeat left top;
  background-size: contain;
}
.gl-expert__editorScreen--nav .m-image {
  width: 83px;
  height: 38px;
  align-self: flex-end;
  background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/services/courses-image-expert.svg) no-repeat left 100%;
  background-size: contain;
}
.gl-expert__editorScreen--nav .i-image {
  width: 158px;
  height: 30px;
  background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/services/icons-editor-expert.svg) no-repeat left top;
  background-size: contain;
}
.gl-expert__editorScreen--tools {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 24px 0 56px;
}
@media (min-width: 18em) {
  .gl-expert__editorScreen--tools {
    display: none;
  }
}
@media (min-width: 60em) {
  .gl-expert__editorScreen--tools {
    display: flex;
  }
}
.gl-expert__editorScreen--tools .b-image {
  width: 100px;
  height: 36px;
  background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/services/button-expert.svg) no-repeat left top;
  background-size: contain;
}
.gl-expert__editorScreen--tools .t-image {
  width: 483px;
  height: 30px;
  background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/services/toolbar-expert.svg) no-repeat left top;
  background-size: contain;
}
.gl-expert__wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  z-index: 99999;
}
@media (min-width: 18em) {
  .gl-expert__wrapper {
    background-color: var(--white);
  }
}
@media (min-width: 60em) {
  .gl-expert__wrapper {
    align-items: center;
    border: solid 1px #979797;
    background-color: rgba(38, 42, 49, 0.5);
  }
}
.gl-expert__box {
  position: relative;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 16px 16px -1px rgba(10, 22, 70, 0.1), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #fff;
  box-sizing: border-box;
}
@media (min-width: 18em) {
  .gl-expert__box {
    max-width: 100%;
    min-height: 100vh;
    padding: 16px;
  }
}
@media (min-width: 60em) {
  .gl-expert__box {
    max-width: 832px;
    min-height: 504px;
    max-height: 504px;
    padding: 32px;
  }
}
.gl-expert__close {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.gl-expert__close:hover {
  color: var(--primary);
}
@media (min-width: 18em) {
  .gl-expert__close {
    right: 20px;
    top: 20px;
  }
}
@media (min-width: 60em) {
  .gl-expert__close {
    right: 24px;
    top: 24px;
  }
}
.gl-expert__title,
.gl-expert__form--title {
  width: 100%;
  color: var(--charcoal-grey);
  text-align: center;
  font-size: var(--s-big);
  font-weight: 500;
}
@media (min-width: 18em) {
  .gl-expert__title,
  .gl-expert__form--title {
    padding-top: 40px;
  }
}
.gl-expert__subtitle {
  width: 100%;
  color: var(--charcoal-grey);
  text-align: center;
  font-size: var(--normal);
  font-weight: 300;
  padding-top: 16px;
}
.gl-expert__cards {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background-color: #f5f7fa;
}
@media (min-width: 18em) {
  .gl-expert__cards {
    height: auto;
    margin: 24px 0 0 0;
    padding: 16px 16px 0;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 60em) {
  .gl-expert__cards {
    height: 204px;
    margin: 32px 0 0 0;
    padding: 24px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.gl-expert__cards--item {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 3px 3px -1px rgba(10, 22, 70, 0.1), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: var(--white);
  border: solid 1.5px transparent;
  color: var(--charcoal-grey);
  font-weight: 300;
  line-height: 22px;
  padding: 14px 16px;
  transition: var(--transition);
  cursor: pointer;
}
@media (min-width: 18em) {
  .gl-expert__cards--item {
    width: 100%;
    max-width: 368px;
    font-size: var(--x-small);
    height: 140px;
    margin-bottom: 16px;
  }
}
@media (min-width: 60em) {
  .gl-expert__cards--item {
    width: 100%;
    max-width: 224px;
    font-size: var(--normal);
    height: 156px;
    margin: 0;
  }
}
.gl-expert__cards--item:hover,
.gl-expert__cards--item.active {
  box-shadow: 0 16px 16px -1px rgba(10, 22, 70, 0.1), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  border: solid 1.5px var(--primary);
}
.gl-expert__cards--item:hover .title:after,
.gl-expert__cards--item.active .title:after {
  opacity: 1;
}
@media (min-width: 18em) {
  .gl-expert__cards--item:hover .title span,
  .gl-expert__cards--item.active .title span {
    display: inline;
  }
}
@media (min-width: 60em) {
  .gl-expert__cards--item:hover .title span,
  .gl-expert__cards--item.active .title span {
    display: none;
  }
}
.gl-expert__cards--item:hover .text,
.gl-expert__cards--item:hover .box--login .link,
.box--login .gl-expert__cards--item:hover .link,
.gl-expert__cards--item.active .text,
.gl-expert__cards--item.active .box--login .link,
.box--login .gl-expert__cards--item.active .link {
  opacity: 1;
}
@media (min-width: 18em) {
  .gl-expert__cards--item:hover .image,
  .gl-expert__cards--item.active .image {
    opacity: 1;
  }
}
@media (min-width: 60em) {
  .gl-expert__cards--item:hover .image,
  .gl-expert__cards--item.active .image {
    opacity: 0;
  }
}
.gl-expert__cards--item .title {
  font-size: var(--normal);
  pointer-events: none;
}
.gl-expert__cards--item .title:after {
  content: "";
  display: block;
  box-sizing: border-box;
  height: 1px;
  background-color: #e1e4e8;
  margin-top: 10px;
}
@media (min-width: 18em) {
  .gl-expert__cards--item .title:after {
    width: 108px;
    opacity: 1;
  }
}
@media (min-width: 60em) {
  .gl-expert__cards--item .title:after {
    width: 100%;
    opacity: 0;
  }
}
.gl-expert__cards--item .title b {
  font-weight: 500;
  white-space: pre;
}
@media (min-width: 18em) {
  .gl-expert__cards--item .title b {
    font-size: var(--normal);
  }
}
@media (min-width: 60em) {
  .gl-expert__cards--item .title b {
    font-size: var(--large);
  }
}
.gl-expert__cards--item .title span {
  font-weight: 500;
}
@media (min-width: 18em) {
  .gl-expert__cards--item .title span {
    display: inline;
    font-size: var(--normal);
  }
}
@media (min-width: 60em) {
  .gl-expert__cards--item .title span {
    display: block;
    font-size: var(--large);
    padding-top: 2px;
  }
}
.gl-expert__cards--item .text,
.gl-expert__cards--item .box--login .link,
.box--login .gl-expert__cards--item .link {
  pointer-events: none;
  line-height: 19px;
  padding-top: 10px;
  transition: var(--transition);
}
@media (min-width: 18em) {
  .gl-expert__cards--item .text,
  .gl-expert__cards--item .box--login .link,
  .box--login .gl-expert__cards--item .link {
    width: calc(100% - 95px);
    opacity: 1;
  }
}
@media (min-width: 60em) {
  .gl-expert__cards--item .text,
  .gl-expert__cards--item .box--login .link,
  .box--login .gl-expert__cards--item .link {
    width: 100%;
    opacity: 0;
  }
}
.gl-expert__cards--item .image {
  pointer-events: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  opacity: 1;
  transition: var(--transition);
}
@media (min-width: 18em) {
  .gl-expert__cards--item .image {
    width: 88px;
    height: 66px;
  }
}
@media (min-width: 60em) {
  .gl-expert__cards--item .image {
    width: 100px;
    height: 75px;
  }
}
.gl-expert__cards--item .image.company {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/services/icon-company.svg);
}
.gl-expert__cards--item .image.client {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/services/icon-client.svg);
}
.gl-expert__cards--item .image.education {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/services/icon-education.svg);
}
.gl-expert__form {
  width: 100%;
  display: flex;
}
@media (min-width: 18em) {
  .gl-expert__form {
    min-height: calc(100vh - 172px);
    flex-direction: column;
    padding: 8px 8px 24px;
  }
}
@media (min-width: 60em) {
  .gl-expert__form {
    min-height: 0;
    flex-direction: row;
    padding: 8px 8px 0;
  }
}
.gl-expert__form--title {
  line-height: 33px;
}
@media (min-width: 18em) {
  .gl-expert__form--title {
    width: 100%;
    padding: var(--gutterbig) 16px;
    margin: 0;
  }
}
@media (min-width: 60em) {
  .gl-expert__form--title {
    font-weight: 300;
    padding: var(--gutterwidth) 0 var(--gutterlarge);
  }
}
.gl-expert__form--avatar {
  width: 100%;
}
@media (min-width: 60em) {
  .gl-expert__form--avatar {
    max-width: 272px;
  }
}
.gl-expert__form--avatar img {
  width: 100%;
  min-height: 276px;
  object-fit: contain;
}
@media (min-width: 18em) {
  .gl-expert__form--avatar img {
    display: none;
  }
}
@media (min-width: 60em) {
  .gl-expert__form--avatar img {
    display: block;
  }
}
.gl-expert__form--fields {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 18em) {
  .gl-expert__form--fields {
    padding: 0;
  }
}
@media (min-width: 60em) {
  .gl-expert__form--fields {
    padding: 80px 0 0 88px;
  }
}
.gl-expert__form--fields > div {
  width: 100%;
  max-width: 600px;
}
@media (min-width: 18em) {
  .gl-expert__form--fields.fields-not-gap {
    padding: 0;
  }
}
@media (min-width: 60em) {
  .gl-expert__form--fields.fields-not-gap {
    padding: 24px 0 0 88px;
  }
}
.gl-expert__form--fields__gap {
  display: block;
}
@media (min-width: 18em) {
  .gl-expert__form--fields__gap {
    margin-bottom: var(--gutterlarge);
  }
}
@media (min-width: 60em) {
  .gl-expert__form--fields__gap {
    margin-bottom: var(--gutterbig);
  }
}
.gl-expert__form--label {
  color: #4e5d78;
  font-size: var(--x-small);
  font-weight: 500;
  padding-bottom: 10px;
}
.gl-expert__buttons {
  width: 100%;
  display: flex;
}
@media (min-width: 18em) {
  .gl-expert__buttons {
    justify-content: center;
    padding-top: 32px;
  }
}
@media (min-width: 60em) {
  .gl-expert__buttons {
    justify-content: flex-end;
    padding-top: 60px;
  }
}
@media (min-width: 18em) {
  .gl-expert__buttons.form {
    padding: 0;
  }
}
@media (min-width: 18em) {
  .gl-expert__buttons gl-button {
    margin: 0 12px;
  }
}
@media (min-width: 60em) {
  .gl-expert__buttons gl-button {
    margin: 0 0 0 var(--gutterlarge);
  }
}
.gl-expert__link {
  width: 100%;
  display: block;
  color: var(--primary);
  font-size: var(--x-small);
  font-weight: 300;
  padding-top: 16px;
  transition: var(--transition);
}
.gl-expert__link:hover {
  color: var(--primary-darken);
}
.login-container {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
}
.login-container.login-centered {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--pale-grey);
  overflow-x: hidden;
}
@media (min-width: 18em) {
  .login-container.login-centered {
    padding: 16px;
  }
}
@media (min-width: 60em) {
  .login-container.login-centered {
    padding-top: 50px;
  }
}
@media (min-width: 18em) {
  .login-container.login-centered .logo {
    max-width: 80px;
    margin-bottom: var(--gap);
  }
}
@media (min-width: 60em) {
  .login-container.login-centered .logo {
    max-width: 100px;
    margin-bottom: var(--gutterwidth);
  }
}
@media (min-width: 18em) {
  .login-container app-question {
    max-width: 100%;
  }
}
@media (min-width: 60em) {
  .login-container app-question {
    max-width: 400px;
  }
}
.login-container app-dynamic-form {
  max-width: 400px;
}
.login-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (min-width: 18em) {
  .login-container form {
    max-width: 100%;
  }
}
@media (min-width: 60em) {
  .login-container form {
    max-width: 400px;
  }
}
@media (min-width: 18em) {
  .login-container form.form__passwword {
    max-width: 100%;
  }
}
@media (min-width: 18em) {
  .login-container__password form {
    max-width: 100%;
  }
}
.login-info {
  position: relative;
  width: 50%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/bg-login.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  text-align: center;
}
@media (min-width: 18em) {
  .login-info {
    display: none;
  }
}
@media (min-width: 60em) {
  .login-info {
    display: flex;
    padding: 0 6%;
  }
}
@media (min-width: 80em) {
  .login-info {
    padding: 0 8%;
  }
}
@media (min-width: 150em) {
  .login-info {
    padding: 0 10%;
  }
}
.login-info.kepler {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/keplerMask.png);
}
.login-info.mars {
  background-image: url(https://min.objects.gamelearn.io/statics.mars/statics/marsMask.jpg);
}
.login-info.roleplay {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/roleplayLoginBackground.png);
}
.login-info__character {
  width: 100%;
  height: 300px;
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/character-login.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 32px;
}
@media (min-width: 80em) {
  .login-info__character {
    height: 340px;
    min-width: 340px;
    margin-top: 48px;
  }
}
@media (min-width: 125em) {
  .login-info__character {
    height: 400px;
    min-width: 400px;
  }
}
@media (min-width: 150em) {
  .login-info__character {
    height: 460px;
    min-width: 460px;
  }
}
.login-info__character.admin {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/elsa-campus.png);
}
.login-info__character.kepler {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/elsa-kepler.png);
}
.login-info__character.mars {
  background-image: url(https://min.objects.gamelearn.io/statics.mars/statics/logo.png);
}
.login-info__character.roleplay {
  background-image: none;
}
.login-info__character.campus {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/elsa-wise.png);
}
.login-info__character.editor {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/elsa-editor.png);
}
.login-info__logo {
  position: absolute;
  left: 40px;
  bottom: 64px;
  width: 160px;
  height: 32px;
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/gs-logo.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.login-info__logo--kepler {
  width: 318px;
  height: 32px;
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/logoKepler.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto var(--gutterlarge);
}
.kepler .login-info__logo {
  display: none;
}
.login-info__logo--mars {
  font-size: var(--icon-huge);
  font-weight: bold;
  letter-spacing: 8px;
  padding-bottom: 12px;
}
.login-info__logo--roleplay {
  font-size: var(--icon-huge);
  font-weight: bold;
  letter-spacing: 2px;
  padding-bottom: 12px;
}
.kepler .login-info__logo.showActivation {
  display: block;
}
.login-info__title {
  font-size: var(--big);
  font-weight: 400;
  margin-bottom: calc(var(--gutterlarge) / 2);
}
@media (min-width: 125em) {
  .login-info__title {
    font-size: 40px;
  }
}
.login-info__title.placeholder {
  text-transform: capitalize;
}
.login-info__title b {
  font-weight: bold;
}
.login-info__text {
  line-height: 1.4em;
  font-weight: 200;
  font-size: var(--s-big);
  margin: 0;
}
@media (min-width: 125em) {
  .login-info__text {
    font-size: 32px;
  }
}
.kepler .login-info__text {
  font-weight: 300;
  line-height: 34px;
}
.login-panel {
  position: relative;
  background-color: var(--white);
}
@media (min-width: 18em) {
  .login-panel {
    width: 100%;
    flex-grow: 0;
  }
}
@media (min-width: 60em) {
  .login-panel {
    width: 50%;
    flex-grow: 1;
  }
}
.login-panel > div {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 18em) {
  .login-panel > div {
    padding: 16px;
    min-height: 100vh;
  }
}
@media (min-width: 38em) {
  .login-panel > div {
    padding: 16px 16px 62px;
    min-height: calc(100vh - 32px);
  }
}
@media (min-width: 60em) {
  .login-panel > div {
    padding: 16px;
    min-height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.login-panel.scroll-y__autoregister {
  overflow-y: auto;
}
@media (min-width: 18em) {
  .login-panel.scroll-y__autoregister {
    padding: 16px 0 24px;
  }
}
@media (min-width: 60em) {
  .login-panel.scroll-y__autoregister {
    padding: 28px 0 78px;
  }
}
@media (min-width: 18em) {
  .login-panel.scroll-y__autoregister.kepler {
    padding: 64px 0 168px;
  }
}
@media (min-width: 60em) {
  .login-panel.scroll-y__autoregister.kepler {
    padding: 28px 0 78px;
  }
}
.login-panel.scroll-y__autoregister > div {
  position: static;
  transform: none;
}
.login-panel .form__group {
  max-width: 400px;
}
.login-panel.scorm {
  background-color: #f5f7fa;
}
.login-panel__logo--image {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/logo-gamelearn.png);
}
@media (min-width: 18em) {
  .login-panel__logo--image {
    margin-bottom: 16px;
    width: 194px;
    min-height: 24px;
  }
}
@media (min-width: 60em) {
  .login-panel__logo--image {
    margin-bottom: 40px;
    width: 114px;
    height: 87px;
  }
}
.login-panel__logo--image.admin {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/login-admin.svg);
}
@media (min-width: 18em) {
  .login-panel__logo--image.admin {
    width: 113px;
    height: 32px;
  }
}
@media (min-width: 60em) {
  .login-panel__logo--image.admin {
    width: 162px;
    height: 46px;
  }
}
.login-panel__logo--image.roleplay {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/gs-logo-grey.png);
}
@media (min-width: 18em) {
  .login-panel__logo--image.roleplay {
    width: 130px;
    height: 40px;
  }
}
@media (min-width: 60em) {
  .login-panel__logo--image.roleplay {
    margin-bottom: 6px;
    width: 180px;
    height: 80px;
  }
}
.login-panel__logo--image.campus {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/login-campus.svg);
}
@media (min-width: 18em) {
  .login-panel__logo--image.campus {
    width: 140px;
    height: 24px;
  }
}
@media (min-width: 60em) {
  .login-panel__logo--image.campus {
    width: 198px;
    height: 34px;
  }
}
.login-panel__logo--image.editor {
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/login-editor.svg);
}
@media (min-width: 18em) {
  .login-panel__logo--image.editor {
    width: 109px;
    height: 29px;
  }
}
@media (min-width: 60em) {
  .login-panel__logo--image.editor {
    width: 158px;
    height: 42px;
  }
}
@media (min-width: 18em) {
  .login-panel__logo--image.kepler,
  .kepler .login-panel__logo--image {
    width: 194px;
    min-height: 24px;
    background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/logoKeplerDark.svg);
    background-position: center top;
  }
}
@media (min-width: 60em) {
  .login-panel__logo--image.kepler,
  .kepler .login-panel__logo--image {
    width: 114px;
    height: 87px;
    background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/logo-gamelearn.png);
  }
}
@media (min-width: 60em) {
  .login-panel__logo--image.activationAccount.kepler {
    display: none;
  }
}
@media (min-width: 18em) {
  .login-panel__logo--mobile {
    position: absolute;
    left: 16px;
    top: 24px;
    width: 134px;
    height: 24px;
    background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/logo-gamelearn.svg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (min-width: 60em) {
  .login-panel__logo--mobile {
    display: none;
  }
}
@media (min-width: 18em) {
  .login-panel__logo--mobile.activationAccount {
    display: none;
  }
}
@media (min-width: 18em) {
  .kepler .login-panel__logo--mobile.activationAccount {
    position: static;
    margin-top: var(--gutterbig);
    display: block;
  }
}
@media (min-width: 60em) {
  .kepler .login-panel__logo--mobile.activationAccount {
    display: none;
  }
}
@media screen and (min-device-width: 320px) and (max-device-width: 1024px) and (orientation: landscape) {
  .login-box,
  .login-panel {
    overflow-y: auto;
  }
}
.login-panel__logo {
  width: 100%;
  background-image: url(https://min.gamelearn.io/css-resources/gamelearn/resources/campus/logo-gamelearn.png);
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 18em) {
  .login-panel__logo {
    height: 60px;
    background-size: auto 60px;
    margin-bottom: var(--gap);
  }
}
@media (min-width: 60em) {
  .login-panel__logo {
    height: 87px;
    background-size: auto 87px;
    margin-bottom: var(--gutterlarge);
  }
}
.login-panel__logo--client img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 18em) {
  .login-panel__logo--client {
    position: absolute;
    left: 16px;
    top: 16px;
    width: auto;
    height: 24px;
  }
}
@media (min-width: 60em) {
  .login-panel__logo--client {
    position: static;
    width: 100%;
    height: 40px;
    margin-bottom: var(--gutterwidth);
  }
}
.login-panel__title {
  width: 100%;
  color: var(--bright-sky-blue);
  font-weight: 300;
  margin-bottom: var(--gap);
  text-align: center;
}
@media (min-width: 18em) {
  .login-panel__title {
    font-size: var(--s-big);
  }
}
@media (min-width: 60em) {
  .login-panel__title {
    font-size: 32px;
  }
}
.login-panel__title.kepler,
.kepler .login-panel__title {
  color: var(--kepler-green);
}
.login-panel__title.mars,
.mars .login-panel__title {
  color: var(--mars-orange);
}
.login-panel__title.roleplay,
.roleplay .login-panel__title {
  color: var(--roleplay-blue);
}
.login-panel__title.activate-account {
  margin-bottom: 0;
}
.login-panel__subtitle {
  color: var(--charcoal-grey);
  font-weight: 200;
}
@media (min-width: 18em) {
  .login-panel__subtitle {
    font-size: var(--normal);
    margin-bottom: var(--gap);
  }
}
@media (min-width: 60em) {
  .login-panel__subtitle {
    font-size: var(--medium);
    margin-bottom: var(--gutterlarge);
  }
}
.login-panel__text {
  font-weight: 200;
  font-size: var(--medium);
  padding-top: var(--gutterwidth);
}
.login-panel__text.bold {
  font-weight: 500;
}
.login-panel__text.activate-account {
  padding-bottom: var(--gutterlarge);
  text-align: center;
}
.login-panel__block {
  width: 100%;
  padding-top: 12px;
  padding-bottom: var(--gutterwidth);
  align-self: flex-start;
}
@media (min-width: 18em) {
  .login-panel__block {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (min-width: 60em) {
  .login-panel__block {
    max-width: 100%;
    margin: 0;
  }
}
.login-panel__block .legacy-text {
  font-size: 11px;
  font-weight: 300;
  line-height: 17px;
  color: #858a94;
  padding: 16px 0 8px;
}
.login-panel__block .legacy-text a {
  font-size: 11px;
  font-weight: 500;
}
.login-panel__block .legacy-text a:hover {
  text-decoration: underline;
}
.login-panel__block .checkbox {
  cursor: pointer;
  padding: 5px 0;
}
.login-panel__block .checkbox a {
  font-size: 14px;
  font-weight: 500;
  color: #007eff;
  transition: var(--transition);
}
.login-panel__block .checkbox a:hover {
  color: var(--primary-darken);
  text-decoration: underline;
}
.login-panel__link {
  display: inline-flex;
  font-size: var(--x-small);
  transition: var(--transition);
}
.login-panel__link.activate-account {
  color: var(--charcoal-grey);
  font-size: var(--normal);
  font-weight: 400;
  margin: var(--gutterwidth) 0 var(--gutterlarge);
}
.login-panel__link.activate-account:hover {
  color: var(--primary);
}
.login-panel__link:hover {
  text-decoration: underline;
}
.login-panel__help {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--charcoal-grey);
  font-weight: 300;
  font-size: var(--normal);
}
@media (min-width: 18em) {
  .login-panel__help {
    margin-top: 48px;
  }
}
@media (min-width: 60em) {
  .login-panel__help {
    margin-top: 56px;
  }
}
.login-panel__help--position {
  width: 100%;
  position: static;
  transform: none;
}
.login-panel__help a {
  cursor: pointer;
  padding-top: 6px;
}
.login-panel__help a:hover {
  text-decoration: underline;
}
.scroll-y__autoregister .login-panel__help a {
  padding-top: 8px;
}
.login-panel__help.no-margin {
  margin: 0;
}
.login-panel__help--register {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--pale-blue);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
@media (min-width: 18em) {
  .login-panel__help--register {
    min-width: 325px;
  }
}
@media (min-width: 60em) {
  .login-panel__help--register {
    min-width: 400px;
  }
}
.login-panel__help--register a {
  padding: 0 0 0 8px;
}
.login-box {
  position: relative;
  width: 100%;
  max-height: 449px;
  border-radius: 4px;
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.12), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #ffffff;
  color: var(--charcoal-grey);
  font-weight: 200;
  text-align: center;
}
@media (min-width: 18em) {
  .login-box {
    max-width: 100%;
    padding: 16px 16px 24px;
  }
}
@media (min-width: 60em) {
  .login-box {
    width: 520px;
    min-height: 449px;
    padding: 32px 32px 40px;
  }
}
@media (min-width: 18em) {
  .login-box.confirmPasswdLoginBox {
    min-height: 449px;
  }
}
@media (min-width: 18em) {
  .login-box.newPasswdLoginBox {
    min-height: 472px;
    max-height: 472px;
  }
}
.login-box .login-panel__help {
  width: 100%;
  margin-top: 0;
}
@media (min-width: 18em) {
  .login-box .login-panel__help {
    padding-top: 48px;
  }
}
@media (min-width: 60em) {
  .login-box .login-panel__help {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translate(-50%, 0);
    padding-top: 0;
  }
}
.login-box .form__group {
  position: relative;
  padding-bottom: 12px;
}
.login-box .form__group.no-padding-bottom {
  padding-bottom: 0;
}
@media (min-width: 60em) {
  .login-box .form__group .form__error.position {
    position: absolute;
    left: 0;
    bottom: -22px;
  }
}
@media (min-width: 18em) {
  .login-box .m-btn-login {
    margin-top: 24px;
  }
}
@media (min-width: 60em) {
  .login-box .m-btn-login {
    margin-top: 40px;
  }
}
@media (min-width: 18em) {
  .login-box .m-btn-login.confirmPasswdLoginBox .login-box .m-btn-login {
    margin-top: 40px;
  }
}
@media (min-width: 60em) {
  .login-box .m-btn-login.confirmPasswdLoginBox .login-box .m-btn-login {
    margin-top: 40px;
  }
}
@media (min-width: 18em) {
  .confirmPasswdLoginBox .m-btn-login {
    margin-top: 40px;
  }
}
@media (min-width: 60em) {
  .confirmPasswdLoginBox .m-btn-login {
    margin-top: 40px;
  }
}
.login-box__title {
  width: 100%;
  font-size: var(--medium);
  padding: 0 32px 16px;
}
.login-box__back {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: var(--x-small);
  font-weight: 300;
}
@media (min-width: 18em) {
  .login-box__back {
    top: 19px;
    left: 16px;
  }
}
@media (min-width: 60em) {
  .login-box__back {
    top: 24px;
    left: 24px;
  }
}
@media (min-width: 18em) {
  .login-box__back > span {
    display: none;
  }
}
@media (min-width: 60em) {
  .login-box__back > span {
    display: inline;
  }
}
.login-box__back a {
  margin-right: 6px;
  transform: rotate(-180deg);
}
.login-box__icon {
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--aqua-marine);
  font-size: var(--big);
  padding-bottom: 12px;
}
@media (min-width: 18em) {
  .login-box__icon.paddingTopLarge {
    padding-top: 50px;
  }
}
@media (min-width: 60em) {
  .login-box__icon.paddingTopLarge {
    padding-top: 60px;
  }
}
.login-box__description {
  width: 100%;
  font-size: var(--normal);
  line-height: 1.4rem;
  padding-top: 16px;
}
.login-box__description.no-padding-top {
  padding-top: 0;
}
.login-box__description.bold,
.login-box__description b {
  font-weight: 500;
}
.scorm-entry-form-box {
  position: relative;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.12), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #ffffff;
  color: var(--charcoal-grey);
  font-weight: 200;
  text-align: center;
}
@media (min-width: 18em) {
  .scorm-entry-form-box {
    max-width: 100%;
    margin-bottom: 120px;
    padding: 40px;
  }
}
@media (min-width: 60em) {
  .scorm-entry-form-box {
    width: 492px;
    margin: 60px 0 80px;
    padding: 40px;
  }
}
.scorm-entry-form-box .title {
  font-size: 16px;
  font-weight: 500;
}
.scorm-entry-form-box .form__group {
  max-width: 300px;
  margin: 0 auto;
}
.scorm-entry-form-box .form__group input {
  height: 36px;
}
.scorm-entry-form-box .form__group .gl-select-item {
  height: 36px !important;
}
.scorm-entry-form-box .scorm-checkbox {
  width: 100%;
  max-width: 300px;
  margin: 6px auto 0;
  padding-bottom: 0;
}
.scorm-entry-form-box .scorm-checkbox .no-label-text {
  text-align: left;
}
.scorm-entry-form-box .scorm-checkbox a {
  padding-left: 0;
}
.kepler .no-label-text a {
  color: var(--kepler-green);
}
lms-select-dropdown {
  width: 100%;
}
.gl-select {
  min-width: 64px;
  max-width: 600px;
}
.gl-select.min {
  max-width: 80px;
}
.gl-select.small .gl-select-item {
  height: 30px;
}
.gl-select.large .gl-select-item {
  height: 48px;
}
.gl-select__label {
  width: 100%;
  color: #4e5d78;
  font-size: 12px;
  font-weight: 200;
  text-align: left;
  padding-bottom: 6px;
}
.gl-select-item {
  position: relative;
  width: 100%;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border-radius: 3px;
  border: solid 1px #e1e4e8;
  background-color: white;
  color: #262a31;
  line-height: 14px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  padding: 0 12px;
}
.gl-select-item.disabled {
  background-color: #e1e4e8;
  border: solid 1px #e1e4e8;
  color: var(--charcoal-grey);
  cursor: not-allowed;
}
.gl-select-item.disabled [class^=glicon-],
.gl-select-item.disabled [class*=" glicon-"] {
  color: #b0b7c3;
}
.gl-select-item.open {
  border: solid 1px var(--primary);
  color: #262a31;
}
.gl-select-item.open [class^=glicon-],
.gl-select-item.open [class*=" glicon-"] {
  color: var(--primary);
  font-size: 20px;
  transform: rotate(-180deg);
}
.gl-select-item.open .gl-dropdown {
  display: block;
  z-index: 1;
}
.gl-select-item [class^=glicon-],
.gl-select-item [class*=" glicon-"] {
  color: #262a31;
  font-size: 20px;
  line-height: 0;
  margin-left: 8px;
  transition: var(--transition);
}
.gl-selected-item {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  max-width: 100%;
  height: 30px;
}
.gl-selected-item.placeholder {
  color: #b0b7c3;
  font-size: 14px;
  font-weight: 300;
}
.gl-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  z-index: -1;
  display: none;
  width: 100%;
  max-height: 145px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.12), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: white;
  color: #262a31;
  font-size: 0.87rem;
  transition: var(--transition);
  overflow-y: auto;
}
.gl-dropdown__option {
  width: 100%;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: var(--transition);
  font-size: 14px;
  font-weight: 300;
  padding: 0 12px;
}
.gl-dropdown__option.disabled {
  background-color: transparent;
  cursor: not-allowed;
  color: #cdd0d4;
}
.gl-dropdown__option:hover {
  background-color: #e1e4e8;
}
.gl-dropdown__option:last-child {
  border-bottom: none;
}
.autoregister {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f5f7fa;
}
.autoregister-header {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 6px -1px rgba(10, 22, 70, 0.1), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #ffffff;
}
@media (min-width: 18em) {
  .autoregister-header {
    padding: 0 16px;
  }
}
@media (min-width: 60em) {
  .autoregister-header {
    padding: 0 112px;
  }
}
.autoregister-header__link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 0;
  z-index: 1;
}
.autoregister-header__link [class^=glicon-] {
  font-size: var(--s-small);
  font-weight: 600;
  margin-left: 8px;
  padding-top: 1px;
}
.autoregister-header img {
  max-width: 132px;
}
.autoregister-background {
  width: 100%;
  height: 296px;
}
@media (min-width: 18em) {
  .autoregister-background {
    background: url(/assets/img/autoregister-background.jpg) no-repeat right top;
  }
}
@media (min-width: 60em) {
  .autoregister-background {
    background: url(/assets/img/autoregister-background.jpg) no-repeat left top;
    background-size: cover;
  }
}
@media (min-width: 18em) {
  .autoregister-background.unsubscribe {
    height: 356px;
    background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/unsuscribe.png) no-repeat center;
    background-size: cover;
  }
}
@media (min-width: 60em) {
  .autoregister-background.unsubscribe {
    height: 374px;
    background: url(https://min.gamelearn.io/css-resources/gamelearn/resources/unsuscribe.png) no-repeat left top;
    background-size: cover;
  }
}
.autoregister-popup__centered {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
@media (min-width: 18em) {
  .autoregister-popup__centered {
    align-items: center;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__centered {
    align-items: flex-start;
  }
}
@media screen and (min-device-width: 320px) and (max-device-width: 1024px) and (orientation: landscape) {
  .autoregister-popup__centered {
    overflow-y: auto;
  }
}
.autoregister-popup__activation {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.12), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #ffffff;
  color: var(--charcoal-grey);
  z-index: 2;
}
@media (min-width: 18em) {
  .autoregister-popup__activation {
    max-width: calc(100% - 32px);
    min-height: 339px;
    padding: 24px 24px 32px;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation {
    max-width: 520px;
    min-height: 362px;
    height: auto;
    padding: 40px 48px;
    margin-top: 208px;
  }
}
@media (min-width: 18em) {
  .autoregister-popup__activation.unsubscribe {
    min-height: 368px;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation.unsubscribe {
    min-height: 400px;
    margin-top: 172px;
  }
}
@media (min-width: 18em) {
  .autoregister-popup__activation.unsubscribe {
    padding: 32px;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation.unsubscribe {
    padding: 40px 48px;
  }
}
.autoregister-popup__activation--icon {
  line-height: 0;
  font-weight: 300;
}
@media (min-width: 18em) {
  .autoregister-popup__activation--icon {
    font-size: 30px;
    padding-bottom: 10px;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation--icon {
    font-size: 40px;
    padding-bottom: 16px;
  }
}
.autoregister-popup__activation--icon.alert {
  color: var(--yellowish-orange);
}
.autoregister-popup__activation--icon.success {
  color: var(--aqua-marine);
}
.autoregister-popup__activation--icon.failed {
  color: var(--error);
}
.autoregister-popup__activation--image {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 32px;
}
.autoregister-popup__activation--image img {
  max-width: 180px;
}
.autoregister-popup__activation--title {
  width: 100%;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 18em) {
  .autoregister-popup__activation--title {
    font-size: 19px;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation--title {
    font-size: 24px;
  }
}
.autoregister-popup__activation--text {
  width: 100%;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4em;
  text-align: center;
}
@media (min-width: 18em) {
  .autoregister-popup__activation--text {
    padding: 16px 0 0;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation--text {
    padding: 16px 0 0;
  }
}
.autoregister-popup__activation--text.firstStep {
  padding-bottom: 50px;
}
.autoregister-popup__activation--text b {
  font-weight: 500;
}
.autoregister-popup__activation--question {
  width: 100%;
  font-size: 16px;
  font-weight: 200;
  text-align: center;
  line-height: 1.4em;
  padding: 16px 0 0;
}
.autoregister-popup__activation--question b {
  font-weight: 500;
}
.unsubscribe .autoregister-popup__activation--question {
  padding: 24px 0 0;
}
.autoregister-popup__activation--link {
  text-align: center;
}
@media (min-width: 18em) {
  .autoregister-popup__activation--link {
    padding: 16px 0 0;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation--link {
    padding: 16px 0 0;
  }
}
.autoregister-popup__activation--link a {
  cursor: pointer;
}
@media (min-width: 18em) {
  .autoregister-popup__activation--buttons {
    padding: 0;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation--buttons {
    padding: 10px 0 0;
  }
}
.autoregister-popup__activation--goBack {
  position: absolute;
  top: 24px;
  left: 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 18em) {
  .autoregister-popup__activation--goBack {
    top: 16px;
    left: 16px;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation--goBack {
    top: 24px;
    left: 24px;
  }
}
.autoregister-popup__activation--goBack [class^=glicon-],
.autoregister-popup__activation--goBack [class*=" glicon-"] {
  color: var(--primary);
  transform: rotate(-180deg);
  margin-right: 6px;
  transition: var(--transition);
}
.autoregister-popup__activation--goBack [class^=glicon-]:hover,
.autoregister-popup__activation--goBack [class*=" glicon-"]:hover {
  color: var(--primary-darken);
}
@media (min-width: 18em) {
  .autoregister-popup__activation--goBack span:last-child {
    display: none;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation--goBack span:last-child {
    display: inline;
  }
}
@media (min-width: 18em) {
  .autoregister-popup__activation .btn {
    margin-top: 32px;
  }
}
@media (min-width: 60em) {
  .autoregister-popup__activation .btn {
    margin-top: 40px;
  }
}
.autoregister-success {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f7fa;
}
@media (min-width: 18em) {
  .autoregister-success {
    padding: 16px;
  }
}
@media (min-width: 60em) {
  .autoregister-success {
    padding: 48px;
  }
}
.autoregister-success__popup {
  width: 100%;
  max-width: 448px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.12), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #ffffff;
}
@media (min-width: 18em) {
  .autoregister-success__popup {
    padding: 16px;
    height: 304px;
    margin-top: 22px;
  }
}
@media (min-width: 60em) {
  .autoregister-success__popup {
    padding: 52px;
    height: 317px;
    margin-top: 24px;
  }
}
@media (min-width: 18em) {
  .autoregister-success__popup.firstStep {
    width: calc(100% - 32px);
  }
}
@media (min-width: 60em) {
  .autoregister-success__popup.firstStep {
    width: 520px;
    height: 345px;
    padding: 40px 52px 64px;
    margin-top: 208px;
  }
}
.autoregister-success__popup--title {
  color: var(--charcoal-grey);
  line-height: 28px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 16px 0 0;
}
.autoregister-success__popup--title.firstStep {
  padding-bottom: 0;
}
.autoregister-success__popup--text {
  font-size: 16px;
  line-height: 22px;
  font-weight: 200;
  text-align: center;
  padding: 16px 0 32px;
}
.autoregister-success__popup [class^=glicon-],
.autoregister-success__popup [class*=" glicon-"] {
  color: var(--aqua-marine);
}
@media (min-width: 18em) {
  .autoregister-success__popup [class^=glicon-],
  .autoregister-success__popup [class*=" glicon-"] {
    font-size: 31px;
  }
}
@media (min-width: 60em) {
  .autoregister-success__popup [class^=glicon-],
  .autoregister-success__popup [class*=" glicon-"] {
    font-size: 39px;
  }
}
.autoregister-group {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.12), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #ffffff;
}
@media (min-width: 18em) {
  .autoregister-group {
    max-width: calc(100% - 32px);
    margin: 32px auto;
  }
}
@media (min-width: 60em) {
  .autoregister-group {
    max-width: 784px;
    margin: 72px auto;
  }
}
.autoregister-group__info {
  width: 100%;
  display: flex;
  color: var(--charcoal-grey);
}
@media (min-width: 18em) {
  .autoregister-group__info {
    height: auto;
    flex-wrap: wrap;
  }
}
@media (min-width: 60em) {
  .autoregister-group__info {
    height: 194px;
    flex-wrap: nowrap;
  }
}
.autoregister-group__info--image {
  width: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}
@media (min-width: 18em) {
  .autoregister-group__info--image {
    max-width: 100%;
    height: 159px;
    border-radius: 4px 4px 0 0;
    flex-grow: 0;
  }
}
@media (min-width: 60em) {
  .autoregister-group__info--image {
    max-width: 350px;
    height: auto;
    border-radius: 4px 0 0;
    flex-grow: 1;
  }
}
@media (min-width: 18em) {
  .autoregister-group__info--data {
    padding: 14px 14px 24px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__info--data {
    padding: 24px;
  }
}
.autoregister-group__info--name {
  font-weight: 500;
  padding-bottom: 12px;
}
@media (min-width: 18em) {
  .autoregister-group__info--name {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__info--name {
    font-size: 20px;
    line-height: 28px;
  }
}
.autoregister-group__info--topic {
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 12px;
}
.autoregister-group__info--date {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
}
@media (min-width: 18em) {
  .autoregister-group__info--date {
    flex-wrap: wrap;
  }
}
@media (min-width: 60em) {
  .autoregister-group__info--date {
    flex-wrap: nowrap;
  }
}
@media (min-width: 18em) {
  .autoregister-group__info--date span:first-child {
    width: 100%;
    padding-bottom: 12px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__info--date span:first-child {
    width: auto;
    padding-right: 32px;
    padding-bottom: 0;
  }
}
.autoregister-group__form {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: flex-start;
  background-color: rgba(225, 228, 232, 0.5);
}
@media (min-width: 18em) {
  .autoregister-group__form {
    flex-direction: column;
    justify-content: center;
    padding: 0 14px 26px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__form {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 24px 24px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__form .form__group {
    margin-right: 24px;
  }
}
.autoregister-group__form .btn {
  width: 100%;
}
@media (min-width: 18em) {
  .autoregister-group__form .btn {
    max-width: 350px;
    margin-top: 16px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__form .btn {
    max-width: 212px;
    margin-top: 47px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__form .btn.m-error {
    margin-top: 26px;
  }
}
.autoregister-group__desc {
  color: var(--charcoal-grey);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
@media (min-width: 18em) {
  .autoregister-group__desc {
    padding: 24px 14px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__desc {
    padding: 24px;
  }
}
.autoregister-group__desc span:first-child {
  display: block;
  font-weight: 500;
  padding-bottom: 7px;
}
@media (min-width: 18em) {
  .autoregister-group__desc span:first-child {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 60em) {
  .autoregister-group__desc span:first-child {
    font-size: 20px;
    line-height: 28px;
  }
}
.survey {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bgcolor);
  color: var(--charcoal-grey);
}
.survey__header {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 6px -1px rgba(10, 22, 70, 0.1), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: #ffffff;
}
@media (min-width: 18em) {
  .survey__header {
    padding: 0 16px;
  }
}
@media (min-width: 60em) {
  .survey__header {
    padding: 0 112px;
  }
}
.survey__header img {
  max-width: 132px;
}
.survey__background {
  width: 100%;
  height: 296px;
}
@media (min-width: 18em) {
  .survey__background {
    background: url(/assets/img/autoregister-background.jpg) no-repeat right top;
    background-size: cover;
  }
}
@media (min-width: 60em) {
  .survey__background {
    background: url(/assets/img/autoregister-background.jpg) no-repeat left top;
    background-size: cover;
  }
}
.survey__form {
  width: 100%;
}
@media (min-width: 18em) {
  .survey__form {
    max-width: 700px;
    margin: -230px auto 88px;
    padding: 0 calc(var(--gutterlarge) / 2);
  }
}
@media (min-width: 60em) {
  .survey__form {
    max-width: 640px;
    margin: -150px auto 96px;
    padding: 0;
  }
}
@media (min-width: 18em) {
  .survey__form.finished {
    margin: -125px auto 96px;
  }
}
.survey__form--module {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 6px -1px rgba(10, 22, 70, 0.1), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: var(--white);
}
@media (min-width: 18em) {
  .survey__form--module {
    margin-bottom: var(--gutterwidth);
    padding: var(--gutterwidth);
  }
}
@media (min-width: 60em) {
  .survey__form--module {
    margin-bottom: var(--gutterlarge);
    padding: var(--gutterlarge);
  }
}
.survey__form--module.gap-bottom {
  padding-bottom: 8px;
}
.survey__form--module gl-checkbox {
  display: block;
  margin-bottom: calc(var(--gutterlarge) / 2);
}
.survey__form--module gl-textarea {
  display: block;
  margin-top: var(--gutterwidth);
}
.survey__form--module.success {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 18em) {
  .survey__form--module.success {
    padding: 48px 24px;
  }
}
@media (min-width: 60em) {
  .survey__form--module.success {
    padding: 56px;
  }
}
.survey__step {
  width: 100%;
  display: block;
  font-size: var(--small);
  padding-bottom: 8px;
}
.survey__question {
  width: 100%;
  display: block;
  font-size: var(--medium);
  font-weight: 300;
  line-height: 26px;
  padding-bottom: var(--gutterwidth);
}
.survey__question .subtitle {
  display: block;
  color: var(--blue-grey);
  font-weight: 300;
}
.survey__icon {
  font-size: calc(var(--icon-huge) * 1.2);
  color: var(--primary);
  line-height: 0;
}
.survey__feedback {
  font-size: var(--s-big);
  font-weight: 300;
  line-height: 31px;
  padding-top: 16px;
  text-align: center;
}
.survey__actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: var(--gutterlarge);
}
.gl-cookies {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99999;
}
.float--none {
  float: none;
}
.float--right {
  float: right;
}
.float--left {
  float: left;
}
.inline--block {
  display: inline-block;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.table {
  display: table;
}
.table--cell {
  display: table-cell;
}
.display--none {
  display: none;
}
.visibility--hidden {
  visibility: hidden;
}
.margin {
  margin: 24px;
}
.margin--left {
  margin-left: 24px;
}
.margin--top {
  margin-top: 24px;
}
.margin--right {
  margin-right: 24px;
}
.margin--bottom {
  margin-bottom: 24px;
}
.margin--none {
  margin: 0;
}
.margin--auto {
  margin: 0 auto;
}
.padding {
  padding: 24px;
}
.padding--left {
  padding-left: 24px;
}
.padding--bottom {
  padding-bottom: 24px;
}
.padding--top {
  padding-top: 24px;
}
.padding__top--double {
  padding-top: 48px;
}
.padding--right {
  padding-right: 24px;
}
.padding--none {
  padding: 0;
}
.gap {
  padding: 6px;
}
.gap--left {
  padding-left: 12px;
}
.gap--bottom {
  padding-bottom: 12px;
}
.gap--top {
  padding-top: 12px;
}
.gap--right {
  padding-right: 12px;
}
.width--xlarge {
  width: 100% !important;
}
.width--large {
  width: 75%;
}
.width--medium {
  width: 50%;
}
.width--xsmall {
  width: 33.333%;
}
.width--small {
  width: 25%;
}
.gutterheight {
  height: 24px;
}
.btn--centered {
  text-align: center;
  margin: 0 auto;
}
.hide {
  display: none;
}
@media (min-width: 18em) {
  .hide--mobile {
    display: none;
  }
}
@media (min-width: 48em) {
  .hide--mobile {
    display: block;
  }
}
@media (min-width: 18em) {
  .hide--tablet {
    display: block;
  }
}
@media (min-width: 48em) {
  .hide--tablet {
    display: none;
  }
}
@media (min-width: 80em) {
  .hide--tablet {
    display: block;
  }
}
@media (min-width: 18em) {
  .hide--desktop {
    display: block;
  }
}
@media (min-width: 80em) {
  .hide--desktop {
    display: none;
  }
}
@media (min-width: 18em) {
  .show--mobile {
    display: block;
  }
}
@media (min-width: 48em) {
  .show--mobile {
    display: none;
  }
}
@media (min-width: 18em) {
  .show--tablet {
    display: none;
  }
}
@media (min-width: 48em) {
  .show--tablet {
    display: block;
  }
}
@media (min-width: 80em) {
  .show--tablet {
    display: none;
  }
}
@media (min-width: 18em) {
  .show--desktop {
    display: none;
  }
}
@media (min-width: 80em) {
  .show--desktop {
    display: block;
  }
}
.overflow--hidden {
  overflow: hidden;
}
.overflow--auto {
  overflow: auto;
}
.overflow--x {
  overflow-x: scroll;
}
.overflow--y {
  overflow-y: scroll;
}
.text--ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}
.text--left {
  text-align: left;
}
.valign--top {
  vertical-align: top;
}
.valign--middle {
  vertical-align: middle;
}
.valign--baseline {
  vertical-align: baseline;
}
.color--base {
  color: #009dda;
}
.color--secondary {
  color: rgb(102, 102, 102);
}
.color--success {
  color: #009dda;
}
.color--error {
  color: #ff634d;
}
.color--black {
  color: rgb(0, 0, 0);
}
.color--white {
  color: rgb(255, 255, 255);
}
.color--grey {
  color: rgb(153, 153, 153);
}
.color--darkgrey {
  color: rgb(102, 102, 102);
}
.color--lightgrey {
  color: rgb(204, 204, 204);
}
.color--lightergrey {
  color: #f5f7fa;
}
.color--red {
  color: #ef5350;
}
.color--green {
  color: #6aa84f;
}
.color--orange {
  color: #ff634d;
}
.color--blue {
  color: #009dda;
}
.color--lightblue {
  color: #b2d2df;
}
.color--violet {
  color: #8020bb;
}
.background--black {
  background-color: rgb(0, 0, 0);
}
.background--white {
  background-color: rgb(255, 255, 255);
}
.background--grey {
  background-color: rgb(153, 153, 153);
}
.background--darkgrey {
  background-color: rgb(102, 102, 102);
}
.background--lightgrey {
  background-color: rgb(204, 204, 204);
}
.background--lightergrey {
  background-color: #f5f7fa;
}
.background--red {
  background-color: #ef5350;
}
.background--green {
  background-color: #6aa84f;
}
.background--orange {
  background-color: #ff634d;
}
.background--blue {
  background-color: #009dda;
}
.background--lightblue {
  background-color: #b2d2df;
}
.background--violet {
  background-color: #8020bb;
}
.font--bold {
  font-weight: bold;
}
.font--normal {
  font-weight: normal;
}
.line--height {
  line-height: 24px;
}
.underline {
  text-decoration: underline;
}
.line--through {
  text-decoration: line-through;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.background--sidebar {
  background-color: #ccccff;
}
.cursor--pointer {
  cursor: pointer;
}
.font--s-small {
  font-size: 12px;
  font-size: 0.75rem;
}
.font--small {
  font-size: 13.92px;
  font-size: 0.87rem;
}
.font--normal {
  font-size: 16px;
  font-size: 1rem;
}
.font--medium {
  font-size: 20px;
  font-size: 1.25rem;
}
.font--s-big {
  font-size: 28px;
  font-size: 1.75rem;
}
.font--big {
  font-size: 40px;
  font-size: 2.5rem;
}
.font--icon-huge {
  font-size: 56px;
  font-size: 3.5rem;
}
.wrapper {
  width: 100%;
  height: 100vh;
  padding: 24px;
}
.wrapper--center {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.wrapper--left {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.wrapper--right {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
.position--absolute {
  position: absolute;
}
.position--relative {
  position: relative;
}
.position--left {
  left: 0;
}
.position--right {
  right: 0;
}
.position--top {
  top: 0;
}
.position--bottom {
  bottom: 0;
}
.min {
  z-index: 1;
}
.max {
  z-index: 9999;
}
.default {
  z-index: 0;
}
.less-min {
  z-index: -1;
}
.less-max {
  z-index: -9999;
}
.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}
.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}
.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
  background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}
.cdk-drag-preview .mat-ripple-element,
.cdk-drag-placeholder .mat-ripple-element {
  display: none;
}
.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
textarea.cdk-textarea-autosize {
  resize: none;
}
textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}
textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}
@keyframes cdk-text-field-autofill-start {
}
@keyframes cdk-text-field-autofill-end {
}
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}
.mat-focus-indicator {
  position: relative;
}
.mat-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-focus-indicator-display, none);
  border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
  border-radius: var(--mat-focus-indicator-border-radius, 4px);
}
.mat-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
}
.mat-mdc-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-mdc-focus-indicator-display, none);
  border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
  border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
}
.mat-mdc-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-mdc-focus-indicator-display: block;
}
.mat-app-background {
  background-color: var(--mat-app-background-color, var(--mat-app-background, transparent));
  color: var(--mat-app-text-color, var(--mat-app-on-background, inherit));
}
.mat-elevation-z0,
.mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: var(--mat-app-elevation-shadow-level-0, none);
}
.mat-elevation-z1,
.mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: var(--mat-app-elevation-shadow-level-1, none);
}
.mat-elevation-z2,
.mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: var(--mat-app-elevation-shadow-level-2, none);
}
.mat-elevation-z3,
.mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: var(--mat-app-elevation-shadow-level-3, none);
}
.mat-elevation-z4,
.mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: var(--mat-app-elevation-shadow-level-4, none);
}
.mat-elevation-z5,
.mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: var(--mat-app-elevation-shadow-level-5, none);
}
.mat-elevation-z6,
.mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: var(--mat-app-elevation-shadow-level-6, none);
}
.mat-elevation-z7,
.mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: var(--mat-app-elevation-shadow-level-7, none);
}
.mat-elevation-z8,
.mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--mat-app-elevation-shadow-level-8, none);
}
.mat-elevation-z9,
.mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: var(--mat-app-elevation-shadow-level-9, none);
}
.mat-elevation-z10,
.mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: var(--mat-app-elevation-shadow-level-10, none);
}
.mat-elevation-z11,
.mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: var(--mat-app-elevation-shadow-level-11, none);
}
.mat-elevation-z12,
.mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: var(--mat-app-elevation-shadow-level-12, none);
}
.mat-elevation-z13,
.mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: var(--mat-app-elevation-shadow-level-13, none);
}
.mat-elevation-z14,
.mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: var(--mat-app-elevation-shadow-level-14, none);
}
.mat-elevation-z15,
.mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: var(--mat-app-elevation-shadow-level-15, none);
}
.mat-elevation-z16,
.mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: var(--mat-app-elevation-shadow-level-16, none);
}
.mat-elevation-z17,
.mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: var(--mat-app-elevation-shadow-level-17, none);
}
.mat-elevation-z18,
.mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: var(--mat-app-elevation-shadow-level-18, none);
}
.mat-elevation-z19,
.mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: var(--mat-app-elevation-shadow-level-19, none);
}
.mat-elevation-z20,
.mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: var(--mat-app-elevation-shadow-level-20, none);
}
.mat-elevation-z21,
.mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: var(--mat-app-elevation-shadow-level-21, none);
}
.mat-elevation-z22,
.mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: var(--mat-app-elevation-shadow-level-22, none);
}
.mat-elevation-z23,
.mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: var(--mat-app-elevation-shadow-level-23, none);
}
.mat-elevation-z24,
.mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: var(--mat-app-elevation-shadow-level-24, none);
}
.mat-theme-loaded-marker {
  display: none;
}
html {
  --mat-ripple-color: rgba(0, 0, 0, 0.1);
}
html {
  --mat-option-selected-state-label-text-color: #2196f3;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.mat-accent {
  --mat-option-selected-state-label-text-color: #ffeb3b;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
.mat-warn {
  --mat-option-selected-state-label-text-color: #f44336;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}
html {
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
}
.mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #2196f3;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #2196f3;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html {
  --mat-full-pseudo-checkbox-selected-icon-color: #ffeb3b;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ffeb3b;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #ffeb3b;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ffeb3b;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #f44336;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html {
  --mat-app-background-color: #fafafa;
  --mat-app-text-color: rgba(0, 0, 0, 0.87);
  --mat-app-elevation-shadow-level-0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14),
    0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14),
    0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14),
    0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14),
    0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14),
    0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14),
    0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14),
    0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14),
    0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14),
    0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14),
    0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14),
    0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14),
    0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14),
    0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
html {
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
}
html {
  --mdc-elevated-card-container-color: white;
  --mdc-elevated-card-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-color: white;
  --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
}
html {
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
}
.mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #2196f3;
  --mdc-linear-progress-track-color: rgba(33, 150, 243, 0.25);
}
.mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #ffeb3b;
  --mdc-linear-progress-track-color: rgba(255, 235, 59, 0.25);
}
.mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #f44336;
  --mdc-linear-progress-track-color: rgba(244, 67, 54, 0.25);
}
html {
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
}
html {
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}
html {
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
}
html {
  --mdc-filled-text-field-caret-color: #2196f3;
  --mdc-filled-text-field-focus-active-indicator-color: #2196f3;
  --mdc-filled-text-field-focus-label-text-color: rgba(33, 150, 243, 0.87);
  --mdc-filled-text-field-container-color: whitesmoke;
  --mdc-filled-text-field-disabled-container-color: #fafafa;
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #f44336;
  --mdc-filled-text-field-error-focus-label-text-color: #f44336;
  --mdc-filled-text-field-error-label-text-color: #f44336;
  --mdc-filled-text-field-error-caret-color: #f44336;
  --mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #f44336;
  --mdc-filled-text-field-error-focus-active-indicator-color: #f44336;
  --mdc-filled-text-field-error-hover-active-indicator-color: #f44336;
  --mdc-outlined-text-field-caret-color: #2196f3;
  --mdc-outlined-text-field-focus-outline-color: #2196f3;
  --mdc-outlined-text-field-focus-label-text-color: rgba(33, 150, 243, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-error-caret-color: #f44336;
  --mdc-outlined-text-field-error-focus-label-text-color: #f44336;
  --mdc-outlined-text-field-error-label-text-color: #f44336;
  --mdc-outlined-text-field-error-hover-label-text-color: #f44336;
  --mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #f44336;
  --mdc-outlined-text-field-error-hover-outline-color: #f44336;
  --mdc-outlined-text-field-error-outline-color: #f44336;
  --mat-form-field-focus-select-arrow-color: rgba(33, 150, 243, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-error-text-color: #f44336;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.08;
}
.mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #ffeb3b;
  --mdc-filled-text-field-focus-active-indicator-color: #ffeb3b;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 235, 59, 0.87);
  --mdc-outlined-text-field-caret-color: #ffeb3b;
  --mdc-outlined-text-field-focus-outline-color: #ffeb3b;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 235, 59, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(255, 235, 59, 0.87);
}
.mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #f44336;
  --mdc-filled-text-field-focus-active-indicator-color: #f44336;
  --mdc-filled-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
  --mdc-outlined-text-field-caret-color: #f44336;
  --mdc-outlined-text-field-focus-outline-color: #f44336;
  --mdc-outlined-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(244, 67, 54, 0.87);
}
html {
  --mat-form-field-container-height: 56px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 16px;
  --mat-form-field-filled-with-label-container-padding-top: 24px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
}
html {
  --mat-select-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(33, 150, 243, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
html .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 235, 59, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
html .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(244, 67, 54, 0.87);
  --mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
}
html {
  --mat-select-arrow-transform: translateY(-8px);
}
html {
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-autocomplete-background-color: white;
}
html {
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
}
html {
  --mdc-dialog-container-color: white;
  --mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);
  --mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);
}
.mat-mdc-standard-chip {
  --mdc-chip-container-shape-radius: 16px;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
}
.mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: #e0e0e0;
  --mdc-chip-elevated-selected-container-color: #e0e0e0;
  --mdc-chip-elevated-disabled-container-color: #e0e0e0;
  --mdc-chip-flat-disabled-selected-container-color: #e0e0e0;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #212121;
  --mdc-chip-selected-label-text-color: #212121;
  --mdc-chip-with-icon-icon-color: #212121;
  --mdc-chip-with-icon-disabled-icon-color: #212121;
  --mdc-chip-with-icon-selected-icon-color: #212121;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
  --mat-chip-selected-disabled-trailing-icon-color: #212121;
  --mat-chip-selected-trailing-icon-color: #212121;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #2196f3;
  --mdc-chip-elevated-selected-container-color: #2196f3;
  --mdc-chip-elevated-disabled-container-color: #2196f3;
  --mdc-chip-flat-disabled-selected-container-color: #2196f3;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-elevated-container-color: #ffeb3b;
  --mdc-chip-elevated-selected-container-color: #ffeb3b;
  --mdc-chip-elevated-disabled-container-color: #ffeb3b;
  --mdc-chip-flat-disabled-selected-container-color: #ffeb3b;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-selected-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #f44336;
  --mdc-chip-elevated-selected-container-color: #f44336;
  --mdc-chip-elevated-disabled-container-color: #f44336;
  --mdc-chip-flat-disabled-selected-container-color: #f44336;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 32px;
}
html {
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
}
html .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
}
html {
  --mdc-switch-selected-focus-state-layer-color: #1e88e5;
  --mdc-switch-selected-handle-color: #1e88e5;
  --mdc-switch-selected-hover-state-layer-color: #1e88e5;
  --mdc-switch-selected-pressed-state-layer-color: #1e88e5;
  --mdc-switch-selected-focus-handle-color: #0d47a1;
  --mdc-switch-selected-hover-handle-color: #0d47a1;
  --mdc-switch-selected-pressed-handle-color: #0d47a1;
  --mdc-switch-selected-focus-track-color: #64b5f6;
  --mdc-switch-selected-hover-track-color: #64b5f6;
  --mdc-switch-selected-pressed-track-color: #64b5f6;
  --mdc-switch-selected-track-color: #64b5f6;
  --mdc-switch-disabled-selected-handle-color: #424242;
  --mdc-switch-disabled-selected-icon-color: #fff;
  --mdc-switch-disabled-selected-track-color: #424242;
  --mdc-switch-disabled-unselected-handle-color: #424242;
  --mdc-switch-disabled-unselected-icon-color: #fff;
  --mdc-switch-disabled-unselected-track-color: #424242;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #fff;
  --mdc-switch-unselected-focus-handle-color: #212121;
  --mdc-switch-unselected-focus-state-layer-color: #424242;
  --mdc-switch-unselected-focus-track-color: #e0e0e0;
  --mdc-switch-unselected-handle-color: #616161;
  --mdc-switch-unselected-hover-handle-color: #212121;
  --mdc-switch-unselected-hover-state-layer-color: #424242;
  --mdc-switch-unselected-hover-track-color: #e0e0e0;
  --mdc-switch-unselected-icon-color: #fff;
  --mdc-switch-unselected-pressed-handle-color: #212121;
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
  --mdc-switch-unselected-track-color: #e0e0e0;
  --mdc-switch-handle-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
html .mat-mdc-slide-toggle {
  --mat-switch-label-text-color: rgba(0, 0, 0, 0.87);
}
html .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #fdd835;
  --mdc-switch-selected-handle-color: #fdd835;
  --mdc-switch-selected-hover-state-layer-color: #fdd835;
  --mdc-switch-selected-pressed-state-layer-color: #fdd835;
  --mdc-switch-selected-focus-handle-color: #f57f17;
  --mdc-switch-selected-hover-handle-color: #f57f17;
  --mdc-switch-selected-pressed-handle-color: #f57f17;
  --mdc-switch-selected-focus-track-color: #fff176;
  --mdc-switch-selected-hover-track-color: #fff176;
  --mdc-switch-selected-pressed-track-color: #fff176;
  --mdc-switch-selected-track-color: #fff176;
}
html .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #e53935;
  --mdc-switch-selected-handle-color: #e53935;
  --mdc-switch-selected-hover-state-layer-color: #e53935;
  --mdc-switch-selected-pressed-state-layer-color: #e53935;
  --mdc-switch-selected-focus-handle-color: #b71c1c;
  --mdc-switch-selected-hover-handle-color: #b71c1c;
  --mdc-switch-selected-pressed-handle-color: #b71c1c;
  --mdc-switch-selected-focus-track-color: #e57373;
  --mdc-switch-selected-hover-track-color: #e57373;
  --mdc-switch-selected-pressed-track-color: #e57373;
  --mdc-switch-selected-track-color: #e57373;
}
html {
  --mdc-switch-state-layer-size: 40px;
}
html {
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
}
.mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #2196f3;
  --mdc-radio-selected-hover-icon-color: #2196f3;
  --mdc-radio-selected-icon-color: #2196f3;
  --mdc-radio-selected-pressed-icon-color: #2196f3;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #2196f3;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #ffeb3b;
  --mdc-radio-selected-hover-icon-color: #ffeb3b;
  --mdc-radio-selected-icon-color: #ffeb3b;
  --mdc-radio-selected-pressed-icon-color: #ffeb3b;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #ffeb3b;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #f44336;
  --mdc-radio-selected-hover-icon-color: #f44336;
  --mdc-radio-selected-icon-color: #f44336;
  --mdc-radio-selected-pressed-icon-color: #f44336;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #f44336;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
}
html {
  --mdc-radio-state-layer-size: 40px;
  --mat-radio-touch-target-display: block;
}
html {
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slider-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
}
html {
  --mdc-slider-handle-color: #2196f3;
  --mdc-slider-focus-handle-color: #2196f3;
  --mdc-slider-hover-handle-color: #2196f3;
  --mdc-slider-active-track-color: #2196f3;
  --mdc-slider-inactive-track-color: #2196f3;
  --mdc-slider-with-tick-marks-inactive-container-color: #2196f3;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-label-container-color: #000;
  --mdc-slider-label-label-text-color: #fff;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
  --mat-slider-ripple-color: #2196f3;
  --mat-slider-hover-state-layer-color: rgba(33, 150, 243, 0.05);
  --mat-slider-focus-state-layer-color: rgba(33, 150, 243, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
}
html .mat-accent {
  --mdc-slider-handle-color: #ffeb3b;
  --mdc-slider-focus-handle-color: #ffeb3b;
  --mdc-slider-hover-handle-color: #ffeb3b;
  --mdc-slider-active-track-color: #ffeb3b;
  --mdc-slider-inactive-track-color: #ffeb3b;
  --mdc-slider-with-tick-marks-inactive-container-color: #ffeb3b;
  --mdc-slider-with-tick-marks-active-container-color: rgba(0, 0, 0, 0.87);
  --mat-slider-ripple-color: #ffeb3b;
  --mat-slider-hover-state-layer-color: rgba(255, 235, 59, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 235, 59, 0.2);
}
html .mat-warn {
  --mdc-slider-handle-color: #f44336;
  --mdc-slider-focus-handle-color: #f44336;
  --mdc-slider-hover-handle-color: #f44336;
  --mdc-slider-active-track-color: #f44336;
  --mdc-slider-inactive-track-color: #f44336;
  --mdc-slider-with-tick-marks-inactive-container-color: #f44336;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #f44336;
  --mat-slider-hover-state-layer-color: rgba(244, 67, 54, 0.05);
  --mat-slider-focus-state-layer-color: rgba(244, 67, 54, 0.2);
}
html {
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-base-elevation-level: 8;
}
html {
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-container-color: white;
  --mat-menu-divider-color: rgba(0, 0, 0, 0.12);
}
html {
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
}
html {
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-disabled-label-text-color: black;
  --mdc-list-list-item-disabled-leading-icon-color: black;
  --mdc-list-list-item-disabled-trailing-icon-color: black;
  --mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-list-list-item-hover-state-layer-color: black;
  --mdc-list-list-item-hover-state-layer-opacity: 0.04;
  --mdc-list-list-item-focus-state-layer-color: black;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
}
.mdc-list-item__start,
.mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #2196f3;
  --mdc-radio-selected-hover-icon-color: #2196f3;
  --mdc-radio-selected-icon-color: #2196f3;
  --mdc-radio-selected-pressed-icon-color: #2196f3;
}
.mat-accent .mdc-list-item__start,
.mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #ffeb3b;
  --mdc-radio-selected-hover-icon-color: #ffeb3b;
  --mdc-radio-selected-icon-color: #ffeb3b;
  --mdc-radio-selected-pressed-icon-color: #ffeb3b;
}
.mat-warn .mdc-list-item__start,
.mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #f44336;
  --mdc-radio-selected-hover-icon-color: #f44336;
  --mdc-radio-selected-icon-color: #f44336;
  --mdc-radio-selected-pressed-icon-color: #f44336;
}
.mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #2196f3;
  --mdc-checkbox-selected-hover-icon-color: #2196f3;
  --mdc-checkbox-selected-icon-color: #2196f3;
  --mdc-checkbox-selected-pressed-icon-color: #2196f3;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2196f3;
  --mdc-checkbox-selected-hover-state-layer-color: #2196f3;
  --mdc-checkbox-selected-pressed-state-layer-color: #2196f3;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #ffeb3b;
  --mdc-checkbox-selected-hover-icon-color: #ffeb3b;
  --mdc-checkbox-selected-icon-color: #ffeb3b;
  --mdc-checkbox-selected-pressed-icon-color: #ffeb3b;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ffeb3b;
  --mdc-checkbox-selected-hover-state-layer-color: #ffeb3b;
  --mdc-checkbox-selected-pressed-state-layer-color: #ffeb3b;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #f44336;
  --mdc-checkbox-selected-hover-icon-color: #f44336;
  --mdc-checkbox-selected-icon-color: #f44336;
  --mdc-checkbox-selected-pressed-icon-color: #f44336;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f44336;
  --mdc-checkbox-selected-hover-state-layer-color: #f44336;
  --mdc-checkbox-selected-pressed-state-layer-color: #f44336;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #2196f3;
}
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
html {
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 32px;
}
.mdc-list-item__start,
.mdc-list-item__end {
  --mdc-radio-state-layer-size: 40px;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,
.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,
.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,
.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,
.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}
html {
  --mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);
  --mat-paginator-disabled-icon-color: rgba(0, 0, 0, 0.12);
}
html {
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
}
html {
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
}
.mat-mdc-tab-group,
.mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #2196f3;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #2196f3;
  --mat-tab-header-active-ripple-color: #2196f3;
  --mat-tab-header-inactive-ripple-color: #2196f3;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #2196f3;
  --mat-tab-header-active-hover-label-text-color: #2196f3;
  --mat-tab-header-active-focus-indicator-color: #2196f3;
  --mat-tab-header-active-hover-indicator-color: #2196f3;
}
.mat-mdc-tab-group.mat-accent,
.mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #ffeb3b;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #ffeb3b;
  --mat-tab-header-active-ripple-color: #ffeb3b;
  --mat-tab-header-inactive-ripple-color: #ffeb3b;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ffeb3b;
  --mat-tab-header-active-hover-label-text-color: #ffeb3b;
  --mat-tab-header-active-focus-indicator-color: #ffeb3b;
  --mat-tab-header-active-hover-indicator-color: #ffeb3b;
}
.mat-mdc-tab-group.mat-warn,
.mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #f44336;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #f44336;
  --mat-tab-header-active-ripple-color: #f44336;
  --mat-tab-header-inactive-ripple-color: #f44336;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #f44336;
  --mat-tab-header-active-hover-label-text-color: #f44336;
  --mat-tab-header-active-focus-indicator-color: #f44336;
  --mat-tab-header-active-hover-indicator-color: #f44336;
}
.mat-mdc-tab-group.mat-background-primary,
.mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #2196f3;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-accent,
.mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #ffeb3b;
  --mat-tab-header-with-background-foreground-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-tab-group.mat-background-warn,
.mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #f44336;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-header {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
html {
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
}
html {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #ffeb3b;
  --mdc-checkbox-selected-hover-icon-color: #ffeb3b;
  --mdc-checkbox-selected-icon-color: #ffeb3b;
  --mdc-checkbox-selected-pressed-icon-color: #ffeb3b;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ffeb3b;
  --mdc-checkbox-selected-hover-state-layer-color: #ffeb3b;
  --mdc-checkbox-selected-pressed-state-layer-color: #ffeb3b;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
  --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #2196f3;
  --mdc-checkbox-selected-hover-icon-color: #2196f3;
  --mdc-checkbox-selected-icon-color: #2196f3;
  --mdc-checkbox-selected-pressed-icon-color: #2196f3;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2196f3;
  --mdc-checkbox-selected-hover-state-layer-color: #2196f3;
  --mdc-checkbox-selected-pressed-state-layer-color: #2196f3;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #f44336;
  --mdc-checkbox-selected-hover-icon-color: #f44336;
  --mdc-checkbox-selected-icon-color: #f44336;
  --mdc-checkbox-selected-pressed-icon-color: #f44336;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #f44336;
  --mdc-checkbox-selected-hover-state-layer-color: #f44336;
  --mdc-checkbox-selected-pressed-state-layer-color: #f44336;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
html {
  --mdc-checkbox-state-layer-size: 40px;
  --mat-checkbox-touch-target-display: block;
}
html {
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
}
html {
  --mdc-text-button-label-text-color: black;
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-text-button-state-layer-color: black;
  --mat-text-button-disabled-state-layer-color: black;
  --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.04;
  --mat-text-button-focus-state-layer-opacity: 0.12;
  --mat-text-button-pressed-state-layer-opacity: 0.12;
  --mdc-filled-button-container-color: white;
  --mdc-filled-button-label-text-color: black;
  --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-disabled-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.04;
  --mat-filled-button-focus-state-layer-opacity: 0.12;
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
  --mdc-protected-button-container-color: white;
  --mdc-protected-button-label-text-color: black;
  --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-disabled-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.04;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-label-text-color: black;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: black;
  --mat-outlined-button-disabled-state-layer-color: black;
  --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.04;
  --mat-outlined-button-focus-state-layer-opacity: 0.12;
  --mat-outlined-button-pressed-state-layer-opacity: 0.12;
}
.mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #2196f3;
  --mat-text-button-state-layer-color: #2196f3;
  --mat-text-button-ripple-color: rgba(33, 150, 243, 0.1);
}
.mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #ffeb3b;
  --mat-text-button-state-layer-color: #ffeb3b;
  --mat-text-button-ripple-color: rgba(255, 235, 59, 0.1);
}
.mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #f44336;
  --mat-text-button-state-layer-color: #f44336;
  --mat-text-button-ripple-color: rgba(244, 67, 54, 0.1);
}
.mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #2196f3;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #ffeb3b;
  --mdc-filled-button-label-text-color: black;
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #f44336;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #2196f3;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #ffeb3b;
  --mdc-protected-button-label-text-color: black;
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
}
.mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #f44336;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #2196f3;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #2196f3;
  --mat-outlined-button-ripple-color: rgba(33, 150, 243, 0.1);
}
.mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #ffeb3b;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #ffeb3b;
  --mat-outlined-button-ripple-color: rgba(255, 235, 59, 0.1);
}
.mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #f44336;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #f44336;
  --mat-outlined-button-ripple-color: rgba(244, 67, 54, 0.1);
}
html {
  --mdc-text-button-container-height: 36px;
  --mdc-filled-button-container-height: 36px;
  --mdc-protected-button-container-height: 36px;
  --mdc-outlined-button-container-height: 36px;
  --mat-text-button-touch-target-display: block;
  --mat-filled-button-touch-target-display: block;
  --mat-protected-button-touch-target-display: block;
  --mat-outlined-button-touch-target-display: block;
}
html {
  --mdc-icon-button-icon-size: 24px;
}
html {
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
  --mat-icon-button-state-layer-color: black;
  --mat-icon-button-disabled-state-layer-color: black;
  --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
}
html .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #2196f3;
  --mat-icon-button-state-layer-color: #2196f3;
  --mat-icon-button-ripple-color: rgba(33, 150, 243, 0.1);
}
html .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #ffeb3b;
  --mat-icon-button-state-layer-color: #ffeb3b;
  --mat-icon-button-ripple-color: rgba(255, 235, 59, 0.1);
}
html .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #f44336;
  --mat-icon-button-state-layer-color: #f44336;
  --mat-icon-button-ripple-color: rgba(244, 67, 54, 0.1);
}
html {
  --mat-icon-button-touch-target-display: block;
}
.mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 48px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 12px;
}
html {
  --mdc-fab-container-shape: 50%;
  --mdc-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-extended-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
html {
  --mdc-fab-container-color: white;
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-disabled-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
  --mdc-fab-small-container-color: white;
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-disabled-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
}
html .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #2196f3;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #ffeb3b;
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
}
html .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #f44336;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #2196f3;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #ffeb3b;
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
}
html .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #f44336;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html {
  --mat-fab-touch-target-display: block;
  --mat-fab-small-touch-target-display: block;
}
html {
  --mdc-snackbar-container-shape: 4px;
}
html {
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
  --mat-snack-bar-button-color: #ffeb3b;
}
html {
  --mat-table-row-item-outline-width: 1px;
}
html {
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);
}
html {
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
}
html {
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
}
html {
  --mdc-circular-progress-active-indicator-color: #2196f3;
}
html .mat-accent {
  --mdc-circular-progress-active-indicator-color: #ffeb3b;
}
html .mat-warn {
  --mdc-circular-progress-active-indicator-color: #f44336;
}
html {
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
}
html {
  --mat-badge-background-color: #2196f3;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #b9b9b9;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);
}
.mat-badge-accent {
  --mat-badge-background-color: #ffeb3b;
  --mat-badge-text-color: rgba(0, 0, 0, 0.87);
}
.mat-badge-warn {
  --mat-badge-background-color: #f44336;
  --mat-badge-text-color: white;
}
html {
  --mat-bottom-sheet-container-shape: 4px;
}
html {
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
}
html {
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
}
html {
  --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);
  --mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: #e0e0e0;
}
html {
  --mat-standard-button-toggle-height: 48px;
}
html {
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
html {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #2196f3;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(33, 150, 243, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(33, 150, 243, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(33, 150, 243, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #2196f3;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(33, 150, 243, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: black;
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
}
.mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-selected-state-background-color: #ffeb3b;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 235, 59, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 235, 59, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 235, 59, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 235, 59, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #f44336;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(244, 67, 54, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(244, 67, 54, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(244, 67, 54, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(244, 67, 54, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #ffeb3b;
}
.mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #f44336;
}
.mat-calendar-controls {
  --mat-icon-button-touch-target-display: none;
}
.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 8px;
}
html {
  --mat-divider-width: 1px;
}
html {
  --mat-divider-color: rgba(0, 0, 0, 0.12);
}
html {
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
}
html {
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-expansion-header-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
}
html {
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
}
html {
  --mat-icon-color: inherit;
}
.mat-icon.mat-primary {
  --mat-icon-color: #2196f3;
}
.mat-icon.mat-accent {
  --mat-icon-color: #ffeb3b;
}
.mat-icon.mat-warn {
  --mat-icon-color: #f44336;
}
html {
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
}
html {
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-content-background-color: #fafafa;
  --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
}
html {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #2196f3;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #2196f3;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #2196f3;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-error-state-label-text-color: #f44336;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #f44336;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
html .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-selected-state-icon-background-color: #ffeb3b;
  --mat-stepper-header-selected-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-done-state-icon-background-color: #ffeb3b;
  --mat-stepper-header-done-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-edit-state-icon-background-color: #ffeb3b;
  --mat-stepper-header-edit-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
}
html .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #f44336;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #f44336;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #f44336;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
html {
  --mat-stepper-header-height: 72px;
}
html {
  --mat-sort-arrow-color: #757575;
}
html {
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
.mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #2196f3;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #ffeb3b;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
.mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #f44336;
  --mat-toolbar-container-text-color: white;
}
html {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
}
html {
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(0, 0, 0, 0.87);
}
html {
  --mat-tree-node-min-height: 48px;
}
.mat-h1,
.mat-headline-5,
.mat-typography .mat-h1,
.mat-typography .mat-headline-5,
.mat-typography h1 {
  font: 400 24px / 32px var(--basefont);
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2,
.mat-headline-6,
.mat-typography .mat-h2,
.mat-typography .mat-headline-6,
.mat-typography h2 {
  font: 500 20px / 32px var(--basefont);
  letter-spacing: 0.0125em;
  margin: 0 0 16px;
}
.mat-h3,
.mat-subtitle-1,
.mat-typography .mat-h3,
.mat-typography .mat-subtitle-1,
.mat-typography h3 {
  font: 400 16px / 28px var(--basefont);
  letter-spacing: 0.009375em;
  margin: 0 0 16px;
}
.mat-h4,
.mat-body-1,
.mat-typography .mat-h4,
.mat-typography .mat-body-1,
.mat-typography h4 {
  font: 500 16px / 24px var(--basefont);
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 400 calc(14px * 0.83) / 20px var(--basefont);
  margin: 0 0 12px;
}
.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 400 calc(14px * 0.67) / 20px var(--basefont);
  margin: 0 0 12px;
}
.mat-body-strong,
.mat-subtitle-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-subtitle-2 {
  font: 500 14px / 22px var(--basefont);
  letter-spacing: 0.0071428571em;
}
.mat-body,
.mat-body-2,
.mat-typography .mat-body,
.mat-typography .mat-body-2,
.mat-typography {
  font: 400 14px / 20px var(--basefont);
  letter-spacing: 0.0178571429em;
}
.mat-body p,
.mat-body-2 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-2 p,
.mat-typography p {
  margin: 0 0 12px;
}
.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 20px var(--basefont);
  letter-spacing: 0.0333333333em;
}
.mat-headline-1,
.mat-typography .mat-headline-1 {
  font: 700 32px / 48px var(--basefont);
  letter-spacing: normal;
  margin: 0 0 56px;
}
.mat-headline-2,
.mat-typography .mat-headline-2 {
  font: 300 60px / 60px var(--basefont);
  letter-spacing: -0.0083333333em;
  margin: 0 0 64px;
}
.mat-headline-3,
.mat-typography .mat-headline-3 {
  font: 400 48px / 50px var(--basefont);
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-headline-4,
.mat-typography .mat-headline-4 {
  font: 400 34px / 40px var(--basefont);
  letter-spacing: 0.0073529412em;
  margin: 0 0 64px;
}
mat-form-field {
  width: 100%;
}
mat-form-field > div {
  background-color: white !important;
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  bottom: 1.05em;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: inherit;
}
.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: inherit;
}
.expert-register .mat-horizontal-stepper-header-container {
  max-width: 388px;
  margin: 30px auto 0;
}
.expert-register .mat-step-header .mat-step-icon {
  height: 14px;
  width: 14px;
}
.expert-register .mat-step-header .mat-step-icon {
  background-color: white;
  border: 1px solid var(--expert-orange);
}
.expert-register .mat-step-header .mat-step-icon-selected,
.expert-register .mat-step-header .mat-step-icon-state-done,
.expert-register .mat-step-header .mat-step-icon-state-edit {
  background-color: var(--expert-orange);
}
.expert-register .mat-step-header.cdk-keyboard-focused,
.expert-register .mat-step-header.cdk-program-focused,
.expert-register .mat-step-header:hover {
  background: transparent;
}
.expert-register .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,
.expert-register .mat-stepper-label-position-bottom .mat-stepper-horizontal-line,
.expert-register .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before {
  top: 30px;
}
.expert-register .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,
.expert-register .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before {
  width: calc(50% - 5px);
}
.contentful-login-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.contentful-login-footer .text,
.contentful-login-footer .box--login .link,
.box--login .contentful-login-footer .link {
  font-size: 0.87rem;
  padding-bottom: 6px;
}
.contentful-login-layer {
  width: 50%;
  height: 100vh;
  margin: 0;
  padding: 0;
}
@media (min-width: 18em) {
  .contentful-login-layer {
    display: none;
  }
}
@media (min-width: 60em) {
  .contentful-login-layer {
    display: block;
  }
}
.contentful-login-image {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #99ccff;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  padding: 48px 0 48px 48px;
}
.contentful-login-content {
  width: 100%;
  max-height: calc(100vh - 48px);
  margin: 0;
  padding: 0 48px 0 0;
  overflow-y: auto;
}
.contentful-create-account p {
  margin: 0;
  padding: 0;
}
.payment-register-container {
  width: 100%;
  min-height: 100vh;
  background: var(--pale-grey);
}
@media (min-width: 18em) {
  .payment-register-container {
    padding: 0 16px 94px;
  }
}
@media (min-width: 60em) {
  .payment-register-container {
    padding: 0 0 94px;
  }
}
.payment-register-form.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: var(--charcoal-grey);
}
@media (min-width: 18em) {
  .payment-register-form .logo {
    width: 85px;
    height: 65px;
    margin: 16px 0 24px;
  }
}
@media (min-width: 60em) {
  .payment-register-form .logo {
    width: 100px;
    height: 76px;
    margin: 48px 0 24px;
  }
}
.payment-register-form .logo img {
  object-fit: contain;
}
.payment-register-form .payment-card {
  width: 100%;
  max-width: 520px;
  border-radius: 4px;
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.12), 0 0 1px 0 rgba(10, 22, 70, 0.06);
  background-color: white;
}
@media (min-width: 18em) {
  .payment-register-form .payment-card {
    padding: 16px 16px 24px;
  }
}
@media (min-width: 60em) {
  .payment-register-form .payment-card {
    padding: 32px;
  }
}
.payment-register-form .payment-card.feedback {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 18em) {
  .payment-register-form .payment-card.feedback {
    padding: 48px 16px;
  }
}
@media (min-width: 60em) {
  .payment-register-form .payment-card.feedback {
    padding: 72px 32px;
  }
}
.payment-register-form .payment-card__feedback--content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.payment-register-form .payment-card__icon {
  line-height: 0;
  font-size: var(--icon-huge);
}
.payment-register-form .payment-card__icon .success {
  color: var(--success);
}
.payment-register-form .payment-card__icon .failed {
  color: var(--error);
}
.payment-register-form .payment-card__text {
  width: 100%;
  color: var(--charcoal-grey);
  font-weight: 500;
  padding-top: 16px;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 18em) {
  .payment-register-form .payment-card__text {
    font-size: var(--medium);
  }
}
@media (min-width: 60em) {
  .payment-register-form .payment-card__text {
    font-size: var(--s-big);
  }
}
.payment-register-form .payment-card gl-button {
  margin-top: 40px;
}
.payment-register-form .h1 {
  width: 100%;
  padding: 0 0 16px 0;
  margin: 0;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 18em) {
  .payment-register-form .h1 {
    font-size: var(--medium);
  }
}
@media (min-width: 60em) {
  .payment-register-form .h1 {
    font-size: var(--s-big);
  }
}
.payment-register-form .form-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--normal);
  font-weight: 300;
  line-height: var(--normal);
  padding: 16px 0;
  border-bottom: 1px solid #e1e4e8;
}
.payment-register-form .info {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  line-height: 0;
}
.payment-register-form .info.dark {
  color: var(--charcoal-grey);
}
.payment-register-form .info.gap {
  padding-left: 6px;
}
.payment-register-form .form-column {
  width: 100%;
  color: var(--dusk);
  padding-top: 32px;
}
.payment-register-form .form-column label {
  color: var(--dusk);
  display: block;
  font-size: var(--x-small);
  font-weight: 300;
  text-align: left;
  padding-bottom: 8px;
}
.payment-register-form .input {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: solid 1px var(--pale-blue);
  background-color: #fff;
  color: var(--charcoal-grey);
  font-size: var(--normal);
  font-weight: 300;
  padding: 0 12px;
  outline: 0;
}
.payment-register-form .input::placeholder {
  color: #b0b7c3;
  font-weight: 300;
}
.payment-register-form .input .__PrivateStripeElement {
  position: relative;
  top: 14px;
}
.payment-register-form .grid-cards {
  width: 100%;
  display: flex;
}
@media (min-width: 18em) {
  .payment-register-form .grid-cards {
    padding-top: 32px;
    flex-direction: column;
  }
}
@media (min-width: 60em) {
  .payment-register-form .grid-cards {
    padding-top: 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.payment-register-form .grid-cards__title {
  font-size: var(--normal);
  font-weight: 500;
}
@media (min-width: 18em) {
  .payment-register-form .grid-cards__title {
    padding-bottom: 16px;
  }
}
@media (min-width: 60em) {
  .payment-register-form .grid-cards__title {
    padding: 0;
  }
}
.payment-register-form .grid-cards__items {
  display: inline-flex;
  align-items: center;
}
@media (min-width: 18em) {
  .payment-register-form .grid-cards__items img {
    margin-right: 6px;
  }
}
@media (min-width: 60em) {
  .payment-register-form .grid-cards__items img {
    margin-left: 6px;
  }
}
.payment-register-form .grid-cards__fields {
  width: 100%;
  display: flex;
  padding-top: var(--gutterwidth);
}
@media (min-width: 18em) {
  .payment-register-form .grid-cards__fields {
    flex-direction: column;
  }
}
@media (min-width: 60em) {
  .payment-register-form .grid-cards__fields {
    flex-direction: row;
    align-items: center;
  }
}
.payment-register-form .grid-cards__fields--item {
  width: 100%;
  align-self: flex-start;
}
@media (min-width: 18em) {
  .payment-register-form .grid-cards__fields--item.gap {
    padding: 0;
    margin: var(--gutterwidth) 0 0 0;
  }
}
@media (min-width: 60em) {
  .payment-register-form .grid-cards__fields--item.gap {
    margin: 0 0 0 var(--gutterwidth);
  }
}
.payment-register-form .grid-cards__fields--item label {
  color: var(--dusk);
  display: block;
  font-size: var(--x-small);
  font-weight: 300;
  text-align: left;
  padding-bottom: 8px;
}
.payment-register-form .payment-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.payment-register-form .paybutton {
  width: 100%;
  height: 48px;
  background-color: var(--primary);
  border: 1px solid transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding-left: calc(var(--gutterlarge) / 2);
  padding-right: calc(var(--gutterlarge) / 2);
  letter-spacing: 0px;
  font-family: var(--basefont);
  font-size: var(--x-small);
  font-weight: 400;
  line-height: 1.2;
  box-shadow: none;
  min-width: 100px;
  max-width: 258px;
  outline: 0px;
  text-transform: none;
  transition: all 0.2s ease-out 0s;
  cursor: pointer;
}
.payment-register-form .paybutton:hover {
  background-color: var(--primary-darken);
}
.payment-register-form .label-text {
  width: 100%;
  display: block;
  text-align: center;
  padding-bottom: 5px;
}
.payment-register-form .margin-bottom {
  margin-bottom: 30px;
}
.payment-register-form .radio {
  display: inline-block;
  vertical-align: top;
  padding: 5px 0px 5px 5px;
  margin: 0;
}
.payment-register-form input[type=radio] + label:before {
  display: none;
}

/* node_modules/ngx-toastr/toastr.css */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
.toast-info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+);
}
.toast-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+);
}
.toast-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==);
}
.toast-warning {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==);
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
