/*-------------------------------------------------------------------------------------------------*/
/* PARTIALS ---------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* GLOBAL VARIABLES -------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* TYPOGRAPHY SETUP -------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FORM AND INPUT ---------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* GLOBAL VARIABLES */
/*-------------------------------------------------------------------------------------------------*/
/* UNITY ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.aspectRatio {
  position: relative;
  height: 0;
  width: 100%;
  background: transparent;
}

#gameContainer {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* UNITY */
/*-------------------------------------------------------------------------------------------------*/
/* FORMS ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYOGRAPHY --------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYPOGRAPHY */
input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

input::-webkit-caps-lock-indicator {
  visibility: hidden;
  display: none !important;
}

input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  display: none !important;
}

input::-ms-clear {
  visibility: hidden;
  display: none !important;
}

input::-ms-reveal {
  visibility: hidden;
  display: none !important;
}

input#password[type=password] + .show-toggle:before {
  content: "\e8f4";
  color: white !important;
}

label {
  color: #ffffff;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-weight: 200;
  line-height: 1.5rem;
}

button:hover {
  cursor: pointer;
}

input, textarea, select {
  background: transparent;
  border-radius: 5px;
  color: white;
  border: 1px solid white;
  padding: 15px 15px 15px 50px;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  display: block;
  font-size: 0.9rem;
  font-size: clamp(0.9rem, 0.7636363636rem + 0.6818181818vw, 1.2rem);
  background-color: rgb(0, 58, 100);
}

::-moz-placeholder {
  color: white;
  opacity: 1;
}

::placeholder {
  color: white;
  opacity: 1;
}

:-ms-input-placeholder {
  color: white;
}

::-ms-input-placeholder {
  color: white;
}

.headline {
  margin-bottom: 1rem;
}

.input-group:not(.checkbox) {
  position: relative;
  display: block;
  height: 75px;
  margin-bottom: 1rem;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}

.input-group.checkbox {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: revert;
}

.input-group.checkbox input {
  width: 40px;
  height: 40px;
  margin: 0 20px 0 0;
}

.round {
  position: relative;
}

.round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 28px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28px;
}

.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 12px;
}

.round input[type=checkbox] {
  visibility: hidden;
}

.round input[type=checkbox]:checked + label {
  background-color: #1DB954;
  border-color: #009133;
}

.round input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.person-icon:before {
  content: "\e8a6";
}

.email-icon:before {
  content: "\e0be";
}

.password-icon:before {
  content: "\e897";
}

.show-toggle:before {
  content: "\e897";
  color: red !important;
}

.hide-toggle:before {
  content: "\e0be";
  color: green !important;
}

[class*=-icon]:before {
  position: absolute;
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: white;
  top: 15px;
  left: 15px;
}

[class*=-toggle]:before {
  position: absolute;
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: red;
  top: 15px;
  right: 45px;
}

input#password[type=text] + .show-toggle:before {
  content: "\e8f5";
  color: white !important;
}

input#password[type=password] + .show-toggle:before {
  content: "\e8f4";
  color: white !important;
}

button#login, button#reset, button#register {
  border-radius: 50px;
  background-color: rgb(0, 58, 100);
  color: white;
  border: 1px solid white;
  width: 50%;
  align-self: center;
  margin: 50px 0 50px 0;
  max-width: 250px;
  width: 100%;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9090909091rem + 0.4545454545vw, 1.2rem);
  flex-grow: 1;
  margin: 10px;
  width: 50%;
  padding: 10px;
  text-shadow: 1px 1px 1px rgb(0, 0, 0);
  transition: background-color 0.2s ease-in-out;
}
button#login:hover, button#reset:hover, button#register:hover {
  background-color: #ff9301;
  cursor: pointer;
}
button#login:disabled, button#login[disabled], button#reset:disabled, button#reset[disabled], button#register:disabled, button#register[disabled] {
  border: 1px solid rgb(0, 58, 100);
  background-color: #224a67;
  color: #666666;
  cursor: not-allowed;
}

.clearField > [data-clear-input] {
  color: #ffffff;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  display: none;
  position: absolute;
  right: 0;
  height: 100%;
  font-weight: bold;
  padding: 0 0.2em;
  cursor: pointer;
}

