﻿html,
body {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  background-color: #009cdd;
}
/* LOADING PANEL */
.gx-loading-panel {
  background: #ffffffc7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.gx-loading-panel .loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  perspective: 800px;
}
.gx-loading-panel .inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.gx-loading-panel .inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid #0064BB;
}
.gx-loading-panel .inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid #25B4FB;
}
.gx-loading-panel .inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid #007CD0;
}
@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
/* LOADING PANEL */
#gx-unsupported-browser {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  /*background-image: url("Images/bad-browser.jpg");
    background-size: cover;
    background-position: 50% 50%;*/
  background-color: rgba(155, 155, 155, 0.8);
  z-index: 1;
  color: white;
  text-shadow: 2px 2px 10px black;
  text-align: center;
}
#gx-unsupported-browser .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#gx-unsupported-browser .unsuportedText {
  font-size: 4em;
  font-weight: bold;
}
#gx-unsupported-browser .supportedText {
  font-size: 2em;
}
#gx-unsupported-browser .supportedText a {
  color: white;
}
#gx-unsupported-browser .supportedText a:hover {
  color: white;
  text-decoration: none;
}
#gx-unsupported-browser .supportedText a:visited {
  color: white;
}
#gx-unsupported-browser .supportedText a:active {
  color: white;
}
#gx-loginLocoMotivationText {
  display: none;
}
#gx-login-form {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#gx-particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #009cdd;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
#gx-main-logo {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100px;
  height: auto;
}
#gx-main-logo img {
  width: 100%;
  height: auto;
}
#gx-privacy-policy {
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: white;
  font-weight: 100;
  cursor: pointer;
}
#gx-privacy-policy:hover {
  text-decoration: underline;
}
#gx-cookies {
  background-color: #5db75d;
  position: absolute;
  bottom: -53px;
  left: 0;
  right: 0;
  padding: 10px;
  color: white;
  text-align: center;
  font-weight: 100;
  animation: cookiesMove 1.5s forwards;
}
#gx-cookies #btn-cookie {
  background: #009cdd;
  color: white;
  cursor: pointer;
  text-align: center;
  padding: 7px;
  width: 140px;
  display: inline-block;
  margin-left: 20px;
}
#gx-cookies #btn-cookie:hover {
  background: #2bc1ff;
}
@keyframes cookiesMove {
  100% {
    bottom: 0px;
  }
}
#gx-login-table {
  position: relative;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  max-width: 500px;
  height: 90%;
  max-height: 500px;
  overflow: visible;
}
#gx-login-table #login-logo {
  display: -webkit-flex;
  justify-content: center;
}
#gx-login-table #login-logo #logo {
  width: auto;
}
#gx-login-table #login-logo #logo img {
  width: auto;
  height: 100px;
}
#gx-login-table #flags {
  min-height: 50px;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
#gx-login-table #flags .flag {
  height: 32px;
  width: 32px;
  margin: 0 5px;
  border-radius: 16px;
}
#gx-login-table #flags .flag:hover {
  box-shadow: 0px 0px 10px 1px white;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
