@import '/app/shared/assets/css/commonheader.css';
.lmbtn_login * {
  pointer-events: none;
}

#lmModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  font-size: 14px;
  z-index: 10000001;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /***/
}
#lmModalOverlay * {
  font-family: "Lato", sans-serif;
}
#lmModalOverlay.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: lm_fadeIn 1s;
  animation: lm_fadeIn 1s;
}
#lmModalOverlay.hide {
  -webkit-animation: lm_fadeOut 0.3s;
  animation: lm_fadeOut 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#lmModalOverlay .closelmmodal {
  background: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  font-style: normal;
  font-size: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  top: -10px;
  right: -10px;
}
#lmModalOverlay .closelmmodal:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  cursor: pointer;
}
#lmModalOverlay .activesession {
  text-align: center;
}
#lmModalOverlay .modalwrapper {
  position: relative;
  min-width: 280px;
  max-width: 95%;
  min-height: 100px;
  max-height: 90vh;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-animation: lm_entrance 0.5s;
  animation: lm_entrance 0.5s;
  background-color: #fff;
  border: 1px solid #666;
  border-radius: 3px;
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#lmModalOverlay input {
  line-height: 3em;
  padding: 0 1em;
  border-radius: 3px;
  border: 1px solid #666;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#lmModalOverlay .loginform {
  width: 100%;
}
#lmModalOverlay .loginform #toggleLink {
  text-decoration: underline;
  display: block;
  margin: 1em 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
#lmModalOverlay .loginform form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* for captainjack - display: none;*/
}
#lmModalOverlay .loginform .hideForm {
  display: none;
}
#lmModalOverlay .loginform .fadeIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: lm_fadeIn 1s;
  animation: lm_fadeIn 1s;
}
#lmModalOverlay .loginform + .noacc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2em !important;
}
#lmModalOverlay .loginform + .noacc a {
  text-decoration: underline;
  font-weight: 700;
  padding-left: 5px;
}
#lmModalOverlay .loginform a {
  text-decoration: underline;
}
#lmModalOverlay .loginform .password-input {
  margin-bottom: 0 !important;
  /* Hide the "show password" eye icon in Microsoft Edge */
  position: relative;
}
#lmModalOverlay .loginform .password-input input[type=password]::-ms-reveal {
  display: none;
}
#lmModalOverlay .loginform .password-input #togglePassword {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#lmModalOverlay .loginform .password-input .eye-closed {
  background: url("./images/eye-closed.svg") center/contain no-repeat;
}
#lmModalOverlay .loginform .password-input .eye-open {
  background: url("./images/eye-opened.svg") center/contain no-repeat;
}
#lmModalOverlay .loginform .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1em;
}
#lmModalOverlay .loginform .row2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#lmModalOverlay .loginform .f-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 1em;
  gap: 10px;
}
#lmModalOverlay .loginform .col3row {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}
#lmModalOverlay .loginform .col3row .col {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
#lmModalOverlay .loginform .col3row .options a {
  font-size: 14px;
}
#lmModalOverlay .loginform .col {
  width: 50%;
}
#lmModalOverlay .loginform .options label {
  display: block;
}
#lmModalOverlay .loginform .options label:hover {
  cursor: pointer;
}
#lmModalOverlay .loginform .options input {
  width: auto;
  margin: 0;
}
#lmModalOverlay .loginform .options a {
  font-size: 0.85em;
}
#lmModalOverlay .loginform .options a:hover {
  cursor: pointer;
}
#lmModalOverlay .loginform .loginerror {
  margin-bottom: 5px;
}
#lmModalOverlay .error,
#lmModalOverlay .loginerror {
  font-size: 12px;
  color: red;
}
#lmModalOverlay .hidden {
  display: none !important;
}
#lmModalOverlay .hide {
  display: none;
}
#lmModalOverlay .btn {
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  margin: 1em 0;
  display: block;
  font-weight: 700;
  border-radius: 4px;
  background-color: #666;
  color: #fff;
  line-height: 3em;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#lmModalOverlay .btn:hover {
  cursor: pointer;
}
#lmModalOverlay .lftop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#lmModalOverlay .signup-invitation {
  text-align: center;
}
#lmModalOverlay .signup-invitation h3 {
  margin: 1em 0 1em 0 !important;
}
#lmModalOverlay .signup-invitation p {
  margin: 0.7em 0;
  padding: 0 !important;
}
#lmModalOverlay .signup-invitation .slogan {
  margin-bottom: 5px;
}
#lmModalOverlay .signup-invitation .btn {
  margin-bottom: 5px;
}
#lmModalOverlay .signup-invitation .or {
  position: relative;
  margin-bottom: 5px;
}
#lmModalOverlay .signup-invitation .or:before, #lmModalOverlay .signup-invitation .or:after {
  position: absolute;
  top: 50%;
  content: "";
  border: 1px solid #ccc;
  width: 40%;
}
#lmModalOverlay .signup-invitation .or:before {
  left: 0;
}
#lmModalOverlay .signup-invitation .or:after {
  right: 0;
}
#lmModalOverlay .logoutconfirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#lmModalOverlay .logoutconfirm p {
  width: 100%;
  text-align: center;
  margin: 0;
}
#lmModalOverlay .logoutconfirm button {
  margin: 1em 5px;
  text-transform: initial;
  width: 40%;
  max-width: 250px;
}
#lmModalOverlay .logoutconfirm button.yes {
  background-color: green;
}
#lmModalOverlay .requestPasswform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 300px;
}
#lmModalOverlay .requestPasswform h3 {
  margin-top: 0;
}
#lmModalOverlay .requestPasswform a {
  text-decoration: underline;
}
#lmModalOverlay .requestPasswform a:hover {
  cursor: pointer;
}
#lmModalOverlay .requestPasswform p {
  margin: 0;
  font-size: 13px;
}
#lmModalOverlay .requestPasswform input {
  margin-top: 5px;
}
#lmModalOverlay .confirmationRequestPassword {
  width: 100%;
  max-width: 300px;
}
#lmModalOverlay .changepasswordform {
  width: 100%;
  max-width: 300px;
}
#lmModalOverlay .changepasswordform input {
  margin-top: 5px;
}
#lmModalOverlay .sso_wrapper {
  margin-bottom: 1em;
}
#lmModalOverlay .sso_wrapper a {
  background: linear-gradient(85.44deg, #1e30ee 9.41%, #0094ff 95.83%);
  color: #fff;
  height: 55px;
  width: 100%;
  max-width: 300px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #1e30ee;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
}
#lmModalOverlay .sso_wrapper a:hover {
  border-color: #0094ff;
  background: none;
  -webkit-transform: translateX(1px) translateY(1px);
          transform: translateX(1px) translateY(1px);
  color: #0094ff;
}
#lmModalOverlay .sso_wrapper img {
  max-height: 35px;
  margin-right: 1em;
}