.clearField > [data-clear-input]:before {
  content: "\e5cd";
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: white;
}

.clearField > input::-ms-clear {
  display: none;
}

.showPassword > [data-show-input] {
  color: #ffffff;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  display: none;
  position: absolute;
  right: 0;
  height: 100%;
  font-weight: bold;
  padding: 0 0.2em;
  cursor: pointer;
}

.showPassword > [data-show-input]:before {
  content: "\e8f4";
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: white;
}

.showPassword > [data-show-input].hidePassword:before {
  content: "\e8f5";
  font-family: "Material-Icons";
  display: flex;
  align-items: center;
  color: white;
}

.showPassword > input::-ms-clear {
  display: none;
}

/* NEW FORM */
.title {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  right: 15px;
  pointer-events: none;
  z-index: 2;
}
.icon.icon-success {
  fill: #1DB954;
}
.icon.icon-error {
  fill: #FF0033;
}
.icon.icon-question {
  fill: #ff0033;
  position: absolute;
  z-index: 0;
  pointer-events: all;
  top: unset;
  right: unset;
}
.icon.icon-showhide {
  fill: #FFFFFF;
  right: 40px;
}

.label {
  font-weight: bold;
  display: block;
  color: #F2F2F2;
  margin-bottom: 0.25rem;
}

.input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  line-height: 1.25;
  background: transparent;
  border-radius: 5px;
  color: white;
  border: 1px solid white;
  padding: 15px 15px 15px 50px;
  font-size: 0.9rem;
  font-size: clamp(0.9rem, 0.7636363636rem + 0.6818181818vw, 1.2rem);
  display: block;
  background-color: rgb(0, 58, 100);
}
.input::-moz-placeholder {
  color: #a0aec0;
}
.input::placeholder {
  color: #a0aec0;
}
.input.input-error {
  border: 1px solid #F4083E;
}
.input.input-error:focus {
  border: 1px solid #F4083E;
}
.input:focus {
  outline: none;
  border: 1px solid #a0aec0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  background-clip: padding-box;
}

.error-message {
  font-size: 0.85rem;
  font-size: clamp(0.85rem, 0.7818181818rem + 0.3409090909vw, 1rem);
  color: red;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #003a64 inset; /* Change the color to your own background color */
  -webkit-text-fill-color: #fff;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #003a64 inset;
  -webkit-text-fill-color: #fff;
}

