* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: "Roboto", Helvetica, "Helvetica Neue", sans-serif;
  height: 100%;
  width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  margin-top: 0;
}

body {
  margin: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(white));
  background: -webkit-linear-gradient(top, #f3f3f3, white);
  background: -o-linear-gradient(top, #f3f3f3, white);
  background: linear-gradient(to bottom, #f3f3f3, white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hidden {
  display: none;
}

.vhidden {
  display: none !important;
}

.caption {
  font-size: 12px;
  color: #8a8a8a;
  background: #f7f7f7;
  font-weight: 400;
  margin-bottom: 1.5rem;
  border: 1px solid #e8e8e8;
  border-left: 3px solid #fdd212;
  text-align: left;
  padding: 6px 8px;
}

/****** LOGO ******/
.logo {
  max-width: 150px;
  width: 100%;
  margin-bottom: 8px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.logo.init {
  -webkit-transform: translateY(180px);
  -ms-transform: translateY(180px);
  transform: translateY(180px);
}

/****** FULLSCREEN CONTAINER ******/
.fs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 680px;
  padding-left: 12px;
  padding-right: 12px;
}

.fs-container__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 680px;
  padding-left: 12px;
  padding-right: 12px;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;

/*   background-image: url("/loginstart/img/office.jpg"); */
}

.fs-container .content {
  text-align: center;
  width: 100%;
  position: relative;
  margin: auto;
  margin-top: 240px;
  margin-top: 23vh;
}

.content-login {
  max-width: 400px;
  margin: 0 auto;
}

.content-privacy {
  margin: 0 auto;
  max-width: 440px;
}

.content-change-password {
  max-width: 340px;
  margin: 0 auto;
}

.content-change-password-en {
  max-width: 340px;
  margin: 0 auto;
}

.content-message-change-password {
  margin: 0 auto;
  max-width: 600px;
}

.content-message-change-password-en {
  margin: 0 auto;
  max-width: 600px;
}

.content__pane {
  background: white;
  border-radius: 4px;
  padding: 36px 24px;
  margin: auto;
  font-size: 36px;
  font-weight: 800;
  color: #2d2d2d;
  -webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid #e8e8e8;
/*   -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; */
  background: transparent;
}
.content__pane.init {
  opacity: 0;
  -webkit-transform: translateY(12px);
  -ms-transform: translateY(12px);
  transform: translateY(12px);
}

.content__pane__text {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.5rem;
}

/****** CHANGE PASSWORD PANE ******/
.content-message-change-password .content__pane__text {
  max-height: 300px;
  text-align: center;
  margin-bottom: 0.2rem;
}

.content-message-change-password-en .content__pane__text {
  max-height: 300px;
  text-align: center;
  margin-bottom: 0.2rem;
}

/****** PRIVACY PANE ******/
.content-privacy .content__pane__text {
  max-height: 300px;
  overflow-y: scroll;
}

.content-privacy .custom-checkbox {
  text-align: left;
  margin-bottom: 1.5rem;
}
.content__pane__title {
  font-size: 1em;
  font-weight: 100;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .fs-container .content {
    margin-top: 100px;
    margin-top: 12vh;
  }
  .fs-container .content h2 {
    font-size: 0.5em;
  }
}


@media (max-width: 1024px) {
    .fs-container__bg{
        background-size: cover;
        -webkit-background-size: cover;
        background-position: 85% 50%;
        background-attachment: fixed;
    }

}

.button {
  position: relative;
  display: inline-block;
  padding: 12px 12px;
  cursor: pointer;
  outline: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  overflow: hidden;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  border: none;
  background: #333333;
  border-radius: 4px;
  color: white;
  -webkit-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.button .button--text {
  position: relative;
  z-index: 2;
}
.button:hover {
  background-color: #333333;
}
.button.button--outline {
  color: rgba(0, 0, 0, 0.79);
  position: relative;
  line-height: normal;
  background-color: rgb(236, 236, 236) !important;
  background-color: white;
  -webkit-box-shadow: 1px 6px 15px -6px rgb(152, 152, 152);
  box-shadow: 1px 6px 15px -6px rgb(152, 152, 152);
}
.button.button--outline:not([disabled]):hover,
.button.button--outline:not([disabled]):focus {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0);
}
.button.button--clear {
  color: black;
  background-color: transparent;
}
.button.button--clear:not([disabled]):hover {
  color: black;
}
.button.button--block {
  display: block;
  width: 100%;
}
.button[disabled] {
  opacity: 0.7;
  cursor: unset !important;
}
.button.button--primary:after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffd212;
  -webkit-transition: 0.3s cubic-bezier(0.82, -0.01, 0.11, 0.98) all;
  -o-transition: 0.3s cubic-bezier(0.82, -0.01, 0.11, 0.98) all;
  transition: 0.3s cubic-bezier(0.82, -0.01, 0.11, 0.98) all;
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
}
.button.button--primary:not([disabled]):hover:after,
.button.button--primary:not([disabled]):focus:after {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/******* FORM *******/
form {
  text-align: center;
  width: 100%;
  /* max-width: 360px; */
  margin: 0 auto;
  /* LABEL ======================================= */
  /* active state */
  /* BOTTOM BARS ================================= */
  /* active state */
  /* HIGHLIGHTER ================================== */
  /* active state */
  /* ANIMATIONS ================ */
}
form .group {
  position: relative;
  width: 100%;
  margin: 0px auto 20px auto;
}
form input:not(.custom-checkbox__input) {
  font-size: 14px;
  padding: 12px 0px 12px 52px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #cecece;
  background: transparent;
  color: #333333;
  font-family: inherit;
}
form input:focus {
  outline: none;
}
form label:not(.label) {
  color: #999;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 16px;
  padding-left: 48px;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
form label:not(.label) img {
  display: inline-block;
  position: absolute;
  left: 8px;
  top: -4px;
  opacity: 0.25;
  width: 24px;
  vertical-align: middle;
}

form input:valid ~ label img,
form input:focus ~ label img,
#lang-select label img,
#otp-select label img {
  opacity: 0.7;
}

form .label__text {
  position: absolute;
  left: 48px;
  top: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgb(73, 73, 73);
}

form .label__text:focus {
  color: black;
}

form .label__text--hidden {
  display: none;
}

form .bar {
  position: relative;
  display: block;
  width: 100%;
}
form .bar:before,
form .bar:after {
  content: "";
  height: 2px;
  width: 0%;
  bottom: 0px;
  position: absolute;
  background: black;
  -o-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
form .bar:before {
  left: 50%;
}
form .bar:after {
  right: 50%;
}
form input:focus ~ .bar:before,
form input:focus ~ .bar:after {
  width: 50%;
}

form #submit {
  width: 100%;
}
form .info {
  font-size: 13px;
  padding: 16px 0 0 0;
  color: #333;
}

form .info--hidden {
  display: none;
}
form .info--error {
  color: red;
}
form .info--error--psw {
  color: red;
}
form .info--error--psw--new--len {
  color: red;
}
form .info--error--psw--new--letter {
  color: red;
}
form .info--error--psw--new--cap--letter {
  color: red;
}
form .info--error--psw--new--number {
  color: red;
}
form .info--error--psw--new--char--sp {
  color: red;
}

/******** Language Select **********/

#lang-select,
#otp-select {
  height: 44px;
  overflow: visible;
  background: white;
}
.lang__field,
.otp__field {
  position: absolute;
  z-index: 5;
  width: 100%;
  font-size: 13px;
  line-height: 44px;
  text-align: left;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  font-weight: 400;
}

