@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Убираем внутренние отступы */
ul[class],
ol[class],
ul,
ol,
li {
  padding: 0;
  margin: 0;
}
/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class],
li {
  list-style: none;
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
}
button,
[role=button] {
  cursor: pointer;
}
/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes move {
  50% {
    transform: translateY(-5px) rotate(15deg);
  }
  75% {
    transform: translateY(-5px) rotate(5deg);
  }
}
.faq {
  margin-bottom: 35px;
  margin-top: 25px;
}
.faq--item {
  padding: 20px;
  border: 1px solid #428CDC;
  border-radius: 10px;
  margin-bottom: 20px;
}
.faq--item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 10px;
}
.faq--item-text {
  font-size: 18px;
  line-height: 1.66;
}
.block-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.block-games--item {
  height: 220px;
  border: 2px solid #417AA6;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none !important;
}
.block-games--item:hover .block-games--row {
  opacity: 1;
}
.block-games--img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.block-games--img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.block-games--row {
  display: flex;
  position: relative;
  background-color: rgba(0, 50, 102, 0.8);
  padding: 16px 16px 24px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.block-games--title {
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  text-align: center;
}
.block-games--btn {
  background: #417AA6;
  padding: 10px 10px 10px 12px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .block-games {
    grid-template-columns: repeat(1, 1fr);
  }
}
.block-promotions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.block-promotions--item {
  display: flex;
  gap: 16px;
  background: #003266;
  text-decoration: none !important;
  border: 2px solid #417AA6;
  border-radius: 12px;
  overflow: hidden;
}
.block-promotions--img {
  width: 250px;
  min-width: 250px;
  height: 250px;
}
.block-promotions--img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.block-promotions--right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 16px 16px 0;
}
.block-promotions--title {
  font-size: 23px;
  line-height: 1.2;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}