.slideUp {
  animation: slide-up 0.4s ease;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-------------------------------------------------------------------------------------------------*/
/* SEARCH FORMS -----------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
#searchForm.form {
  display: flex;
  flex: 1;
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 15px;
}

#searchForm.form input {
  font-family: "MainFont-Light", Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 50px;
  background-color: #003A64;
  height: 40px;
  display: block;
  font-size: 0.9rem;
  font-size: clamp(0.9rem, 0.7636363636rem + 0.6818181818vw, 1.2rem);
  width: 100%;
  padding: 5px 25px 5px 25px;
}

#searchForm.form input:focus,
#searchForm.form select:focus,
#searchForm.form textarea:focus,
#searchForm.form button:focus {
  outline: none;
}

#searchForm.form .searchButton {
  border: none;
  border-radius: 0 50px 50px 0;
  background: #ff9301;
  right: 0px;
  position: absolute;
  height: 40px;
}

#searchForm.form .searchButton:hover {
  cursor: pointer;
}

#searchForm.form .searchButton[disabled] {
  cursor: default;
}

#searchForm.form .searchIcon {
  width: 20px;
  height: 20px;
  margin: 10px;
  filter: drop-shadow(1px 1px 1px black);
}

#clearSearchIcon {
  right: 65px;
  position: absolute;
  height: 15px;
}
#clearSearchIcon:hover {
  cursor: pointer;
}

/* FORMS */
/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYOGRAPHY --------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FLUID TYPOGRAPHY */
/*-------------------------------------------------------------------------------------------------*/
/* FLEX MIXINS ------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
/* FLEXBOX MIXINS */
/*-------------------------------------------------------------------------------------------------*/
/* FONTS ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.material-icons {
  font-family: "Material-Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material-Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/MaterialIconsOutlined-Regular.otf") format("truetype");
}
@font-face {
  font-family: "MainFont-Black";
  src: url("../fonts/AlbertSans-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Bold";
  src: url("../fonts/AlbertSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Italic";
  src: url("../fonts/AlbertSans-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Light";
  src: url("../fonts/AlbertSans-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Medium";
  src: url("../fonts/AlbertSans-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MainFont-Regular";
  src: url("../fonts/AlbertSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* FONTS */
/*-------------------------------------------------------------------------------------------------*/
/* MODAL ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.m {
  overflow: hidden;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal {
  position: fixed;
  padding: 20px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  display: flex;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  z-index: 9999;
  transition: background 0.5s ease 0.06s;
}
.modal.duplicate .modalHeaderContainer, .modal.account .modalHeaderContainer, .modal.updatePassword .modalHeaderContainer, .modal.updateProfilePic .modalHeaderContainer, .modal.edit .modalHeaderContainer, .modal.create .modalHeaderContainer, .modal.ccpayment .modalHeaderContainer, .modal.updatepayment .modalHeaderContainer, .modal.downgrade .modalHeaderContainer, .modal.managesubscription .modalHeaderContainer, .modal.accountproblem .modalHeaderContainer {
  background: linear-gradient(180deg, #005DA0 20%, #002240 300%);
}
.modal.delete .modalHeaderContainer, .modal.delete .modalActionButton {
  background-color: #F4083E;
}
.modal.delete .modalActionButton {
  background-color: transparent;
  border: 1px solid #F4083E;
  color: #F4083E;
}
.modal.delete .modalActionButton:hover {
  color: #fff;
  background-color: #F4083E;
}
.modal.duplicate .modalBody .flex-column, .modal.delete .modalBody .flex-column, .modal.edit .modalBody .flex-column, .modal.create .modalBody .flex-column {
  flex-flow: row;
  justify-content: space-evenly;
}
@media screen and (max-width: 850px) {
  .modal.duplicate .modalBody .flex-column, .modal.delete .modalBody .flex-column, .modal.edit .modalBody .flex-column, .modal.create .modalBody .flex-column {
    flex-flow: column;
  }
}
.modal.showdetails .modalBody .flex-column-override {
  margin-left: 20px;
  justify-content: center;
  flex-flow: column;
}
.modal.delete .modalBody .flex-column-override, .modal.duplicate .modalBody .flex-column-override {
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
.modal.success .modalBody .flex-column h4 {
  margin-top: 20px;
}
.modal.success .modalBody .flex-column {
  justify-content: center;
  margin-bottom: 20px;
}
.modal.account .modalBody .userDetails p {
  margin-top: unset;
}
.modal.account .modalBody #updateUserPic {
  margin-top: 10px;
}
.modal.account .modalBody .imgframe {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  max-width: 200px;
  max-height: 200px;
  display: flex;
  flex-flow: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media screen and (max-width: 850px) {
  .modal.account .modalBody .imgframe {
    width: 100px;
    height: 100px;
  }
}
.modal.account .modalBody .imgframe img {
  max-width: 250px;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: unset !important;
     object-fit: unset !important;
  /* object-fit: contain; */
  /* padding: 20px; */
}
@media screen and (max-width: 850px) {
  .modal.account .modalBody .imgframe img {
    padding: 10px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.modalContainer {
  max-width: 800px;
  width: 100%;
  margin: auto;
  background-color: #fff;
  border-radius: 5px;
  z-index: 11;
}
.modalContainer.fullSize {
  max-width: 100%;
  height: 100%;
}

.modalHeaderContainer {
  display: flex;
  justify-content: space-between;
  text-shadow: 0px 1px 0px black;
  align-items: center;
  text-align: left;
  padding: 4px 10px 4px 10px;
  background-color: grey;
  border-radius: 5px 5px 0 0;
  color: #fff;
}

.modalHeaderContainer > .modalClose, .modalHeaderContainer > .modalActionButton {
  text-align: right;
  padding: inherit;
  text-decoration: none;
  color: #fff;
}

.modalHeaderContainer > .modalClose:hover, .modalHeaderContainer > .modalActionButton:hover {
  cursor: pointer;
}

.toggle {
  display: none;
}

.showdetails .modalContainer > .modalClose {
  position: absolute;
  z-index: 9;
  right: 0;
  padding: 15px;
}
.showdetails .modalBody {
  padding: 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.showdetails .modalBody .imgframe {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  padding: 0;
  max-height: 300px;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
}
.showdetails .modalBody .imgframe p {
  color: #fff;
}
.showdetails .modalBody .saganDetails {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
}
.showdetails .modalBody .saganDetails p {
  line-height: 0.5rem;
  font-size: 16px;
}

.modalBody {
  background: #e1e1e2;
  position: relative;
  border: none;
  padding: 15px;
  display: flex;
  border-bottom: 1px solid #afafaf;
  flex-flow: column;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  /* MODAL FORM */
  /* END MODAL FORM */
}
.modalBody .imgframe {
  padding: 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}
.modalBody img.infoicon {
  width: 20px;
  height: auto;
}
.modalBody form {
  padding: 10px;
  flex: 1;
}
.modalBody h1,
.modalBody h2,
.modalBody h3,
.modalBody h4,
.modalBody h5 {
  line-height: 1;
  color: #000000;
}
.modalBody ul {
  list-style-type: disc;
}
.modalBody li {
  font-size: 1rem;
  font-size: clamp(1rem, 0.7727272727rem + 1.1363636364vw, 1.5rem);
}
.modalBody #updatePasswordForm input {
  padding: 15px 15px 15px 50px;
}
.modalBody #updatePasswordForm [class*=-icon]:before {
  color: #454545;
  opacity: 0.8;
}
.modalBody #updatePasswordForm ::-moz-placeholder {
  color: #454545;
  opacity: 0.8;
}
.modalBody #updatePasswordForm ::placeholder {
  color: #454545;
  opacity: 0.8;
}
.modalBody #updatePasswordForm :-ms-input-placeholder {
  color: #454545;
}
.modalBody #updatePasswordForm ::-ms-input-placeholder {
  color: #454545;
}
.modalBody textarea {
  resize: none;
}
.modalBody input, .modalBody textarea, .modalBody select {
  background-color: #ffffff;
  border: 1px solid #454545;
  padding: 15px 15px 15px 15px;
  margin: 10px 0 0 0;
  width: 100%;
  color: #454545;
}
.modalBody img {
  max-width: 250px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
@media screen and (max-width: 850px) {
  .modalBody img {
    width: 100%;
    max-width: 850px;
    max-height: 250px;
  }
}
.modalBody .input-group:not(.checkbox) {
  height: unset;
}

.modalBody p {
  margin-bottom: 0;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.6181818182rem + 0.9090909091vw, 1.2rem);
}