#gx-login-table #flags .flag img {
  height: 32px;
  width: 32px;
}
#gx-login-table #warning {
  display: -webkit-flex;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  min-height: 41px;
  justify-content: center;
  position: relative;
}
#gx-login-table #warning #content {
  display: -webkit-flex;
  align-items: center;
  width: 80%;
  background: orange;
  border-left: 5px solid coral;
}
#gx-login-table #warning #content .icon {
  width: 22px;
  height: 22px;
  margin: 0 3px;
  margin-bottom: 5px;
}
#gx-login-table #warning #content .icon img {
  width: auto;
  height: 100%;
}
#gx-login-table #warning #content .text {
  margin: 5px 13px;
  color: white;
  font-weight: bold;
}
#gx-login-table #stages {
  display: -webkit-flex;
  align-self: flex-start;
  position: relative;
  width: 500%;
  left: 0;
  transition: 1s;
}
#gx-login-table #stages .login-stage {
  width: 33.33333%;
}
#gx-login-table #stages .inputs {
  min-height: 100px;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#gx-login-table #stages .inputs .input {
  display: -webkit-flex;
  width: 80%;
  height: 41px;
  background: rgba(255, 255, 255, 0.75);
  margin: 10px 0;
  align-items: center;
}
#gx-login-table #stages .inputs .input .icon {
  width: 41px;
  height: 41px;
  text-align: center;
  vertical-align: middle;
}
#gx-login-table #stages .inputs .input .icon img {
  width: auto;
  height: 22px;
  transform: translateY(50%);
}
#gx-login-table #stages .inputs .input .textbox {
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}
#gx-login-table #stages .inputs .input .textbox input {
  width: 100%;
  font-size: 1.4em;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  outline: none !important;
}
#gx-login-table #stages .inputs .input .textbox input:focus .input {
  background: lightpink;
}
#gx-login-table #stages .inputs .remember {
  width: 80%;
  height: 25px;
  margin: 5px;
}
#gx-login-table #stages .inputs .remember #chbRemember {
  width: 200px;
  height: 25px;
}
#gx-login-table #stages .inputs .remember #chbRemember .dx-checkbox-icon {
  opacity: 0.8;
}
#gx-login-table #stages .inputs .remember #chbRemember .dx-checkbox-text {
  color: white;
  line-height: 25px;
  margin-left: 20px;
  width: 300px;
}
#gx-login-table #stages .buttons-container {
  min-height: 30px;
  display: -webkit-flex;
  justify-content: center;
  margin: 10px 0;
}
#gx-login-table #stages .buttons-container .button {
  height: 41px;
  width: 50%;
  background: rgba(93, 183, 93, 0.85);
  color: white;
  cursor: pointer;
  text-align: center;
  font-size: 1.2em;
  line-height: 41px;
}
#gx-login-table #stages .buttons-container .button:hover {
  background: #5db75d;
}
#gx-login-table #stages #stage-login {
  opacity: 1;
  visibility: visible;
}
#gx-login-table #stages #stage-login .forgotten-password {
  min-height: 10px;
  display: -webkit-flex;
  justify-content: center;
}
#gx-login-table #stages #stage-login .forgotten-password #btnForgottenPassword {
  width: 150px;
  height: 30px;
  color: white;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