/**
spinner animation
*/
.lds-spinner {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 1em auto;
}
.lds-spinner.loading {
  display: block;
}
.lds-spinner div {
  -webkit-transform-origin: 20px 20px;
          transform-origin: 20px 20px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 18px;
  width: 3px;
  height: 9px;
  border-radius: 2px;
  background: #000;
}
.lds-spinner div:nth-child(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  -webkit-transform: rotate(300deg);
          transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#lmModalOverlay .modalwrapper.subscribe {
  background: #fff !important;
  color: #0081ff !important;
}
#lmModalOverlay .modalwrapper.subscribe .closelmmodal {
  color: #666;
}
#lmModalOverlay .modalwrapper.subscribe .closelmmodal:hover {
  color: #000;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal {
  width: 100%;
  max-width: 360px;
  min-width: 280px;
  color: #0081ff;
  font-size: 16px;
  padding: 1em 0;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal .icon-rsm {
  display: block;
  margin: 0 auto;
  width: 60px;
  color: #0081ff !important;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal h3 {
  text-align: center;
  margin: 16px 0;
  font-size: 1.5em !important;
  color: #0081ff;
  font-weight: 700;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal p {
  margin: 0 0 4px 0;
  padding: 0 1em;
  text-align: center;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5em;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal .actions .button {
  background: #0081ff !important;
  color: #fff !important;
  font-weight: 700;
  line-height: 1em;
  padding: 8px 1em;
  border-radius: 16px;
  font-size: 18px;
  text-transform: none;
  border: none;
  outline: none;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal .actions .button--gray {
  background: #9d9d9d !important;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal .actions .button:hover {
  cursor: pointer;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal .actions .loader {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 3px solid lightgray;
  -webkit-animation: lm_fadeIn 1s, spinning 1s linear infinite;
  animation: lm_fadeIn 1s, spinning 1s linear infinite;
  display: none;
  margin: 0;
  border-bottom-color: inherit;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal .actions.processing .button {
  display: none;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal .actions.processing .loader {
  display: block;
}
#lmModalOverlay .modalwrapper.subscribe #resubscriptionModal + .closelmmodal {
  font-size: 2em;
}
@media screen and (min-width: 768px) {
  #lmModalOverlay .modalwrapper.subscribe #resubscriptionModal {
    max-width: 620px;
    min-width: 680px;
  }
}

@-webkit-keyframes lm_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lm_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes lm_fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lm_fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes lm_entrance {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes lm_entrance {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes spinning {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinning {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.loginwrapper {
  background: #1a1a1e !important;
  font-family: "Montserrat", sans-serif;
  border-radius: 12px;
}
.loginwrapper .confirmationRequestPassword {
  color: #fff !important;
}
.loginwrapper .btn {
  background: #ffcc00;
  color: #5e4914;
  font-weight: 700;
}
.loginwrapper input {
  background: #a0dfe2;
  color: #115f67;
  border-radius: 4px;
  border: 1px #1a1a1e solid;
}
.loginwrapper input:focus {
  background: #c9f3f5;
}
.loginwrapper label {
  color: #115f67;
}
.loginwrapper .forgotpswlink {
  color: #ffcc00;
  text-decoration: none;
}
.loginwrapper .loginform .signup-invitation h3,
.loginwrapper .loginform .signup-invitation h4,
.loginwrapper .loginform .signup-invitation p {
  display: none;
}
.loginwrapper .loginform .signup-invitation .hr-divider {
  color: #cfcfcf;
  padding-bottom: 3px;
}
.loginwrapper .loginform .row2 input:checked {
  background: #ffcc00;
  color: #1a1a1e;
}
.loginwrapper .loginform .row2 label {
  color: #cfcfcf;
}
.loginwrapper .loginform .lmicon-cancel {
  color: #ffcc00 !important;
  font-size: 20px;
  opacity: 1 !important;
}
.loginwrapper .loginform .lmicon-cancel:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.loginwrapper .requestPasswform h3 {
  color: #ffcc00;
}
.loginwrapper .requestPasswform p {
  color: #cfcfcf;
}

#lm_logoutconfirmation {
  color: white;
}
#lm_logoutconfirmation .btnyes {
  color: #1a1a1e;
  font-weight: 700;
  background: #ffcc00;
  border-radius: 4px;
  border: 1px #1a1a1e solid;
}
#lm_logoutconfirmation .btnno {
  color: #FFF !important;
  background: #cfcfcf;
  border-radius: 4px;
  border: 1px #FFF solid !important;
}
#lm_logoutconfirmation button {
  width: auto !important;
  min-width: 140px;
}

#loginFormModal .active {
  color: #FFF;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  #lmModalOverlay {
    padding: 24px;
  }
}
#lmModalOverlay .modalwrapper {
  border: none;
  background: #0B213D;
  color: #fff;
}
#lmModalOverlay .modalwrapper .closelmmodal {
  background: transparent;
  color: #FFF;
  top: 5px;
  right: 5px;
}
#lmModalOverlay .logoutconfirm button {
  border: none;
  background: #60A0E0;
  color: #001b2d;
}
#lmModalOverlay .logoutconfirm button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#lmModalOverlay .logoutconfirm button.yes {
  -webkit-box-shadow: 0 0 0 1px #60A0E0 inset;
          box-shadow: 0 0 0 1px #60A0E0 inset;
  color: #fff;
  background: transparent;
}