.modalBody h1 {
  text-shadow: none;
}

.modalBody h4 {
  color: black;
}

.modalBody label {
  font-size: 0.5rem;
  font-weight: 200;
  font-family: "MainFont-Bold", Arial, Helvetica, sans-serif;
  color: #454545;
}

.modalBody form label {
  font-size: unset;
}

.modalBody #socialCopyBtn {
  font-weight: bold;
  flex: 45%;
  padding: 0;
  margin: 0;
}

.modalBody h2 {
  color: grey;
  text-shadow: none;
  font-size: 1.5rem;
}

.modalBody p, .modalBody p a {
  color: #333;
}

.modalBody p a, .modalBody p a:hover {
  text-decoration: underline;
}

.modalButtons {
  text-align: right;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #d8d8d8;
  border-radius: 0 0 5px 5px;
}
.modalButtons button {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  min-width: 100px;
  max-width: 200px;
  width: 100%;
  border-radius: 50px;
  border: none;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}
.modalButtons button:hover {
  cursor: pointer;
}

button.modalClose {
  color: #333;
  border: 1px solid #333;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
button.modalClose:hover {
  color: #fff;
  border: 1px solid #333;
  background-color: #333;
}

button.modalActionButton {
  color: #ff9301;
  border: 1px solid #ff9301;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
button.modalActionButton:disabled, button.modalActionButton[disabled] {
  border: 1px solid #454545;
  background-color: transparent;
  color: #454545;
}
button.modalActionButton:disabled:hover, button.modalActionButton[disabled]:hover {
  cursor: not-allowed;
  background-color: #454545;
  color: #fff;
}
button.modalActionButton:hover {
  background-color: #ff9301;
  color: #fff;
}

#modalMessage {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  color: white;
  background: rgba(0, 0, 0, 0.9);
}
#modalMessage p {
  color: #fff;
}