.otp__field {
  z-index: 3;
}

.lang__selected,
.otp__selected {
  padding-left: 52px;
  display: block;
  width: 100%;
  line-height: 44px;
  position: relative;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.lang__selected:after,
.otp__selected:after {
  content: "\25BC";
  color: #333;
  font-size: 13px;
  line-height: 14px;
  padding: 10px;
  text-align: center;
  position: absolute;
  z-index: 1;
  right: 0px;
  top: 15%;
  height: 70%;
  width: 32px;
}

.otp__selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  justify-content: space-evenly;
  padding-left: 0 !important;
  align-items: center;
}

.open .lang__field,
.open .otp__field {
  overflow: visible;
  -webkit-box-shadow: 0px 2px 8px rgb(202, 202, 202);
  box-shadow: 0px 2px 8px rgb(202, 202, 202);
}
.lang__selected:hover,
.otp__selected:hover {
  cursor: pointer;
  background: #f3f3f3;
}

.open .lang__selected:hover,
.open .otp__selected:hover {
  background: white;
}

.lang__options,
.otp__options {
  display: none;
  font-size: 13px;
  text-align: left;
  width: 100%;
  background: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.otp__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-evenly;
  padding-left: 0 !important;
  align-items: center;
}

.open .lang__options,
.open .otp__options {
  display: block;
}

