* {
  box-sizing: border-box; }

.container {
  width: 1170px;
  margin: auto; }

.row {
  clear: both;
  width: 100%; }

*[class^='col-'],
.container {
  padding: 0 15px; }

*[class^='col-'],
.row {
  position: relative;
  float: left; }

.col-1 {
  width: 8.33333%; }

.col-2 {
  width: 16.66667%; }

.col-3 {
  width: 25%; }

.col-4 {
  width: 33.33333%; }

.col-5 {
  width: 41.66667%; }

.col-6 {
  width: 50%; }

.col-7 {
  width: 58.33333%; }

.col-8 {
  width: 66.66667%; }

.col-9 {
  width: 75%; }

.col-10 {
  width: 83.33333%; }

.col-11 {
  width: 91.66667%; }

.col-12 {
  width: 100%; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

.offset-12 {
  margin-left: 100%; }

.clearfix {
  zoom: 1;
  /* ie 6/7 */ }
  .clearfix::after {
    clear: both; }
  .clearfix:before, .clearfix::after {
    display: table;
    content: ''; }

@media screen and (max-width: 1170px) {
  .container {
    width: 970px; } }

@media screen and (max-width: 992px) {
  *[class^='col-'] {
    width: 100%; }
  .container {
    width: 100%; } }

.sm-show {
  display: none; }

@media screen and (max-width: 768px) {
  .sm-hide {
    display: none !important; }
  .sm-show {
    display: block; }
  .container {
    width: 100%; } }

button,
input {
  margin: 0;
  padding: 0; }

.btn, .chat__footer__menu__buttons button, .account .btn__logout, .faq .btn__logout, .hall .btn__logout {
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s, box-shadow 0.3s;
  will-change: background, box-shadow;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  background: #202b5f; }
  .btn:hover, .chat__footer__menu__buttons button:hover, .account .btn__logout:hover, .faq .btn__logout:hover, .hall .btn__logout:hover {
    background: #151c3e; }
  .btn[disabled], .chat__footer__menu__buttons button[disabled], .account [disabled].btn__logout, .faq [disabled].btn__logout, .hall [disabled].btn__logout {
    opacity: 0.8;
    cursor: auto !important; }
  .btn.off, .chat__footer__menu__buttons button.off, .account .off.btn__logout, .faq .off.btn__logout, .hall .off.btn__logout {
    box-sizing: border-box !important;
    color: #4859a2;
    border: 1px solid #d4d5e3 !important;
    background: #fff;
    box-shadow: none !important; }
  .btn__dark {
    display: flex;
    flex-grow: 0;
    width: auto;
    text-decoration: none !important;
    color: #fff;
    background: #4d5e80; }
    .btn__dark:hover {
      background: #3a4760; }
  .btn__green {
    display: flex;
    flex-grow: 0;
    width: auto;
    color: #343850;
    background: #b1ee72; }
    .btn__green:hover {
      background: #98e944; }

.drop-down {
  position: relative;
  width: 100%; }
  .drop-down::after {
    position: absolute;
    top: 50%;
    right: 21px;
    content: '';
    transform: translate(0, -50%);
    pointer-events: none;
    border-top: 5px solid #4859a2;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: transform 0.3s; }
  .drop-down.is-active .drop-down__list {
    transform: translateY(5px);
    pointer-events: auto;
    opacity: 1; }
  .drop-down.is-active::after {
    transform: translate(0, -50%) rotate(-180deg); }
  .drop-down__btn {
    font-size: 14px;
    font-weight: 400;
    position: relative;
    width: 100%;
    padding-left: 20px !important;
    text-align: left;
    text-transform: none;
    color: #4859a2;
    background: #f2f4f8;
    box-shadow: none; }
    .drop-down__btn:hover {
      background: #e1e6ef; }
  .drop-down__list {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    width: 100%;
    transition: transform 0.3s, opacity 0.3s;
    will-change: transform, opacity;
    pointer-events: none;
    opacity: 0;
    border-radius: 2px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1); }
    .drop-down__list li {
      font-size: 13px;
      padding: 9px 0;
      cursor: pointer;
      transition: background 0.3s;
      text-align: center;
      border-bottom: 1px solid #e1e6ef;
      background: #f2f4f8; }
      .drop-down__list li:first-child {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px; }
      .drop-down__list li:last-child {
        border: 0;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px; }
      .drop-down__list li:hover {
        background: #e1e6ef; }

.input {
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  padding: 13px 24px;
  transition: border-color .3s;
  border: 1px solid rgba(177, 180, 189, 0);
  border-radius: 3px;
  background: #f2f4f8;
  -webkit-appearance: none !important;
  box-shadow: none !important; }
  .input.invalid {
    border: 1px solid #ff7591; }

::-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: auto;
  /* WebKit, Blink, Edge */
  color: rgba(71, 76, 108, 0.5); }

:-moz-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: auto;
  /* Mozilla Firefox 4 to 18 */
  color: rgba(71, 76, 108, 0.5); }

::-moz-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: auto;
  /* Mozilla Firefox 19+ */
  color: rgba(71, 76, 108, 0.5); }

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif; }

a {
  outline: none; }

.sr--only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.modal {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(100% - 370px);
  pointer-events: none;
  visibility: hidden;
  will-change: opacity, visibility, width;
  opacity: 0; }
  .modal.is-centered {
    width: 100vw; }
  @media (max-width: 992px) {
    .modal {
      right: 0 !important;
      width: 100% !important; } }
  .modal h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase; }
  .modal.is-active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1; }
    .modal.is-active .modal__content {
      transform: translate(-50%, -50%) scale(1); }
  .modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 29, 64, 0.5); }
  .modal__content {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    overflow: auto;
    width: 400px;
    max-height: 90%;
    padding: 24px 50px;
    transition: transform 0.2s;
    will-change: transform;
    transform: translate(-50%, -50%) scale(0.7);
    color: #181f3d;
    border-radius: 3px;
    background-color: #fff; }
    @media (max-width: 768px) {
      .modal__content {
        max-width: calc(100% - 20px) !important; } }
    .modal__content h2 {
      font-size: 25px;
      margin-bottom: 30px;
      text-align: center;
      color: #484b68; }
    .modal__content__close {
      position: absolute;
      top: 10px;
      right: 20px;
      padding: 10px;
      cursor: pointer;
      z-index: 100; }
      .modal__content__close::selection {
        background: none; }
  .modal__login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%; }
    .modal__login h2 {
      font-size: 25px;
      margin-bottom: 35px;
      color: #626783; }
    .modal__login ::-webkit-input-placeholder {
      /* WebKit, Blink, Edge */
      color: #a1aab5; }
    .modal__login ::-moz-placeholder {
      opacity: 1;
      /* Mozilla Firefox 4 to 18 */
      color: #a1aab5; }
    .modal__login ::-moz-placeholder {
      opacity: 1;
      /* Mozilla Firefox 19+ */
      color: #a1aab5; }
    .modal__login input {
      font-size: 14px;
      width: 100%;
      margin-bottom: 10px;
      padding: 16px 20px;
      border-radius: 3px;
      background: #f3f3f8; }
      .modal__login input[type='submit'] {
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        background: #7dcaff; }
    .modal__login a {
      font-size: 14px;
      margin: 25px 0 10px;
      text-decoration: underline;
      color: #626783; }

.pagination {
  display: flex;
  margin-top: 30px; }
  .pagination__arrow {
    position: relative; }
    .pagination__arrow::after {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      content: '';
      transform: translate(-50%, -50%);
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent; }
    .pagination__arrow--left::after {
      left: calc(50% - 1px);
      border-right: 4px solid #fff; }
    .pagination__arrow--right::after {
      border-left: 4px solid #fff; }
  .pagination li {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    transition: color .3s, background .3s;
    text-align: center;
    border-radius: 3px; }
    .pagination li a {
      text-decoration: none; }
      .pagination li a:hover {
        text-decoration: underline; }

.ToolTip {
  position: absolute;
  top: 100%;
  background: rgba(185, 205, 239, 0.95);
  padding: 1em;
  border-radius: 3px;
  left: 50%;
  box-shadow: 0 0 5px rgba(25, 25, 25, 0.1);
  filter: drop-shadow(0 2px 0 #7ba1e0);
  width: auto;
  text-align: center;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  z-index: 100000;
  opacity: 0;
  transform: translate(-50%, 20px);
  visibility: hidden;
  min-width: 200px;
  max-width: 300px;
  transition: opacity 300ms ease-out, transform 300ms ease-out;
  white-space: normal; }
  .ToolTip p, .ToolTip span {
    white-space: normal; }
  .ToolTip:after {
    content: "";
    position: absolute;
    bottom: 100%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(185, 205, 239, 0.95);
    transform: translateX(-50%) rotate(180deg);
    left: 50%; }
  .ToolTip.is--open {
    opacity: 1;
    transform: translate(-50%, 10px);
    visibility: visible; }
  .ToolTip.is--top {
    top: auto;
    bottom: 100%; }
    .ToolTip.is--top.is--open {
      transform: translate(-50%, -10px); }
    .ToolTip.is--top:after {
      top: 100%;
      bottom: auto;
      border-top: none;
      border-bottom: 10px solid rgba(185, 205, 239, 0.95); }
  .ToolTip__button {
    margin-top: 1em;
    font-size: 13px;
    padding: 11px 20px;
    transition: opacity .3s;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    background: none; }
  .ToolTip__button + .ToolTip__button {
    margin-left: 1em; }

@media (max-width: 992px) {
  .is--authenticated #intercom-container {
    display: none; } }

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none; }

a,
button {
  transition: transform 100ms, opacity 100ms; }
  a:active,
  button:active {
    transform: scale(0.96); }

.hover-underline {
  cursor: pointer; }
  .hover-underline:hover {
    text-decoration: underline; }

.root {
  width: 100%;
  height: 100%; }
  .root > div {
    width: 100%;
    height: 100%; }

.loader-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  .loader-container > svg {
    width: 100%;
    max-width: 100px; }

p {
  margin: 0; }

li {
  list-style-type: none; }

textarea {
  resize: vertical;
  outline: none; }

a {
  text-decoration: none;
  color: inherit; }

.no-selection::selection {
  background: none; }

.no-animation * {
  transition-delay: 0s !important;
  transition-duration: 0s !important; }

.recaptcha-wrap div {
  width: 100% !important; }

.warning__tool-tip {
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  transition: transform 0.3s, opacity 0.3s;
  will-change: transform, opacity;
  transform: translate(-50%, -3px);
  white-space: nowrap;
  text-transform: none;
  pointer-events: none;
  opacity: 0;
  color: #fff;
  border-radius: 3px;
  background: linear-gradient(#5868b2, #5666af); }
  .warning__tool-tip::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    content: '';
    transform: translateX(-50%);
    border-top: 6px solid #4859a2;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent; }
  .warning__tool-tip.is-shown {
    transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1; }

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(#4a5aa4, #2a397b); }

input,
button {
  border: 0;
  outline: none; }

button {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  background: inherit; }

* {
  font-family: 'Open Sans', sans-serif; }

button,
input[type='submit'] {
  cursor: pointer; }

.tip__modal__content {
  width: auto; }
  @media (max-width: 768px) {
    .tip__modal__content {
      width: 100%;
      padding-left: 15px;
      padding-right: 15px; } }

.login__modal__overlay {
  background: linear-gradient(#404b61, rgba(64, 75, 97, 0.75)); }

.login__modal__content {
  background: none;
  color: #fff;
  overflow: visible;
  width: 640px;
  min-height: 100%;
  height: 100%; }
  .login__modal__content .modal__content__close {
    display: none; }
  .login__modal__content > div {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between; }
  .login__modal__content__wrap {
    background: #fff;
    padding: 40px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
    @media (max-width: 768px) {
      .login__modal__content__wrap {
        padding: 20px 20px 0; } }
  .login__modal__content .recaptcha-wrap {
    margin-top: 0 !important; }
    .login__modal__content .recaptcha-wrap > div > div > div {
      display: flex;
      justify-content: center;
      align-items: center; }
  .login__modal__content__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 105px;
    color: #fff;
    flex-shrink: 0; }
    @media (max-width: 768px) {
      .login__modal__content__form {
        padding: 0; } }
  .login__modal__content__return {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 13px 0;
    color: #484b68;
    font-weight: bold; }
    .login__modal__content__return__separator {
      height: 9px;
      width: 1px;
      background: #fff;
      margin: 0 5px;
      opacity: 0.8; }
  .login__modal__content__forgot-password, .login__modal__content__register-return {
    font-size: 12px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0.8; }
    .login__modal__content__forgot-password:hover, .login__modal__content__register-return:hover {
      text-decoration: underline;
      opacity: 1; }
  .login__modal__content__terms {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    text-align: center; }
  .login__modal__content h3 {
    font-size: 24px; }
  .login__modal__content button {
    background: #f10260;
    padding: 23px 0;
    flex-shrink: 0; }
    .login__modal__content button:hover {
      background: #d80256; }

.private-message__modal__content {
  width: 400px; }

.campaign__modal__content {
  width: 600px; }

.request-loader__modal__content {
  font-size: 14px;
  padding: 40px 50px;
  text-align: center; }
  .request-loader__modal__content__wrap {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .request-loader__modal__content strong {
    font-weight: 600; }
  .request-loader__modal__content__circle {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 8px solid #7185AD;
    position: relative; }
  .request-loader__modal__content svg {
    transform: scale(0.6); }

.hot-keys__modal__content {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: center; }
  .hot-keys__modal__content h3 {
    text-transform: uppercase; }
  .hot-keys__modal__content__desc {
    margin: 32px 0 22px;
    color: rgba(52, 56, 80, 0.5); }
  .hot-keys__modal__content__switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 26px; }
    .hot-keys__modal__content__switch .btn, .hot-keys__modal__content__switch .chat__footer__menu__buttons button, .chat__footer__menu__buttons .hot-keys__modal__content__switch button, .hot-keys__modal__content__switch .account .btn__logout, .account .hot-keys__modal__content__switch .btn__logout, .hot-keys__modal__content__switch .faq .btn__logout, .faq .hot-keys__modal__content__switch .btn__logout, .hot-keys__modal__content__switch .hall .btn__logout, .hall .hot-keys__modal__content__switch .btn__logout {
      font-size: 13px;
      font-weight: 600;
      width: 52px;
      padding: 7px 0 8px;
      cursor: pointer;
      transition: all 0.3s;
      text-align: center;
      text-transform: uppercase;
      border: 1px solid rgba(212, 213, 227, 0); }
      .hot-keys__modal__content__switch .btn::first-of-type, .hot-keys__modal__content__switch .chat__footer__menu__buttons button::first-of-type, .chat__footer__menu__buttons .hot-keys__modal__content__switch button::first-of-type, .hot-keys__modal__content__switch .account .btn__logout::first-of-type, .account .hot-keys__modal__content__switch .btn__logout::first-of-type, .hot-keys__modal__content__switch .faq .btn__logout::first-of-type, .faq .hot-keys__modal__content__switch .btn__logout::first-of-type, .hot-keys__modal__content__switch .hall .btn__logout::first-of-type, .hall .hot-keys__modal__content__switch .btn__logout::first-of-type {
        border-right: none !important; }
      .hot-keys__modal__content__switch .btn::last-of-type, .hot-keys__modal__content__switch .chat__footer__menu__buttons button::last-of-type, .chat__footer__menu__buttons .hot-keys__modal__content__switch button::last-of-type, .hot-keys__modal__content__switch .account .btn__logout::last-of-type, .account .hot-keys__modal__content__switch .btn__logout::last-of-type, .hot-keys__modal__content__switch .faq .btn__logout::last-of-type, .faq .hot-keys__modal__content__switch .btn__logout::last-of-type, .hot-keys__modal__content__switch .hall .btn__logout::last-of-type, .hall .hot-keys__modal__content__switch .btn__logout::last-of-type {
        border-left: none !important; }
    .hot-keys__modal__content__switch__buttons {
      display: flex; }

.password__modal__content {
  text-align: center; }
  .password__modal__content h3 {
    margin-bottom: 20px; }
  .password__modal__content p {
    font-size: 13px;
    line-height: 1.7em;
    padding: 6px 0 22px;
    color: rgba(52, 56, 80, 0.5); }

.fair__modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 580px;
  text-align: center;
  color: #343850; }
  .fair__modal__content a {
    font-weight: 600; }
    .fair__modal__content a:hover {
      text-decoration: underline; }
  .fair__modal__content__wrap {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 24px 30px 0; }
    .fair__modal__content__wrap button {
      font-size: 18px;
      font-weight: 600;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 25px 0 30px;
      margin-top: 10px;
      padding: 17px 53px; }
      .fair__modal__content__wrap button small {
        font-size: 13px;
        font-weight: 300;
        text-transform: none; }
  .fair__modal__content p {
    color: rgba(52, 56, 80, 0.5); }
  .fair__modal__content h3 {
    font-size: 18px;
    margin-bottom: 31px;
    text-transform: uppercase; }
  .fair__modal__content__footer {
    font-size: 13px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 15px 30px 30px;
    text-align: left;
    background: #f2f4f8; }
    .fair__modal__content__footer h4 {
      font-size: 15px;
      font-weight: 400;
      font-weight: 600;
      margin: 15px 0 20px;
      text-align: center;
      text-transform: uppercase; }
    .fair__modal__content__footer strong {
      font-weight: 600;
      color: #1a1a1a; }
    .fair__modal__content__footer p {
      margin-bottom: 10px;
      word-break: break-word; }
    .fair__modal__content__footer__look-up {
      display: flex; }
      .fair__modal__content__footer__look-up input {
        font-size: 14px;
        margin-bottom: 0;
        border-radius: 2px 0 0 2px;
        background: #dae0eb; }
      .fair__modal__content__footer__look-up button {
        font-size: 16px;
        padding: 0 15px;
        border-radius: 0 2px 2px 0;
        flex-grow: 0;
        flex-shrink: 0; }

.bet-info__modal__content {
  color: #343850;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 640px;
  padding: 0; }
  .bet-info__modal__content__author {
    cursor: pointer; }
    .bet-info__modal__content__author:hover {
      text-decoration: underline; }
  .bet-info__modal__content__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 30px 0;
    font-size: 13px;
    width: 100%;
    flex-shrink: 0;
    background: #fff; }
  .bet-info__modal__content h3 {
    margin-bottom: 30px; }
  .bet-info__modal__content p {
    color: rgba(52, 56, 80, 0.5);
    font-size: 14px; }
  .bet-info__modal__content__stats {
    display: flex;
    padding: 24px 32px;
    justify-content: space-between;
    border-radius: 2px;
    border: 1px solid rgba(52, 56, 80, 0.2);
    background: none;
    color: #343850;
    text-transform: uppercase;
    font-size: 12px;
    margin: 22px 0 30px;
    width: 100%; }
    @media (max-width: 768px) {
      .bet-info__modal__content__stats {
        flex-direction: column;
        justify-content: center; } }
    .bet-info__modal__content__stats__item {
      display: flex;
      flex-direction: column;
      margin-right: 15px;
      white-space: nowrap;
      font-weight: 600; }
      @media (max-width: 768px) {
        .bet-info__modal__content__stats__item {
          margin-right: 0;
          margin-bottom: 20px; }
          .bet-info__modal__content__stats__item:last-child {
            margin-bottom: 0; } }
      .bet-info__modal__content__stats__item:last-child {
        margin-right: 0; }
      .bet-info__modal__content__stats__item span {
        font-size: 16px; }
        .bet-info__modal__content__stats__item span img {
          margin: 0 0.3em; }
  .bet-info__modal__content__target {
    background: #f2f4f8;
    display: flex;
    padding: 105px 30px;
    flex-direction: column;
    font-weight: 600;
    width: 100%; }
    .bet-info__modal__content__target__wrap {
      position: relative; }
      .bet-info__modal__content__target__wrap:before, .bet-info__modal__content__target__wrap::after {
        position: absolute;
        bottom: calc(100% + 10px);
        color: rgba(0, 0, 0, 0.35); }
      .bet-info__modal__content__target__wrap:before {
        content: '0';
        left: 0; }
      .bet-info__modal__content__target__wrap::after {
        content: '100';
        right: 0; }
    .bet-info__modal__content__target__line {
      display: flex;
      height: 10px;
      width: 100%;
      border-radius: 2px;
      overflow: hidden;
      background: #ff7591;
      position: relative; }
      .theme-dark .bet-info__modal__content__target__line {
        background: #ff4067; }
      .bet-info__modal__content__target__line__fill {
        left: 0;
        top: 0;
        background: #b1e15b;
        height: 100%;
        position: absolute;
        width: 100%; }
        .theme-dark .bet-info__modal__content__target__line__fill {
          background: #b1e15b; }
    .bet-info__modal__content__target__tooltip {
      position: absolute;
      left: 0;
      background: #fff;
      text-align: center;
      padding: 10px 14px;
      will-change: left, transform;
      z-index: 2;
      border: 1px solid #e1e6ef; }
      .bet-info__modal__content__target__tooltip p {
        font-size: 12px;
        color: rgba(52, 56, 80, 0.5);
        text-transform: uppercase; }
      .bet-info__modal__content__target__tooltip.target {
        bottom: calc(100% + 18px);
        will-change: left; }
        .bet-info__modal__content__target__tooltip.target::after, .bet-info__modal__content__target__tooltip.target:before {
          content: '';
          position: absolute;
          top: 100%;
          border-top: 13px solid #fff; }
        .bet-info__modal__content__target__tooltip.target:before {
          border-top: 15px solid #e1e6ef; }
        .bet-info__modal__content__target__tooltip.target.left {
          border-radius: 4px 4px 4px 0; }
          .bet-info__modal__content__target__tooltip.target.left::after, .bet-info__modal__content__target__tooltip.target.left:before {
            left: 0;
            border-left: 0 solid transparent;
            border-right: 13px solid transparent; }
          .bet-info__modal__content__target__tooltip.target.left:before {
            left: -1px;
            border-right: 15px solid transparent; }
        .bet-info__modal__content__target__tooltip.target.middle {
          border-radius: 4px;
          transform: translateX(-50%); }
          .bet-info__modal__content__target__tooltip.target.middle::after, .bet-info__modal__content__target__tooltip.target.middle:before {
            transform: translateX(-14px);
            left: 50%;
            border-left: 13px solid transparent;
            border-right: 13px solid transparent; }
          .bet-info__modal__content__target__tooltip.target.middle:before {
            left: calc(50% - 1px);
            border-left: 14px solid transparent;
            border-right: 14px solid transparent; }
        .bet-info__modal__content__target__tooltip.target.right {
          border-radius: 4px 4px 0 4px;
          transform: translateX(-100%); }
          .bet-info__modal__content__target__tooltip.target.right::after, .bet-info__modal__content__target__tooltip.target.right:before {
            right: 0;
            border-right: 0 solid transparent;
            border-left: 13px solid transparent; }
          .bet-info__modal__content__target__tooltip.target.right:before {
            right: -1px;
            border-left: 15px solid transparent; }
      .bet-info__modal__content__target__tooltip.roll {
        top: calc(100% + 18px); }
        .bet-info__modal__content__target__tooltip.roll::after, .bet-info__modal__content__target__tooltip.roll:before {
          content: '';
          position: absolute;
          bottom: 100%;
          border-bottom: 13px solid #fff; }
        .bet-info__modal__content__target__tooltip.roll:before {
          border-bottom: 15px solid #e1e6ef; }
        .bet-info__modal__content__target__tooltip.roll.left {
          border-radius: 0 4px 4px 4px; }
          .bet-info__modal__content__target__tooltip.roll.left::after, .bet-info__modal__content__target__tooltip.roll.left:before {
            left: 0;
            border-left: 0 solid transparent;
            border-right: 13px solid transparent; }
          .bet-info__modal__content__target__tooltip.roll.left:before {
            left: -1px;
            border-right: 15px solid transparent; }
        .bet-info__modal__content__target__tooltip.roll.middle {
          border-radius: 4px;
          transform: translateX(-50%); }
          .bet-info__modal__content__target__tooltip.roll.middle::after, .bet-info__modal__content__target__tooltip.roll.middle:before {
            transform: translateX(-14px);
            left: 50%;
            border-left: 13px solid transparent;
            border-right: 13px solid transparent; }
          .bet-info__modal__content__target__tooltip.roll.middle:before {
            left: calc(50% - 1px);
            border-left: 14px solid transparent;
            border-right: 14px solid transparent; }
        .bet-info__modal__content__target__tooltip.roll.right {
          border-radius: 4px 0 4px 4px;
          transform: translateX(-100%); }
          .bet-info__modal__content__target__tooltip.roll.right::after, .bet-info__modal__content__target__tooltip.roll.right:before {
            right: 0;
            border-right: 0 solid transparent;
            border-left: 13px solid transparent; }
          .bet-info__modal__content__target__tooltip.roll.right:before {
            right: -1px;
            border-left: 15px solid transparent; }
  .bet-info__modal__content__footer {
    background: #404c63;
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    will-change: transform;
    color: #fff; }
    .bet-info__modal__content__footer p {
      color: #fff; }
    .bet-info__modal__content__footer img {
      transition: all 0.3s; }
    .bet-info__modal__content__footer__btn {
      cursor: pointer;
      background: #404c63;
      padding: 20px 0;
      text-align: center; }
      .bet-info__modal__content__footer__btn img {
        margin-left: 8px; }
    .bet-info__modal__content__footer__label {
      display: flex;
      align-items: flex-start;
      flex-direction: column; }
      .bet-info__modal__content__footer__label span {
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        font-size: 12px;
        margin-bottom: 7px;
        text-align: center;
        font-weight: 600; }
      .bet-info__modal__content__footer__label p {
        background: rgba(0, 0, 0, 0.15);
        padding: 10px 15px;
        width: 100%;
        color: #fff;
        font-size: 14px;
        border-radius: 2px;
        margin-bottom: 23px;
        word-break: break-all; }
        @media (max-width: 768px) {
          .bet-info__modal__content__footer__label p {
            text-align: left; } }
    .bet-info__modal__content__footer__description {
      text-align: left;
      font-size: 12px; }

.welcome-additional__modal * {
  flex-shrink: 0; }

.welcome-additional__modal__content {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 490px;
  padding: 20px 90px;
  text-align: center; }
  @media (max-width: 768px) {
    .welcome-additional__modal__content {
      padding: 0 30px; } }
  .welcome-additional__modal__content__password {
    transition: all .4s; }
    .welcome-additional__modal__content__password.is-hidden {
      height: 0;
      opacity: 0;
      padding-bottom: 0;
      padding-top: 0;
      margin: 0; }
  .welcome-additional__modal__content a {
    font-weight: 600; }
    .welcome-additional__modal__content a:hover {
      text-decoration: underline; }
  .welcome-additional__modal__content h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 5px; }
    .welcome-additional__modal__content h2 + p {
      font-size: 14px;
      margin-bottom: 25px; }
  .welcome-additional__modal__content form {
    display: flex;
    flex-direction: column;
    margin-top: 30px; }
    .welcome-additional__modal__content form button {
      margin: 10px 0;
      padding: 23px 0; }
    .welcome-additional__modal__content form + p {
      margin-bottom: 30px; }

.external-link__modal__content {
  width: auto;
  padding: 20px;
  text-align: center; }

.external-link__footer {
  display: flex;
  justify-content: space-between; }
  .external-link__footer p {
    font-weight: 600; }
  .external-link__footer a,
  .external-link__footer p {
    cursor: pointer; }

.terms__modal__content {
  font-size: 14px;
  padding: 0;
  line-height: 1.8em;
  display: flex;
  flex-direction: column;
  width: 640px; }
  .terms__modal__content > div {
    padding: 40px; }
  .terms__modal__content h3 {
    margin-bottom: 30px;
    text-align: center; }
  .terms__modal__content h5 {
    font-size: 14px;
    margin: 20px 0 5px; }
  .terms__modal__content p {
    margin-bottom: 20px; }
  .terms__modal__content br {
    display: none; }

.chat_rules__modal__content {
  font-size: 14px;
  padding: 0;
  line-height: 1.8em;
  display: flex;
  flex-direction: column;
  width: 520px; }
  .chat_rules__modal__content > div {
    padding: 40px; }
  .chat_rules__modal__content h3 {
    margin-bottom: 30px;
    text-align: center; }
  .chat_rules__modal__content h5 {
    font-size: 14px;
    margin: 20px 0 5px; }
  .chat_rules__modal__content p {
    margin-bottom: 20px; }
  .chat_rules__modal__content br {
    display: none; }
  .chat_rules__modal__content li {
    list-style-type: decimal; }

.restricted__modal > *:last-child {
  margin-bottom: 0; }

.restricted__modal h1 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px; }

.restricted__modal h2 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px; }

.restricted__modal p {
  color: rgba(52, 56, 80, 0.5);
  text-align: center;
  margin-bottom: 30px;
  font-size: 13px; }

.restricted__modal a, .restricted__modal button {
  font-weight: 600;
  text-decoration: underline; }

.primedice-loading {
  position: relative;
  margin: 18px 38px 43px; }
  .primedice-loading__bottom {
    position: absolute;
    top: calc(100% + 17px);
    left: -26px;
    width: 100px;
    height: 10px;
    transition: all .3s .65s;
    transform: scaleX(0);
    border-radius: 2px;
    transform-origin: left;
    will-change: transform;
    background: #DDFFA2; }
  .primedice-loading.non-active * {
    transition-duration: 0s !important;
    transition-delay: 0s !important; }
  .primedice-loading.is-active {
    opacity: 1; }
    .primedice-loading.is-active .primedice-loading__bottom {
      transform: scaleX(1); }
    .primedice-loading.is-active .primedice-loading__circle {
      transform: scale(1) rotate(315deg); }
      .primedice-loading.is-active .primedice-loading__circle__dot {
        opacity: 1;
        transform: translate(0, 0) !important; }
    .primedice-loading.is-active .primedice-loading__sides {
      transform: rotate(0);
      opacity: 1; }
  .primedice-loading__sides {
    position: absolute;
    top: 10px;
    opacity: 0;
    transition: all .3s .5s;
    will-change: transform, opacity; }
    .primedice-loading__sides.side-left {
      right: calc(100% - 10px);
      transform: rotate(40deg);
      transform-origin: 13px 100%; }
    .primedice-loading__sides.side-right {
      left: calc(100% - 10px);
      transform: rotate(-40deg);
      transform-origin: calc(100% - 13px) 100%; }
  .primedice-loading__circle {
    background: #DDFFA2;
    transition: all .5s;
    width: 47px;
    height: 47px;
    border-radius: 3px;
    transform: scale(0.6) rotate(0);
    position: relative;
    will-change: transform; }
    .primedice-loading__circle__dot {
      background: #576A91;
      position: absolute;
      will-change: transform, opacity;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      transition: all .5s .2s;
      opacity: 0; }
      .primedice-loading__circle__dot.bottom_left {
        bottom: 9px;
        left: 9px;
        transform: translate(12px, -12px); }
      .primedice-loading__circle__dot.top_left {
        top: 9px;
        left: 9px;
        transform: translate(12px, 12px); }
      .primedice-loading__circle__dot.bottom_right {
        bottom: 9px;
        right: 9px;
        transform: translate(-12px, -12px); }
      .primedice-loading__circle__dot.top_right {
        top: 9px;
        right: 9px;
        transform: translate(-12px, 12px); }

.chat__nav__item__tool-tip, .chat__channel__message__tool-tip {
  color: rgba(77, 94, 128, 0.7);
  border: 1px solid #e1e1e4;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06); }
  .chat__nav__item__tool-tip__arrow, .chat__channel__message__tool-tip__arrow {
    position: absolute;
    z-index: 21;
    bottom: 100%;
    left: 20px;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #cccccc;
    border-left: 8px solid transparent; }
    .chat__nav__item__tool-tip__arrow::after, .chat__channel__message__tool-tip__arrow::after {
      position: absolute;
      top: 100%;
      left: 0;
      width: 0;
      height: 0;
      content: '';
      transform: translate(-50%, 1px);
      border-right: 7px solid transparent;
      border-bottom: 7px solid #fff;
      border-left: 7px solid transparent; }

.chat-scrollLock {
  display: flex;
  flex: 1; }

@media (max-width: 992px) {
  .chat {
    width: 100% !important;
    transform: translate(0, 100%) !important; }
    .chat.is-open {
      transform: translate(0, 0) !important; } }

.chat .chat__nav__submenu h4, .chat__nav__submenu .chat h4, .chat .chat__room__friend-list h4, .chat__room__friend-list .chat h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase; }

.chat.is-open {
  visibility: visible; }

.chat__nav {
  flex-shrink: 0; }
  .chat__nav__submenu {
    position: absolute;
    z-index: 20;
    top: 70px;
    left: 0;
    display: flex;
    overflow: auto;
    width: 100%;
    height: calc(100vh - 200px);
    color: rgba(52, 56, 80, 0.5);
    background: #fff;
    box-shadow: 0 1px 0 #e1e1e4;
    /* firefox 19+ */
    /* ie */ }
    @media (max-width: 768px) {
      .chat__nav__submenu {
        height: calc(100vh - 160px); } }
    .chat__nav__submenu__wrap {
      position: relative;
      width: 100%; }
      .chat__nav__submenu__wrap > div {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding: 20px; }
    .chat__nav__submenu__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 5px;
      padding: 0 0 15px 0;
      color: white;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
      .chat__nav__submenu__header p {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase; }
      .chat__nav__submenu__header img::selection,
      .chat__nav__submenu__header span::selection {
        background: none; }
      .chat__nav__submenu__header img {
        cursor: pointer; }
      .chat__nav__submenu__header__cancel {
        font-size: 13px;
        font-weight: 600;
        color: white;
        cursor: pointer; }
    .chat__nav__submenu__sub {
      margin-top: 15px;
      margin-bottom: 10px;
      padding-bottom: 20px;
      color: white; }
      .chat__nav__submenu__sub:last-child {
        padding-bottom: 0;
        border-bottom: none; }
      .chat__nav__submenu__sub__item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 4px;
        padding: 3px 0;
        cursor: pointer; }
        .chat__nav__submenu__sub__item:last-child {
          margin-bottom: 0; }
        .chat__nav__submenu__sub__item p {
          font-size: 14px;
          line-height: 25px;
          color: #474c6c; }
        .chat__nav__submenu__sub__item button {
          padding: 8px 11px;
          transition: background 0.3s;
          text-transform: uppercase;
          color: #fff;
          border-radius: 2px; }
          .chat__nav__submenu__sub__item button.accept {
            font-weight: 600;
            margin-right: 10px;
            background: #90b0e5; }
            .chat__nav__submenu__sub__item button.accept:hover {
              background: #7ba1e0; }
          .chat__nav__submenu__sub__item button.decline {
            font-weight: 600;
            color: rgba(71, 76, 108, 0.5);
            border: 1px solid #e1e1e4;
            background: rgba(225, 225, 228, 0); }
            .chat__nav__submenu__sub__item button.decline:hover {
              background: rgba(225, 225, 228, 0.5); }
          .chat__nav__submenu__sub__item button.unread {
            font-size: 12px;
            padding: 4px 6px;
            transition: all 0.3s;
            transform: scale(0.8);
            opacity: 0;
            background: #ff7591; }
          .chat__nav__submenu__sub__item button.is-shown {
            transform: scale(1);
            opacity: 1; }
    .chat__nav__submenu input[type='text'], .chat__nav__submenu input[type='number'] {
      font-size: 14px;
      width: 100%;
      margin-bottom: 10px;
      padding: 16px 20px;
      color: #474c6c;
      color: #343850;
      border-radius: 2px;
      background: #f2f4f8; }
    .chat__nav__submenu ::-webkit-input-placeholder {
      color: rgba(71, 76, 108, 0.5); }
    .chat__nav__submenu ::-moz-placeholder {
      color: rgba(71, 76, 108, 0.5); }
    .chat__nav__submenu :-ms-input-placeholder {
      color: rgba(71, 76, 108, 0.5); }
    .chat__nav__submenu input:-moz-placeholder {
      color: rgba(71, 76, 108, 0.5); }
    .chat__nav__submenu hr {
      width: 100%;
      height: 1px;
      margin: 3px 0;
      border: 0;
      background: #e1e1e4; }
  .chat__nav__item {
    position: relative; }
    .chat__nav__item:hover::after {
      background: #ff5c7d; }
    .chat__nav__item:hover .chat__nav__item__tool-tip {
      opacity: 1; }
    .chat__nav__item__tool-tip {
      font-size: 14px;
      position: absolute;
      z-index: 3;
      top: 100%;
      left: 50%;
      padding: 14px 20px;
      transition: all 0.2s;
      transform: translate(-50%, 6px);
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      color: #3d405c; }
      .chat__nav__item__tool-tip__arrow {
        left: 50%;
        transform: translateX(-50%); }
    .chat__nav__item::after {
      position: absolute;
      top: 0;
      left: 100%;
      width: 8px;
      height: 8px;
      content: '';
      transition: all 0.3s;
      transform: translate(-50%, -50%) scale(0.4);
      opacity: 0;
      border: 2px solid #fff;
      border-radius: 50%;
      background: #ff7591; }

.chat__scrollbar__scrollpane {
  position: absolute;
  top: 8px;
  right: 3px;
  height: calc(100% - 16px); }
  .chat__scrollbar__scrollpane__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    min-height: 4px;
    will-change: top;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.1); }

.chat__room__friend-list {
  border-bottom: 1px solid #e1e1e4; }
  .chat__room__friend-list:last-child {
    border-bottom: none; }

.chat__channel {
  position: relative;
  overflow: auto;
  flex-grow: 1;
  background: #f7f7fa; }
  .chat__channel__wrap {
    width: 100%;
    padding: 10px 20px; }
    .chat__channel__wrap__message-list {
      display: flex;
      flex-direction: column;
      width: 100%; }
  .chat__channel__message {
    position: relative;
    flex-shrink: 0;
    margin-bottom: 15px;
    word-break: break-word;
    display: flex;
    justify-content: space-between; }
    .chat__channel__message.is-optimistic {
      opacity: 0.5; }
    .chat__channel__message strong {
      font-weight: 400;
      cursor: pointer;
      text-decoration: underline;
      opacity: 0.65;
      color: #474c6c; }
    .chat__channel__message__tool-tip {
      font-size: 14px;
      position: absolute;
      z-index: 4;
      top: calc(100% + 10px);
      left: -10px;
      margin-bottom: 10px;
      padding: 8px 10px; }
      .chat__channel__message__tool-tip button {
        position: relative;
        z-index: 2;
        text-align: left;
        width: 100%;
        padding: 8px 38px 8px 7px;
        cursor: pointer;
        transition: color 0.3s;
        border-bottom: 1px solid #e1e1e4; }
        .chat__channel__message__tool-tip button:last-of-type {
          border-bottom: none; }
        .chat__channel__message__tool-tip button:after {
          position: absolute;
          z-index: -1;
          top: -1px;
          left: -3px;
          width: calc(100% + 6px);
          height: calc(100% + 2px);
          content: '';
          transition: opacity 0.3s;
          opacity: 0;
          border-radius: 3px;
          background: #f2f4f8; }
        .chat__channel__message__tool-tip button:hover:after {
          opacity: 1; }
        .chat__channel__message__tool-tip button:hover span {
          transform: translateX(12px);
          color: #4d5e80; }
          .chat__channel__message__tool-tip button:hover span:after {
            opacity: 1; }
        .chat__channel__message__tool-tip button span {
          position: relative;
          display: flex;
          transition: all 0.3s; }
          .chat__channel__message__tool-tip button span::selection {
            background: none; }
          .chat__channel__message__tool-tip button span:after {
            position: absolute;
            top: 50%;
            left: -12px;
            content: '';
            transition: all 0.3s;
            transform: translateY(-50%);
            opacity: 0;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            border-left: 5px solid #4d5e80; }
    .chat__channel__message.is-bot .chat__message__meta__type {
      font-style: italic; }
    .chat__channel__message.is-user .chat__message__meta__username {
      cursor: pointer; }
      .chat__channel__message.is-user .chat__message__meta__username:hover {
        text-decoration: underline; }
    .chat__channel__message__meta {
      font-size: 14px;
      position: relative;
      display: flex;
      color: #5c617e;
      white-space: nowrap;
      align-items: center; }
      .chat__channel__message__meta.bot {
        font-style: italic; }
      .chat__channel__message__meta__timestamp {
        font-size: 12px;
        transition: opacity 0.3s, transform 0.3s;
        will-change: opacity, transform;
        opacity: 0.5;
        white-space: nowrap;
        margin-left: 0.8em; }
        .chat__channel__message__meta__timestamp.is-hidden {
          transform: translateX(6px);
          pointer-events: none;
          opacity: 0;
          font-size: 0; }
      .chat__channel__message__meta__type {
        font-weight: 600;
        float: left;
        text-transform: uppercase; }
        .chat__channel__message__meta__type.pm, .chat__channel__message__meta__type.A, .chat__channel__message__meta__type.M, .chat__channel__message__meta__type.DEV {
          color: #ff7591; }
        .chat__channel__message__meta__type.bot {
          color: #ffb97c; }
        .chat__channel__message__meta__type.VIP {
          color: #d4785a; }
        .chat__channel__message__meta__type.S {
          color: #6fcc57; }
      .chat__channel__message__meta__user {
        display: flex;
        line-height: 1;
        align-items: center; }
      .chat__channel__message__meta__username {
        font-weight: 600;
        float: left; }
      .chat__channel__message__meta__msg {
        font-size: 13px;
        word-break: break-word;
        color: #4a4d6b; }
        .chat__channel__message__meta__msg button {
          font-weight: 600; }

.chat__footer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: #0c163d;
  /* firefox 19+ */
  /* ie */
  flex-shrink: 0; }
  .chat__footer img {
    cursor: pointer; }
  .chat__footer__arrow {
    top: 0 !important;
    left: 40px !important; }
  .chat__footer__menu {
    position: absolute;
    z-index: 4;
    bottom: 130px;
    left: 0;
    display: flex;
    overflow: auto;
    width: 100%;
    max-height: calc(100vh - 130px);
    color: #4d5e80;
    background: #fff;
    box-shadow: inset 0 1px 0 #e1e1e4, inset 0 -1px 0 #e1e1e4; }
    .chat__footer__menu > div {
      padding: 20px; }
    .chat__footer__menu__heading {
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 25px;
      padding-bottom: 18px;
      text-align: left;
      text-transform: uppercase;
      color: rgba(77, 94, 128, 0.5);
      border-bottom: 1px solid #e1e1e4; }
    .chat__footer__menu__buttons button {
      font-size: 12px;
      width: 65px;
      height: 100%;
      padding: 3px 0 5px;
      transition: all 0s;
      border: 1px solid rgba(212, 213, 227, 0); }
      .chat__footer__menu__buttons button.on {
        border-bottom-color: #738db7; }
      .chat__footer__menu__buttons button:first-child {
        border-right: none !important;
        border-radius: 2px 0 0 2px; }
      .chat__footer__menu__buttons button:last-child {
        border-left: none !important;
        border-radius: 0 2px 2px 0; }
    .chat__footer__menu__command-list {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center; }
      .chat__footer__menu__command-list__command {
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 0;
        text-align: left; }
        .chat__footer__menu__command-list__command__required {
          font-size: 12px;
          opacity: 0.5; }
    .chat__footer__menu__settings__item {
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 4px 0; }
      .chat__footer__menu__settings__item button {
        text-transform: none; }
      .chat__footer__menu__settings__item p {
        padding: 5px 0;
        cursor: pointer; }
  .chat__footer__input {
    position: relative;
    display: flex;
    margin-bottom: 10px; }
    .chat__footer__input img {
      position: absolute;
      top: 50%;
      right: 11px;
      transform: translate(0, -50%); }
    .chat__footer__input .DraftEditor-root {
      font-size: 12px;
      position: relative;
      width: 100%;
      min-height: 41px;
      padding: 11px 37px 11px 15px;
      resize: none;
      white-space: pre-wrap;
      word-wrap: break-word;
      word-break: break-word;
      border-radius: 3px;
      outline: none; }
      .chat__footer__input .DraftEditor-root .public-DraftEditorPlaceholder-inner {
        position: absolute;
        pointer-events: none;
        opacity: 0.6; }
    .chat__footer__input__formated {
      position: absolute;
      top: 0;
      left: 0;
      pointer-events: none;
      color: #687089;
      border-color: rgba(255, 255, 255, 0); }
  .chat__footer__meta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .chat__footer__meta__user-stats {
      display: flex;
      align-items: center; }
      .chat__footer__meta__user-stats img {
        display: flex;
        transition: transform 0.3s;
        will-change: transform; }
        .chat__footer__meta__user-stats img:hover {
          transform: rotate(30deg); }
    .chat__footer__meta__status {
      font-size: 13px;
      display: flex;
      align-items: center;
      padding-left: 14px;
      color: #fff; }
      .chat__footer__meta__status::before, .chat__footer__meta__status::after {
        position: absolute;
        top: calc(50% + 1px);
        left: 0;
        width: 7px;
        height: 7px;
        content: '';
        transition: opacity 0.5s, transform 0.4s, background 0.2s;
        will-change: transform, background;
        transform: translateY(-50%);
        border-radius: 50%;
        background: #06e349; }
      .chat__footer__meta__status::after {
        transform: translateY(-50%) scale(0.2);
        opacity: 0; }
      .chat__footer__meta__status.is-offline::after, .chat__footer__meta__status.is-offline::before {
        background: #ff7591; }
      .chat__footer__meta__status.is-offline::before {
        transform: translateY(-50%) scale(1.6);
        opacity: 0; }
      .chat__footer__meta__status.is-offline::after {
        transform: translateY(-50%) scale(1);
        opacity: 1; }
    .chat__footer__meta .btn--send {
      font-size: 13px;
      font-weight: 600;
      margin: 0;
      padding: 10px 20px 12px;
      cursor: pointer;
      color: #fff;
      border-radius: 3px;
      background: #4d5e80;
      box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
      text-align: center;
      margin-left: 1em; }
  .chat__footer ::-webkit-input-placeholder {
    font-size: 12px;
    color: rgba(79, 79, 79, 0.5); }
  .chat__footer ::-moz-placeholder {
    font-size: 12px;
    color: rgba(79, 79, 79, 0.5); }
  .chat__footer :-ms-input-placeholder {
    font-size: 12px;
    color: rgba(79, 79, 79, 0.5); }
  .chat__footer input:-moz-placeholder {
    font-size: 12px;
    color: rgba(79, 79, 79, 0.5); }

.active__arrow {
  position: absolute;
  z-index: 21;
  width: 0;
  height: 0;
  transition: transform 0.2s;
  will-change: transform;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent; }
  .active__arrow.is-reversed {
    top: -11px;
    border-top: 8px solid #cccccc; }
    .active__arrow.is-reversed::after {
      top: -9px;
      border-top: 7px solid #fff; }
  .active__arrow.is-normal {
    top: 100%;
    left: 0;
    border-bottom: 8px solid #cccccc; }
    .active__arrow.is-normal::after {
      border-bottom: 7px solid #fff; }
  .active__arrow::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    transform: translate(-50%, 1px);
    border-right: 7px solid transparent;
    border-left: 7px solid transparent; }

.index__big-stats {
  width: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
  max-width: calc(100% - 60px);
  margin-top: 10px;
  transition: opacity 0.3s 0.3s; }
  .index__big-stats.is-hidden {
    opacity: 0; }
  .index__big-stats__slider {
    opacity: 0;
    transition: all 0.3s 0.3s; }
  .index__big-stats:hover .index__big-stats__slider {
    opacity: 1; }
  @media (max-width: 768px) {
    .index__big-stats {
      display: none; } }
  .index__big-stats__hall-of-fame {
    opacity: 1;
    transition: all 0.3s;
    margin: 4px 0 0 8px; }
    .index__big-stats__hall-of-fame.is-hidden {
      opacity: 0; }
  .index__big-stats__carousel {
    display: flex;
    position: relative;
    width: 100%;
    height: 40px;
    overflow: hidden; }
    .index__big-stats__carousel__wrapper {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      display: flex;
      transition: all 0.5s;
      will-change: transform; }
    .index__big-stats__carousel__item {
      display: flex;
      justify-content: center;
      align-items: center; }
      .index__big-stats__carousel__item__amount {
        color: #06e349; }
  .index__big-stats__slider {
    display: flex; }
    .index__big-stats__slider__item {
      width: 10px;
      height: 10px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      margin-right: 10px;
      transition: all 0.3s;
      cursor: pointer;
      transform: scale(0.8); }
      .index__big-stats__slider__item.is-selected, .index__big-stats__slider__item:hover {
        background: white;
        transform: scale(1); }
      .index__big-stats__slider__item:last-child {
        margin-right: 0; }

.index__home__wagered {
  margin-bottom: 30px; }
  .index__home__wagered--btc {
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    font-weight: 600; }

.index__home__indicator {
  position: relative;
  width: 100%;
  height: 8px;
  transition: background 0.3s;
  border-radius: 10px;
  background: #f10260; }
  .index__home__indicator.is-reversed {
    background: #06e349; }
    .index__home__indicator.is-reversed .index__home__indicator__inner {
      background: #f10260; }
  .index__home__indicator__input {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 0;
    width: 100%;
    height: 30px;
    cursor: -webkit-grab;
    cursor: grab;
    touch-action: none;
    transform: translate(0, -50%);
    opacity: 0; }
    .index__home__indicator__input::active {
      cursor: -webkit-grabbing;
      cursor: grabbing; }
  .index__home__indicator__inner {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: 100%;
    height: 10px;
    will-change: transform;
    background: #06e349; }
    .index__home__indicator__inner.is-animating {
      transition: transform 0.5s; }
      .index__home__indicator__inner.is-animating .index__home__indicator__button {
        transition: transform 0.1s; }
    .index__home__indicator__inner--line {
      transition: transform 0.5s;
      background: none !important; }
    .index__home__indicator__inner__number {
      font-size: 15px;
      font-weight: 600;
      position: absolute;
      z-index: 10;
      bottom: -3px;
      left: 100%;
      display: flex;
      transition: all 0.2s;
      transform: translateX(-50%);
      transform-origin: 50% calc(100% + 6px);
      pointer-events: none;
      color: #596080; }
      .index__home__indicator__inner__number.is-hidden {
        opacity: 0; }
      .index__home__indicator__inner__number__roll {
        position: relative;
        z-index: 10;
        transition: all 0.2s;
        will-change: color, transform, animation;
        pointer-events: none;
        transform-origin: 50% calc(100% - 10px); }
        .index__home__indicator__inner__number__roll.is-enlarged {
          animation: enLarge 0.45s; }
        .index__home__indicator__inner__number__roll.is-negative {
          color: #f10260; }
        .index__home__indicator__inner__number__roll.is-positive {
          color: #05b139; }
        .index__home__indicator__inner__number__roll span {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, calc(-50% - 2px));
          text-shadow: 0 1px 0 #fff;
          font-weight: 600; }
      .index__home__indicator__inner__number__roll, .index__home__indicator__inner__number__result {
        padding: 0.5em 0;
        border-radius: 3px; }
      .index__home__indicator__inner__number__result {
        position: absolute;
        top: 0;
        left: calc(100% + 10px);
        display: flex; }
        .index__home__indicator__inner__number__result.is-hidden {
          opacity: 0; }
        .index__home__indicator__inner__number__result__total {
          padding-left: 7px;
          white-space: nowrap;
          color: #434343; }
  .index__home__indicator__number {
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
    color: #fff;
    background: none; }

.index__home__dice {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 730px;
  flex-shrink: 0;
  align-items: center; }
  .index__home__dice__card {
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
    padding: 0 25px;
    align-items: center;
    flex-shrink: 0; }
    .index__home__dice__card.is-column {
      flex-direction: column;
      padding: 0 0; }
      .index__home__dice__card.is-column .index__home__dice__live-stats {
        width: 100%;
        max-width: 670px;
        margin: 20px 0 0; }
        .index__home__dice__card.is-column .index__home__dice__live-stats .index__home__dice__live-stats__stats {
          flex-direction: row; }
          .index__home__dice__card.is-column .index__home__dice__live-stats .index__home__dice__live-stats__stats__wrapper:last-child {
            display: none; }
          .index__home__dice__card.is-column .index__home__dice__live-stats .index__home__dice__live-stats__stats__stat, .index__home__dice__card.is-column .index__home__dice__live-stats .index__home__dice__live-stats__stats__wrapper {
            border: 0;
            box-shadow: none;
            margin-bottom: 0; }
          .index__home__dice__card.is-column .index__home__dice__live-stats .index__home__dice__live-stats__stats__stat {
            flex-grow: 1; }
          .index__home__dice__card.is-column .index__home__dice__live-stats .index__home__dice__live-stats__stats__wrapper {
            align-items: flex-start;
            justify-content: center; }
  .index__home__dice__footer {
    display: flex;
    justify-content: center;
    margin-top: 20px; }
  .index__home__dice__live-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 230px;
    height: 100%;
    margin-left: 20px;
    border-radius: 3px;
    overflow: hidden;
    flex-grow: 1;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    flex-shrink: 0;
    opacity: 1;
    transform: translateX(210px); }
    .index__home__dice__live-stats.is-relative {
      position: relative;
      top: 0;
      left: 0;
      width: 280px;
      transform: translate(0, 0) !important; }
      .index__home__dice__live-stats.is-relative .index__home__dice__live-stats__stats__wrapper {
        align-items: center !important; }
    .index__home__dice__live-stats.is-column {
      min-height: 200px; }
      .index__home__dice__live-stats.is-column .index__home__dice__live-stats__stats,
      .index__home__dice__live-stats.is-column .index__home__dice__live-stats__stats__wrapper {
        align-items: center; }
      .index__home__dice__live-stats.is-column .index__home__dice__live-stats__stats {
        flex-wrap: wrap; }
        .index__home__dice__live-stats.is-column .index__home__dice__live-stats__stats__stat {
          width: 50%; }
    .index__home__dice__live-stats__reset {
      position: absolute;
      right: 12px;
      top: 25px;
      transform: translate(0, -50%);
      transition: all 0.5s;
      cursor: pointer;
      transform-origin: 50% calc(50% - 1px);
      z-index: 3; }
      .index__home__dice__live-stats__reset:hover {
        transform: translate(0, -50%) rotate(179deg); }
      .index__home__dice__live-stats__reset.is-disabled {
        opacity: 0.5;
        pointer-events: none;
        transform: translate(0, -50%) scale(0.85); }
      .index__home__dice__live-stats__reset.is-hidden {
        opacity: 0 !important;
        transform: translate(0, -50%) scale(0.9) rotate(-90deg); }
    .index__home__dice__live-stats__stats {
      display: flex;
      width: 100%;
      background: rgba(87, 106, 145, 0.15);
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
      padding: 15px;
      flex-grow: 1;
      justify-content: space-around;
      flex-direction: column; }
      .index__home__dice__live-stats__stats > div {
        margin-bottom: 15px; }
        .index__home__dice__live-stats__stats > div:last-child {
          margin-bottom: 0; }
      .index__home__dice__live-stats__stats__wrapper {
        display: flex;
        justify-content: space-around;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        padding: 5px 0;
        flex-grow: 1;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); }
        .index__home__dice__live-stats__stats__wrapper > div {
          width: calc(50% - 5px);
          border: 0;
          flex-grow: 0;
          box-shadow: none; }
      .index__home__dice__live-stats__stats__stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        padding: 7px 0;
        flex-grow: 1;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); }
        .index__home__dice__live-stats__stats__stat__label {
          text-transform: uppercase;
          color: #fff;
          opacity: 0.5;
          font-size: 10px;
          font-weight: 600;
          margin-bottom: 5px; }
  .index__home__dice__tab {
    display: flex;
    width: 100%; }
    .index__home__dice__tab__item {
      font-size: 13px;
      font-weight: 600;
      align-items: center;
      flex-grow: 1;
      justify-content: center;
      padding: 14px 0;
      cursor: pointer;
      transition: all 0.3s;
      text-align: center;
      text-transform: uppercase;
      color: #343850;
      background: #f2f4f8; }
      .index__home__dice__tab__item.active, .index__home__dice__tab__item:hover {
        background: #fff; }
  .index__home__dice__stats {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    margin-top: 20px;
    padding: 0.4em;
    text-align: center;
    text-transform: uppercase;
    color: rgba(24, 31, 61, 0.4);
    border-radius: 3px;
    background: #e9eaef; }
    @media (max-width: 768px) {
      .index__home__dice__stats {
        margin-top: 11px;
        padding: 5px; } }
    .index__home__dice__stats > div {
      width: 33.3333%; }
    .index__home__dice__stats p {
      font-size: 12px;
      text-transform: uppercase;
      color: rgba(71, 76, 108, 0.6); }
    .index__home__dice__stats .state {
      font-size: 20px;
      margin-right: 8px;
      font-weight: 600;
      color: #474c64; }
    .index__home__dice__stats span::selection {
      background: none; }
  .index__home__dice__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    width: 100%;
    padding: 1.5em 2em 1.5em; }
    @media (max-width: 768px) {
      .index__home__dice__wrap {
        padding: 7px 13px 13px; } }
    .index__home__dice__wrap__cta {
      font-size: 18px;
      text-align: center;
      align-self: center;
      position: relative;
      display: flex;
      margin-top: 20px;
      padding: 25px 70px; }
      @media (max-width: 768px) {
        .index__home__dice__wrap__cta {
          margin-top: 10px; } }
      .index__home__dice__wrap__cta::selection {
        background: none; }
      .index__home__dice__wrap__cta span {
        font-weight: 700;
        white-space: nowrap;
        letter-spacing: 1.12px;
        transform: scale(1); }
      .index__home__dice__wrap__cta img::selection {
        background: none; }
      .index__home__dice__wrap__cta img, .index__home__dice__wrap__cta__roll-label {
        position: absolute;
        transform: scale(0.6);
        will-change: opacity, transform;
        position: absolute;
        top: 50%;
        left: 50%;
        transition: all 0.3s;
        will-change: opacity, transform;
        opacity: 0; }
      .index__home__dice__wrap__cta.is-rolling {
        background: #6a89c3 !important;
        box-shadow: inset 0 0 0 0 transparent; }
        .index__home__dice__wrap__cta.is-rolling span {
          transform: scale(0.6);
          opacity: 0; }
        .index__home__dice__wrap__cta.is-rolling img,
        .index__home__dice__wrap__cta.is-rolling .index__home__dice__wrap__cta__roll-label {
          transform: translate(-50%, -50%) scale(1);
          opacity: 1; }
      .index__home__dice__wrap__cta:hover {
        background: #f2f2f2; }
    .index__home__dice__wrap__option {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      max-width: 100%; }
      @media (max-width: 768px) {
        .index__home__dice__wrap__option {
          margin-left: 0 !important; } }
      .index__home__dice__wrap__option__profit {
        box-shadow: inset 0 0 0 3px #e9eaf0;
        color: #181f3d;
        text-align: center;
        display: flex;
        align-items: center;
        border-radius: 3px;
        font-size: 18px;
        font-weight: 600;
        flex-grow: 1;
        justify-content: center;
        position: relative; }
      @media (max-width: 768px) {
        .index__home__dice__wrap__option .index__home__dice__wrap__option__profit {
          font-size: 15px !important; } }
      .index__home__dice__wrap__option__rolls {
        font-weight: 600;
        position: relative;
        display: flex;
        flex-grow: 1;
        color: #474c6c; }
        .index__home__dice__wrap__option__rolls span {
          white-space: nowrap; }
        .index__home__dice__wrap__option__rolls input::-webkit-outer-spin-button,
        .index__home__dice__wrap__option__rolls input::-webkit-inner-spin-button {
          margin: 0 11px 0 0;
          -webkit-appearance: none; }
        .index__home__dice__wrap__option__rolls input {
          font-weight: 600;
          box-shadow: inset 0 0 0 3px #e9eaf0;
          color: #181f3d; }
          @media (max-width: 768px) {
            .index__home__dice__wrap__option__rolls input {
              font-size: 15px !important; } }
        .index__home__dice__wrap__option__rolls span {
          font-size: 18px;
          position: absolute;
          top: calc(50% - 1px);
          left: calc(50% + 3px);
          transition: 0.3s;
          transform: translate(2px, -50%);
          pointer-events: none; }
          .index__home__dice__wrap__option__rolls span.is-hidden {
            transform: translate(6px, -50%);
            opacity: 0; }
          @media (max-width: 768px) {
            .index__home__dice__wrap__option__rolls span {
              font-size: 12px; } }

.index__home__header {
  position: absolute;
  z-index: 1000;
  top: 70px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  transition: width 0.2s;
  will-change: width, position;
  color: #fff;
  background: #7185ad; }
  @media (max-width: 992px) {
    .index__home__header {
      width: 100% !important; } }
  .index__home__header.is-fixed {
    position: fixed;
    top: 0; }
  .index__home__header.is-shown .index__home__header__chat {
    display: block; }
  .index__home__header .balance {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    flex-grow: 1; }
    .index__home__header .balance--btc {
      color: #fff; }
  .index__home__header__chat {
    position: absolute;
    top: 50%;
    left: 0;
    width: 27px;
    height: 20px;
    margin-right: 36px;
    cursor: pointer;
    will-change: display;
    transform: translate(0, -50%);
    border-radius: 3px 3px 3px 0;
    background: #fff; }
    .index__home__header__chat:before {
      top: 100%;
      left: 0;
      width: 0;
      height: 0;
      content: '';
      border-top: 6px solid #fff;
      border-right: 6px solid transparent;
      border-left: 0 solid transparent; }
    .index__home__header__chat::after, .index__home__header__chat:before {
      position: absolute; }
    .index__home__header__chat.is-hidden {
      pointer-events: none;
      opacity: 0; }
    .index__home__header__chat::after {
      font-size: 11px;
      top: 0;
      right: 0;
      padding: 3px 6px;
      content: attr(data-count);
      transition: all 0.3s;
      will-change: transform, opacity;
      transform: translate(75%, -50%) scale(0.7);
      opacity: 0;
      color: #fff;
      border-radius: 3px;
      background: #f10260; }
  .index__home__header__balance {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin-right: 8px;
    white-space: nowrap;
    text-transform: uppercase; }
    @media (max-width: 768px) {
      .index__home__header__balance {
        margin-left: 0 !important;
        margin-right: 0; }
        .index__home__header__balance span {
          margin-right: 0;
          font-size: 13px !important; } }
    .index__home__header__balance--label {
      margin-right: 3px; }
      @media (max-width: 437px) {
        .index__home__header__balance--label {
          display: none; } }
    .index__home__header__balance__btc {
      font-size: 18px;
      display: flex;
      position: relative; }
      .index__home__header__balance__btc__change {
        position: absolute;
        left: 0;
        transform: translateY(0);
        white-space: nowrap;
        pointer-events: none;
        opacity: 1; }
        .index__home__header__balance__btc__change.is-sliding {
          transition: all 2s 0.03s;
          transform: translateY(50px);
          opacity: 0; }
        .index__home__header__balance__btc__change.is-positive {
          color: #05ca41; }
        .index__home__header__balance__btc__change.is-negative {
          color: #ff5c7d; }
        .index__home__header__balance__btc__change.is-hidden {
          opacity: 0; }
  .index__home__header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media (max-width: 992px) {
      .index__home__header__actions {
        flex-grow: 1; } }
    .index__home__header__actions button {
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      justify-content: center;
      margin-right: 14px;
      padding: 10px 30px;
      transition: all 0.3s;
      text-transform: uppercase;
      color: #343850;
      border-radius: 3px;
      background: #06e349;
      box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2); }
      @media (max-width: 992px) {
        .index__home__header__actions button {
          padding: 10px 0;
          max-width: 100px;
          flex-grow: 1; } }
      @media (max-width: 768px) {
        .index__home__header__actions button {
          padding: 9px 0;
          font-size: 12px; }
          .index__home__header__actions button.withdraw {
            margin-right: 0 !important; } }
      .index__home__header__actions button:hover {
        background: #049831; }
      .index__home__header__actions button:last-child {
        margin-right: 0; }

@keyframes scaleInBounce {
  0% {
    transform: translateY(-50%) scale(0.7); }
  50% {
    transform: translateY(-50%) scale(1.15); }
  100% {
    transform: translateY(-50%) scale(1); } }

@keyframes enLarge {
  50% {
    transform: scale(1.2); }
  100% {
    transform: scale(1); } }

.reverse-rollover {
  background: #fff; }

.jackpot {
  background: #fff;
  padding-bottom: 80px;
  text-align: center; }
  .jackpot__title-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px; }
  .jackpot__title {
    max-width: 160px;
    height: 30px; }
  .jackpot__btn {
    background: #ff7591;
    border-radius: 2px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    height: 30px;
    left: 100%;
    line-height: 30px;
    margin-left: 10px;
    padding: 0 10px;
    text-align: center;
    width: 30px; }

.footer {
  padding: 75px 0;
  color: #fff;
  background: #f2f4f8;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }
  @media (max-width: 768px) {
    .footer {
      padding: 30px 0; } }
  .footer > .container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 768px) {
      .footer > .container {
        flex-direction: column; }
        .footer > .container .footer__copy {
          margin: 15px 0; }
        .footer > .container .justify-center {
          justify-content: center !important; } }
  .footer .btn, .footer .chat__footer__menu__buttons button, .chat__footer__menu__buttons .footer button, .footer .account .btn__logout, .account .footer .btn__logout, .footer .faq .btn__logout, .faq .footer .btn__logout, .footer .hall .btn__logout, .hall .footer .btn__logout {
    margin-bottom: 26px;
    padding: 14px 55px 16px;
    background: #4d5e80; }
    .footer .btn:hover, .footer .chat__footer__menu__buttons button:hover, .chat__footer__menu__buttons .footer button:hover, .footer .account .btn__logout:hover, .account .footer .btn__logout:hover, .footer .faq .btn__logout:hover, .faq .footer .btn__logout:hover, .footer .hall .btn__logout:hover, .hall .footer .btn__logout:hover {
      background: #6075a0; }
  .footer ul {
    display: flex; }
    .footer ul li {
      font-size: 14px;
      font-weight: 300;
      display: flex;
      align-items: center;
      padding: 5px; }
  .footer li a:hover {
    text-decoration: underline; }
  .footer__copy {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4); }
    .footer__copy img {
      height: 28px;
      margin-bottom: 15px; }
  .footer__socials {
    padding: 20px 0; }
    .footer__socials a {
      display: flex;
      align-items: center;
      padding: 5px 16px; }
    .footer__socials li {
      padding: 0 !important; }
    .footer__socials span {
      margin-left: 10px; }

.dice__control {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1; }
  .dice__control__bet-amount {
    margin-right: 20px; }
    @media (max-width: 768px) {
      .dice__control__bet-amount {
        margin-right: 10px; } }
  @media (max-width: 768px) {
    .dice__control--automated {
      margin: 0 !important; } }
  .dice__control__switch {
    display: flex; }
    .dice__control__switch button {
      text-transform: none !important;
      border: 1px solid rgba(212, 213, 227, 0); }
      @media (max-width: 768px) {
        .dice__control__switch button {
          padding: 9px 0 !important; } }
      .dice__control__switch button.off {
        box-sizing: border-box !important;
        color: #474c6c;
        border: 1px solid #d4d5e3;
        box-shadow: none;
        background: none; }
        .dice__control__switch button.off:hover {
          background: none; }
      .dice__control__switch button.on {
        border-color: rgba(212, 213, 227, 0);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important; }
    .dice__control__switch input[type='number'] {
      -moz-appearance: textfield; }
    .dice__control__switch input::-webkit-outer-spin-button,
    .dice__control__switch input::-webkit-inner-spin-button {
      -webkit-appearance: none; }
  .dice__control__label {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    margin: 7px 0;
    text-transform: uppercase;
    color: rgba(52, 56, 80, 0.6); }
  .dice__control__content {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 3px; }
    .dice__control__content__betsize-input {
      position: relative;
      display: flex;
      overflow: hidden;
      width: 50%; }
      .dice__control__content__betsize-input input {
        font-weight: 600;
        width: 100%;
        padding: 0 5px 0 0 !important;
        transition: color 0.3s;
        text-align: center; }
        @media (max-width: 768px) {
          .dice__control__content__betsize-input input {
            font-size: 15px !important;
            padding: 0 !important; } }
        .dice__control__content__betsize-input input[disabled] {
          color: rgba(88, 96, 126, 0.4); }
  .dice__control input {
    font-size: 14px;
    font-size: 18px;
    padding: 0 0 0 20px;
    color: #181f3d;
    background: #fff;
    box-shadow: inset 0 0 0 3px #e9eaf0;
    flex-grow: 1; }

.account, .faq, .hall {
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #343850;
  background: #fff; }
  .account .index__home__header__chat, .faq .index__home__header__chat, .hall .index__home__header__chat {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, calc(-50% - 5px)); }
  .account__explanation-image {
    margin-top: 60px; }
  .account__dropdown {
    margin-top: 15px; }
    .account__dropdown button {
      font-weight: 600; }
    .account__dropdown::after {
      border-top: 6px solid #fff;
      border-right: 6px solid transparent;
      border-left: 6px solid transparent; }
    .account__dropdown button,
    .account__dropdown li {
      background: #b0bfdc !important;
      color: #fff !important;
      font-size: 18px;
      text-transform: uppercase; }
    .account__dropdown li {
      border-bottom-color: #b0bfdc; }
  .account__footer {
    position: relative;
    padding: 50px 0;
    background: #f7f7fa;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .account__footer:after, .account__footer:before {
      position: absolute;
      top: 0;
      width: 100vw;
      height: 100%;
      content: '';
      background: #f7f7fa; }
    .account__footer:after {
      left: 100%; }
    .account__footer:before {
      right: 100%; }
  .account hr, .faq hr, .hall hr {
    width: 100%;
    height: 1px;
    margin: 70px 0;
    border: none;
    background: #d4d5e3; }
  .account__close {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: all 0.3s;
    transform: translate(0, -50%);
    opacity: 0.5; }
    .account__close:hover {
      transform: translate(0, -50%);
      opacity: 1; }
  .account__nav, .faq__nav, .hall__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 60px;
    padding: 24px 0 16px;
    color: #fff;
    background: linear-gradient(#4a5aa4, #37478b); }
    .account__nav h4, .faq__nav h4, .hall__nav h4 {
      font-size: 20px; }
    .account__nav__list {
      font-size: 13px;
      display: flex;
      margin-top: 34px;
      text-transform: uppercase; }
      .account__nav__list a {
        font-weight: 600;
        padding: 3px 7px;
        transition: opacity 0.3s;
        opacity: 0.5; }
        .account__nav__list a:hover {
          opacity: 1; }
      .account__nav__list li {
        margin-right: 20px; }
        .account__nav__list li:last-child {
          margin-right: 0; }
  .account h5, .faq h5, .hall h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 25px 0 16px;
    text-align: center;
    text-transform: uppercase; }
  .account .btn, .faq .btn, .hall .btn, .account .chat__footer__menu__buttons button, .chat__footer__menu__buttons .account button, .faq .chat__footer__menu__buttons button, .chat__footer__menu__buttons .faq button, .hall .chat__footer__menu__buttons button, .chat__footer__menu__buttons .hall button, .account .btn__logout, .faq .btn__logout, .hall .btn__logout {
    width: 100%;
    padding: 16px 0; }
  .account input, .faq input, .hall input {
    font-size: 13px; }
  .account .btn__logout, .faq .btn__logout, .hall .btn__logout {
    transition: background 0.3s;
    color: #4d5e80;
    background: #e2e6ef; }
    .account .btn__logout:hover, .faq .btn__logout:hover, .hall .btn__logout:hover {
      background: #d2d8e6; }
  .account .account__settings, .faq .account__settings, .hall .account__settings, .account .account__security, .faq .account__security, .hall .account__security, .account .account__statistics, .faq .account__statistics, .hall .account__statistics, .account .account__achievements, .faq .account__achievements, .hall .account__achievements, .account .account__affiliate, .faq .account__affiliate, .hall .account__affiliate, .account .account__transactions, .faq .account__transactions, .hall .account__transactions {
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media (max-width: 768px) {
      .account .account__settings, .faq .account__settings, .hall .account__settings, .account .account__security, .faq .account__security, .hall .account__security, .account .account__statistics, .faq .account__statistics, .hall .account__statistics, .account .account__achievements, .faq .account__achievements, .hall .account__achievements, .account .account__affiliate, .faq .account__affiliate, .hall .account__affiliate, .account .account__transactions, .faq .account__transactions, .hall .account__transactions {
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important; } }
    .account .account__settings form, .faq .account__settings form, .hall .account__settings form, .account .account__security form, .faq .account__security form, .hall .account__security form, .account .account__statistics form, .faq .account__statistics form, .hall .account__statistics form, .account .account__achievements form, .faq .account__achievements form, .hall .account__achievements form, .account .account__affiliate form, .faq .account__affiliate form, .hall .account__affiliate form, .account .account__transactions form, .faq .account__transactions form, .hall .account__transactions form {
      width: 100%; }
  .account__settings {
    width: 300px;
    padding-bottom: 70px; }
  .account__security {
    font-size: 13px;
    width: 330px;
    padding-bottom: 70px; }
    .account__security__strong {
      font-size: 14px;
      font-weight: 600;
      margin: 5px; }
  .account-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    opacity: 0.6; }
    .account-label__soft {
      font-size: 13px;
      margin-bottom: 5px;
      text-align: center;
      color: rgba(60, 60, 60, 0.5); }
  .account__statistics {
    width: 640px; }
    .account__statistics h5 {
      margin-bottom: 35px; }
    .account__statistics__wrap {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding: 50px;
      border-radius: 3px;
      background: #f2f4f8; }
      @media (max-width: 768px) {
        .account__statistics__wrap {
          padding: 15px; } }
    .account__statistics__stat {
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding: 30px 0; }
      @media (max-width: 768px) {
        .account__statistics__stat {
          flex-direction: column;
          padding: 10px 0; } }
      .account__statistics__stat img {
        margin-left: 0.3em; }
    .account__statistics__item {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      text-align: center; }
      @media (max-width: 768px) {
        .account__statistics__item {
          width: 100% !important;
          margin-bottom: 20px; }
          .account__statistics__item.has-break::after {
            display: none; }
          .account__statistics__item:last-child {
            margin-bottom: 0; } }
      .account__statistics__item span {
        font-size: 20px;
        font-weight: 600; }
      .account__statistics__item.has-break::after {
        position: absolute;
        top: 10%;
        left: 100%;
        width: 1px;
        height: 80%;
        content: '';
        background: #d8d8d8; }
    .account__statistics__session {
      position: relative;
      width: 100%;
      margin-top: 40px;
      padding-bottom: 70px; }
      .account__statistics__session__reset {
        cursor: pointer; }
        .account__statistics__session__reset:hover span {
          color: #739bde; }
        .account__statistics__session__reset:hover svg {
          transform: rotate(360deg); }
        .account__statistics__session__reset span,
        .account__statistics__session__reset svg {
          transition: all 0.3s; }
        .account__statistics__session__reset span {
          color: #90b0e5; }
        .account__statistics__session__reset svg {
          transform-origin: 50% calc(50% + 0.5px); }
      .account__statistics__session::after {
        position: absolute;
        top: 0;
        left: 15%;
        display: flex;
        width: 70%;
        height: 1px;
        content: '';
        background: #d8d8d8; }
  .account__achievements {
    width: 600px;
    padding-top: 40px;
    padding-bottom: 70px; }
    .account__achievements__wrap {
      display: flex;
      width: 100%;
      flex-wrap: wrap; }
      @media (max-width: 768px) {
        .account__achievements__wrap {
          padding-left: 15px !important;
          padding-right: 15px !important;
          flex-direction: column; } }
    .account__achievements__progress-bar {
      background: #e1e1e4;
      border-radius: 3px;
      height: 6px;
      margin-top: 10px;
      position: relative; }
      .account__achievements__progress-bar__progress {
        background: #06e349;
        border-radius: 3px;
        bottom: 0;
        left: 0;
        position: absolute;
        top: 0;
        transition: width 1s ease-out; }
      .account__achievements__progress-bar__indicator {
        align-items: center;
        background: #06e349;
        border-radius: 50%;
        color: #fff;
        display: flex;
        font-size: 8px;
        height: 22px;
        justify-content: center;
        line-height: 1;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: left 1s ease-out;
        width: 22px; }
    .account__achievements__level {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-bottom: 35px;
      padding: 15px 0;
      transition: background 0.3s;
      text-align: center;
      border: 1px solid #d4d5e3;
      border-radius: 3px;
      background: rgba(212, 213, 227, 0); }
      .account__achievements__level:hover {
        background: rgba(212, 213, 227, 0.1); }
      .account__achievements__level__count {
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 8px; }
    .account__achievements__achive {
      display: flex;
      flex-direction: column;
      width: 50%;
      margin-top: 40px; }
      @media (max-width: 768px) {
        .account__achievements__achive {
          width: 100%; }
          .account__achievements__achive .account-label {
            text-align: center; } }
      .account__achievements__achive__item {
        align-items: center;
        display: flex;
        margin-top: 10px;
        min-height: 60px;
        text-align: left; }
        .account__achievements__achive__item__box {
          font-size: 12px;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          margin-right: 30px;
          flex-shrink: 0;
          transition: all 0.3s;
          color: #06e349;
          border: 2px solid #06e349;
          border-radius: 3px; }
          .account__achievements__achive__item__box:hover {
            color: #fff;
            background: #06e349; }
          .account__achievements__achive__item__box svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, calc(-50% + 1px));
            opacity: 0; }
          .account__achievements__achive__item__box.is-complete {
            color: rgba(6, 227, 73, 0);
            background: #06e349; }
            .account__achievements__achive__item__box.is-complete svg {
              opacity: 1; }
          .account__achievements__achive__item__box.is--zero {
            filter: grayscale(1); }
          .account__achievements__achive__item__box.no--border {
            border: 2px solid transparent;
            background: none; }
        .account__achievements__achive__item__icon {
          left: 50%;
          position: absolute;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 100%; }
        .account__achievements__achive__item__info {
          font-size: 13px;
          display: flex;
          flex-direction: column;
          text-align: left;
          width: 100%;
          padding-right: 30px; }
        .account__achievements__achive__item__copy {
          width: 100%;
          display: flex;
          justify-content: space-between;
          align-items: center; }
        .account__achievements__achive__item__description {
          margin-left: 20px;
          text-align: right; }
  .account__affiliate {
    font-size: 13px;
    width: 670px;
    padding-bottom: 70px; }
    .account__affiliate__info {
      display: flex;
      flex-direction: column;
      align-self: center; }
      .account__affiliate__info p {
        line-height: 1.5em;
        margin-bottom: 26px; }
    .account__affiliate a {
      font-weight: 600; }
    .account__affiliate__dashboard {
      display: flex;
      flex-direction: column; }
      .account__affiliate__dashboard__new-campaign {
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 100px;
        padding: 40px;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        border: 1px solid #d4d5e3;
        border-radius: 3px;
        background: rgba(212, 213, 227, 0);
        box-shadow: 0 0px 0px rgba(212, 213, 227, 0); }
        .account__affiliate__dashboard__new-campaign:hover {
          background: rgba(212, 213, 227, 0.15);
          box-shadow: 0 2px 4px rgba(212, 213, 227, 0.35); }
      .account__affiliate__dashboard__campaign-list {
        display: flex;
        flex-direction: column; }
        .account__affiliate__dashboard__campaign-list h4 {
          font-weight: 700;
          text-align: center;
          text-transform: uppercase; }
        .account__affiliate__dashboard__campaign-list__campaign {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-top: 80px; }
          @media (max-width: 768px) {
            .account__affiliate__dashboard__campaign-list__campaign {
              margin-top: 40px; } }
          .account__affiliate__dashboard__campaign-list__campaign .account__statistics__item {
            font-size: 14px; }
            .account__affiliate__dashboard__campaign-list__campaign .account__statistics__item strong {
              font-size: 13px; }
            .account__affiliate__dashboard__campaign-list__campaign .account__statistics__item span {
              font-size: 14px; }
    .account__affiliate__statistics {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding-bottom: 70px; }
      .account__affiliate__statistics h3 {
        text-align: center;
        margin-bottom: 30px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px; }
    .account__affiliate .btn__green {
      font-size: 13px;
      width: auto;
      padding: 15px 30px 17px;
      align-self: flex-end; }
    .account__affiliate__nav {
      position: relative;
      z-index: 2;
      display: flex;
      width: 100%;
      margin: 60px 0; }
      .account__affiliate__nav:after {
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: '';
        background: #d4d5e3; }
      .account__affiliate__nav li {
        position: relative;
        z-index: 2;
        display: flex;
        flex-grow: 1;
        margin-right: 10px; }
        .account__affiliate__nav li:last-child {
          margin-right: 0; }
      .account__affiliate__nav a {
        font-size: 13px;
        position: relative;
        flex-grow: 1;
        padding: 13px 0;
        transition: all 0.3s;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: rgba(52, 56, 80, 0.5);
        border: 1px solid rgba(212, 213, 227, 0);
        border-bottom: none;
        border-radius: 4px 4px 0 0; }
        .account__affiliate__nav a:hover, .account__affiliate__nav a.active {
          color: #343850;
          border-color: #d4d5e3;
          border-bottom: none;
          background: rgba(255, 255, 255, 0);
          background: #fff; }
        .account__affiliate__nav a.active {
          background: #fff; }
    .account__affiliate__link {
      font-size: 14px;
      margin-top: 10px;
      padding: 16px 25px;
      cursor: pointer;
      text-align: center;
      text-decoration: underline;
      border: 1px solid #d4d5e3;
      border-radius: 3px; }
  .account__transactions {
    width: 640px; }
    @media (max-width: 768px) {
      .account__transactions > div {
        width: 100%;
        max-width: 450px; } }
    .account__transactions__user {
      cursor: pointer; }
      .account__transactions__user:hover {
        text-decoration: underline; }
    .account__transactions__empty {
      font-size: 13px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 300px;
      margin: 12px 0 20px;
      padding: 40px 20px 30px;
      text-align: center;
      border-radius: 3px;
      background: #f7f7fa; }
      .account__transactions__empty strong {
        margin-bottom: 6px; }
      .account__transactions__empty img {
        margin-bottom: 30px; }
      .account__transactions__empty a {
        cursor: pointer;
        text-decoration: underline;
        color: #96c773; }
  .account__list, .hall__list {
    display: flex;
    flex-direction: column;
    width: 100%; }
    .account__list.is-even li:nth-child(even), .is-even.hall__list li:nth-child(even) {
      background: #f7f7fa !important; }
    .account__list.is-even li:nth-child(odd), .is-even.hall__list li:nth-child(odd) {
      background: none !important; }
    .account__list li, .hall__list li {
      display: flex;
      justify-content: space-between;
      padding: 18px 21px;
      border-radius: 2px; }
      .account__list li a, .hall__list li a {
        text-decoration: underline; }
      .account__list li:nth-of-type(odd), .hall__list li:nth-of-type(odd) {
        background: #f7f7fa; }
      .account__list li::first-of-type, .hall__list li::first-of-type {
        background: none; }
      .account__list li p, .hall__list li p {
        font-size: 13px;
        font-weight: 600; }
  .account__transactions {
    width: 640px;
    padding-bottom: 70px; }

.faq {
  width: 100%; }
  .faq .container {
    display: flex;
    justify-content: center; }
  .faq h5 {
    margin-top: 60px;
    margin-bottom: 20px; }
  .faq p {
    font-size: 14px;
    line-height: 1.8em;
    margin-bottom: 23px; }
  .faq a {
    font-weight: 600;
    text-decoration: underline; }
    .faq a:hover {
      text-decoration: underline; }

.hall__periods {
  display: flex;
  margin: 70px 0 25px; }
  .hall__periods a {
    display: flex;
    padding: 8px 20px;
    margin: 0 10px;
    border-radius: 3px;
    transition: background .3s; }
    .hall__periods a.active, .hall__periods a:hover {
      background: #f2f4f8; }

.hall__period {
  text-transform: uppercase; }

.hall-wrap {
  display: flex;
  flex-direction: column;
  width: 100%; }

.hall__list {
  width: 50%;
  padding: 0 10px; }
  @media (max-width: 768px) {
    .hall__list {
      width: 100%; } }
  .hall__list li:nth-child(3) {
    font-weight: 800; }
    .hall__list li:nth-child(3) .hall__list-index {
      color: #fddb31; }
  .hall__list li .has-username {
    cursor: pointer; }
    .hall__list li .has-username:hover {
      text-decoration: underline; }
  .hall__list li:nth-child(4) {
    font-weight: 700; }
    .hall__list li:nth-child(4) .hall__list-index {
      color: #c1c1c3; }
  .hall__list li:nth-child(5) {
    font-weight: 600; }
    .hall__list li:nth-child(5) .hall__list-index {
      color: #dd9d63; }

.hall__lists {
  display: flex;
  width: 100%;
  max-width: 1170px;
  padding: 0 20px;
  flex-wrap: wrap; }

.verify__code {
  padding: 10px 20px;
  white-space: pre-wrap;
  border: 1px solid #dbe0ec;
  border-radius: 3px; }

.loading-page {
  background: #576a91;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  height: 100%;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  opacity: 0;
  transform: scale(1.2);
  pointer-events: none;
  padding: 0 20px; }
  .loading-page__wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center; }
    .loading-page__wrapper__logo {
      opacity: 0;
      transform: scale(1.2);
      transition: all .6s; }
      .loading-page__wrapper__logo.loaded {
        opacity: 1;
        transform: scale(1); }
    .loading-page__wrapper__text {
      transition: all .5s;
      transform: translateY(8px);
      opacity: 0;
      font-size: 20px;
      font-weight: 600;
      margin-top: 15px; }
      .loading-page__wrapper__text.loaded {
        transform: translateY(0);
        opacity: 1; }
  .loading-page__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .7s;
    opacity: 0; }
    .loading-page__background.loaded {
      opacity: 1; }
  .loading-page.is-shown {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1); }

.not-found {
  margin-top: 70px;
  background: #343f70;
  text-align: center;
  min-height: calc(100vh - 70px);
  background: blue;
  display: flex;
  justify-content: center; }
  .not-found__wrapper {
    width: 100%;
    display: flex;
    flex-grow: 1;
    flex-direction: column; }
    .not-found__wrapper__image {
      max-width: 1089px;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%, -22.1%); }
      .not-found__wrapper__image img {
        width: 100%; }
      .not-found__wrapper__image__content {
        position: absolute;
        top: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
        left: 50%;
        width: 100%;
        transform: translateX(-50%); }
        @media (max-width: 768px) {
          .not-found__wrapper__image__content {
            top: 70%; } }
    .not-found__wrapper__top {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      width: 100%;
      position: relative;
      background: #323C52;
      height: 40%;
      position: relative;
      z-index: 2; }
    .not-found__wrapper__bottom {
      width: 100%;
      height: 60%;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #222A3C; }

@keyframes flashIn {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: .2; } }

/*# sourceMappingURL=styles.80dd067d4c005a96331a3f285aedd99f.css.map*/