.modalContainer.pushdown {
  transform: scale(0.98) translateY(-20px);
  transition: all 0.5s ease 0s;
  box-shadow: 0px 0px 0px 0px rgba(30, 30, 30, 0.4);
  opacity: 0;
}

.modalContainer.pushdown.show {
  box-shadow: 0px -20px 80px 0px rgba(30, 30, 30, 0.4);
  opacity: 1;
}

.modalContainer.show {
  transform: scale(1);
  transition: all 0.3s ease 0s;
}

.helpModal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.helpModal h4 {
  line-height: inherit;
  margin-top: 0.5rem;
}

.help {
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.help p {
  color: #454545;
  line-height: initial;
  margin-bottom: initial;
}

/* MODAL */
/*-------------------------------------------------------------------------------------------------*/
/* LOGIN ------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.grid {
  background-color: transparent;
  background-image: linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.04) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.04) 75%, rgba(255, 255, 255, 0.04) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.04) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.04) 75%, rgba(255, 255, 255, 0.04) 76%, transparent 77%, transparent);
  height: 100%;
  background-size: 50px 50px;
}

.container {
  display: flex;
  justify-content: center;
  flex-flow: column;
  opacity: 0;
  margin: 0;
  padding: 30px;
  width: 100%;
  max-width: 800px;
  background-color: transparent;
  border-radius: 15px;
  background-color: rgb(0, 57, 100);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  animation: fadein 0.2s forwards;
}

.login-logo {
  max-width: 320px;
  width: 100%;
  margin-bottom: 1rem;
}

/* LOGIN */
/*-------------------------------------------------------------------------------------------------*/
/* ANIMATIONS -------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.bounce {
  animation: bounce 2s forwards ease-in-out;
}

.fadein {
  animation: fadein 0.5s forwards ease-in-out;
}

.fadeout {
  animation: fadeout 0.5s forwards ease-in-out;
}

.slideup {
  animation: slideUp 0.5s forwards ease-in-out;
}

.fadeUp {
  animation: fadeUp 0.5s forwards ease-in-out;
}

@keyframes bounce {
  0% {
    transform: scale(1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.5);
  }
  30% {
    transform: scale(1, 1) translateY(-2px);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    filter: alpha(opacity=0);
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.show {
  animation: fadein 0.2s forwards;
}

.hide {
  opacity: 0;
  width: 0;
  height: 0;
}

.angle {
  animation-name: perspective;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}

@keyframes perspective {
  0% {
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    transform: perspective(500px) rotateY(5deg);
  }
}
/* LOADER SPINNER */
#useraccount .spinner {
  animation: rotate 2s linear infinite;
  z-index: 999999;
  width: 25px;
  height: 25px;
  animation: rotate 2s linear infinite;
  z-index: 999999;
  background: none;
}
#useraccount .spinner .path {
  stroke: rgb(172, 203, 234);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