#gx-login-table #stages #stage-forgotten-password {
  visibility: hidden;
  opacity: 0;
}
#gx-login-table #stages #stage-success {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: flex-start;
  visibility: hidden;
  opacity: 0;
}
#gx-login-table #stages #stage-success .success-info {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  background: rgba(125, 125, 125, 0.75);
}
#gx-login-table #stages #stage-success .success-info .icon {
  width: 50px;
  height: 50px;
  margin: 10px;
}
#gx-login-table #stages #stage-success .success-info .icon img {
  width: 100%;
  height: auto;
}
#gx-login-table #stages #stage-success .success-info .text {
  margin: 10px;
  color: white;
  font-size: 1.5em;
}
#gx-login-table #stages #stage-unsubscribe {
  display: -webkit-flex;
  justify-content: center;
  color: white;
  font-size: 1.5em;
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-info {
  margin: 20px 0;
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-choice {
  display: -webkit-flex;
  justify-content: space-around;
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-choice .button-unsubscribe {
  width: 42%;
  line-height: 41px;
  text-align: center;
  cursor: pointer;
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-choice .button-unsubscribe.yes {
  background: rgba(93, 183, 93, 0.85);
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-choice .button-unsubscribe.yes:hover {
  background: #5db75d;
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-choice .button-unsubscribe.no {
  background: rgba(255, 69, 0, 0.85);
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-choice .button-unsubscribe.no:hover {
  background: #ff4500;
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-choice .button-unsubscribe #btnConfirmUnsubscribe {
  width: 100%;
  height: 100%;
}
#gx-login-table #stages #stage-unsubscribe #unsubscribe-choice .button-unsubscribe #btnCancelUnsubscribe {
  width: 100%;
  height: 100%;
}
#gx-login-table #stages #stage-success-unsubscribe .success-info {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  background: rgba(125, 125, 125, 0.75);
}
#gx-login-table #stages #stage-success-unsubscribe .success-info .icon {
  width: 50px;
  height: 50px;
  margin: 10px;
}
#gx-login-table #stages #stage-success-unsubscribe .success-info .icon img {
  width: 100%;
  height: auto;
}
#gx-login-table #stages #stage-success-unsubscribe .success-info .text {
  margin: 10px;
  color: white;
  font-size: 1.5em;
}
#gx-login-table #stages .buttons-back-container {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}
#gx-login-table #stages.stage1 {
  left: 0;
  transition: 1s;
}
#gx-login-table #stages.stage1 #stage-login {
  visibility: visible;
  opacity: 1;
  transition: 1s;
}
#gx-login-table #stages.stage1 #stage-forgotten-password,
#gx-login-table #stages.stage1 #stage-success,
#gx-login-table #stages.stage1 #stage-unsubscribe,
#gx-login-table #stages.stage1 #stage-success-unsubscribe {
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#gx-login-table #stages.stage2 {
  left: -100%;
  transition: 1s;
}
#gx-login-table #stages.stage2 #stage-forgotten-password {
  visibility: visible;
  opacity: 1;
  transition: 1s;
}
#gx-login-table #stages.stage2 #stage-login,
#gx-login-table #stages.stage2 #stage-success,
#gx-login-table #stages.stage2 #stage-unsubscribe,
#gx-login-table #stages.stage2 #stage-success-unsubscribe {
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#gx-login-table #stages.stage3 {
  left: -200%;
  transition: 1s;
}
#gx-login-table #stages.stage3 #stage-success {
  visibility: visible;
  opacity: 1;
  transition: 1s;
}
#gx-login-table #stages.stage3 #stage-login,
#gx-login-table #stages.stage3 #stage-forgotten-password,
#gx-login-table #stages.stage3 #stage-unsubscribe,
#gx-login-table #stages.stage3 #stage-success-unsubscribe {
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#gx-login-table #stages.stage4 {
  left: -300%;
  transition: 1s;
}
#gx-login-table #stages.stage4 #stage-unsubscribe {
  visibility: visible;
  opacity: 1;
  transition: 1s;
}
#gx-login-table #stages.stage4 #stage-login,
#gx-login-table #stages.stage4 #stage-forgotten-password,
#gx-login-table #stages.stage4 #stage-success,
#gx-login-table #stages.stage4 #stage-success-unsubscribe {
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
#gx-login-table #stages.stage5 {
  left: -400%;
  transition: 1s;
}
#gx-login-table #stages.stage5 #stage-success-unsubscribe {
  visibility: visible;
  opacity: 1;
  transition: 1s;
}
#gx-login-table #stages.stage5 #stage-login,
#gx-login-table #stages.stage5 #stage-forgotten-password,
#gx-login-table #stages.stage5 #stage-success,
#gx-login-table #stages.stage5 #stage-unsubscribe {
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
/* Nacitani aplikace */
#gx-loginLoading {
  text-align: center;
  top: 45%;
  position: relative;
  margin: 0px;
  font-size: 4vw;
  line-height: 5vw;
  color: #0078aa;
  font-weight: initial;
}
#gx-loginLoading:before {
  content: attr(data-text);
  position: absolute;
  overflow: hidden;
  max-width: 13em;
  white-space: nowrap;
  color: white;
  font-weight: initial;
  animation: loading 5s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes loading {
  0% {
    max-width: 0em;
  }
}
#gx-loginBottomGO {
  color: white;
  text-align: center;
  position: relative;
  top: 80%;
  font-size: 0.8vw;
}