.lang__option,
.otp__option {
  padding-left: 52px;
  line-height: 44px;
  border-bottom: 1px solid #d6d6d6;
  cursor: pointer;
  height: 40px;
}
.lang__option:first-child,
.otp__option:first-child {
  border-top: 1px solid #d6d6d6;
}
.lang__option:last-child,
.otp__option:last-child {
  border: none;
}

.lang__option:hover,
.otp__option:hover {
  background: #f3f3f3;
}

/******** END FORM *******/

/******* APP BADGES *******/

.app-badge__container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 1rem;
}

.app-badge__title {
  font-size: 12px;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}

.app-badge {
  width: 160px;
  display: block;
}

.app-badge img {
  display: block;
  max-width: 100%;
  margin-top: 0.25rem;
}

@media (max-width: 980px) {
  .app-badge__container {
    position: absolute;
    left: 0;
    margin: 1rem auto;
    text-align: center;
  }
  .app-badge {
    display: inline-block;
  }
}

/******* /APP BADGES *******/

#help {
  font-weight: 600;
  text-decoration: none;
  position: fixed;
  top: 16px;
  right: 16px;
  text-align: right;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
#help:hover {
  color: black;
}

#help img {
  max-width: 40px;
  display: none;
  margin: auto;
}

#under-content-stuff {
  width: 100%;
  margin-top: 12px;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#under-content-stuff.init {
  opacity: 0;
}
#forgot-pw {
  margin-bottom: 12px;
}
#forgot-pw a {
  text-decoration: none;
  color: #666666;
  font-size: 14px;
}
#forgot-pw a:hover {
  color: black;
}