/* ANIMATIONS */
/*-------------------------------------------------------------------------------------------------*/
/* TOOLTIP ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.tooltip {
  display: inline-block;
  position: absolute;
  text-align: left;
  animation: bounce 1s ease forwards;
}
.tooltip ul {
  list-style-type: circle;
}
.tooltip li {
  display: list-item;
  line-height: initial;
  font-size: 15px;
}

.tooltip .top p, .tooltip .top h4 {
  line-height: initial;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  color: black;
  font-size: 15px;
}

.tooltip .top h4 {
  text-shadow: none;
  font-size: 15px;
}

.tooltip .top {
  min-width: 200px;
  text-align: left;
  transform: translate(-50%, -100%);
  padding: 15px 15px;
  color: #444444;
  background-color: #EEEEEE;
  font-weight: normal;
  font-size: 13px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.tooltip:hover .top {
  display: block;
}

.tooltip .top i {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.tooltip .top i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #EEEEEE;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* TOOLTIPS */
/*-------------------------------------------------------------------------------------------------*/
/* HELPERS ----------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
.f {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  align-content: start;
}

.f:after {
  display: block;
  content: "";
  margin: 10px;
  flex: 999 999 auto;
}

.f-item {
  width: 100%;
  flex: 1 1 auto;
  margin: 10px;
}

.flex {
  display: flex;
}

.flex-column {
  flex-flow: column;
}

.flex-row {
  flex-flow: row;
}

.align-base {
  align-items: baseline;
}

.align-center {
  align-items: center;
}

.wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-flow: column;
}

.j-center {
  justify-content: center;
  align-items: center;
}

.flex-1 {
  flex: 1;
}

.a-self-start {
  margin-top: auto;
  align-self: flex-start;
}

.a-self-c {
  align-self: center;
}

.a-self-r {
  align-self: right;
}

.a-self-l {
  align-self: left;
}

.a-items-c {
  align-items: center;
}

.a-items-r {
  align-items: right;
}

.a-items-l {
  align-items: left;
}

.m-bottom {
  margin-bottom: 1.5rem;
}

.m-top {
  margin-top: 1.5rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-150 {
  max-width: 150px;
  height: auto;
}

.img-40 {
  width: auto;
  max-height: 35px;
  height: 35px;
}

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

.errorBox {
  border: 1px solid #F4083E;
  background-color: #F4083E;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin: 25px 0px 25px 0px;
  animation: fadein 0.2s forwards;
}
.errorBox p {
  font-size: 0.85rem;
  font-size: clamp(0.85rem, 0.7818181818rem + 0.3409090909vw, 1rem);
  line-height: normal;
}

.pos-abs {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100;
}

.wh-100 {
  width: 100%;
  height: 100%;
}

.col-2 {
  -moz-column-count: 2;
  column-count: 2;
}

.col-3 {
  -moz-column-count: 3;
  column-count: 3;
}

.headerTransparent {
  width: 100%;
  position: absolute;
  z-index: 1;
  background: transparent;
}

.codeSnippet {
  border-radius: 5px;
  background-color: #3b3b3b;
  padding: 15px;
  color: white;
  position: relative;
}
.codeSnippet .copyCode {
  position: absolute;
  top: 0;
  right: 0;
}
.codeSnippet .copyCode :hover {
  cursor: pointer;
}
.codeSnippet .copyCode img {
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  border: 0;
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.p-1 {
  padding: 1px;
}

.p-2 {
  padding: 2px;
}

.p-3 {
  padding: 3px;
}

.p-4 {
  padding: 4px;
}

.p-5 {
  padding: 5px;
}

.p-6 {
  padding: 6px;
}

.p-7 {
  padding: 7px;
}

.p-8 {
  padding: 8px;
}

.p-9 {
  padding: 9px;
}

.p-10 {
  padding: 10px;
}

.p-11 {
  padding: 11px;
}

.p-12 {
  padding: 12px;
}

.p-13 {
  padding: 13px;
}

.p-14 {
  padding: 14px;
}

.p-15 {
  padding: 15px;
}

.p-16 {
  padding: 16px;
}

.p-17 {
  padding: 17px;
}

.p-18 {
  padding: 18px;
}

.p-19 {
  padding: 19px;
}

.p-20 {
  padding: 20px;
}

.pt-1 {
  padding-top: 1px;
}

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

.pt-3 {
  padding-top: 3px;
}

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

.pt-5 {
  padding-top: 5px;
}

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

.pt-7 {
  padding-top: 7px;
}

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

.pt-9 {
  padding-top: 9px;
}

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

.pt-11 {
  padding-top: 11px;
}

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

.pt-13 {
  padding-top: 13px;
}

.pt-14 {
  padding-top: 14px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-17 {
  padding-top: 17px;
}

.pt-18 {
  padding-top: 18px;
}

.pt-19 {
  padding-top: 19px;
}

.pt-20 {
  padding-top: 20px;
}

.pl-1 {
  padding-left: 1px;
}

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

.pl-3 {
  padding-left: 3px;
}

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

.pl-5 {
  padding-left: 5px;
}

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

.pl-7 {
  padding-left: 7px;
}

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

.pl-9 {
  padding-left: 9px;
}

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

.pl-11 {
  padding-left: 11px;
}

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

.pl-13 {
  padding-left: 13px;
}

.pl-14 {
  padding-left: 14px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-17 {
  padding-left: 17px;
}

.pl-18 {
  padding-left: 18px;
}

.pl-19 {
  padding-left: 19px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-1 {
  padding-right: 1px;
}

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

.pr-3 {
  padding-right: 3px;
}

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

.pr-5 {
  padding-right: 5px;
}

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

.pr-7 {
  padding-right: 7px;
}

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

.pr-9 {
  padding-right: 9px;
}

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

.pr-11 {
  padding-right: 11px;
}

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

.pr-13 {
  padding-right: 13px;
}

.pr-14 {
  padding-right: 14px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-17 {
  padding-right: 17px;
}

.pr-18 {
  padding-right: 18px;
}

.pr-19 {
  padding-right: 19px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-1 {
  padding-bottom: 1px;
}

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

.pb-3 {
  padding-bottom: 3px;
}

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

.pb-5 {
  padding-bottom: 5px;
}

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

.pb-7 {
  padding-bottom: 7px;
}

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

.pb-9 {
  padding-bottom: 9px;
}

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

.pb-11 {
  padding-bottom: 11px;
}

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

.pb-13 {
  padding-bottom: 13px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-17 {
  padding-bottom: 17px;
}

.pb-18 {
  padding-bottom: 18px;
}

.pb-19 {
  padding-bottom: 19px;
}

.pb-20 {
  padding-bottom: 20px;
}

.m-1 {
  margin: 1px;
}

.m-2 {
  margin: 2px;
}

.m-3 {
  margin: 3px;
}

.m-4 {
  margin: 4px;
}

.m-5 {
  margin: 5px;
}

.m-6 {
  margin: 6px;
}

.m-7 {
  margin: 7px;
}

.m-8 {
  margin: 8px;
}

.m-9 {
  margin: 9px;
}

.m-10 {
  margin: 10px;
}

.m-11 {
  margin: 11px;
}

.m-12 {
  margin: 12px;
}

.m-13 {
  margin: 13px;
}

.m-14 {
  margin: 14px;
}

.m-15 {
  margin: 15px;
}

.m-16 {
  margin: 16px;
}

.m-17 {
  margin: 17px;
}

.m-18 {
  margin: 18px;
}

.m-19 {
  margin: 19px;
}

.m-20 {
  margin: 20px;
}

.mt-1 {
  margin-top: 1px;
}

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

.mt-3 {
  margin-top: 3px;
}

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

.mt-5 {
  margin-top: 5px;
}

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

.mt-7 {
  margin-top: 7px;
}

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

.mt-9 {
  margin-top: 9px;
}

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

.mt-11 {
  margin-top: 11px;
}

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

.mt-13 {
  margin-top: 13px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-17 {
  margin-top: 17px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-19 {
  margin-top: 19px;
}

.mt-20 {
  margin-top: 20px;
}

.ml-1 {
  margin-left: 1px;
}

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

.ml-3 {
  margin-left: 3px;
}

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

.ml-5 {
  margin-left: 5px;
}

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

.ml-7 {
  margin-left: 7px;
}

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

.ml-9 {
  margin-left: 9px;
}

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

.ml-11 {
  margin-left: 11px;
}

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

.ml-13 {
  margin-left: 13px;
}

.ml-14 {
  margin-left: 14px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-17 {
  margin-left: 17px;
}

.ml-18 {
  margin-left: 18px;
}

.ml-19 {
  margin-left: 19px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-1 {
  margin-right: 1px;
}

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

.mr-3 {
  margin-right: 3px;
}

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

.mr-5 {
  margin-right: 5px;
}

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

.mr-7 {
  margin-right: 7px;
}

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

.mr-9 {
  margin-right: 9px;
}

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

.mr-11 {
  margin-right: 11px;
}

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

.mr-13 {
  margin-right: 13px;
}

.mr-14 {
  margin-right: 14px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-16 {
  margin-right: 16px;
}

.mr-17 {
  margin-right: 17px;
}

.mr-18 {
  margin-right: 18px;
}

.mr-19 {
  margin-right: 19px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-1 {
  margin-bottom: 1px;
}

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

.mb-3 {
  margin-bottom: 3px;
}

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

.mb-5 {
  margin-bottom: 5px;
}

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

.mb-7 {
  margin-bottom: 7px;
}

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

.mb-9 {
  margin-bottom: 9px;
}

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

.mb-11 {
  margin-bottom: 11px;
}

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

.mb-13 {
  margin-bottom: 13px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-17 {
  margin-bottom: 17px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-19 {
  margin-bottom: 19px;
}

.mb-20 {
  margin-bottom: 20px;
}

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.show {
  display: block !important;
}

.show-f {
  display: flex !important;
}

.hide {
  display: none !important;
}

@media (max-width: 500px) {
  .flex-column-m {
    flex-flow: column;
  }
  .j-center-m {
    justify-content: center;
    align-items: center;
  }
}
/* HELPERS */
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  background-color: black;
  text-rendering: optimizeLegibility;
  scrollbar-width: none;
}