#commonHeader * {
  font-family: "Montserrat", sans-serif;
}
#commonHeader .button {
  font-family: "Montserrat", sans-serif;
  padding-bottom: 0;
}
#commonHeader .main {
  background-color: #011223;
}
#commonHeader .main .brand {
  background-color: #0b213d;
}
#commonHeader .main .quickbuttons .qb_mybalances a {
  border-color: #FFF;
  color: #FFF;
}
#commonHeader .main .quickbuttons .qb_lang .languages .options {
  background-color: #011223;
}
#commonHeader .main .quickbuttons .qb_deposit.lowbalance a span {
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 600px) {
  #commonHeader .main .quickbuttons .qb_deposit .button {
    border-radius: 20px;
  }
}
#commonHeader.nosession .quickbuttons .button {
  background: #60a0e0;
  color: #011223;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
}
#commonHeader.nosession[data-lang=FR] .button {
  font-size: 12px;
}
#commonHeader.nosession[data-lang=DE] .button {
  font-size: 11px;
}
#commonHeader.nosession[data-lang=JA] .button {
  padding: 0 0.5em;
}
@media screen and (min-width: 360px) {
  #commonHeader.nosession .quickbuttons .button {
    font-size: 14px;
  }
  #commonHeader.nosession[data-lang=FR] .button {
    font-size: 14px;
  }
  #commonHeader.nosession[data-lang=DE] .button {
    font-size: 13px;
  }
  #commonHeader.nosession[data-lang=JA] .button {
    padding: 0 1em;
  }
}
@media screen and (min-width: 568px) {
  #commonHeader.nosession[data-lang=DE] .button {
    font-size: 14px;
  }
}
#commonHeader .sidebar {
  float: unset;
  margin: 0;
  border: none;
  padding: 0;
  color: #FFF;
}
#commonHeader .sidebar .closepanel {
  background-color: #07192f;
}
#commonHeader .sidebar .player {
  background-color: #0b213d;
}
#commonHeader .sidebar .top {
  background-color: #01162a;
}
#commonHeader .sidebar .top .playerclass {
  color: #FFF;
}
#commonHeader .sidebar .top .profile {
  background-color: #10325b;
  color: #FFF;
}
#commonHeader .sidebar .top .profile svg {
  fill: #FFF;
  opacity: 0.6;
}
#commonHeader .sidebar .balances {
  background-color: #000c18;
  color: #FFF;
}
#commonHeader .sidebar .balances h3 {
  color: #FFF;
}
#commonHeader .sidebar .balances .button {
  border-radius: 16px;
}
#commonHeader .sidebar .balances .button--cashout {
  background: -webkit-gradient(linear, left top, left bottom, from(#07192f), to(#0b213d));
  background: linear-gradient(to bottom, #07192f 0%, #0b213d 100%);
  color: #FFF;
}
#commonHeader .sidebar .balances.highlight {
  -webkit-animation: CH_highlight 0.5s;
          animation: CH_highlight 0.5s;
}
#commonHeader .sidebar nav {
  background-color: #0b213d;
}
#commonHeader .sidebar nav a {
  color: #e6e6e6;
}
#commonHeader .sidebar nav a:hover {
  color: #FFF;
}
#commonHeader .sidebar nav a svg {
  fill: #FFF;
}
#commonHeader .sidebar .languages .selected,
#commonHeader .sidebar .languages .langoption a {
  color: #FFF;
}
#commonHeader .sidebar .languages .langoptsicon {
  border-top-color: #FFF;
}