/* MODAL */
.modal-container {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 11;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.overlay {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.modal {
  background: #fff;
  width: 300px;
  padding-top: 28px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal .title {
  font-size: 24px;
  font-weight: 400;
  padding: 0 24px;
  margin-bottom: 12px;
  margin-top: 0px;
}

.modal .title img {
  height: 24px;
  width: 24px;
  margin-right: 8px;
}

.modal .title * {
  vertical-align: middle;
}

.modal .content {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 24px 24px 24px;
  text-align: left;
  color: #666666;
}

.modal footer {
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.modal .button {
  margin: 0 10px 10px 0;
  letter-spacing: 1px;
  padding: 8px 12px;
}

.modal #confirm {
  background-color: #38718c;
  color: white;
}

.modal .spinner {
  display: block;
  padding-bottom: 40px;
}

.modal .spinner .holder {
  position: relative;
}

.button--spinner {
  height: 17rem;
}

.holder {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.preloader {
  /* size */
  width: 25px;
  height: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-animation: rotatePreloader 2s infinite ease-in;
  animation: rotatePreloader 2s infinite ease-in;
}

@-webkit-keyframes rotatePreloader {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
    transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
    transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
  }
}

@keyframes rotatePreloader {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
    transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
    transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
  }
}
.preloader div {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.preloader div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: 10%;
  height: 10%;
  background-color: #38718c;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
}

.preloader div:nth-child(1) {
  -webkit-transform: rotateZ(0deg);
  -ms-transform: rotate(0deg);
  transform: rotateZ(0deg);
  -webkit-animation: rotateCircle1 2s infinite linear;
  animation: rotateCircle1 2s infinite linear;
  z-index: 9;
}

@-webkit-keyframes rotateCircle1 {
  0% {
    opacity: 0;
  }
  0% {
    opacity: 1;
    -webkit-transform: rotateZ(36deg);
    transform: rotateZ(36deg);
  }
  7% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  57% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle1 {
  0% {
    opacity: 0;
  }
  0% {
    opacity: 1;
    -webkit-transform: rotateZ(36deg);
    transform: rotateZ(36deg);
  }
  7% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  57% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(2) {
  -webkit-transform: rotateZ(36deg);
  -ms-transform: rotate(36deg);
  transform: rotateZ(36deg);
  -webkit-animation: rotateCircle2 2s infinite linear;
  animation: rotateCircle2 2s infinite linear;
  z-index: 8;
}

@-webkit-keyframes rotateCircle2 {
  5% {
    opacity: 0;
  }
  5.0001% {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  12% {
    -webkit-transform: rotateZ(-36deg);
    transform: rotateZ(-36deg);
  }
  62% {
    -webkit-transform: rotateZ(-36deg);
    transform: rotateZ(-36deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle2 {
  5% {
    opacity: 0;
  }
  5.0001% {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  12% {
    -webkit-transform: rotateZ(-36deg);
    transform: rotateZ(-36deg);
  }
  62% {
    -webkit-transform: rotateZ(-36deg);
    transform: rotateZ(-36deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(3) {
  -webkit-transform: rotateZ(72deg);
  -ms-transform: rotate(72deg);
  transform: rotateZ(72deg);
  -webkit-animation: rotateCircle3 2s infinite linear;
  animation: rotateCircle3 2s infinite linear;
  z-index: 7;
}

@-webkit-keyframes rotateCircle3 {
  10% {
    opacity: 0;
  }
  10.0002% {
    opacity: 1;
    -webkit-transform: rotateZ(-36deg);
    transform: rotateZ(-36deg);
  }
  17% {
    -webkit-transform: rotateZ(-72deg);
    transform: rotateZ(-72deg);
  }
  67% {
    -webkit-transform: rotateZ(-72deg);
    transform: rotateZ(-72deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle3 {
  10% {
    opacity: 0;
  }
  10.0002% {
    opacity: 1;
    -webkit-transform: rotateZ(-36deg);
    transform: rotateZ(-36deg);
  }
  17% {
    -webkit-transform: rotateZ(-72deg);
    transform: rotateZ(-72deg);
  }
  67% {
    -webkit-transform: rotateZ(-72deg);
    transform: rotateZ(-72deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(4) {
  -webkit-transform: rotateZ(108deg);
  -ms-transform: rotate(108deg);
  transform: rotateZ(108deg);
  -webkit-animation: rotateCircle4 2s infinite linear;
  animation: rotateCircle4 2s infinite linear;
  z-index: 6;
}

@-webkit-keyframes rotateCircle4 {
  15% {
    opacity: 0;
  }
  15.0003% {
    opacity: 1;
    -webkit-transform: rotateZ(-72deg);
    transform: rotateZ(-72deg);
  }
  22% {
    -webkit-transform: rotateZ(-108deg);
    transform: rotateZ(-108deg);
  }
  72% {
    -webkit-transform: rotateZ(-108deg);
    transform: rotateZ(-108deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle4 {
  15% {
    opacity: 0;
  }
  15.0003% {
    opacity: 1;
    -webkit-transform: rotateZ(-72deg);
    transform: rotateZ(-72deg);
  }
  22% {
    -webkit-transform: rotateZ(-108deg);
    transform: rotateZ(-108deg);
  }
  72% {
    -webkit-transform: rotateZ(-108deg);
    transform: rotateZ(-108deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(5) {
  -webkit-transform: rotateZ(144deg);
  -ms-transform: rotate(144deg);
  transform: rotateZ(144deg);
  -webkit-animation: rotateCircle5 2s infinite linear;
  animation: rotateCircle5 2s infinite linear;
  z-index: 5;
}

@-webkit-keyframes rotateCircle5 {
  20% {
    opacity: 0;
  }
  20.0004% {
    opacity: 1;
    -webkit-transform: rotateZ(-108deg);
    transform: rotateZ(-108deg);
  }
  27% {
    -webkit-transform: rotateZ(-144deg);
    transform: rotateZ(-144deg);
  }
  77% {
    -webkit-transform: rotateZ(-144deg);
    transform: rotateZ(-144deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle5 {
  20% {
    opacity: 0;
  }
  20.0004% {
    opacity: 1;
    -webkit-transform: rotateZ(-108deg);
    transform: rotateZ(-108deg);
  }
  27% {
    -webkit-transform: rotateZ(-144deg);
    transform: rotateZ(-144deg);
  }
  77% {
    -webkit-transform: rotateZ(-144deg);
    transform: rotateZ(-144deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(6) {
  -webkit-transform: rotateZ(180deg);
  -ms-transform: rotate(180deg);
  transform: rotateZ(180deg);
  -webkit-animation: rotateCircle6 2s infinite linear;
  animation: rotateCircle6 2s infinite linear;
  z-index: 4;
}

@-webkit-keyframes rotateCircle6 {
  25% {
    opacity: 0;
  }
  25.0005% {
    opacity: 1;
    -webkit-transform: rotateZ(-144deg);
    transform: rotateZ(-144deg);
  }
  32% {
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
  }
  82% {
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle6 {
  25% {
    opacity: 0;
  }
  25.0005% {
    opacity: 1;
    -webkit-transform: rotateZ(-144deg);
    transform: rotateZ(-144deg);
  }
  32% {
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
  }
  82% {
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(7) {
  -webkit-transform: rotateZ(216deg);
  -ms-transform: rotate(216deg);
  transform: rotateZ(216deg);
  -webkit-animation: rotateCircle7 2s infinite linear;
  animation: rotateCircle7 2s infinite linear;
  z-index: 3;
}

@-webkit-keyframes rotateCircle7 {
  30% {
    opacity: 0;
  }
  30.0006% {
    opacity: 1;
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
  }
  37% {
    -webkit-transform: rotateZ(-216deg);
    transform: rotateZ(-216deg);
  }
  87% {
    -webkit-transform: rotateZ(-216deg);
    transform: rotateZ(-216deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle7 {
  30% {
    opacity: 0;
  }
  30.0006% {
    opacity: 1;
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
  }
  37% {
    -webkit-transform: rotateZ(-216deg);
    transform: rotateZ(-216deg);
  }
  87% {
    -webkit-transform: rotateZ(-216deg);
    transform: rotateZ(-216deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(8) {
  -webkit-transform: rotateZ(252deg);
  -ms-transform: rotate(252deg);
  transform: rotateZ(252deg);
  -webkit-animation: rotateCircle8 2s infinite linear;
  animation: rotateCircle8 2s infinite linear;
  z-index: 2;
}

@-webkit-keyframes rotateCircle8 {
  35% {
    opacity: 0;
  }
  35.0007% {
    opacity: 1;
    -webkit-transform: rotateZ(-216deg);
    transform: rotateZ(-216deg);
  }
  42% {
    -webkit-transform: rotateZ(-252deg);
    transform: rotateZ(-252deg);
  }
  92% {
    -webkit-transform: rotateZ(-252deg);
    transform: rotateZ(-252deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle8 {
  35% {
    opacity: 0;
  }
  35.0007% {
    opacity: 1;
    -webkit-transform: rotateZ(-216deg);
    transform: rotateZ(-216deg);
  }
  42% {
    -webkit-transform: rotateZ(-252deg);
    transform: rotateZ(-252deg);
  }
  92% {
    -webkit-transform: rotateZ(-252deg);
    transform: rotateZ(-252deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(9) {
  -webkit-transform: rotateZ(288deg);
  -ms-transform: rotate(288deg);
  transform: rotateZ(288deg);
  -webkit-animation: rotateCircle9 2s infinite linear;
  animation: rotateCircle9 2s infinite linear;
  z-index: 1;
}

@-webkit-keyframes rotateCircle9 {
  40% {
    opacity: 0;
  }
  40.0008% {
    opacity: 1;
    -webkit-transform: rotateZ(-252deg);
    transform: rotateZ(-252deg);
  }
  47% {
    -webkit-transform: rotateZ(-288deg);
    transform: rotateZ(-288deg);
  }
  97% {
    -webkit-transform: rotateZ(-288deg);
    transform: rotateZ(-288deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle9 {
  40% {
    opacity: 0;
  }
  40.0008% {
    opacity: 1;
    -webkit-transform: rotateZ(-252deg);
    transform: rotateZ(-252deg);
  }
  47% {
    -webkit-transform: rotateZ(-288deg);
    transform: rotateZ(-288deg);
  }
  97% {
    -webkit-transform: rotateZ(-288deg);
    transform: rotateZ(-288deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(10) {
  -webkit-transform: rotateZ(324deg);
  -ms-transform: rotate(324deg);
  transform: rotateZ(324deg);
  -webkit-animation: rotateCircle10 2s infinite linear;
  animation: rotateCircle10 2s infinite linear;
  z-index: 0;
}

@-webkit-keyframes rotateCircle10 {
  45% {
    opacity: 0;
  }
  45.0009% {
    opacity: 1;
    -webkit-transform: rotateZ(-288deg);
    transform: rotateZ(-288deg);
  }
  52% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
  }
  102% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

@keyframes rotateCircle10 {
  45% {
    opacity: 0;
  }
  45.0009% {
    opacity: 1;
    -webkit-transform: rotateZ(-288deg);
    transform: rotateZ(-288deg);
  }
  52% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
  }
  102% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
  }
  100% {
    -webkit-transform: rotateZ(-324deg);
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}

/* Webkit Autofill Hack */
@keyframes onAutoFillStart {
  from {
    background-color: white;
  }
  to {
    background-color: transparent;
  }
}
@keyframes onAutoFillCancel {
  from {
    background-color: white;
  }
  to {
    background-color: transparent;
  }
}
input:-webkit-autofill {
  animation-name: onAutoFillStart;
  transition: background-color 50000s ease-in-out 0s;
}
input:not(:-webkit-autofill) {
  animation-name: onAutoFillCancel;
}

/* added code */

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

#qr-code-wrapper {
  height: 100%;
  margin-bottom: 15px;
}

#qr-code-btn {
  border: 0;
  background: transparent;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  border: 1px solid lightgray;
  height: 80px;
  width: 80px;
  margin-left: 1rem;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#qr-code-btn img {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

#qr-login label {
  position: relative !important;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  font-weight: 600;
}

#qr-code-btn .tooltiptext {
  visibility: hidden;
  width: 145px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px 6px;
  position: absolute;
  z-index: 1;
  position: relative;
  top: -20px;
}

#qr-code-btn:hover .tooltiptext {
  visibility: visible;
}

#sourceSelectPanel {
  padding-bottom: 1rem;
}

#qr-code-btn:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: #fcd214;
  box-shadow: 0 4px 15px 0 #947a02;
}

#qr-code-btn:focus {
  outline: none;
}

#classic-login {
  padding-right: 8px;
  width: 100%;
}

#resetButton {
  color: white;
}

#resetButton:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: #fcd214;
  color: black;
  box-shadow: 0 4px 15px 0 #947a02;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flag-img {
  margin-top: -6px;
  width: 25px;
}

.lang__selected .flag-img {
  margin: 0;
}

.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}

input[type="checkbox"] {
  width: auto !important;
}

.lang-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.OTP-container {
  position: relative;
  border: none;
  margin: 0;
  padding: 0;
  margin-bottom: 0.8rem;
}

.line-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;

  font-size: 12px;
  padding-bottom: 5px;
}

.otp-label {
  padding-left: 8px;
}

.swal2-styled.swal2-confirm {
  background-color: #fff !important;
  color: black !important;
}


.swal2-styled:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #fff !important;
}

.otp-img {
  width: 25px;
  position: absolute;
  right: 90px;
}

.text-label {
  line-height: 40px;
  position: absolute;
  color: black;
  top: -13px;
}

@media (max-width: 400px) {
  .text-label {
    display: none;
  }
}

.otp-text {
  margin-left: -60px;
}

button {
  font-size: small !important;
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;

  position: absolute;
  z-index: 9999;
  left: 49%;
  top: 50%;
}

.swal2-file:focus,
.swal2-input:focus,
.swal2-textarea:focus {
  border: 1px solid #fed212 !important;
  outline: 0;
  box-shadow: 0 0 3px #fed212 !important;
}


a#register {
    display: block;
    text-align: center;
    margin-top: 20px;
}


/* forgot password */
#forgotPass , #register {
  font-weight: 600;
  text-decoration: none;
  position: relative;
  bottom: 16px;
  text-align: right;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
#forgotPass:hover , #register:hover  {
  color: black;
}

#forgotPass img  , #register img {
  max-width: 40px;
  display: none;
  margin: auto;
}

/* custom input */
.swal2-input-custom {
  display: inline-block;
  width: 32px !important;
  height: 32px !important;
  text-align: center !important;
  border: 1px solid #fed212 !important;
  outline: 0;
  box-shadow: 0 0 3px #fed212 !important;
    margin-right: 5px;
    margin-bottom: 5px;
}

.btimer {
  position: absolute;
  bottom: 29%;
  left: 48%;
}

.swal2-timer-progress-bar {
  background: #fed212 !important;
  border-top: thin solid darkgray;
  height: 0.5rem !important;
}

.swal2-timer-progress-bar-container {
  height: 0.5rem !important;
}

.swal2-title {
  font-size: 1.375em !important;
}
body, * {
 /*    font-family: 'Orbitron';
    letter-spacing: .05em!important; */
   /*  text-transform: uppercase;   */
  }