.block-promotions--text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}
.block-promotions--btn, .promocode--link {
  display: block;
  color: #fff !important;
  text-decoration: none !important;
  background: #417AA6;
  padding: 12px 12px 12px 64px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
}
.block-promotions--btn span, .promocode--link span {
  position: absolute;
  top: -2px;
  left: 6px;
  width: 52px;
  height: 52px;
  background-image: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/mini-gift.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: move 2s infinite;
}
@media (max-width: 1024px) {
  .block-promotions {
    grid-template-columns: repeat(1, 1fr);
  }
  .block-promotions--img {
    width: 100%;
    height: 250px;
  }
  .block-promotions--item {
    flex-direction: column;
  }
  .block-promotions--right {
    padding: 16px;
  }
}
.promocode {
  margin: 0 auto;
  background: #003266;
  border: 2px solid #417AA6;
  border-radius: 8px;
  padding: 20px;
  max-width: 450px;
}
.promocode--wrap {
  margin: 30px 0;
}
.promocode--title {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
}
.promocode--text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  color: #ffffff;
}
.promocode--row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.promocode--secret {
  font-size: 16px;
  color: #F9CB16;
  font-weight: 700;
  border: 2px dashed #F9CB16;
  border-radius: 8px;
  padding: 12px;
  min-width: 35%;
}
.promocode--btn {
  font-size: 14px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  width: 100%;
}
.promocode--btn .active {
  display: none;
}
.promocode--btn.active .active {
  display: block;
}
.promocode--btn.active .notactive {
  display: none;
}
.promocode--link {
  text-align: center;
  padding-left: 12px;
  text-transform: initial;
}
.review {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #fff;
}
.review--block-first {
  width: 25%;
}
.review--block {
  border-radius: 12px;
  background: #003266;
  border: 2px solid #417AA6;
  padding: 16px;
}
.review--block-title {
  font-size: 23px;
  margin-bottom: 16px;
  font-weight: 800;
}
.review--about-row {
  font-size: 17px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(250, 92, 2, 0.3);
}
.review--about-row span {
  font-weight: 800;
  color: #417AA6;
}
.review--about-row:first-child {
  padding-top: 0;
}
.review--about-row:last-child {
  border-bottom: none;
}
.review--block-pay {
  width: 46%;
}
.review--type-row {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(250, 92, 2, 0.3);
}
.review--type-row img {
  max-width: 32px;
  height: auto;
}
.review--type-row:first-child {
  padding-top: 0;
}
.review--type-row:last-child {
  border-bottom: none;
}
.review--block-pay {
  font-size: 17px;
}
.review--pay-title {
  margin-bottom: 12px;
}
.review--pay-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(250, 92, 2, 0.3);
  padding-bottom: 16px;
}
.review--pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.review--pay-logos img {
  max-width: 34px;
  height: auto;
}
.review--currencies {
  font-size: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(250, 92, 2, 0.3);
}
.review--currencies span {
  font-weight: 800;
  color: #417AA6;
}
.review--deposits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-start: 4px;
  padding-top: 16px;
}
.review--deposit {
  text-align: center;
  font-size: 14px;
}
.review--deposit .text {
  font-weight: 800;
  color: #417AA6;
  margin-top: 5px;
}
.review--block-bonuses {
  width: 39%;
}
.review--bonuses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review--bonuses > div {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #72AEE6;
  font-weight: 500;
  font-size: 14px;
}
.review--block-bottom {
  width: 18.5%;
}
.review--cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.review--col {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}
.review--col img {
  max-width: 32px;
  height: auto;
}
.review--license-img {
  width: 146px;
  max-width: 100%;
  margin-bottom: 12px;
}
.review--license-img img {
  height: auto;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .review--block {
    width: 100%;
  }
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}
.body--inner {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
  min-height: 100vh;
}
.fixed-bottom {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  background: #fff;
  display: none;
  text-align: center;
}
.fixed-bottom--link {
  font-size: 18px;
  color: #ffffff;
  background: #008ff9;
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  border-radius: 50px;
  font-weight: 700;
}
.fixed-bottom.active {
  display: block;
}
body {
  background: #fff;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.container {
  width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 100%;
}
.button--border {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercas;
  padding: 10px 18px;
  color: #fff;
  background-image: linear-gradient(0deg, #428cdc 0, #509aea 97%, #509aea);
  border-radius: 50px;
  text-decoration: none;
}
.button--green,
.wp-block-button__link {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  text-transform: uppercase;
  padding: 10px 18px;
  color: #fff !important;
  background-image: linear-gradient(0deg, #87bc17, #88c504);
  box-shadow: 0 10px 30px rgba(135, 187, 24, 0.4);
  border-radius: 50px;
  text-decoration: none !important;
}
.button--orange {
  background: #1479FF;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 18px;
  text-decoration: none !important;
  text-transform: uppercase;
}
.button--blue {
  background: #1479FF;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 18px;
  text-decoration: none !important;
  text-transform: uppercase;
}
.header {
  background: #003266;
  z-index: 100;
}
.header--mobile-lang {
  display: none;
}
.header--bottom {
  display: none;
}
.header--left-sticky-close {
  background: transparent;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
}
.header--left-sticky-close svg {
  width: 100%;
  height: auto;
}
.header--left-sticky {
  background: #008ff9;
  padding: 70px 15px;
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  min-width: 310px;
  z-index: 1000;
}
.header--left-sticky .sub-menu a {
  padding-left: 20px;
}
.header--left-sticky a {
  font-size: 16px;
  color: #fff;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header--left-sticky.active {
  transform: translateX(0);
}
.header--left-open {
  background: transparent;
}
.header--row-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header--bottom-container {
  position: relative;
}
.header--scroll-row {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #428CDC;
  z-index: 1;
  transition: all 0.2s ease-out;
}
.header--bottom-row {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.header--bottom-row:after {
  display: block;
  content: "";
  position: absolute;
  right: -45px;
  top: 0;
  height: 100%;
  width: 128px;
  background: linear-gradient(90deg, rgba(0, 50, 102, 0) 0%, #003266 63.75%);
}
.header--bottom-title {
  font-size: 16px;
  font-weight: 500;
  margin-right: 20px;
}
.header--bottom-scroll {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
.header--bottom-scroll::-webkit-scrollbar {
  display: none;
}
.header--logo {
  width: 172px;
  margin-right: 24px;
}
.header--top {
  padding: 9px 0;
}
.header--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header--menu-wrap {
  display: flex;
  align-items: center;
}
.header--links a {
  margin-left: 24px;
}
.header--right {
  display: none;
}
.header--menu .menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -12px;
  font-size: 14px;
}
.header--menu .menu > li {
  margin: 0 12px;
}
.header--menu .menu > li.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.header--menu .menu > li.menu-item-has-children > a {
  padding-right: 17px;
}
.header--menu .menu > li.menu-item-has-children > a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.55806 7.94194C5.80214 8.18602 6.19786 8.18602 6.44194 7.94194L8.94194 5.44194C9.18602 5.19786 9.18602 4.80214 8.94194 4.55806C8.69786 4.31398 8.30214 4.31398 8.05806 4.55806L6 6.61612L3.94194 4.55806C3.69786 4.31398 3.30214 4.31398 3.05806 4.55806C2.81398 4.80214 2.81398 5.19786 3.05806 5.44194L5.55806 7.94194Z' fill='white'/%3E%3C/svg%3E%0A");
}
.header--menu li {
  position: relative;
}
.header--menu a {
  color: #fff;
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
}
.header--menu a:hover {
  color: #0D5EDB;
}
.header--menu .sub-menu {
  position: absolute;
  border-radius: 5px;
  width: 200px;
  top: 100%;
  left: 0;
  padding: 15px 10px;
  display: none;
  background: #001122;
  z-index: 2;
}
@media (max-width: 1024px) {
  .header--mobile-lang {
    display: block;
  }
  .header--bottom {
    display: block;
    padding-top: 10px;
  }
  .header--bottom .header--links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .header--bottom .header--links a {
    text-align: center;
  }
  .header--left-open {
    display: none;
  }
  .header--menu-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #012449;
  }
  .header--menu-btn span {
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_167_108)'%3E%3Cpath d='M15 13.125C15.2889 13.1251 15.5667 13.2364 15.7758 13.4358C15.9849 13.6352 16.1093 13.9074 16.1231 14.1959C16.137 14.4845 16.0394 14.7674 15.8504 14.9859C15.6614 15.2044 15.3956 15.3419 15.108 15.3698L15 15.375H3C2.71109 15.3749 2.4333 15.2636 2.22421 15.0642C2.01512 14.8648 1.89074 14.5926 1.87686 14.3041C1.86297 14.0155 1.96064 13.7326 2.14963 13.5141C2.33862 13.2956 2.60444 13.1581 2.892 13.1302L3 13.125H15ZM15 7.875C15.2984 7.875 15.5845 7.99353 15.7955 8.2045C16.0065 8.41548 16.125 8.70163 16.125 9C16.125 9.29837 16.0065 9.58452 15.7955 9.7955C15.5845 10.0065 15.2984 10.125 15 10.125H3C2.70163 10.125 2.41548 10.0065 2.2045 9.7955C1.99353 9.58452 1.875 9.29837 1.875 9C1.875 8.70163 1.99353 8.41548 2.2045 8.2045C2.41548 7.99353 2.70163 7.875 3 7.875H15ZM15 2.625C15.2984 2.625 15.5845 2.74353 15.7955 2.9545C16.0065 3.16548 16.125 3.45163 16.125 3.75C16.125 4.04837 16.0065 4.33452 15.7955 4.5455C15.5845 4.75647 15.2984 4.875 15 4.875H3C2.70163 4.875 2.41548 4.75647 2.2045 4.5455C1.99353 4.33452 1.875 4.04837 1.875 3.75C1.875 3.45163 1.99353 3.16548 2.2045 2.9545C2.41548 2.74353 2.70163 2.625 3 2.625H15Z' fill='%23428CDC'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_167_108'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
  }
  .header--top {
    position: relative;
  }
  .header--right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header--menu a:after {
    display: none !important;
  }
  .header--menu .sub-menu {
    display: block;
    background: transparent;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    padding: 10px 0 10px 20px;
  }
  .header--menu .menu {
    flex-direction: column;
    margin: 0 0 20px;
    align-items: flex-start;
  }
  .header--menu .menu > li {
    margin: 0;
  }
  .header--menu-wrap {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background: #003266;
    z-index: 10;
    flex-direction: column;
    padding: 20px 15px;
    align-items: flex-start;
    max-height: 80vh;
    overflow-y: auto;
    display: none;
  }
  .header--menu-wrap.-toggle {
    display: flex;
  }
  .header--links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .header--links a {
    margin-left: 0;
  }
  .header--logo {
    width: 180px;
  }
  .header--bottom-items a {
    font-size: 12px;
    padding: 6px 8px;
  }
}
.page--main-section {
  padding: 40px 0;
}
.page--toc {
  background: #f3f4f4;
  padding: 8px 15px;
}
.page--toc-button {
  color: #000;
  padding: 10px 0;
  font-size: 22px;
  display: flex;
  gap: 15px;
  align-items: center;
  width: 100%;
  background: transparent;
}
.page--toc-button:hover {
  color: #0D5EDB;
}
.page--toc-button span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  transition: all 0.3s;
}
.page--toc-button.active span {
  transform: rotate(180deg);
}
.page--toc-change {
  display: none;
}
.page--toc-change.show {
  display: block;
}
.page--toc-list {
  padding: 15px 0 !important;
  list-style: disc !important;
  margin-left: 20px !important;
}
.page--toc-list li {
  list-style: disc !important;
  font-size: 18px;
  margin-bottom: 6px;
}
.page--toc-list li::marker {
  color: #007acc;
}
.page--toc-list a {
  color: #000000;
}
.page--toc-list a:hover {
  color: #0D5EDB;
}
.page--content {
  font-size: 18px;
  padding-bottom: 50px;
  color: #000;
  background: #f3f4f4;
  padding-top: 0px;
  padding: 20px;
}
.page--content ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  margin: 30px 0;
}
.page--content ol li {
  counter-increment: my-awesome-counter;
  position: relative;
  padding-left: 56px;
  margin-bottom: 30px;
}
.page--content ol li:last-child:before {
  display: none;
}
.page--content ol li:before {
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  bottom: -20px;
  left: 23px;
  width: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='2' height='28' viewBox='0 0 2 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L0.999999 27' stroke='%23007ACC' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='4 4'/%3E%3C/svg%3E ");
  background-repeat: repeat-y;
}
.page--content ol li:after {
  display: block;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 46px;
  text-align: center;
  width: 46px;
  height: 46px;
  position: absolute;
  left: 0;
  top: -10px;
  content: counter(my-awesome-counter);
  background: #002D56;
  color: #007ACC;
  border: 1px solid #007ACC;
}
.page--content ul {
  margin: 30px 0;
}
.page--content ul li {
  position: relative;
  padding-left: 31px;
  margin-bottom: 15px;
}
.page--content ul li:before {
  display: block;
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 0;
  top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='100' height='100' viewBox='0,0,256,256'%3E%3Cg fill='%23428cdc' fill-rule='nonzero' stroke='none' stroke-width='1' stroke-linecap='butt' stroke-linejoin='miter' stroke-miterlimit='10' stroke-dasharray='' stroke-dashoffset='0' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode: normal'%3E%3Cg transform='scale(5.12,5.12)'%3E%3Cpath d='M25,2c-12.683,0 -23,10.317 -23,23c0,12.683 10.317,23 23,23c12.683,0 23,-10.317 23,-23c0,-4.56 -1.33972,-8.81067 -3.63672,-12.38867l-1.36914,1.61719c1.895,3.154 3.00586,6.83148 3.00586,10.77148c0,11.579 -9.421,21 -21,21c-11.579,0 -21,-9.421 -21,-21c0,-11.579 9.421,-21 21,-21c5.443,0 10.39391,2.09977 14.12891,5.50977l1.30859,-1.54492c-4.085,-3.705 -9.5025,-5.96484 -15.4375,-5.96484zM43.23633,7.75391l-19.32227,22.80078l-8.13281,-7.58594l-1.36328,1.46289l9.66602,9.01563l20.67969,-24.40039z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.page--content a {
  color: inherit;
  text-decoration: underline;
}
.page--content p {
  line-height: 1.66;
  margin-bottom: 22px;
}
.page--content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 60px 0 30px;
  position: relative;
  line-height: 1.14;
}
.page--content .wp-block-buttons {
  margin: 40px 0 70px;
}
.page--content .wp-block-columns {
  margin: 55px 0;
}
.page--content .wp-block-table {
  border-radius: 10px;
  background: #003266;
  color: #fff;
  padding: 10px 10px;
  font-size: 16px;
  margin: 30px 0 60px;
  overflow-x: auto;
}
.page--content .wp-block-table table {
  border-spacing: 0;
  width: 100%;
}
.page--content .wp-block-table table strong {
  font-weight: 500;
}
.page--content .wp-block-table td {
  padding: 16px 30px;
}
.page--content .wp-block-table tr {
  vertical-align: top;
}
.page--content .wp-block-table tr:nth-child(odd) td {
  background: #002449;
}
.page--content .wp-block-table tr:nth-child(odd) td:first-child {
  border-radius: 10px 0 0 10px;
}
.page--content .wp-block-table tr:nth-child(odd) td:last-child {
  border-radius: 0 10px 10px 0;
}
@media (max-width: 1024px) {
  .page--banner {
    padding: 30px 0;
  }
  .page--banner-row {
    display: block;
  }
  .page--banner-row > * {
    width: 100%;
  }
  .page--banner-text {
    display: none;
  }
  .page--banner-left {
    margin-bottom: 20px;
  }
  .page--banner-text-mobile {
    display: block;
  }
  .page--banner-title {
    font-size: 24px;
    line-height: 1.15;
  }
  .page--banner-bonus-title {
    font-size: 18px;
  }
  .page--banner-bonus-green {
    font-size: 28px;
  }
  .page--banner-bonus {
    margin-bottom: 20px;
  }
  .page--content {
    font-size: 16px;
    padding: 0px;
    background: #FFF;
  }
  .page--content .wp-block-image img {
    margin-left: auto;
    margin-right: auto;
  }
  .page--content .wp-block-columns {
    flex-wrap: wrap !important;
  }
  .page--content .wp-block-columns > * {
    flex-basis: 100% !important;
  }
  .page--content .wp-block-table {
    font-size: 16px;
  }
  .page--content h2 {
    font-size: 24px;
    margin: 50px 0 23px;
  }
  .page--content h2:before {
    height: auto;
    top: 0;
    bottom: 0;
    transform: none;
  }
}
.footer {
  background: #003266;
  padding: 35px 0 70px;
}
.footer--logo {
  margin-bottom: 25px;
  text-align: center;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.footer--menu .menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer--menu a {
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer--menu a:hover {
  color: #0D5EDB;
}
.footer--logos {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}
.footer--logos img {
  max-height: 30px;
  width: auto;
}
.footer--copyright {
  text-align: center;
}
@media (max-width: 767px) {
  .footer--row {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer--info {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer--top-logos {
    gap: 30px;
    justify-content: flex-start;
  }
  .footer--bottom-logos {
    gap: 15px;
  }
}
.main-cta-block {
  margin-bottom: 24px;
  background: #002F5E;
  border-radius: 10px;
  padding: 32px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .main-cta-block {
    grid-template-columns: 1fr;
    place-items: center;
  }
}
.main-cta-block .img-w {
  width: 146px;
  height: 146px;
  background: #002F5E;
  border-radius: 50%;
  display: flex;
  place-content: center;
  place-items: center;
  padding: 8px;
}
@media (max-width: 768px) {
  .main-cta-block .img-w {
    width: 96px;
    height: 96px;
  }
}
.main-cta-block .img-w img {
  width: 100%;
  height: auto;
}
.main-cta-block .g-cta-block-data {
  padding-right: 64px;
}
@media (max-width: 768px) {
  .main-cta-block .g-cta-block-data {
    padding: 0;
  }
}
.main-cta-block .g-cta-block-data .title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .main-cta-block .g-cta-block-data .title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.main-cta-block .g-cta-block-data .desc {
  font-size: 13px;
  color: #fff;
  opacity: 0.88;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--title {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn {
  margin-bottom: 14px;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a {
  width: 180px;
  height: 42px;
  line-height: 42px;
  background: #fff;
  border: 1px solid #FFF000;
  border-radius: 4px;
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .click-text {
  font-size: 14px;
  font-weight: 700;
  color: #31343C;
  width: calc(100% - 32px);
  height: 40px;
  background: #FFF000;
  border-radius: 4px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  transition: all 0.25s ease;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .click-text::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/arrow-yellow-left.svg) no-repeat center;
  background-size: 8px;
  border: 2px solid #FFF000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 4;
  transform: translateY(-50%);
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .hidden-text {
  width: 100%;
  height: 42px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 42px;
  font-size: 15px;
  color: #31343C;
  padding: 0 12px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn .a .hidden-text:focus {
  border: none;
  outline: none;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--btn:hover .click-text {
  left: -100%;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--test-str {
  margin: 14px 0 24px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .main-cta-block .g-cta-block-code .g-cta-block-code--test-str {
    text-align: center;
  }
}
.main-cta-block .g-cta-block-code .g-cta-block-code--test-str i {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/test-icon.svg) no-repeat center;
  background-size: contain;
  position: relative;
  top: 3px;
  margin-right: 6px;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--test-str span {
  color: #FFF000;
  font-weight: 700;
}
.main-cta-block .g-cta-block-code .g-cta-block-code--test-str p {
  color: #fff;
  display: block;
  font-size: 12px;
  margin-top: 3px;
}
.g-cta-block-code--link {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .g-cta-block-code--link {
    text-align: center;
    display: block;
  }
}
.g-cta-block-code--link .g-cta-block-code--link__btn {
  font-size: 15px;
  color: #007ACC;
  font-weight: 500;
  text-decoration: underline;
  text-align: center;
}
.g-cta-block-code--link .g-cta-block-code--link__content {
  font-size: 13px;
  color: #242424;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 240px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(12, 42, 149, 0.15);
}
@media (max-width: 768px) {
  .g-cta-block-code--link .g-cta-block-code--link__content {
    top: unset;
    right: unset;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.g-cta-block-code--link .g-cta-block-code--link__content a {
  color: #0855cc;
}
.g-cta-block-code--link .g-cta-block-code--link__content a:hover {
  color: #31343C;
}
.g-cta-block-code--link:hover .g-cta-block-code--link__content {
  display: block;
}
.g-cta-block {
  background: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/cta-bg.svg) no-repeat center;
  background-size: cover;
  border: 1px solid #14A0FF;
  box-shadow: 0px 4px 22px 0px rgba(0, 122, 204, 0.1490196078);
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .g-cta-block {
    display: block;
    padding: 24px 16px;
  }
}
.g-cta-block .g-cta-block__img {
  background: #DBE5ED;
  border-radius: 10px;
  padding: 12px;
  width: 240px;
  height: 120px;
  display: flex;
  place-content: center;
  place-items: center;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.g-cta-block .g-cta-block__img img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data {
    text-align: center;
    margin-bottom: 16px;
  }
}
.g-cta-block .g-cta-block__data .g-cta-block__area {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .g-cta-block__area {
    flex-wrap: wrap;
  }
}
.g-cta-block .g-cta-block__data .g-cta-block__area .title {
  font-size: 30px;
  font-weight: 600;
  color: #002F5E;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .g-cta-block__area .title {
    font-size: 20px;
  }
}
.g-cta-block .g-cta-block__data .g-cta-block__area .tested {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 6px 14px 6px 8px;
  background: rgba(0, 204, 180, 0.1);
  border: 1px solid #00CCB4;
  border-radius: 32px;
  line-height: 1.2;
}
.g-cta-block .g-cta-block__data .g-cta-block__area .tested i {
  display: block;
  width: 20px;
  height: 20px;
  background: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/tested-icon.svg) no-repeat center;
  background-size: contain;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .g-cta-block__area .tested i {
    width: 12px;
    height: 12px;
  }
}
.g-cta-block .g-cta-block__data .g-cta-block__area .tested span {
  color: #00CCB4;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .g-cta-block__area .tested span {
    font-size: 14px;
  }
}
.g-cta-block .g-cta-block__data .desc {
  font-size: 22px;
  font-weight: 500;
  color: #002F5E;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__data .desc {
    font-size: 16px;
  }
}
.g-cta-block .g-cta-block__code {
  width: 300px;
  text-align: center;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__code {
    width: 100%;
  }
}
.g-cta-block .g-cta-block__link {
  margin-bottom: 20px;
}
.g-cta-block .g-cta-block__link a {
  background: linear-gradient(180deg, #91C538 0%, #648626 100%);
  display: block;
  line-height: 46px;
  height: 46px;
  font-weight: 500;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .g-cta-block .g-cta-block__link a {
    width: 100%;
    text-align: center;
  }
}
.g-cta-block .g-cta-block__link a:hover {
  opacity: 0.76;
}
.g-cta-block .g-cta-block__updated {
  font-size: 18px;
  font-weight: 500;
  color: #002F5E;
}
.g-popup-block {
  opacity: 0;
  width: 100%;
  background: #002F5E;
  padding: 26px 0;
  position: fixed;
  bottom: -500px;
  left: 0;
  z-index: 999;
  transition: all 0.65s ease-in;
  box-sizing: border-box;
}
.g-popup-block.-toggle {
  opacity: 1;
  bottom: 0;
}
.g-popup-block .g-popup-block__content {
  position: relative;
  display: grid;
  grid-template-columns: max-content max-content 1fr max-content;
  grid-gap: 70px;
  align-items: center;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content {
    grid-template-columns: 100px 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 10px;
    align-items: flex-start;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__logo {
  padding: 4px 8px;
  background: #232323;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__logo {
    padding: 20px 8px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__logo img {
  max-width: 180px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__logo img {
    max-width: 100%;
    height: 100%;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__rating {
  text-align: center;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__rating {
    grid-column: 2/3;
    grid-row: 1;
    text-align: left;
    display: flex;
    place-items: center;
    gap: 6px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_title {
    margin-bottom: 0;
    font-size: 10px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars {
  background: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/star-icon.svg) no-repeat left center;
  background-size: 18px;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars {
    font-size: 13px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars span {
  font-size: 22px;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__rating .rating_stars span {
    font-size: 15px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus {
  text-align: center;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__bonus {
    grid-column: 2/3;
    grid-row: 1;
    text-align: left;
    margin-top: 26px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_title {
    font-size: 17px;
    margin-bottom: 8px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text {
    font-size: 16px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text span,
.g-popup-block .g-popup-block__content .g-popup-block__bonus .bonus_text strong {
  color: #FFF000;
  font-weight: 700;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-cta-link {
    grid-column: 1/3;
    grid-row: 2;
    text-align: center;
  }
}
.g-popup-block .g-popup-block__content .g-popup-cta-link a {
  display: block;
  padding: 0 58px;
  height: 52px;
  font-weight: 500;
  line-height: 52px;
  background: linear-gradient(180deg, #91C538 0%, #648626 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}
.g-popup-block .g-popup-block__content .g-popup-cta-link a:hover {
  opacity: 0.86;
}
.g-popup-block .g-popup-block__content .g-popup-block__close-btn {
  width: 35px;
  height: 35px;
  background: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/g-close-icon.svg) no-repeat center;
  background-size: contain;
  border: none;
  border-radius: 50%;
  position: absolute;
  right: -80px;
  top: -44px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .g-popup-block .g-popup-block__content .g-popup-block__close-btn {
    width: 24px;
    height: 24px;
    right: 14px;
    top: -38px;
  }
}
.g-popup-block .g-popup-block__content .g-popup-block__close-btn:hover {
  opacity: 0.86;
}
@media (max-width: 768px) {
  .g-table-wrapper {
    width: calc(100% + 20px);
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .g-table-wrapper table {
    width: 780px;
  }
}
.g-toc-block {
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid #007ACC;
  border-radius: 10px;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .g-toc-block {
    padding: 12px 16px;
    margin-left: -32px;
    margin-right: -32px;
  }
}
.g-toc-block .g-toc-block--title {
  cursor: pointer;
  background: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/toc-icon.svg) no-repeat center right;
  background-size: 24px;
  color: #002F5E;
  font-size: 20px;
  font-weight: bold;
}
.g-toc-block ol {
  background: rgba(65, 122, 166, 0.1);
  padding: 30px 20px 12px;
  border: 1px solid #417AA6;
  border-radius: 10px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 32px;
  margin-top: 20px;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .g-toc-block ol {
    padding: 0;
    background: transparent;
    border: none;
  }
}
.g-toc-block ol li {
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 24px;
}
.g-toc-block ol li:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/arrow-blue.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 3px;
}
.g-toc-block ol li a {
  color: #002F5E;
}
.g-toc-block ol li a:hover {
  color: #31343C;
}
.g-toc-block.-toggle .g-toc-block--title {
  background: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/toc-icon-toggle.svg) no-repeat center right;
  background-size: 24px;
}
.g-toc-block.-toggle ol {
  display: grid;
}
@media (max-width: 768px) {
  .g-toc-block.-toggle ol {
    display: block;
  }
}
.banner {
  background: #003266;
  padding: 40px 0;
}
.banner--breadcrumbs {
  padding: 15px 0 25px;
  color: #fff;
}
.banner--breadcrumbs a {
  color: #fff;
}
.banner--left h1 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
}
.banner--left p {
  margin-bottom: 17px;
}
.banner--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  color: #fff;
}
.banner--link {
  text-align: center;
}
.banner--promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px 0 0;
}
.banner--promo {
  border-radius: 12px;
  border: 2px solid #417AA6;
  padding: 20px;
}
.banner--promo-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 15px;
}
.banner--promo-image {
  width: 110px;
  min-width: 110px;
}
.banner--promo-left {
  padding-bottom: 70px;
}
.banner--promo-text {
  font-weight: 500;
}
.banner--promo-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.banner--promo-title span {
  color: #82ffa4;
}
.banner--promo-link {
  display: block;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  border: 1px solid #417AA6;
  padding: 12px 40px 12px 12px;
  position: relative;
}
.banner--promo-link:hover {
  background: #0D5EDB;
}
.banner--promo-link:after {
  display: block;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(//1xbetpak.asia/wp-content/themes/theme/dist/styles/../../images/btn-arrows.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 12px;
  top: calc(50% - 12px);
}
@media (max-width: 1024px) {
  .banner--row {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner--promos {
    grid-template-columns: repeat(1, 1fr);
  }
}
.site-header__langs {
  position: relative;
}
@media (max-width: 768px) {
  .site-header__langs {
    grid-row: 2;
  }
}
.site-header__langs .site-header__langs--current {
  padding: 5px 10px 5px 10px;
  border: 1px solid #417AA6;
  border-radius: 4px;
  font-size: 16px;
  height: 42px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  place-items: center;
}
.site-header__langs .site-header__langs--current img {
  width: 24px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
}
.site-header__langs .site-header__langs--current span {
  color: #fff;
}
.site-header__langs ul {
  display: none;
  width: 180px;
  border-radius: 4px;
  padding: 20px;
  position: absolute;
  background: #012449;
  top: 100%;
  right: -20px;
  z-index: 9999;
}
.site-header__langs ul li:not(:last-child) a {
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #417AA6;
}
@media (max-width: 768px) {
  .site-header__langs ul li:not(:last-child) a {
    border: none;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}
.site-header__langs ul li a {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  place-items: center;
}
.site-header__langs ul li a:hover {
  opacity: 0.64;
}
.site-header__langs ul li a img {
  width: 20px;
  height: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2px;
}
.site-header__langs ul li a span {
  color: #fff;
  font-size: 14px;
}
.site-header__langs ul li.current-lang a {
  opacity: 0.64;
}
.site-header__langs:hover > ul {
  display: block;
}
@media (max-width: 768px) {
  .site-header__langs:hover > ul {
    display: grid;
  }
}
.to-top-btn {
  background: #417AA6;
  border-radius: 50%;
  bottom: 100px;
  height: 62px;
  opacity: 0;
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  right: 3%;
  transition: all 0.25s ease;
  width: 62px;
  z-index: 9999;
}
.to-top-btn:hover {
  transform: scale(1.1);
}
.to-top-btn svg {
  width: 30px;
}
.to-top-btn.show {
  opacity: 1;
  display: flex;
}
@media (max-width: 768px) {
  .to-top-btn {
    bottom: 100px;
    height: 50px;
    width: 50px;
  }
}