h1,
h2,
h3,
h4,
h5 {
  color: #F2F2F2;
  font-family: "MainFont-Bold", Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: 1.35rem;
  font-size: clamp(1.35rem, 1.0090909091rem + 1.7045454545vw, 2.1rem);
}

h2 {
  font-size: 1.35rem;
  font-size: clamp(1.35rem, 1.0090909091rem + 1.7045454545vw, 2.1rem);
}

h3 {
  font-size: 1.35rem;
  font-size: clamp(1.35rem, 1.0090909091rem + 1.7045454545vw, 2.1rem);
}

h4 {
  font-size: 1.35rem;
  font-size: clamp(1.35rem, 1.0090909091rem + 1.7045454545vw, 2.1rem);
}

h5 {
  font-size: 1.35rem;
  font-size: clamp(1.35rem, 1.0090909091rem + 1.7045454545vw, 2.1rem);
}

span {
  font-size: 1rem;
  font-size: clamp(1rem, 0.7727272727rem + 1.1363636364vw, 1.5rem);
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
}

p {
  font-size: 1rem;
  font-size: clamp(1rem, 0.7727272727rem + 1.1363636364vw, 1.5rem);
  color: #ffffff;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-weight: 200;
  line-height: 1.5rem;
}

input {
  font-size: 1rem;
  font-size: clamp(1rem, 0.7727272727rem + 1.1363636364vw, 1.5rem);
}