@-webkit-keyframes CH_highlight {
  0% {
    background-color: #000c18;
  }
  25% {
    background-color: #FFF;
  }
  50% {
    background-color: #000c18;
  }
  75% {
    background-color: #FFF;
  }
  100% {
    background-color: #000c18;
  }
}

@keyframes CH_highlight {
  0% {
    background-color: #000c18;
  }
  25% {
    background-color: #FFF;
  }
  50% {
    background-color: #000c18;
  }
  75% {
    background-color: #FFF;
  }
  100% {
    background-color: #000c18;
  }
}
#dashboard.darktheme {
  background-color: #011223;
}
#dashboard.darktheme #myaccount .recenttransactions .transactionslist_item,
#dashboard.darktheme .communicationslist_item {
  border-right-color: #3189fc;
}
#dashboard.darktheme #myaccount .recenttransactions .transactionslist_item .datebox,
#dashboard.darktheme .communicationslist_item .datebox {
  background: -webkit-gradient(linear, left top, left bottom, from(#3189fc), to(#0357c4));
  background: linear-gradient(to bottom, #3189fc 0%, #0357c4 100%);
  color: #FFF;
}
#dashboard.darktheme #myaccount .recenttransactions .transactionslist_item .description .type,
#dashboard.darktheme .communicationslist_item .description .type {
  color: #848484;
}
#dashboard.darktheme #myaccount .recenttransactions .transactionslist_item .btnreadmssg,
#dashboard.darktheme .communicationslist_item .btnreadmssg {
  color: #3189fc;
}
#dashboard.darktheme #myaccount .recenttransactions .transactionslist_item,
#dashboard.darktheme #myaccount .box,
#dashboard.darktheme .communicationslist_item,
#dashboard.darktheme #mydocuments .docs-container .docbox,
#dashboard.darktheme #mydocuments .statuscheck,
#dashboard.darktheme #notifications .row {
  background-color: rgba(255, 255, 255, 0.1);
}
#dashboard.darktheme .communicationslist_item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
#dashboard.darktheme .communicationslist_item.active {
  background-color: rgba(255, 255, 255, 0.2);
}
#dashboard.darktheme #notifications .row button {
  border-color: #3189fc;
  color: #3189fc;
}
#dashboard.darktheme #myaccount .recenttransactions .transactions-link a,
#dashboard.darktheme #myaccount .preferences .resetpasswordform p.error {
  color: #3189fc;
}
@media screen and (min-width: 768px) {
  #dashboard.darktheme #d_nav ul li {
    border-bottom-color: #3189fc;
  }
  #dashboard.darktheme #d_nav ul li.active {
    color: #3189fc;
  }
  #dashboard.darktheme #d_nav ul li.active:before {
    border-left-color: #3189fc;
    border-bottom-color: #3189fc;
  }
  #dashboard.darktheme #d_nav ul li.active:after {
    border-left-color: #011223;
    border-bottom-color: #011223;
  }
}

#myaccount .balances .links .link,
#myaccount section.recenttransactions .noresults a,
#myaccount .preferences .resetpasswordlink span,
#myaccount .preferences .sendemail a span,
#loyalty .frontpage .info .more a,
#loyalty .loyaltypage__content ul a {
  color: #3189fc;
}