.glx-io-icon {
  stroke: currentcolor;
  path, rect, circle, ellipse {
    stroke: currentcolor;
  }
}
.glx-ej-icon{
  stroke: none;
  path{
    transform: scale(0.93) translateY(2px) translateX(2px);
  }
}
.glx--icon {
  fill: currentcolor;
}


// THEME COLORS
$main-dark-blue: var(--glx-main-dark-blue,#1d47b0);
$main-blue:var(--glx-main-blue,#3663d2);
$main-blue-transparent:var(--glx-main-blue, rgba(54, 99, 210, 0.45));
$main-yellow:var(--glx-main-yellow, #ffd700);
$main-cyan:var(--glx-main-cyan, cyan);
$main-pink:var(--glx-main-pink, pink);
$main-purple:var(--glx-main-purple, purple);
$main-red:var(--glx-main-red, #ff323c);
$main-green:var(--glx-main-green, #4CAF50);
$main-orange:var(--glx-main-orange, orange);
$main-secondary: var(--glx-main-secondary, $main-green);
$main-black:var(--glx-main-black,black);
$main-white:var(--glx-main-white, white);
$main-color:var(--glx-main-color, #b2fcfb);
// ACCENT COLORS
$main-accent-01:var(--glx-main-accent-01, #242930);
$main-accent-02:var(--glx-main-accent-02, #272E38);
$main-accent-03:var(--glx-main-accent-03, #2c333d);
$main-accent-04:var(--glx-main-accent-04, #434d5b);
$main-accent-05:var(--glx-main-accent-05, #505B6B);
// COMPONENT COLORS
$main-contrast:var(--glx-main-contrast,$main-blue);
$main-contrast-transparent:var(--glx-main-contrast-transparent,$main-blue-transparent);
$main-button:var(--glx-main-button, #373737);
$main-background:var(--glx-main-background, #121212);
$main-background-alt:var(--glx-main-background-alt, #202020);
$main-text:var(--glx-main-text, #f2f3f4);
$main-text-alt:var(--glx-main-text-alt, $main-black);
$main-select:var(--glx-main-select, $main-accent-04);

// Card layout component
$tlc-card: var(--glx-tlc-card, $main-background-alt);
$tlc-card-font: var(--glx-tlc-card-font, $main-white);
// Tab layout component
$tlc-sidebar: var(--glx-tlc-sidebar, $main-background-alt);
$tlc-sidebar-font: var(--glx-tlc-sidebar-font, $main-white);
// Tab layout component
$tlc-header: var(--glx-tlc-header, $main-accent-02);
$tlc-header-font: var(--glx-tlc-header-font, $main-white);
$tlc-header-font-alt: var(--glx-tlc-header-font-alt, $main-accent-05);

// Global variables
$main-border-radius: var(--glx-main-border-radius, 8px);


.glx-theme-light{
  --glx-main-dark-blue: #1d47b0;
  --glx-main-blue: #3663d2;
  --glx-main-yellow: #ffd700;
  --glx-main-cyan: cyan;
  --glx-main-pink: pink;
  --glx-main-purple: purple;
  --glx-main-red: #ff323c;
  --glx-main-orange: orange;
  --glx-main-green: #4CAF50;
  --glx-main-secondary: #4CAF50;
  --glx-main-black: black;
  --glx-main-white: white;
  --glx-main-color: #b2fcfb;
  --glx-main-accent-01: #242930;
  --glx-main-accent-02: #272E38;
  --glx-main-accent-03: #2c333d;
  --glx-main-accent-04: #434d5b;
  --glx-main-accent-05: #505B6B;
  --glx-main-contrast: #3663d2;
  --glx-main-button: #505B6B;
  --glx-main-background: white;
  --glx-main-background-alt: #f2f3f4;
  --glx-main-text: #121212;
  --glx-main-text-alt: white;
  --glx-main-select: #ddd;
  --glx-tlc-card: #434d5b;
  --glx-tlc-card-font: white;
  --glx-tlc-sidebar: white;
  --glx-tlc-sidebar-font: #434d5b;
  --glx-tlc-header: #272E38;
  --glx-tlc-header-font: white;
  --glx-tlc-header-font-alt: #505B6B;
}











.glx-card--item {
  @extend .glx-flex-column,.glx-flex-space-between;
  margin: 4px;
  text-align: center;
  background-size: cover;
  color: $tlc-card-font;
  font-size: 11pt;
  min-height: 300px;
  max-height: 460px;
  max-width: 320px;
  min-width: 280px;
  flex-grow: 1;
  background-color: $tlc-card;
  position: relative;
  border-radius: 12px;

  .glx-card--badges{
    height: 30px;
  }
}

.glx-card--icon {
  @extend .glx-p-4,.glx-h-full-4;
  padding: 8px;
  font-size: 24pt;
  display: flex;
  align-items: center;
}

.glx-card--icon-red .glx--icon{
  color: $main-red !important;

}

.glx-card--icon-orange .glx--icon{
  color: $main-orange !important;

}

.glx-card--icon-yellow .glx--icon{
  color: $main-yellow !important;


}

.glx-card--icon-green .glx--icon{
  color: $main-green !important;

}

.glx-card--icon-black {

  color: black;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.glx-card--head:hover {
  .glx-card--hover {
    border-radius: 12px 12px 0 0;
    display: flex;
    gap: 4px;
  }
}

.glx-round-top{
  border-radius: 12px 12px 0 0;
}

.glx-card--img {
  height: 200px;
  width: 100%;
  background-size: cover;
  mask-image: linear-gradient(to top, transparent 0%, black 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 100%);
}

.glx-card--date {

}

.glx-card--hover {
  flex-direction: row;
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;


  button {
    @extend .glx-flex-column, .glx-flex-center;
    width: 42px !important;
    height: 42px !important;
    cursor: pointer;
    background: none;
    font-size: 14pt;
    border-radius: 24px;
    border: 2px $main-white solid;
    color: $main-white;
  }

  button:hover {
    background: $main-contrast;
  }
}

.glx-card--effect {
  // background: radial-gradient(transparent 0%, $tlc-card 95%);
  background: linear-gradient(to bottom, transparent 0%, $tlc-card 100%);
  border-radius: 12px 12px 0 0;
  height: 100%;
}

.glx-card--iconCover {
  height: 200px;
  width: 100%;
  background-size: cover;
  font-size: 90pt;

  svg {
    transform: translateY(20px);
  }
}
.glx-card--skeleton {
  height: 200px;
  width: 100%;
  background-size: cover;
  font-size: 90pt;
}

.glx-card--title{
  text-align: left;
  padding-left: 8px;
  padding-bottom: 4px;
  @extend .glx-py-2;
  font-size: 12pt;
  font-weight: 600;
}
.glx-card--content {
  text-align: left;
  padding-left: 8px;
  font-size: 12pt;

  padding-right: 4px;
  min-height: 30px;

  span {
    overflow-wrap: anywhere;
    padding: 2px;
  }
}

.glx-card--button-space {
  width: 100%;
  height: 50px;
}

.glx-card--space {
  width: 100%;
  height: 4px;
}

.glx-card--button-box {
}

.glx-card--button-box-media {
  position: absolute;
  bottom: 4px;
  width: 100%;

  button {
    margin: 4px;
  }
}

.glx-card--footer{
  @extend .glx-flex-row,.glx-flex-space-between,.glx-py-8;

  > div{
    flex-basis:33.33%;
  }
}


.glx-hcard--item {
  @extend .glx-flex-row,.glx-flex-space-between;
  margin: 4px;
  text-align: center;
  background-size: cover;
  color: $tlc-card-font;
  font-size: 11pt;
  min-height: 120px;
  max-height: 460px;
  max-width: 360px;
  min-width: 360px;
  flex-grow: 1;
  background-color: $tlc-card;
  position: relative;
  border-radius: 12px;
}

.glx-hcard--icon {
  @extend .glx-p-4,.glx-h-full-4;
  padding: 8px;
  font-size: 24pt;
  display: flex;
  align-items: center;
}

.glx-hcard--icon-red .glx--icon{
  color: $main-red !important;

}

.glx-hcard--icon-orange .glx--icon{
  color: $main-orange !important;

}

.glx-hcard--icon-yellow .glx--icon{
  color: $main-yellow !important;


}

.glx-hcard--icon-green .glx--icon{
  color: $main-green !important;

}

.glx-hcard--icon-black {

  color: black;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}


.glx-hround-top{
  border-radius: 12px 0 0 12px;
}


.glx-hcard--img {
  height: 100%;
  width: 100%;
  background-size: cover;
  mask-image: linear-gradient(to top, transparent 0%, black 100%);
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 100%);
}

.glx-hcard--effect {
  // background: radial-gradient(transparent 0%, $tlc-card 95%);
  background: linear-gradient(to right, transparent 0%, $tlc-card 100%);
  height: 100%;
}

.glx-hcard--iconCover {
  height: 100%;
  width: 100%;
  background-size: cover;

}
.glx-hcard--skeleton {
  height: 100%;
  width: 100%;
  background-size: cover;
  font-size: 70pt;
}

.glx-hcard--title{
  text-align: left;
  padding-left: 8px;
  padding-bottom: 4px;
  @extend .glx-py-2;
  font-size: 12pt;
  font-weight: 600;
}
.glx-hcard--content {
  text-align: left;
  padding-left: 8px;
  font-size: 12pt;

  padding-right: 4px;

  span {
    overflow-wrap: anywhere;
    padding: 2px;
  }
}
.glx-hcard--space {
  width: 100%;
  height: 4px;
}

.glx-navigator-horizontal--left,
.glx-navigator-horizontal--right{
  display: none;
  height: 100%;
  position: absolute;
  top: 0;
  align-items: center;
  background-color: $main-background;
}
.glx-navigator-horizontal--wrapper:hover{
  .glx-navigator-horizontal--left,
  .glx-navigator-horizontal--right{
    display: flex;
  }
}
.glx-navigator-horizontal--wrapper{

  position: relative;
  .glx-navigator-horizontal--left{

    left: 0;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
  }
  .glx-navigator-horizontal--right{
    right: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
  }
}
.glx-navigator-horizontal{
  @extend .glx-flex-row,.glx-flex-start,.glx-flex-g-4,.glx-m-4,.glx-pt-8,.glx-w-full-4;
  overflow-y: scroll;

}

.glx-glow-box {
  position: relative;
  padding: 4px;
  border-radius: 4px;
}

.glx-glow-box .inner {
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.glx-glow-box::before,
.glx-glow-box::after {

  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
                  45deg,
                  #ff595e,
                  #ffca3a,
                  #8ac926,
                  #1982c4,
                  #6a4c93,
                  #ff6700
  );
  background: var(--glx-glow-box-bg,linear-gradient(45deg, #ff595e, #ffca3a, #8ac926, #1982c4, #6a4c93, #ff6700));
  background-size: 400%;
  z-index: 0;
  animation: box-glow 20s linear infinite;
  width: 100%;
  border-radius: $main-border-radius;
}

.glx-glow-box::after {
  filter: blur(25px);
  transform: translate3d(0, 0, 0);
}

@keyframes box-glow {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}


.glx-rotate-box{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: $main-border-radius;
}

.glx-rotate-box .inner{
  position: relative;
  z-index: 1;
  width: 100%;
}

.glx-rotate-box .inner {
  margin: 5px;
}

.glx-rotate-box::before {
  content: "";
  display: block;
  background: var(--glx-rotate-box-bg,linear-gradient(90deg, hsla(197, 100%, 64%, 1) 0%, hsla(339, 100%, 55%, 1) 100%));
  height: 500px;
  width: 500px;
  position: absolute;
  animation: box-rotate 8s linear infinite;
  z-index: 0;
  border-radius: $main-border-radius;
}

@keyframes box-rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

button.button--base {
  min-width: 400px;
  font-size: 12pt;
  border: none;
  color: $main-white;
  background-color: $main-button;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 8px;
}

.button--default::before {
  background-color: $main-contrast;
}

.button--default:hover {
  background-color: $main-contrast;
}

.button--blue::before {
  background-color: $main-dark-blue;
}

.button--blue:hover {
  background-color: $main-dark-blue;
}

.button--cyan::before {
  background-color: $main-cyan;
}

.button--cyan:hover {
  background-color: $main-cyan;
  color: black !important;

}

.button--red::before {
  background-color: $main-red;
}

.button--red:hover {
  background-color: $main-red;
}

.button--green::before {
  background-color: $main-green;
}

.button--green:hover {
  background-color: $main-green;
}

.button--purple::before {
  background-color: $main-purple;
}

.button--purple:hover {
  background-color: $main-purple;
}

.button--orange::before {
  background-color: $main-orange;
}

.button--orange:hover {
  background-color: $main-orange;
}

.button--pink::before {
  background-color: $main-pink;
}

.button--pink:hover {
  background-color: $main-pink;
  color: black !important;

}

.button--yellow::before {
  background-color: $main-yellow;
}

.button--yellow:hover {
  background-color: $main-yellow;

  color: black !important;
}

button.button-link {
  position: relative;
  color: white;
  cursor: pointer;
  padding: 12px;
  font-size: 12pt;
  background-color: $main-button;
  border-radius: 8px;
  border: none;
}

button.cancel {
  background-color: $main-background;
  border: 1px solid white;
}

button.half {
  width: 192px;
  margin-left: 8px;
  margin-right: 8px;
  min-width: 0px;
}

button.button--base:disabled {
  background-color: $main-accent-02;
  cursor: not-allowed;
}


button.button--grid:disabled {
  background-color: $main-accent-02;
  cursor: not-allowed;
}

button.button--grid {
  position: relative;
  width: 300px;
  font-size: 12pt;
  border: none;
  color: $main-white;
  background-color: $main-button;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin: 2px;
  border-radius: 4px;

  span {
    margin-right: 6px;
  }
}

button.button--grid:after, button.button-link:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
  box-shadow: 0 0 5px 20px white;
}

button.button--grid:active:after, button.button-link:active:after {
  box-shadow: 0 0 0 0 white;
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 0;
  opacity: 1;
  transition: 0s;
}

button.button--grid:active, button.button-link:active {
  top: 1px;
}


button.button--grid-half {
  width: 150px;

}

button:disabled {
  transition: unset;
}
button:disabled::before {
  transform: unset;
  transition: unset;
  background-color: unset;
}

button.bubble {
  z-index: 1;
  position: relative;
  font-size: inherit;
  font-family: inherit;
  color: white;
  padding: 0.5em 1em;
  outline: none;
  border: none;
  overflow: hidden;
  transition: color 0.4s ease-in-out;
}


button.bubble::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 100%;
  right: 100%;
  width: 2em;
  height: 1em;
  border-radius: 50%;
  transform-origin: center;
  transform: translate3d(50%, -50%, 0) scale3d(0, 0, 0);
  transition: transform 0.45s ease-in-out;
}

button.bubble:hover::before {
  transform: translate3d(50%, -50%, 0) scale3d(15, 15, 15);
}

.glx-icon-button--blue svg{
  color: $main-blue !important;
}
.glx-icon-button--red svg{
  color: $main-red !important;
}
.glx-icon-button--green svg{
  color: $main-green !important;
}
.glx-icon-button--orange svg{
  color: $main-orange !important;
}
.glx-icon-button--yellow svg{
  color: $main-yellow !important;
}
.glx-icon-button--cyan svg{
  color: $main-cyan !important;
}
.glx-icon-button--pink svg{
  color: $main-pink !important;
}
.glx-icon-button--purple svg{
  color: $main-purple !important;
}
.glx-icon-button--black svg{
  color: $main-black !important;
}

.glx-draw{
  canvas{
    background-color: white;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .glx-draw--header{
    background-color: $main-accent-01;
  }
}


.glx--clock-main::selection {
  background: #333;
}

.glx--clock-main::-moz-selection {
  background: #111;
}

.glx--clock-main{
  position: relative;
}

$clock-size: 160px;
$clock-fontsize-margin: $clock-size*0.1;
$clock-fontsize: $clock-size - 10px - $clock-fontsize-margin;
$clock-half: $clock-size*0.5;
$clock-half-min: $clock-half*-1;

figure.glx--clock {
  width: $clock-size;
  height: $clock-size;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: $clock-half-min;
  margin-left: $clock-half-min;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: rotateX(-35deg) rotateY(45deg);
  transform: rotateX(-35deg) rotateY(45deg);
  transition: 2s;


  .face {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-transform-origin: center;
    transform-origin: center;
    background: #000;
    text-align: center;
  }

  #s, #m, #h {
    font-size: $clock-fontsize;
    font-family: 'Digital-7';
    margin-top: $clock-fontsize-margin;
    color: $main-blue;
    text-shadow: 0px 0px 5px #000;
    -webkit-animation: color 10s infinite;
    animation: color 10s infinite;
    line-height: $clock-fontsize;
  }

  .front {
    -webkit-transform: translate3d(0, 0, $clock-half);
    transform: translate3d(0, 0, $clock-half);
    background: #111;
  }

  .left {
    -webkit-transform: rotateY(-90deg) translate3d(0, 0, $clock-half);
    transform: rotateY(-90deg) translate3d(0, 0, $clock-half);
    background: #151515;
  }

  .top {
    -webkit-transform: rotateX(90deg) translate3d(0, 0, $clock-half);
    transform: rotateX(90deg) translate3d(0, 0, $clock-half);
    background: #222;
  }

}

figure.glx--clock:hover {
  -webkit-transform: rotateX(-50deg) rotateY(45deg);
  transform: rotateX(-50deg) rotateY(45deg);
}
.glx--cube{
  min-height: 230px;
}


@keyframes color {
  0% {
    color: $main-blue;
    text-shadow: 0px 0px 5px #000;
  }
  50% {
    color: #cc4343;
    text-shadow: 0px 0px 5px $main-red;
  }
}

@-webkit-keyframes color {
  0% {
    color: $main-blue;
    text-shadow: 0px 0px 5px #000;
  }
  50% {
    color: #cc4343;
    text-shadow: 0px 0px 5px $main-red;
  }
}


$hue-color: 240;
$first-color: $main-contrast;
$title-color: hsl($hue-color, 53%, 15%);
$text-color: hsl($hue-color, 12%, 35%);
$text-color-light: hsl($hue-color, 12%, 65%);
$white-color: $main-white;
$z-normal:1;

.glx-analog--clock__circle {
  position: relative;
  width: 260px;
  height: 260px;
  box-shadow: -6px -6px 16px $white-color,
  6px 6px 16px hsla($hue-color, 30%, 86%, 1),
  inset 6px 6px 16px hsla($hue-color, 30%, 86%, 1),
  inset -6px -6px 16px $white-color;
  border-radius: 50%;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}


.glx-analog--clock__content {
  align-self: center;
  row-gap: 2rem;
}

.glx-analog--clock__twelve,
.glx-analog--clock__three,
.glx-analog--clock__six,
.glx-analog--clock__nine {
  position: absolute;
  width: 1.5rem;
  height: 1px;
  background-color: $first-color;
}

.glx-analog--clock__twelve,
.glx-analog--clock__six {
  transform: translateX(-50%) rotate(90deg);
}

.glx-analog--clock__twelve {
  top: 1.25rem;
  left: 50%;
}

.glx-analog--clock__three {
  top: 50%;
  right: 0.75rem;
}

.glx-analog--clock__six {
  bottom: 1.25rem;
  left: 50%;
}

.glx-analog--clock__nine {
  left: 0.75rem;
  top: 50%;
}

.glx-analog--clock__rounder {
  width: 0.75rem;
  height: 0.75rem;
  background-color: $first-color;
  border-radius: 50%;
  border: 2px solid var(--body-color);
  z-index: var(--z-tooltip);
}

.glx-analog--clock__hour,
.glx-analog--clock__minutes,
.glx-analog--clock__seconds {
  position: absolute;
  display: flex;
  justify-content: center;
}

.glx-analog--clock__hour {
  width: 105px;
  height: 140px;
}

.glx-analog--clock__hour::before {
  content: "";
  position: absolute;
  background-color: $text-color;
  width: 0.25rem;
  height: 5.5rem;
  border-radius: 0.75rem;
  z-index: $z-normal;
}

.glx-analog--clock__minutes {
  width: 136px;
  height: 186px;
}

.glx-analog--clock__minutes::before {
  content: "";
  position: absolute;
  background-color: $text-color;
  width: 0.25rem;
  height: 6.5rem;
  border-radius: 0.75rem;
  z-index: $z-normal;
}

.glx-analog--clock__seconds {
  width: 130px;
  height: 200px;
}

.glx-analog--clock__seconds::before {
  content: "";
  position: absolute;
  background-color: $first-color;
  width: 0.125rem;
  height: 7.5rem;
  border-radius: 0.75rem;
  z-index: $z-normal;
}


.glx-num-clock{

}

.glx-form--label {
  @extend .glx-no-select;
  text-align: left;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  gap: 8px;
}


.glx-form--compact{
  &,.glx-form--input{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

.glx-form--input--container{
  input, select, textarea,input{
    border-bottom: none;
  }
}
// ######################### Fields #########################
.glx-form-field--error{
  .glx-form--label{
    color: $main-red !important;
  }
}
.glx-form--focus{
  animation: form_focus_border_fade 0.4s linear;
  .glx-form--label{
    color: $main-contrast;
    animation: form_focus_text_fade 0.4s linear;
  }
}
// ######################### Fields #########################
// ######################### OUTLINE FORMS #########################

.glx-form--outline{
  padding: 2px 2px 2px 2px;
  border-radius: $main-border-radius;
  border: 1px solid $main-text;
  legend {
    margin-left: 6px;
  }
  &.glx-form--focus{
    border-color: $main-contrast;
  }
  &.glx-form--disabled{
    border-color: $main-accent-01;
  }
  &.glx-form-field--error{
    border-color: $main-red;
  }
}
// ######################### OUTLINE FORMS #########################
// ######################### UNDERLINE FORMS #########################
.glx-form--underline{
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid $main-text;
  padding-left: 2px;
  &.glx-form--focus{
    border-bottom: 1px solid $main-contrast;
  }
}
// ######################### UNDERLINE FORMS #########################
// ######################### NO DECORATION FORMS #########################
.glx-form--no-decoration{
  border: none;
  padding: 0;
}
// ######################### NO DECORATION FORMS #########################




@keyframes form_focus_border_fade {
  0% {
    border-color: $main-text;
  }
  100% {
    border-color: $main-contrast;
  }
}

@keyframes form_focus_text_fade {
  0% {
    color: $main-text;
  }
  100% {
    color: $main-contrast;
  }
}


.glx-form--underline.glx-form--error{
  border-bottom: 1px solid $main-red;
}

.glx-form--input {

  @extend .glx-default-text;
  padding-top: 4px;
  padding-bottom: 4px;

  input, select {
    margin-top: 4px;
    margin-bottom: 2px;
    width: calc(100% - 8px);
    height: 24px;
    border-top: none;
    border-right: none;
    border-left: none;
    background: none;
    color: $main-text;
    font-size: 14pt;
    resize: none;
  }

  select{
    background-color: $main-background-alt;
  }

  input:focus,
  select:focus,
  textarea:focus,
  button:focus {
    outline: none;
  }

  textarea {
    width: 100%;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    color: $main-text;
    font-size: 14pt;
    resize: none;
  }
}

.glx-form--error {
  background: red;
  color: $main-text;
  padding: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
  border-radius: $main-border-radius;
}


$default-padding: 4px;
$default-padding-d: 2*$default-padding;
.glx-form {
  color: $main-text;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  .glx-form--button-row {
    padding-left: $default-padding;
    padding-right: $default-padding;
  }

  .glx-form--row {
    width: 100%;
    padding: $default-padding;
    display: flex;
    column-gap: 12px;
    margin-bottom: 8px;
  }

  .glx-form--sub-row {
    display: flex;
    column-gap: 12px;
  }

  .glx-form--error {
    margin: $default-padding;
  }

  .glx-form--input--split-1 {
    width: 100%;
  }

  .glx-form--input--split-2 {
    width: 50%;
  }

  .glx-form--input--split-3 {
    width: 33%;
  }
  .glx-form--input--split-4 {
    width: 25%;
  }
  .glx-form--input--split-5{
    width: 20%;
  }
  .glx-form--input--split-6{
    width: 16%;
  }
  .glx-form--input--split-7{
    width: 14%;
  }
  .glx-form--input--split-8{
    width: 12.5%;
  }

  .glx-form--error {
    @extend .glx-p-4;
    color: white;
  }

  @-moz-document url-prefix() {
    input[type=range]{
      -webkit-appearance: auto !important;
    }
  }

  input[type=range]{
    -webkit-appearance: none;
    border-bottom: none;
  }


  input[type=range]:active,input[type=range]:focus{
    border-bottom: none;
  }

  input[type=range]::-webkit-slider-runnable-track {
    width: 300px;
    height: 5px;
    background: $main-contrast;
    border: none;
    border-radius: 3px;
  }

  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: $main-contrast;
    margin-top: -4px;
  }

  input[type=range]:focus {
    outline: none;
  }

  input[type=range]:focus::-webkit-slider-runnable-track {
    background: $main-contrast;
  }


}
@media (max-width: 768px) {
  .glx-form--row {
    flex-direction: column;
  }

  .glx-form--input--split-1,
  .glx-form--input--split-2,
  .glx-form--input--split-3,
  .glx-form--input--split-4,
  .glx-form--input--split-5,
  .glx-form--input--split-6,
  .glx-form--input--split-7,
  .glx-form--input--split-8,
  {
    width: 100%;
  }

  .glx-form--input{
    width: 100% !important;
  }
}


.glx-date-pick {
  width: calc(100% - 6px);

  > div {
    width: 100%;
  }
}

.glx-form--error-text {
  color: $main-red;
}
.glx-clear-container{
  @extend .glx-flex,.glx-flex-r;
}

.glx-clear-container-btn {
  @extend .glx-flex,.glx-flex-r,.glx-flex-v-center;
  button {
    color: $main-text;
    border: none;
    cursor: pointer;
    background: transparent;
    svg {
      transform: translateY(2px);
    }
  }
  button:hover,button:focus{
    color: $main-contrast;
    background: $main-accent-01;
    border-radius: $main-border-radius;
  }
}



.glx-smart-input--search{
  .glx-user-block--drawer{
    width: calc(100% - 32px) !important;
  }
}
.glx-smart-input{
  @extend .glx-flex-r,.glx-min-w-300;
  // outline: 1px solid green;
  position: relative;
  .glx-user-block--drawer{
    z-index: 88;
    width: 100%;
    position: absolute;
    top: 4px;
    transform: translateY(32px);

    >div{
       @extend .glx-no-select,.glx-pointer;
      padding: 4px;

    }
    >div:hover, .option-element-active{
      background-color: $main-accent-04 !important;
    }
    >div:nth-child(even){
      background-color: $main-accent-03;
    }
    >div:nth-child(odd){
      background-color: $main-accent-01;
    }
  }
  input{
    min-height: 30px;
    width: 100%;
  }
  .smart-detail{
    font-size: 10pt;
  }
}

.spinner {
  color: $main-contrast;
  font-size: 20px;
  margin: 100px auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

@-webkit-keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

@keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

.dots {
  width: 3.5em;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.dots div {
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background-color: $main-contrast;
  animation: fade 0.8s ease-in-out alternate infinite;
}

.dots div:nth-of-type(1) {
  animation-delay: -0.4s;
}

.dots div:nth-of-type(2) {
  animation-delay: -0.2s;
}

@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.balls {
  width: 4em;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.balls div {
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background-color: $main-contrast;
}

.balls div:nth-of-type(1) {
  transform: translateX(-100%);
  animation: left-swing 0.5s ease-in alternate infinite;
}

.balls div:nth-of-type(3) {
  transform: translateX(-95%);
  animation: right-swing 0.5s ease-out alternate infinite;
}

@keyframes left-swing {
  50%,
  100% {
    transform: translateX(95%);
  }
}

@keyframes right-swing {
  50% {
    transform: translateX(-95%);
  }
  100% {
    transform: translateX(100%);
  }
}


div.pulsing {
  display: flex;
  width: 3.5em;
  height: 3.5em;
  border: 3px solid transparent;
  border-top-color: $main-contrast;
  border-bottom-color: $main-contrast;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

div.pulsing:before {
  content: '';
  display: block;
  margin: auto;
  width: 0.75em;
  height: 0.75em;
  border: 3px solid $main-contrast;
  border-radius: 50%;
  animation: pulse 1s alternate ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}


.glx-icon-button:disabled {
  color: $main-accent-03;
  cursor: default;
}

.glx-icon-button:disabled:hover {
  background: none;
  border-radius: 4px;
}

.glx-icon-button-wr {
  position: relative;
  button>svg{
    transform: translateY(2px);
  }
}

.glx-icon-button {
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 4px;
  border: none;
  background: none;
  color: $main-text;
  font-size: 18px;

  svg {
    margin-top: 2px;
  }
}

.glx-icon-button:hover {
  background: $main-accent-03;
  border-radius: 4px;
}

.glx-icon--drop--left {
  left: -150px;
}
.glx-icon--drop--top {
  left: -150px;
}
.glx-icon--drop {
  @extend .glx-animation-fade-in-super-fast;
  background: $main-background-alt;
  position: absolute;
  width: 180px;
  z-index: 30;
  button {
    background-color: $main-button;
    cursor: pointer;
    margin-bottom: 2px;
    text-align: left;
    width: 100%;
    color: white;
    border: none;
    padding: 4px;
    font-size: 12pt;

    svg {
      margin-right: 4px;
    }
  }

  button:hover {
    background: $main-contrast;
  }
  button:disabled {
    cursor: default !important;
    background-color: $main-button !important;
  }
}
.glx-icon--drop-submenu{
  position: relative;

  .glx-icon--drop-submenu-block{
    @extend  .glx-animation-fade-in-super-fast;;
    width: 180px;
    position: absolute;
    top: 0;
    left: 182px;
  }
  .glx-icon--drop-submenu-block--left{
    @extend .glx-animation-fade-in-super-fast;
    left: -182px;
    width: 180px;
    position: absolute;
    top: 0;
  }
  .glx-icon--drop-submenu-block--top{
    @extend .glx-animation-fade-in-super-fast;
    left: -182px;
    width: 180px;
    position: absolute;
    top: 0;
  }
}


.glx-notification {
  color: $main-text;
  margin-bottom: 8px;
  margin-top: 8px;
  border-radius: 4px;
  gap: 4px;
  position: relative;
  .glx-icon-button-wr,.glx-icon-button{
    display: none;
  }
}

.glx-notification:hover {
  .glx-icon-button-wr,.glx-icon-button{
    display: block;
    background: $main-background;
    border-radius: 4px;
  }
}


.glx-notification--image{
  position: absolute;
    top: 0;
  right: 0;
  height: 100%;
  width: 90px;
  background-size: cover ;
  mask-image: linear-gradient(to right, transparent 0%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
  z-index: 90;
}

.glx-notification:hover {
  background-color: $main-background;
  cursor: default;
}
.glx-notification--sel{
  background-color: $main-background;
}

.glx-notification--unread {

  .glx-notification--color {
    background-color: $main-orange;
  }
}

.glx-notification--color {
  width: 2px;
  background-color: $main-accent-05;
}

.glx-notification--icon {
  width: 60px;
  justify-content: center;
  align-items: center;
}

.glx-notification--button {
  justify-content: space-between;
  z-index: 99;

}

.glx-notification--date {
  padding-top: 14px;
  color: $main-accent-05;
}


.glx-usage-comp{
  @extend .glx-default-text;

  .glx-usage-comp-bar{
    width: 100%;
    height: 4px;
    background-color: lightgray;
  }

  .glx-usage-comp-label{
    padding-top: 2px;
    text-align: left;
  }

  .glx-usage-comp-map-bar{
    @extend .glx-flex-r,.glx-py-2,.glx-w-full;
    height: 40px;
    align-items: flex-end;
  }
}



.glx-table--fixed-header{
  th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
  }
}
.glx-table-root{
  color: $main-text;
  width: 100%;
  border-collapse: collapse;

   td,  th {
    border: none;
    padding: 8px;
  }

  .glx-table--row{
    background-color: $main-background;
  }
  .glx-table--row-even{
    background-color: $main-background-alt;
  }

   .glx-table--row-hover:hover {background-color: $main-select;}

   th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: $tlc-card;
    color: $tlc-card-font;
  }

}

.glx-tooltip-container {
  @extend .glx-default-text;
  position: relative;
  text-align: center;
}

.glx-tooltip-children {

}


.glx-tooltip--pre-line {
  white-space: pre-line;
}
.glx-tooltip-content {
  @extend .glx-no-select,.glx-animation-fade-in-super-fast;
  background: $tlc-card;
  color: $tlc-card-font;
  border-radius: 2px;
  position: absolute;
  font-size: 12pt;
  padding: 4px;
  z-index: 12000;
  border: 1px solid $main-contrast-transparent;
}

.glx-tooltip-content-bottom {

  transform: translateY(4px);
}

.glx-tooltip-content-right {
  top: 0;
  padding-left: 2px;
  transform: translateX(4px);
}

.glx-tooltip-content-left {
  top: 0;
  padding-right: 2px;
  transform: translateY(-4px);
}

.glx-animation-fade-in-super-fast {
  animation: fadeIn 0.5s;
  -webkit-animation: fadeIn 0.5s;
  -moz-animation: fadeIn 0.5s;
  -o-animation: fadeIn 0.5s;
  -ms-animation: fadeIn 0.5s;
}
.glx-animation-fade-in-fast {
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
}

.glx-animation-fade-in-slow {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes placeHolderShimmer{
  0%{
    background-position: -468px 0
  }
  100%{
    background-position: 468px 0
  }
}

.animated-background {
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: transparent;
  background: linear-gradient(to right, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 18%, rgba(255,255,255,0.1) 33%);
  background-size: 800px 104px;
  position: relative;
}

/**
 DISABLE TEXT Select
 */
.glx-no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently                                  supported by Chrome, Edge, Opera and Firefox */
}

.glx-default-text{
  color: $main-text;
  ::-moz-selection { /* Code for Firefox */
    color: $main-background;
    background: $main-text;
  }
  ::selection {
    color: $main-background;
    background: $main-text;
  }
}
/**
 Hide Scrolls
 */
.glx-no-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.glx-no-scroll::-webkit-scrollbar {
  display: none;
}

/**
 Text Styling
 */
.glx-underline {
  text-decoration: underline;
}

.glx-break-word {
  overflow-wrap: break-word;
}

.glx-bold {
  font-weight: bold;
}

.glx-pointer {
  cursor: pointer;
}

/**
 Electron Drag Region
 */
.glx-electron-drag {
  -webkit-app-region: drag;
}

.glx-electron-no-drag {
  -webkit-app-region: no-drag;
}

.glx-hidden {
  visibility: hidden;
}

.glx-gone {
  display: none;
}

.glx-flex{
  display: flex;
}
// Flex Container
.glx-flex-r {
  @extend .glx-flex;
  flex-direction: row;

}
.glx-flex-row {
  @extend .glx-flex-r;
  width: 100%;

}
.glx-flex-c {
  @extend .glx-flex;
  flex-direction: column;
}
.glx-flex-column {
  @extend .glx-flex-c;
  width: 100%;
}


// Flex Alignments

//VERTICAL CENTER
.glx-flex-v-center {
  align-items: center;
}

//HORIZONTAL CENTER
.glx-flex-h-center {
  justify-content: center;
}

.glx-flex-center {
  @extend .glx-flex-v-center;
  @extend .glx-flex-h-center;
  height: 100%;
}

.glx-flex-start {
  justify-content: flex-start;
}

.glx-flex-end {
  justify-content: flex-end;
}

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

.glx-flex-space-around {
  justify-content: space-around;
}

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

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

// Flex Gap

.glx-flex-g-0 {
  gap: 0;
}

.glx-flex-g-2 {
  gap: 2px;
}

.glx-flex-g-4 {
  gap: 4px;
}

.glx-flex-g-6 {
  gap: 6px;
}

.glx-flex-g-8 {
  gap: 8px;
}

.glx-flex-g-10 {
  gap: 10px;
}

.glx-flex-g-12 {
  gap: 12px;
}

.glx-flex-g-24 {
  gap: 24px;
}


.glx-flex-grow-0 {
  flex-grow: 0;
}

.glx-flex-grow-1 {
  flex-grow: 1;
}

.glx-flex-grow-2 {
  flex-grow: 2;
}


.glx-mobile-wrap{
  flex-direction: row;
  @media screen and (max-width: 900px) {
    flex-direction: column;
  }
}

.glx-layout-1-3{
  flex-basis:33.33%;
}


.glx-layout-2-3{
  flex-basis:66.66%;
}
.glx-layout-1-2{
  flex-basis:50%;
}

.glx-float-right {
  float: right;
}

.glx-float-left {
  float: left;
}

.glx-text-center {
  text-align: center;
}

@media screen and (max-width: 600px) {
  .glx-hide-on-xs {
    visibility: hidden;
    clear: both;
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .glx-hide-on-md {
    visibility: hidden;
    clear: both;
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .glx-hide-on-lg {
    visibility: hidden;
    clear: both;
    display: none;
  }
}

.glx-show-on-xs, .glx-show-on-md, .glx-show-on-lg {
  visibility: hidden;
  clear: both;
  display: none;
}


@media screen and (min-width: 600px) {
  .glx-show-on-xs {
    visibility: visible;
    clear: unset;
    display: block;
  }
}

@media screen and (min-width: 900px) {
  .glx-show-on-md {
    visibility: visible;
    clear: unset;
    display: block;
  }
}

@media screen and (min-width: 1300px) {
  .glx-show-on-lg {
    visibility: visible;
    clear: unset;
    display: block;
  }
}


.glx-w-full {
  width: 100%;
}

.glx-w-half {
  width: 50%;
}


.glx-w-full-2 {
  width: calc(100% - 4px);
}

.glx-w-full-4 {
  width: calc(100% - 8px);
}

.glx-w-full-8 {
  width: calc(100% - 16px);
}

.glx-w-full-12 {
  width: calc(100% - 24px);
}

.glx-w-full-16 {
  width: calc(100% - 32px);
}

.glx-h-full {
  height: 100%;
}

.glx-h-half {
  height: 50%;
}

.glx-h-full-2 {
  height: calc(100% - 4px);
}

.glx-h-full-4 {
  height: calc(100% - 8px);
}

.glx-h-full-8 {
  height: calc(100% - 16px);
}

.glx-h-full-12 {
  height: calc(100% - 24px);
}

.glx-h-full-16 {
  height: calc(100% - 32px);
}

.glx-h-full-32 {
  height: calc(100% - 64px);
}


.glx-layout-block {
  width: 800px;
}

.glx-layout-block-large {
  width: 1000px;
}

.glx-layout-block-extra-large {
  width: 1200px;
}


@media only screen and (max-width: 900px) {
  .glx-layout-block {
    padding-left: 8px;
    padding-right: 8px;
    width: calc(100% - 16px);
  }
}

@media only screen and (max-width: 1100px) {
  .glx-layout-block-large {
    padding-left: 8px;
    padding-right: 8px;
    width: calc(100% - 16px);
  }
}

@media only screen and (max-width: 1300px) {
  .glx-layout-block-extra-large {
    padding-left: 8px;
    padding-right: 8px;
    width: calc(100% - 16px);
  }
}


.glx-min-w-300 {
  min-width: 300px;
  @media only screen and (max-width: 400px) {
    min-width: unset;
    width: 100%;
  }
}

.glx-min-w-400 {
  min-width: 400px;
  @media only screen and (max-width: 500px) {
    min-width: unset;
    width: 100%;
  }
}
.glx-min-w-600 {
  min-width: 600px;
  @media only screen and (max-width: 700px) {
    min-width: unset;
    width: 100%;
  }
}


.glx-max-w-800 {
  max-width: 800px;
  @media only screen and (max-width: 840px) {
    max-width: unset;
    width: 100%;
  }
}



.glx-max-w-600 {
  max-width: 600px;
  @media only screen and (max-width: 640px) {
    max-width: unset;
    width: 100%;
  }
}

.glx-pt-2 {
  padding-top: 2px;
}

.glx-pb-2 {
  padding-bottom: 2px;
}

.glx-pr-2 {
  padding-right: 2px;
}

.glx-pl-2 {
  padding-left: 2px;
}

.glx-px-2 {
  @extend .glx-pl-2;
  @extend .glx-pr-2;
}

.glx-py-2 {
  @extend .glx-pt-2;
  @extend .glx-pb-2;
}

.glx-p-2 {
  @extend .glx-pt-2;
  @extend .glx-pb-2;
  @extend .glx-pl-2;
  @extend .glx-pr-2;
}

.glx-pt-4 {
  padding-top: 4px;
}

.glx-pb-4 {
  padding-bottom: 4px;
}

.glx-pr-4 {
  padding-right: 4px;
}

.glx-pl-4 {
  padding-left: 4px;
}

.glx-px-4 {
  @extend .glx-pl-4;
  @extend .glx-pr-4;
}

.glx-py-4 {
  @extend .glx-pt-4;
  @extend .glx-pb-4;
}

.glx-p-4 {
  @extend .glx-pt-4;
  @extend .glx-pb-4;
  @extend .glx-pl-4;
  @extend .glx-pr-4;
}

.glx-pt-6 {
  padding-top: 6px;
}

.glx-pb-6 {
  padding-bottom: 6px;
}

.glx-pr-6 {
  padding-right: 6px;
}

.glx-pl-6 {
  padding-left: 6px;
}

.glx-px-6 {
  @extend .glx-pl-6;
  @extend .glx-pr-6;
}

.glx-py-6 {
  @extend .glx-pt-6;
  @extend .glx-pb-6;
}

.glx-p-6 {
  @extend .glx-pt-6;
  @extend .glx-pb-6;
  @extend .glx-pl-6;
  @extend .glx-pr-6;
}

.glx-pt-8 {
  padding-top: 8px;
}

.glx-pb-8 {
  padding-bottom: 8px;
}

.glx-pr-8 {
  padding-right: 8px;
}

.glx-pl-8 {
  padding-left: 8px;
}

.glx-px-8 {
  @extend .glx-pl-8;
  @extend .glx-pr-8;
}

.glx-py-8 {
  @extend .glx-pt-8;
  @extend .glx-pb-8;
}

.glx-p-8 {
  @extend .glx-pt-8;
  @extend .glx-pb-8;
  @extend .glx-pl-8;
  @extend .glx-pr-8;
}

.glx-pt-10 {
  padding-top: 10px;
}

.glx-pb-10 {
  padding-bottom: 10px;
}

.glx-pr-10 {
  padding-right: 10px;
}

.glx-pl-10 {
  padding-left: 10px;
}

.glx-px-10 {
  @extend .glx-pl-10;
  @extend .glx-pr-10;
}

.glx-py-10 {
  @extend .glx-pt-10;
  @extend .glx-pb-10;
}

.glx-p-10 {
  @extend .glx-pt-10;
  @extend .glx-pb-10;
  @extend .glx-pl-10;
  @extend .glx-pr-10;
}

.glx-pt-12 {
  padding-top: 12px;
}

.glx-pb-12 {
  padding-bottom: 12px;
}

.glx-pr-12 {
  padding-right: 12px;
}

.glx-pl-12 {
  padding-left: 12px;
}

.glx-px-12 {
  @extend .glx-pl-12;
  @extend .glx-pr-12;
}

.glx-py-12 {
  @extend .glx-pt-12;
  @extend .glx-pb-12;
}

.glx-p-12 {
  @extend .glx-pt-12;
  @extend .glx-pb-12;
  @extend .glx-pl-12;
  @extend .glx-pr-12;
}


.glx-mt-2 {
  margin-top: 2px;
}

.glx-mb-2 {
  margin-bottom: 2px;
}

.glx-mr-2 {
  margin-right: 2px;
}

.glx-ml-2 {
  margin-left: 2px;
}

.glx-mx-2 {
  @extend .glx-ml-2;
  @extend .glx-mr-2;
}

.glx-my-2 {
  @extend .glx-mt-2;
  @extend .glx-mb-2;
}

.glx-m-2 {
  @extend .glx-mt-2;
  @extend .glx-mb-2;
  @extend .glx-ml-2;
  @extend .glx-mr-2;
}

.glx-mt-4 {
  margin-top: 4px;
}

.glx-mb-4 {
  margin-bottom: 4px;
}

.glx-mr-4 {
  margin-right: 4px;
}

.glx-ml-4 {
  margin-left: 4px;
}

.glx-mx-4 {
  @extend .glx-ml-4;
  @extend .glx-mr-4;
}

.glx-my-4 {
  @extend .glx-mt-4;
  @extend .glx-mb-4;
}

.glx-m-4 {
  @extend .glx-mt-4;
  @extend .glx-mb-4;
  @extend .glx-ml-4;
  @extend .glx-mr-4;
}

.glx-mt-6 {
  margin-top: 6px;
}

.glx-mb-6 {
  margin-bottom: 6px;
}

.glx-mr-6 {
  margin-right: 6px;
}

.glx-ml-6 {
  margin-left: 6px;
}

.glx-mx-6 {
  @extend .glx-ml-6;
  @extend .glx-mr-6;
}

.glx-my-6 {
  @extend .glx-mt-6;
  @extend .glx-mb-6;
}

.glx-m-6 {
  @extend .glx-mt-6;
  @extend .glx-mb-6;
  @extend .glx-ml-6;
  @extend .glx-mr-6;
}

.glx-mt-8 {
  margin-top: 8px;
}

.glx-mb-8 {
  margin-bottom: 8px;
}

.glx-mr-8 {
  margin-right: 8px;
}

.glx-ml-8 {
  margin-left: 8px;
}

.glx-mx-8 {
  @extend .glx-ml-8;
  @extend .glx-mr-8;
}

.glx-my-8 {
  @extend .glx-mt-8;
  @extend .glx-mb-8;
}

.glx-m-8 {
  @extend .glx-mt-8;
  @extend .glx-mb-8;
  @extend .glx-ml-8;
  @extend .glx-mr-8;
}

.glx-mt-10 {
  margin-top: 10px;
}

.glx-mb-10 {
  margin-bottom: 10px;
}

.glx-mr-10 {
  margin-right: 10px;
}

.glx-ml-10 {
  margin-left: 10px;
}

.glx-mx-10 {
  @extend .glx-ml-10;
  @extend .glx-mr-10;
}

.glx-my-10 {
  @extend .glx-mt-10;
  @extend .glx-mb-10;
}

.glx-m-10 {
  @extend .glx-mt-10;
  @extend .glx-mb-10;
  @extend .glx-ml-10;
  @extend .glx-mr-10;
}

.glx-mt-12 {
  margin-top: 12px;
}

.glx-mb-12 {
  margin-bottom: 12px;
}

.glx-mr-12 {
  margin-right: 12px;
}

.glx-ml-12 {
  margin-left: 12px;
}

.glx-mx-12 {
  @extend .glx-ml-12;
  @extend .glx-mr-12;
}

.glx-my-12 {
  @extend .glx-mt-12;
  @extend .glx-mb-12;
}

.glx-m-12 {
  @extend .glx-mt-12;
  @extend .glx-mb-12;
  @extend .glx-ml-12;
  @extend .glx-mr-12;
}


.styled-table{

  width: 100%;

  .styled-class{
    color: #800000 !important;
    line-height: 1;
    margin: 0px 2px;
    padding: 3px 5px;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 13px;
    border: 1px solid rgb(236, 244, 249);
    color: rgba(46, 52, 56, 0.9);
    background-color: rgb(247, 250, 252);
  }

  .styled-name{
    color: #ff0000 !important;
    line-height: 1;
    white-space: nowrap;
    font-size: 13px;
  }
  .styled-value{
    line-height: 1;
    white-space: nowrap;
    font-size: 13px;
  }
  .styled-button{
    padding: 0;
    margin: 0;
    height: 16px;
    width: 16px;

  }
  .styled-button:hover{
    cursor: pointer;
  }
}

.glx-ee-component .tab-layout--root{
  height: 500px;
  position: relative;
}

.main-frame{
  height: calc(100% - 40px);
}


@media screen and (max-width: 450px) {
  .tab-layout--root .sidebar-panel{
    width: calc(100% - 44px) !important;
  }
}


.tab-layout--root{

  width: 100%;
  height: 100%;
  position: relative;
  // ########################## MODAL #########################
  .tab-layout--modal{
    @extend .glx-default-text;
  position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999;
  }
  // ########################## Spotlight #########################
  .tab-layout--spotlight{
    @extend .glx-no-select,.glx-default-text;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 99999;
    font-size: 20px;
    .tab-layout--spotlight-input{
      max-width: calc(100% - 96px);
      width: 400px;
      height: 60px;
      border: 1px solid $main-text;
      input{
        width: calc(100% - 20px);
        height: 100%;
        border: none;
        outline: none;
        background-color: transparent;
        color: $main-text;
        font-size: 20px;
        padding-left: 10px;
        padding-right: 10px;
      }
    }
    .tab-layout--spotlight-offset{
      height: 20%;
    }

    .option-icon{
      padding-left: 8px;
      width: 24px;
    }
    .option-path{
      font-size: 12px;
      color: $main-contrast;
    }


    .tab-layout--spotlight-option{
      height: calc(80% - 100px);
      width: 400px;
      max-width: calc(100% - 96px);
      overflow-y: scroll;
      overflow-x: hidden;
      .option-element{
        width: calc(100% - 2px);
        height: 60px;
        border: 1px solid $main-text;
      }
      .option-element--no-action{
        width: 100%;
        height: 60px;
        color: $main-accent-03;
      }
      .option-message{
        width: 100%;
        height: 60px;
      }
      .option-element:hover,.option-element-active {
        background-color: $main-contrast;
        cursor: pointer;
        .option-path{
          color: $main-white;
        }
      }
    }


  }
  // ########################## BASIC #########################

  .flex-center {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

  }

  .flex-grid::-webkit-scrollbar {
    display: none;
  }

  .flex-grid {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    row-gap: 4px;
    column-gap: 4px;
    height: 100%;
    flex-wrap: wrap;
    overflow-x: hidden;
  }

  .flex-row {
    padding: 0;
    margin: 0;
    display: flex;

    justify-content: center;
    height: 100%;
    flex-direction: row;
  }

  .row {
    width: auto;

  }

  .item {

    padding: 2px;
    margin: 4px;
    text-align: center;
  }


  .main {
    @extend .flex-center;
    background-color: $main-background;
    height: calc(100% - 40px);
    overflow-x: hidden;
    h2 {
      font-size: 32pt;
    }
  }


  .main--sidebar {
    background: $tlc-sidebar;
    width: 44px;
    height: calc(100% - 40px);
    float: left;
    color: $tlc-sidebar-font;

    svg {
      color: $tlc-sidebar-font;
      font-size: 16pt;
    }
  }


  .main-no--sidebar {
    width: calc(100% - 44px);
  }

  .main-no--sidebar-half {
    min-height: 1px;
    width: calc(50% - 22px);
    float: left;
  }


  // ########################## HEADER #########################

  .tab-header {
    -webkit-app-region: drag;
    position: relative;
    height: 40px;
    background-color: $tlc-header;

    .title {
      color: $tlc-header-font;
      padding-top: 2px;
      position: absolute;
      left: 10px;
      top: 5px;
      font-size: 16pt;
    }

    .keys {
      -webkit-app-region: no-drag;

      position: absolute;
      right: 5px;
      top: 0;
      height: 100%;

      button {
        background-color: transparent;
        font-size: 18pt;
        color: $main-white;
        border: none;
        cursor: pointer;
        height: 100%;
      }

      button:hover {
        background-color: $main-accent-05;
      }

      button.cancel:hover {
        background-color: $main-red;
      }
    }


    .refresh {

      border-style: solid;
      border-width: 0 1px 0 0;
      padding-right: 6px;
      position: absolute;
      right: 120px;
      top: 5px;
      display: flex;
      max-width: 70%;
      align-items: center;
      justify-content: flex-end;
      color: $tlc-header-font;

      button {
        background-color: transparent;
        font-size: 18pt;
        color: $tlc-header-font;
        border: none;
        cursor: pointer;
        border-radius: 16px;
        -webkit-app-region: no-drag;

      }

      button:hover {
        background-color: $tlc-header-font-alt;
      }

    }
  }

  .head-web {
    .refresh {
      right: 5px !important;
    }
  }


  // ########################## TABBAR #########################


  .glx-tab-bar-l {
    @extend .glx-no-scroll;
  }

  .glx-tab-bar-r {
    @extend .glx-no-scroll;
  }

  .tab-bar--single {
    .glx-tab-bar-l {
      width: calc(100% - 10px) !important;
    }

    .glx-tab-bar-r {
      width: 10px !important;
    }
  }

  .glx-tab-bar-l:-moz-drag-over,
  .glx-tab-bar-r:-moz-drag-over {
    background: blue !important;
  }

  .head-web {
    .glx-tab-bar-l {
      width: calc(50% + 20px);
    }

    .glx-tab-bar-r {
      width: calc(50% - 20px);
    }
  }

  .head-native {
    .glx-tab-bar-l {
      width: calc(50% + 82px);
    }

    .glx-tab-bar-r {
      width: calc(50% - 82px);
    }
  }

  .tab-bar {

    position: absolute;
    left: 42px;
    color: $tlc-header-font-alt;
    height: 40px;
    overflow-y: hidden;

    .glx-drop-nonce--active{
      color: red;
    }
    .glx-drop-nonce--active-border{
      border-right: 1px solid red;
    }

    .glx-electron-no-drag {
      padding: 2px;
      width: 4px;
      height: 100%;
    }

    .glx-tab-bar-r, .glx-tab-bar-l {
      display: flex;
      overflow-y: hidden;
      column-gap: 4px;
      float: left;
    }


    .tab-bar--item {
      white-space: nowrap;
      padding-left: 8px;
      padding-right: 8px;
      -webkit-app-region: no-drag;
      cursor: pointer;
      line-height: 40px;
      text-align: center;

      button {
        color: $tlc-header-font-alt;
        background: transparent;
        border: none;
        cursor: pointer;
      }

      svg {
        transform: translateY(3px);
      }
    }

    .tab-bar--item-selected,
    .tab-bar--item:hover {
      color: $tlc-header-font;
      background: $main-accent-03;

      button {
        color: $tlc-header-font;
      }
    }

    .tab-bar--button {
      height: 100%;
      text-overflow: ellipsis;
      max-width: 200px;
      svg {
        margin-bottom: 1px;
        margin-right: 3px;
      }
    }

    .tab-bar--button-close {
      transform: translateY(-2px);
    }
  }


  .head-native .tab-bar {
    width: calc(100% - 206px);
  }

  .head-web .tab-bar {
    width: calc(100% - 92px);
  }

  .tab-bar::-webkit-scrollbar {
    display: none;
  }

  // ########################## SIDEBAR #########################


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

  .sidebar--container-up {
    @extend .glx-no-scroll;
    margin-top: 8px;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .sidebar--container-down {
    margin-bottom: 8px;
  }

  .sidebar--container-up, .sidebar--container-down {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }

  .menu-button {
    text-align: center;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;

    .label--num-right {
      right: 0;
    }
    .label--num-left {
      left: 0;
    }
    .label--num-bottom {
      right: 0;
      bottom: -8px;
    }
    .label--num {
      position: absolute;
      width: 14px;
      border-radius: 7px;
      height: 14px;
      background-color: $main-contrast;
      color: white;
      transform: translateY(-4px);
    }
  }

  .menu-button:hover {
    svg {
      color: $main-contrast;
    }
  }
.sidebar-head-block{
  @extend .glx-mx-8;
  height: 70px;
}
  .sidebar-panel {
    z-index: 2000;
    position: absolute;
    background: $tlc-sidebar;
    padding: 0px;
    height: calc(100% - 40px);
    width: 400px;
    left: 44px;
  }

  .sidebar-panel-scroll {
    position: relative;
    height: calc(100% - 70px);
    overflow-x: hidden;
    hr{
      border: 1px solid $main-accent-03;
    }
  }


  .sidebar-panel-scroll-mini {
    height: calc(100% - 200px);
    overflow-x: hidden;
  }

  .sidebar-panel-scroll::-webkit-scrollbar,
  .sidebar-panel-scroll-mini::-webkit-scrollbar{
    display: none;
  }


  .icon-blue {
    color: $main-blue;
  }


  .menu-item {
    position: relative;
    height: 52px;
    border-radius: 12px;
    cursor: pointer;
  }

  .menu-item:hover {
    background: $main-accent-03;
  }

  .menu-item--sub-menu {
    font-weight: bold;
  }

  .menu-item-level--0 .menu-item--space {
    width: 2px;
  }

  .menu-item-level--1 .menu-item--space {
    width: 26px;
  }

  .menu-item-level--2 .menu-item--space {
    width: 52px;
  }

  .menu-item-level--3 .menu-item--space {
    width: 78px;
  }

  .menu-item-level--4 .menu-item--space {
    width: 104px;
  }


  .menu-item--content {

    z-index: 100;
    cursor: pointer;


  }

  .menu-item--sub-menu-icon {
    cursor: pointer;
    z-index: 100;


    button {
      border: none;
      background: transparent;
      cursor: pointer;

      svg {
        cursor: pointer;
      }
    }
  }
}

.edit-side-panel{
  position: absolute;
  top: 40px;
  right: 0;
  height: calc(100% - 40px);
  background-color: $tlc-sidebar;
  z-index: 90;
  display: flex;
  .edit-side-panel--drag{
    cursor: col-resize;
  }
  .edit-side-panel--content{
    flex-grow: 1;
  }
  .edit-side-panel--resize{
    width: 4px;
    height: 100%;
  }
}
.glx-context-menu{
  @extend .glx-no-select,.glx-default-text;
  position: absolute;
  min-width: 120px;
  outline: 1p solid $main-accent-03;
  >div{
    padding: 4px;
    border-bottom: 1px solid $main-accent-03;
    background-color: $tlc-sidebar;
    cursor: pointer;
  }
  >div:hover{
    background-color: $main-accent-05;
  }
}

.glx-f-number{
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  color: $main-accent-02;
  .num-active{
    color: $main-text;
  }
  .num-active--secondary{
    color: $main-contrast !important;
  }
}

$border-rad: 4px;


.glx-content-switcher-wrapper {
  @extend .glx-default-text;
  position: relative;
}


.glx-content-switcher--toggle-item {
  width: 100%;

  button {
    padding: 4px;
    cursor: pointer;
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
  }
}

.glx-content-switcher--toggle-icon {
  height: 25px;
  width: 25px;
  right: 1px;
  top: 0px;
  font-size: 16pt;
  background: transparent;
  border-radius: 0 $border-rad $border-rad 0;
  text-align: center;
  position: absolute;
  padding-top: 4px;
  color: $main-contrast;
}

.glx-content-switcher--toggle-dropdown {
  position: absolute;
  right: 1px;
  top: 28px;
  background: $main-background-alt;
  overflow-Y: auto;
  max-height: 400px;
  width: 300px;
  z-index: 10;
  padding: 4px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.glx-content-switcher {
  display: flex;
  overflow-y: hidden;

  -ms-overflow-style: none;
  scrollbar-width: none;
  border: 1px solid $main-text;
  border-radius: $border-rad;
  width: 100%;


  .glx-content-switcher--item {
    white-space: nowrap;
    padding: 2px 6px;
    flex-grow: 1;
    height: 25px;
    cursor: pointer;
  }

  .glx-content-switcher--active {
    background: $main-text;
    color: $main-text-alt;
    cursor: default;
  }
}

.glx-content-switcher::-webkit-scrollbar {
  display: none;
}



.portal-stepper-main {
  @extend .glx-default-text;
  height: 100%;

  .portal-stepper--content {
    margin-top: 12px;
    height: calc(100% - 52px);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;

    h4 {
      font-size: 16pt;
    }
  }
}


.portal-stepper--content::-webkit-scrollbar {
  display: none;
}


.progress-bar {
  width: 100%;

  .wrapper {
    width: 100%;
    background-color: #e0e0e0;
    padding: 3px;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
  }

  .progress-bar-fill {
    display: block;
    height: 22px;
    background-color: $main-contrast;
    border-radius: 3px;
    transition: width 500ms ease-in-out;
  }
}

.glx-icon-sel--dropdown--container{
  position: absolute;
  top: 28px;
  left: 0;
  outline: 1px solid $main-contrast;
  background-color: $main-background;
  padding: 4px;
  height: 240px;
  z-index: 100;
  border-radius: $main-border-radius;
  resize: vertical;
}
.glx-icon-sel--dropdown-input{
  height: 180px;
  overflow-y: scroll;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1px;
  width: 270px;

}
.glx-icon-sel--dropdown{
  flex-grow: 1;
  flex-basis: 50px;
  overflow-y: scroll;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1px;
  width: 270px;
  align-content: flex-start;
}

.glx-img-active{
  outline: 1px $main-contrast solid;
}

.glx-img-sel{
 border-radius: 4px;
 padding: 4px;
}

.glx-badge {
  @extend .glx-p-6,.glx-flex-g-4,.glx-no-select;
  display: flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: $main-contrast;
  button{
    border: none;
    background-color: transparent;
  }
}


.glx-badge--blue{
  background: $main-blue;
  color: $main-white;
  button{
    color: $main-white;
  }
}

.glx-badge--red{
  background: $main-red;
  color: $main-white;
  button{
    color: $main-white;
  }
}


.glx-badge--black{
  background: $main-black;
  color: $main-white;
  button{
    color: $main-white;
  }
}


.glx-badge--green{
  background: $main-green;
  button{
    color: $main-white;
  }
}
.glx-badge--orange{
  background: $main-orange;
  color: $main-black;
  button{
    color: $main-black;
  }
}
.glx-badge--yellow{
  background: $main-yellow;
  color: $main-black;
  button{
    color: $main-black;
  }
}


.glx-persona {
  @extend .glx-no-select;
  display: flex;
  justify-content: center;

  .glx-persona--center {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4em;
    border-radius: 100px;
    background: $main-contrast;
    color: $main-text !important;
    height: 200px;
    width: 200px;
  }

  .glx-persona--small {
    font-size: 1em;
  }

  img{
    width: 100%;
    height: 100%;
    border-radius: 100px;
    object-fit: cover;
  }
}


.glx-tag-selector{
  position: relative;
  min-width: 200px;

  .glx-tag-selector--drawer{
    @extend .glx-p-8,.glx-w-full-8;
    z-index: 200;
    position: absolute;
    background-color: $main-accent-01;
    >div{
      @extend .glx-no-select;
      width: 100%;
    }
    >div:hover,.glx-tag-selector--selected{
      @extend .glx-no-select;
      background-color: $main-accent-05;
      width: 100%;
    }

  }
}


.glx-user-block{
  @extend .glx-flex-r;
  position: relative;
  .glx-user-block--drawer{
    z-index: 200;
    width: calc(100% - 32px);
    position: absolute;
    top: 0;
    transform: translateY(32px);

    >div{
       @extend .glx-no-select,.glx-pointer;
      padding: 4px;

    }
    >div:hover{
      background-color: $main-accent-04 !important;
    }
    >div:nth-child(even){
      background-color: $main-accent-03;
    }
    >div:nth-child(odd){
      background-color: $main-accent-01;
    }
  }
}
