﻿.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.nav-header.revealOnScroll {
  top: -64px;
  transition: top 300ms;
}
.nav-header.revealOnScroll.showup {
  top: 0px;
}
.nav-header-index {
  position: relative;
  height: 64px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.nav-header-index .container {
  max-width: 1240px;
  height: 64px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.nav-header-index .container .left {
  display: flex;
  height: 100%;
  align-items: center;
}
.nav-header-index .container .right {
  display: flex;
  height: 100%;
  align-items: center;
}
.nav-header-index .logo img {
  display: block;
  /*width: 120px;*/
  width: 200px;
}
.nav-header-index .main-menu {
  margin-left: 36px;
  display: flex;
}
.nav-header-index .main-menu .menu-item {
  transition: all ease-in-out 0.25s;
}
.nav-header-index .main-menu .menu-item .menu-item-link {
  position: relative;
  height: 64px;
  line-height: 64px;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  padding: 0 18px;
  font-size: 14px;
  color: #737373;
  white-space: nowrap;
}
.nav-header-index .btn-buy {
  font-size: 12px;
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.8px;
  height: 36px;
  line-height: 36px;
  padding: 0 28px;
  margin: 0 12px;
  border-radius: 18px;
  background-color: #f2d200;
  background-image: linear-gradient(145deg, #ffee00 0%, #ffd200 100%);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-header-index .btn-buy:hover {
  background-color: #f2c600;
}
.nav-header-index .btn-buy:active {
  background-color: #deb916;
}
.nav-header-index .nav-header-user {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-header-index .nav-header-user .user-avater {
  height: 24px;
  cursor: pointer;
}
.nav-header-index .nav-header-user .user-avater .img-avater {
  display: none;
  width: 24px;
  border-radius: 12px;
  overflow: hidden;
}
.nav-header-index .nav-header-user .user-avater .img-user {
  width: 18px;
  margin: 3px;
}
.nav-header-index .nav-header-user.loggedIn .img-avater {
  display: block;
}
.nav-header-index .nav-header-user.loggedIn .img-user {
  display: none;
}
.nav-header-index .nav-header-user:hover.loggedIn .user-nav {
  display: block;
}
.nav-header-index .nav-header-user .user-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.nav-header-index .nav-header-user .user-nav .item {
  height: 40px;
  line-height: 40px;
  padding: 0 18px;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
}
.nav-header-index .nav-header-user .user-nav .item a {
  display: block;
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.7);
}
.nav-header-index .nav-header-user .user-nav .item:hover {
  background-color: #F2F2F2;
}
.nav-sub-menu {
  position: relative;
  z-index: 1;
}
.nav-sub-menu .sub-menu {
  display: none;
}
.nav-sub-menu .sub-menu.active {
  display: block;
}
.nav-sub-menu .sub-menu-bg {
  transition: transform 0.2s ease-in-out;
  transform: scaleY(1);
}
.nav-sub-menu .sub-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 409px;
  transform: scaleY(0);
  transform-origin: top left;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.nav-sub-menu .sub-menu-bg.active {
  transform: scaleY(1);
}
.nav-sub-menu .sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  max-width: 1240px;
  margin: auto;
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item,
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item,
.nav-sub-menu .sub-menu .sub-menu-row > .type-title,
.nav-sub-menu .sub-menu .sub-menu-items > .type-title {
  transition: all 0.25s ease-in-out;
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item:nth-of-type(1),
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item:nth-of-type(1),
.nav-sub-menu .sub-menu .sub-menu-row > .type-title:nth-of-type(1),
.nav-sub-menu .sub-menu .sub-menu-items > .type-title:nth-of-type(1) {
  transition-delay: 0s;
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item:nth-of-type(2),
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item:nth-of-type(2),
.nav-sub-menu .sub-menu .sub-menu-row > .type-title:nth-of-type(2),
.nav-sub-menu .sub-menu .sub-menu-items > .type-title:nth-of-type(2) {
  transition-delay: 0.1s;
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item:nth-of-type(3),
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item:nth-of-type(3),
.nav-sub-menu .sub-menu .sub-menu-row > .type-title:nth-of-type(3),
.nav-sub-menu .sub-menu .sub-menu-items > .type-title:nth-of-type(3) {
  transition-delay: 0.2s;
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item:nth-of-type(4),
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item:nth-of-type(4),
.nav-sub-menu .sub-menu .sub-menu-row > .type-title:nth-of-type(4),
.nav-sub-menu .sub-menu .sub-menu-items > .type-title:nth-of-type(4) {
  transition-delay: 0.3s;
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item:nth-of-type(5),
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item:nth-of-type(5),
.nav-sub-menu .sub-menu .sub-menu-row > .type-title:nth-of-type(5),
.nav-sub-menu .sub-menu .sub-menu-items > .type-title:nth-of-type(5) {
  transition-delay: 0.4s;
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item:nth-of-type(6),
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item:nth-of-type(6),
.nav-sub-menu .sub-menu .sub-menu-row > .type-title:nth-of-type(6),
.nav-sub-menu .sub-menu .sub-menu-items > .type-title:nth-of-type(6) {
  transition-delay: 0.5s;
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item,
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item {
  transform: translateX(50%);
}
.nav-sub-menu .sub-menu .sub-menu-row > .sub-menu-item,
.nav-sub-menu .sub-menu .sub-menu-items > .sub-menu-item,
.nav-sub-menu .sub-menu .sub-menu-row > .type-title,
.nav-sub-menu .sub-menu .sub-menu-items > .type-title {
  opacity: 0;
}
.nav-sub-menu .sub-menu.enter .sub-menu-row > .sub-menu-item {
  transform: translateX(0);
}
.nav-sub-menu .sub-menu.enter .sub-menu-row > .sub-menu-item,
.nav-sub-menu .sub-menu.enter .sub-menu-row > .type-title {
  opacity: 1;
}
.nav-sub-menu .sub-menu-row {
  margin-left: 160px;
  padding: 16px 0;
  display: flex;
}
.nav-sub-menu .sub-menu-row:not(:first-child) {
  border-top: 1px solid #F2F2F2;
}
.nav-sub-menu .sub-menu-items {
  flex: none;
  display: flex;
}
.nav-sub-menu .sub-menu-items.enter .sub-menu-item {
  transform: translateX(0);
}
.nav-sub-menu .sub-menu-items.enter .sub-menu-item,
.nav-sub-menu .sub-menu-items.enter .type-title {
  opacity: 1;
}
.nav-sub-menu .sub-menu-item {
  flex: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 135px;
  margin: 0px 12px;
}
.nav-sub-menu .sub-menu-item .img-large {
  height: 155px;
}
.nav-sub-menu .sub-menu-item .img-medium {
  height: 135px;
}
.nav-sub-menu .sub-menu-item .img-small {
  margin: 10px 0;
  height: 80px;
}
.nav-sub-menu .sub-menu-item .text {
  position: relative;
  text-align: center;
  font-size: 14px;
  height: 34px;
  line-height: 17px;
  color: #2d2d2d;
  font-weight: 700;
}
.nav-sub-menu .accessories {
  background: url(../../static/assets/storage/20210309/1005c9bf752302a69551d431faa32ea1/Desktop_icon_accessories.svg);
}
.nav-sub-menu .accessories .text {
  width: 89px;
  height: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  line-height: 16px;
}
.nav-sub-menu .type-title {
  font-size: 14px;
  color: #2D2D2D;
  width: 120px;
  padding-left: 18px;
  height: 135px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex: none;
}
.nav-sub-menu .sub-menu-item-2 {
  padding: 0 34px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #0D0D0D;
  text-align: center;
  cursor: pointer;
  background-image: linear-gradient(-135deg, #FFD200 0%, #FBE400 100%);
  border-radius: 50px;
}
.nav-sub-menu .sub-menu-item-2:hover {
  background-image: linear-gradient(-135deg, #F7B300 0%, #FFD200 100%);
}
.nav-sub-menu .sub-menu-item-2 img {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  top: -2px;
  vertical-align: middle;
  margin-right: 8px;
}
.nav-header-page {
  background: #000;
}
.nav-header-page .product-sub-header {
  max-width: 1240px;
  margin: auto;
  height: 56px;
  padding: 0 8px;
  box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.05);
  transition: all 0.5s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-header-page .product-sub-header .logo {
  display: block;
  height: 15px;
}
.nav-header-page .product-sub-header .logo-text {
  color: #fff;
  font-size: 20px;
  padding-left: 10px;
  font-weight: 700;
}
.nav-header-page .product-sub-header ul.menu {
  display: flex;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.nav-header-page .product-sub-header ul.menu li.menu-item {
  padding-left: 20px;
  margin-left: 20px;
  white-space: nowrap;
}
.nav-header-page .product-sub-header ul.menu li.menu-item .page-link {
  display: block;
  transition: all ease-in-out 0.25s;
  line-height: 56px;
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
}
.nav-header-page .product-sub-header ul.menu li.menu-item .page-link:hover {
  opacity: 1;
}
.nav-header-page .product-sub-header ul.menu li.menu-item .btn-buy {
  display: flex;
  align-items: center;
  background: #ffd200;
  border-radius: 18px;
  margin: 10px 0;
  padding: 0 18px;
  height: 36px;
  line-height: 36px;
  font-weight: bold;
  font-size: 14px;
  color: #2d2d2d;
}
.nav-header-page .product-sub-header ul.menu li.menu-item .btn-buy img {
  height: 20px;
}
.nav-header-index.ru-ru .main-menu .menu-item .menu-item-link {
  font-size: 12px;
}
.topAdImg {
  width: 100%;
  background-image: linear-gradient(135deg, #fff, #e3e3e3);
  display: flex;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  display:none !important;
}
.main {
  transition: all 0.3s ease;
}
.nav-sub-menu .sub-menu-consumer {
  max-width: 896px;
}
.nav-sub-menu .sub-menu-consumer .sub-menu-row {
  flex-flow: row wrap;
  margin-left: 0;
}
.nav-sub-menu .sub-menu-consumer .sub-menu-row .sub-menu-item {
  width: 136px;
  height: 152px;
  margin: 0;
  margin-right: 16px;
}
.nav-sub-menu .sub-menu-consumer .sub-menu-row .sub-menu-item:nth-of-type(6) {
  margin: 0;
}
.nav-sub-menu .sub-menu-consumer .sub-menu-row .sub-menu-items > .sub-menu-item {
  transform: none;
}
.nav-sub-menu .sub-menu-consumer .sub-menu-row:nth-child(3) {
  border-top: none;
}
.nav-sub-menu .sub-menu-title {
  min-width: 140px;
  height: 56px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  color: #000000;
}
.nav-sub-menu .sub-menu-title .type-title {
  min-width: 120px;
  width: auto;
  height: 100%;
  padding: 0;
}
.nav-sub-menu .sub-menu-title .consumer-trigger {
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
}
.nav-sub-menu .sub-menu-title .consumer-trigger img {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -3px;
}
.nav-sub-menu .sub-menu-title .consumer-trigger div {
  display: none;
  cursor: pointer;
  padding-left: 8px;
}
.nav-sub-menu .sub-menu-title .consumer-trigger .consumer-trigger-active {
  display: block;
}
.nav-footer {
  border-top: 1px solid #f2f2f2;
  background: #fff;
}
.nav-footer .nav-footer-wrapper {
  max-width: 1215px;
  margin: auto;
}
.nav-footer .block-1 {
  margin: 54px 0 48px;
  display: flex;
}
.nav-footer .block-1 .column {
  width: 240px;
  margin-right: 64px;
}
.nav-footer .block-1 .column:last-child {
  width: 300px;
  margin-right: 0;
}
.nav-footer .block-1 .column .title {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 900;
  color: #191C21;
}
.nav-footer .block-1 .column .title:not(:first-of-type) {
  margin-top: 36px;
}
.nav-footer .block-1 .column .link-list a {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #7D7F82;
  text-decoration: none;
}
.nav-footer .block-1 .column .link-list a:not(:last-child) {
  margin-bottom: 18px;
}
.nav-footer .block-1 .column .qrcode img {
  margin-top: 50px;
  height: 140px;
  display: block;
}
.nav-footer .block-1 .column .input-email {
  position: relative;
  margin-top: 14px;
  display: flex;
  width: 216px;
}
.nav-footer .block-1 .column .input-email input[type="text"] {
  outline: 0;
  display: block;
  width: 100%;
  flex: auto;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  border-radius: 6px 0 0 6px;
  border: 1px solid #EDEFF2;
  border-right: 0;
  font-size: 12px;
}
.nav-footer .block-1 .column .input-email button {
  outline: 0;
  border: 0;
  position: relative;
  flex: none;
  height: 40px;
  width: 40px;
  background: #EDEFF2;
  border-radius: 0 6px 6px 0;
}
.nav-footer .block-1 .column .input-email button .img1,
.nav-footer .block-1 .column .input-email button .img2 {
  position: absolute;
  left: 50%;
  height: 12px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-footer .block-1 .column .input-email button .img2 {
  opacity: 0;
}
.nav-footer .block-1 .column .input-email button[disabled] {
  cursor: not-allowed;
}
.nav-footer .block-1 .column .input-email button.success {
  background: #1BC864;
}
.nav-footer .block-1 .column .input-email button.success .img2 {
  opacity: 1;
}
.nav-footer .block-1 .column .input-email button.success .img1 {
  opacity: 0;
}
.nav-footer .block-1 .column .input-email .result {
  position: absolute;
  bottom: -24px;
  line-height: 16px;
  height: 16px;
  font-size: 14px;
  color: #C8C9CD;
}
.nav-footer .block-1 .column .input-email .result.error {
  color: red;
}
.nav-footer .block-2 {
  padding: 24px 0 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E1E3E6;
}
.nav-footer .block-2 .text {
  font-size: 16px;
  line-height: 19px;
  color: #7D7F82;
}
.nav-footer .block-2 .icon-list {
  display: flex;
  margin: 0 -8px;
}
.nav-footer .block-2 .icon-list .icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 8px;
  cursor: pointer;
}
.nav-footer .block-2 .icon-list .icon .img-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.nav-footer .block-2 .icon-list .icon .img-wrapper img {
  position: absolute;
  left: 0;
  width: 100%;
  transition: opacity ease-in-out 0.25s;
}
.nav-footer .block-2 .icon-list .icon .img-wrapper .img-hover {
  opacity: 0;
}
.nav-footer .block-2 .icon-list .icon:hover .img-normal {
  opacity: 0;
}
.nav-footer .block-2 .icon-list .icon:hover .img-hover {
  opacity: 1;
}
.nav-footer .block-2 .icon-list .icon:hover .qrcode {
  display: block;
}
.nav-footer .block-2 .icon-list .icon .qrcode {
  display: none;
  position: absolute;
  width: 130px;
  height: 139px;
  background-image: url('../../assets/www/project/official/component/footer/combined-shape%402x.png');
  background-size: 100%;
  top: -139px;
  left: -53px;
}
.nav-footer .block-2 .icon-list .icon .qrcode img {
  border-radius: 5px;
  width: 128px;
  height: 128px;
  margin-top: 1px;
  margin-left: 1px;
}
.nav-footer .block-2 .icon-list .icon .qrcode:hover {
  display: block;
}
.nav-footer .block-4 {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-footer .block-4 .left,
.nav-footer .block-4 .right {
  font-size: 12px;
  color: #AFB1B4;
}
.nav-footer .block-4 .left a,
.nav-footer .block-4 .right a {
  color: #AFB1B4;
}
.nav-footer .block-4 .right {
  display: flex;
  align-items: center;
}
.lang-selector {
  position: relative;
  z-index: 100;
}
.lang-selector:hover .lang-list {
  display: block;
}
.lang-selector .lang-item-current {
  display: flex;
  align-items: center;
  height: 64px;
  width: 120px;
}
.lang-selector .lang-item-current .lang-flag {
  margin: 0 12px;
  width: 16px;
}
.lang-selector .lang-item-current .lang-text {
  color: #2d2d2d;
  font-size: 12px;
}
.lang-selector .lang-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  padding: 8px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 120px;
}
.lang-selector .lang-list .lang-item {
  display: flex;
  align-items: center;
  height: 40px;
}
.lang-selector .lang-list .lang-item:hover {
  background: #F2F2F2;
}
.lang-selector .lang-list .lang-item .lang-flag {
  margin: 0 12px;
  width: 16px;
}
.lang-selector .lang-list .lang-item .lang-text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
}
.lang-selector.reverse .lang-list {
  top: auto;
  bottom: 100%;
}
.modal-buylink {
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
}
.modal-buylink p {
  margin: 0;
}
.modal-buylink .link {
  display: flex;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.modal-buylink .link:last-of-type {
  border-bottom: 0;
}
.modal-buylink .link .icon {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
.modal-buylink .link .text {
  color: rgba(0, 0, 0, 0.6);
  font-weight: bold;
  font-size: 12px;
  line-height: 25px;
}
.modal-buylink .link:hover .text {
  color: #ffd200;
}
.popup-player {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
.popup-player .popup-player-ct {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-player .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
}
.popup-player .video-fr {
  width: 960px;
  height: 540px;
  position: relative;
}
.popup-player .video-fr .zhezhao {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 24px;
}
.popup-player .no-youtube {
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-player .no-youtube p {
  color: #fff;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Roboto Light'), local('Roboto-Light'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmSU5fCRc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmSU5fABc4AMP6lbBP.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmSU5fCBc4AMP6lbBP.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmSU5fBxc4AMP6lbBP.woff2) format('woff2');
    unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmSU5fCxc4AMP6lbBP.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmSU5fChc4AMP6lbBP.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Roboto Light'), local('Roboto-Light'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmSU5fBBc4AMP6lQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmYUtfCRc4EsA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmYUtfABc4EsA.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmYUtfCBc4EsA.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmYUtfBxc4EsA.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmYUtfCxc4EsA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmYUtfChc4EsA.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'), url(../../assets/www/common/fonts/roboto/v20/slices/KFOlCnqEu92Fr1MmYUtfBBc4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local('Gilroy Thin'), local('Gilroy-Thin'), url(../../assets/www/common/fonts/gilroy/gilroy-thin.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: local('Gilroy Thin Italic'), local('Gilroy-Thin-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-thinitalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: local('Gilroy Ultralight'), local('Gilroy-Ultralight'), url(../../assets/www/common/fonts/gilroy/gilroy-ultralight.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: local('Gilroy Ultralight Italic'), local('Gilroy-Ultralight-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-ultralightitalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Gilroy Light'), local('Gilroy-Light'), url(../../assets/www/common/fonts/gilroy/gilroy-light.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Gilroy Light Italic'), local('Gilroy-Light-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-lightitalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Gilroy Regular'), local('Gilroy-Regular'), url(../../assets/www/common/fonts/gilroy/gilroy-regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Gilroy Regular Italic'), local('Gilroy-Regular-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-regularitalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Gilroy Medium'), local('Gilroy-Medium'), url(../../assets/www/common/fonts/gilroy/gilroy-medium.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: local('Gilroy Medium Italic'), local('Gilroy-Medium-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-mediumitalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Gilroy Semibold'), local('Gilroy-Semibold'), url(../../assets/www/common/fonts/gilroy/gilroy-semibold.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Gilroy Semibold Italic'), local('Gilroy-Semibold-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-semibolditalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Gilroy Bold'), local('Gilroy-Bold'), url(../../assets/www/common/fonts/gilroy/gilroy-bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Gilroy Bold Italic'), local('Gilroy-Bold-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-bolditalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'), url(../../assets/www/common/fonts/gilroy/gilroy-extrabold.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Gilroy Extrabold Italic'), local('Gilroy-Extrabold-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-extrabolditalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local('Gilroy Black'), local('Gilroy-Black'), url(../../assets/www/common/fonts/gilroy/gilroy-black.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: local('Gilroy Black Italic'), local('Gilroy-Black-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-blackitalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy Heavy';
  font-style: normal;
  font-display: swap;
  src: local('Gilroy Heavy'), local('Gilroy-Heavy'), url(../../assets/www/common/fonts/gilroy/gilroy-heavy.woff2) format('woff2');
}
@font-face {
  font-family: 'Gilroy Heavy';
  font-style: italic;
  font-display: swap;
  src: local('Gilroy Heavy Italic'), local('Gilroy-Heavy-Italic'), url(../../assets/www/common/fonts/gilroy/gilroy-heavyitalic.woff2) format('woff2');
}
@font-face {
  font-family: 'OSP-DIN';
  font-display: swap;
  src: url('../../assets/www/common/fonts/osp-din/OSP-DIN.eot');
  /* IE9 Compat Modes */
  src: url('../../assets/www/common/fonts/osp-din/OSP-DIN-1.eot') format('embedded-opentype'), /* IE6-IE8 */ url('../../assets/www/common/fonts/osp-din/OSP-DIN.woff') format('woff'), /* Pretty Modern Browsers */ url('../../assets/www/common/fonts/osp-din/OSP-DIN.ttf') format('truetype'), /* Safari, Android, iOS */ url('../../assets/www/common/fonts/osp-din/OSP-DIN.svg') format('svg');
  /* Legacy iOS */
}
*,
:after,
:before {
  box-sizing: border-box;
}
html,
body {
  font-family: "Roboto", "BlinkMacSystemFont", "Segoe UI", "Helvetica Neue", Helvetica, Arial, "Noto Sans CJK SC", "PingFang SC", "-apple-system", "Hiragino Sans GB", "Noto Sans", "Microsoft YaHei", "微软雅黑", "WenQuanYi Micro Hei", "Heiti SC", sans-serif;
}
body {
  margin: 0;
}
a {
  text-decoration: none;
}
button {
  font-family: "Roboto", "BlinkMacSystemFont", "Segoe UI", "Helvetica Neue", Helvetica, Arial, "Noto Sans CJK SC", "PingFang SC", "-apple-system", "Hiragino Sans GB", "Noto Sans", "Microsoft YaHei", "微软雅黑", "WenQuanYi Micro Hei", "Heiti SC", sans-serif;
  cursor: pointer;
}
input {
  font-family: "Roboto", "BlinkMacSystemFont", "Segoe UI", "Helvetica Neue", Helvetica, Arial, "Noto Sans CJK SC", "PingFang SC", "-apple-system", "Hiragino Sans GB", "Noto Sans", "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", "WenQuanYi Micro Hei", "Heiti SC", sans-serif;
}
img:not([src]) {
  opacity: 0;
}
#root {
  margin-top: 64px;
  min-height: 400px;
  overflow: hidden;
}

