* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  font-family: sans-serif;
  width: 100%;
  min-width: 320px;
  height: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #373737;
  font: 300 18px / 24px 'Mont Blanc', 'Roboto', Helvetica, Arial, sans-serif;
  text-size-adjust: 100%;
}

.header {}

.header__line {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 48px;
  font-weight: 500;
}
@media screen and (max-width: 567px) {
  .header__line {
    height: 64px;
  }
}

.header__logo {
  flex-shrink: 0;
  padding: 14px 16px;
}
@media screen and (max-width: 567px) {
  .header__logo {
    padding: 20px;
  }
}

.header__logo img {
  display: block;
}

.header__homepage {
  padding: 14px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}
.header__homepage-icon {
  display: inline-block;
  width: 18px;
  height: 20px;
  vertical-align: top;
}

@media screen and (max-width: 900px) {
  .header__homepage-text {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .header__homepage {
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .header--mt5 .header__homepage {
    display: none;
  }
}

.header__caption {
  flex-grow: 1;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
}
@media screen and (max-width: 750px) {
  .header__caption-text {
    display: none;
  }
}

.header__buttons {
  flex-shrink: 0;
  padding: 8px 16px;
}
@media screen and (max-width: 567px) {
  .header__buttons {
    padding: 0;
  }  
}

.btn {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  outline: none;
}

.btn.btn--money {
  position: relative;
  margin-right: 16px;
  padding-left: 30px;
}
.btn--money::before {
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  left: 8px;
  display: block;
  width: 16px;
  height: 16px;
}

.header__btn {
  margin-right: 8px;
}
.header__btn:last-child {margin-right: 0;}

@media screen and (max-width: 500px) {
  .header__btn {
    display: none;
  }
}

@media screen and (max-width: 567px) {
  .header--mt5 .header__btn {
    display: none;
  }

  .header--mt5 .header__btn--deposit {
    display: inline-block;
    margin: 0;
    padding: 6px 16px;
  }

  .header--nav-opened.header--mt5 .header__btn--deposit {
    display: none;
  }

  .header--mt5 .header__btn--deposit:before {
    display: none;
  }
}

.header__trigger {
  position: relative;
  display: none;
  width: 53px; /* 15px + 18px + 20px */
  height: 100%;
}
@media screen and (max-width: 567px) {
  .header__trigger {
    display: block;
    background: none;
    border: none;
  }
}
.header__trigger span {
  position: absolute;
  top: calc(50% - 6px);
  left: 15px;
  display: block;
  width: 18px;
  height: 12px;
}
.header__trigger i {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  transition: all 0.25s ease;
}
.header__trigger i:first-child {top: 0;}
.header__trigger i:nth-child(2) {top: calc(50% - 1px);}
.header__trigger i:last-child {bottom: 0;}

.header--nav-opened .header__trigger i:first-child {
  top: 5px;
  transform: rotate(45deg);
}
.header--nav-opened .header__trigger i:nth-child(2) {opacity: 0;}
.header--nav-opened .header__trigger i:last-child {
  bottom: 5px;
  transform: rotate(-45deg);
}

.header__navigation {
  position: fixed;
  top: 64px;
  left: -100%;
  width: 100vw;
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: stretch;
  padding: 20px;
  font-weight: 500;
  transition: left 0.25s ease;
}
@media screen and (max-width: 567px) {
  .header--nav-opened .header__navigation {
    left: 0;
  }
}

.header__nav-btn {
  text-align: center;
  margin-bottom: 12px;
}

.header__nav-homepage {
  display: block;
  padding: 19px 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
}

.header__nav-homepage::before {
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.overlay {
  display: none;
}
@media screen and (max-width: 567px) {
  .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    padding: 20px;
    font-weight: 500;
  }
}

.overlay__caption {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.overlay__caption-text {
  text-align: center;
}

.overlay__buttons {
  text-align: center;
}

.overlay__buttons-text {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
}

.overlay__btn {
  width: 100%;
  padding: 12px;
  margin-bottom: 8px;
}

.btn--ios,
.btn--android {
  display: none;
}

.overlay--ios .btn--ios,
.overlay--android .btn--android {
  display: block;
}

.overlay__btn:last-of-type {
  margin-bottom: 0;
}

#chat-24-widget-container {
  font: 13px / 1.385 Helvetica,Arial,sans-serif;
}