sub {
  font-size: 0.6rem;
  font-size: clamp(0.6rem, 0.5318181818rem + 0.3409090909vw, 0.75rem);
  color: #ffffff;
  font-family: "MainFont-Regular", Arial, Helvetica, sans-serif;
  font-weight: 200;
  line-height: 1.5rem;
  margin-top: 0;
}

a {
  font-weight: bold;
  color: #F2F2F2;
  text-decoration: none;
  font-family: "MainFont-Bold", Arial, Helvetica, sans-serif;
  text-decoration: underline;
}

hr {
  border: none;
  height: 0px;
  border-top: 1px;
  border-top-color: #454545;
  color: #454545;
  background-color: #454545;
}

ul {
  list-style-type: none;
}

/*-------------------------------------------------------------------------------------------------*/
/* HTML MARKUP ------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------*/
body::-webkit-scrollbar {
  display: none;
  background: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(-180deg, rgb(0, 93, 160), rgb(0, 34, 64));
  background-size: cover;
}

body {
  transition: all 0.5s ease-in-out;
  align-items: center;
  min-height: 100%;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font: 100%;
  margin: 0px;
  padding: 10px;
  line-height: 1.5rem;
  -ms-overflow-style: none;
  -moz-overflow-style: none;
  scrollbar-width: none;
  justify-content: center;
  align-items: center;
  align-content: center;
}

img {
  align-self: center;
}

.grid {
  background-color: transparent;
  background-image: linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.04) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.04) 75%, rgba(255, 255, 255, 0.04) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.04) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.04) 75%, rgba(255, 255, 255, 0.04) 76%, transparent 77%, transparent);
  height: 100%;
  background-size: 50px 50px;
}

#cardloader {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.spinner {
  width: 100px;
  height: auto;
}/*# sourceMappingURL=style.css.map */