@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;
}
/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}
/* Наследуем шрифты для инпутов и кнопок */
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;
  }
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}
body {
  background: #0F5239;
  font-family: "Poppins", sans-serif;
  color: #CAE0D9;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  body.-toggle {
    overflow: hidden;
  }
}
h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}
h1 span,
h2 span,
.h2 span,
h3 span,
.h3 span,
h4 span,
.h4 span,
h5 span,
.h5 span,
h6 span,
.h6 span {
  font-weight: 500;
}
h1,
.h1 {
  font-size: 34px;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 26px;
  }
}
h2,
.h2 {
  font-size: 30px;
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}
h3,
.h3 {
  font-size: 24px;
}
@media (max-width: 768px) {
  h3,
  .h3 {
    font-size: 18px;
  }
}
h4,
.h4 {
  font-size: 16px;
}
.popup {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px;
}
.popup--bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 10;
}
.popup--inner {
  position: relative;
  z-index: 100;
  box-shadow: 0px 0px 20px 3px rgb(15, 82, 57);
  border-radius: 30px;
  max-width: 400px;
}
.popup--close {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -80px;
  right: -80px;
  background: transparent;
}
.popup--close path {
  fill: #fff;
}
.popup--close svg {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .popup--close {
    right: 0;
  }
}
.popup--head {
  text-align: center;
  padding: 20px 0;
  color: #fff;
  background: #1a654a;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 21px;
  border-radius: 25px 25px 0 0;
}
.popup--text {
  font-size: 19px;
  margin-bottom: 30px;
}
.popup--bottom {
  padding: 40px 15px;
  text-align: center;
  color: #cae0d9;
  background: #0F5239;
  border-radius: 0 0 25px 25px;
}
.popup--link {
  display: inline-block;
  padding: 5px 60px;
  background: #ffcd05;
  border: 4px solid #ffcd05;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  border-radius: 30px;
  box-shadow: 0px 0px 17px 1px rgba(255, 205, 5, 0.79);
  transition: all 0.3s linear;
}
.popup--link:hover {
  color: #ffffff;
  background: #0f5239;
}
.container,
.wp-block-group__inner-container {
  max-width: 1540px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.container.-no-p,
.wp-block-group__inner-container.-no-p {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .container,
  .wp-block-group__inner-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .container .wp-block-group__inner-container,
  .container .content-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.page-wrapper {
  padding: 16px;
}
.container-grid {
  display: flex;
  gap: 24px;
  transition: all 0.25s ease;
}
@media (max-width: 768px) {
  .container-grid {
    display: block;
  }
}
.main-content {
  width: 100%;
}
.main-sidebar {
  width: 260px;
  flex: 1 0 auto;
}
@media (min-width: 768px) {
  .main-sidebar {
    height: 100%;
    position: sticky;
    top: 24px;
    z-index: 999;
  }
}
@media (max-width: 768px) {
  .main-sidebar {
    width: 100%;
    margin-top: 24px;
  }
}
.main-sidebar.-toggle {
  width: auto;
}
.main-sidebar.-toggle .register-block {
  display: none;
}
.main-sidebar.-toggle .tour-list {
  display: none;
}
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}
.tour-list.mobile {
  display: none;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .tour-list.desktop {
    display: none;
  }
  .tour-list.mobile {
    display: flex;
  }
}
.tour-list--item {
  padding: 15px 10px 10px;
  background: rgb(23, 68, 52);
  border-radius: 8px;
}
.tour-list--top {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tour-list--image {
  width: 85px;
  min-width: 85px;
  height: 85px;
  position: relative;
}
.tour-list--image:before {
  display: block;
  content: "";
  position: absolute;
  height: 80%;
  width: 80%;
  top: 10%;
  left: 10%;
  border-radius: 2px;
  background: rgb(255, 208, 20);
}
.tour-list--image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: relative;
}
.tour-list--title {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}
.tour-list--price {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.tour-list--price span {
  margin-left: 10px;
  color: rgb(255, 214, 51);
  font-size: 16px;
  font-weight: 700;
}
.tour-list--date {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}
.tour-list--date-left {
  font-size: 12px;
  color: #fff;
}
.tour-list--date-right {
  display: flex;
  gap: 5px;
}
.tour-list--date-right span {
  padding: 2px 2px;
  display: inline-block;
  background: rgb(33, 131, 95);
  color: #fff;
  border-radius: 2px;
  font-size: 14px;
}
.tour-list--link {
  display: block;
  text-align: center;
  padding: 11px 10px;
  border-radius: 8px;
  line-height: 1;
  color: #000;
  background: rgb(255, 205, 5);
  text-transform: uppercase;
  font-size: 17px;
}
.site-header {
  background: #1A664A;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}
@media (max-width: 768px) {
  .site-header {
    padding: 14px 0;
  }
}
.site-header .site-header--row {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1280px) {
  .site-header .site-header__logo {
    flex: 1 0 auto;
  }
}
.site-header .site-header__logo img {
  max-width: 148px;
}
@media (max-width: 768px) {
  .site-header .site-header__logo img {
    max-width: 120px;
  }
}
@media (max-width: 768px) {
  .site-header .site-header__money-btn,
  .site-header .site-header__present-btn {
    display: none;
  }
}
.site-header .site-header__money-btn a,
.site-header .site-header__present-btn a {
  width: 32px;
  height: 32px;
  display: flex;
  place-content: center;
  place-items: center;
  background: #21835e;
  border-radius: 4px;
}
.site-header .site-header__money-btn a:hover,
.site-header .site-header__present-btn a:hover {
  background: #2ba77a;
}
.site-header .site-header__money-btn i,
.site-header .site-header__present-btn i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-dollar.svg) no-repeat center;
  background-size: contain;
}
.site-header .site-header__present-btn i {
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-gift.svg) no-repeat center;
  background-size: contain;
}
@media (max-width: 768px) {
  .site-header .site-header__register-btn {
    order: 1;
  }
}
.site-header .site-header__register-btn,
.site-header .site-header__login-btn {
  margin-top: -3px;
}
.site-header .site-header__register-btn a,
.site-header .site-header__login-btn a {
  color: #000;
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  background: #FFCD05;
}
@media (max-width: 768px) {
  .site-header .site-header__register-btn a,
  .site-header .site-header__login-btn a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.site-header .site-header__register-btn a:hover,
.site-header .site-header__login-btn a:hover {
  opacity: 0.86;
}
.site-header .site-header__login-btn a {
  color: #fff;
  background: #21835e;
}
@media (max-width: 768px) {
  .site-header .site-header__setting-btn {
    display: none;
  }
}
.site-header .site-header__setting-btn a {
  width: 32px;
  height: 32px;
  display: flex;
  place-content: center;
  place-items: center;
}
.site-header .site-header__setting-btn a:hover {
  opacity: 0.86;
}
.site-header .site-header__setting-btn i {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-settings.svg) no-repeat center;
  background-size: contain;
}
.site-header .site-header__langs {
  position: relative;
}
@media (max-width: 768px) {
  .site-header .site-header__langs {
    display: none;
  }
}
.site-header .site-header__langs .site-header__langs__btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  padding-right: 18px;
  display: inline-block;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-arrow.svg) no-repeat center right;
  background-size: 14px;
}
.site-header .site-header__langs .site-header__langs__list {
  display: none;
  width: 96px;
  background: #fff;
  padding: 16px 12px;
  border-radius: 3px;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
}
.site-header .site-header__langs .site-header__langs__list li {
  font-size: 14px;
}
.site-header .site-header__langs .site-header__langs__list li:not(:last-child) {
  margin-bottom: 10px;
}
.site-header .site-header__langs .site-header__langs__list li a {
  color: #000;
}
.site-header .site-header__langs .site-header__langs__list li a:hover {
  color: #1a654a;
}
.site-header .site-header__langs:hover .site-header__langs__btn {
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-arrow-top.svg) no-repeat center right;
  background-size: 14px;
}
.site-header .site-header__langs:hover .site-header__langs__list {
  display: block;
}
.header-menu {
  flex: 1 0 auto;
  padding-left: 64px;
}
@media (max-width: 1280px) {
  .header-menu {
    display: none;
  }
}
.header-menu ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.header-menu ul li.icon-aviator {
  height: 28px;
  display: flex;
  place-content: center;
  place-items: center;
}
.header-menu ul li.icon-aviator > a {
  font-size: 0;
  display: inline-block;
  width: 60px;
  height: 28px;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/aviator-logo.svg) no-repeat center;
  background-size: contain;
}
.header-menu ul li.icon-aviator > a:hover {
  opacity: 0.76;
}
.header-menu ul li.icon-higher > a {
  padding-left: 32px;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/weights-icon.svg) no-repeat center left;
  background-size: 24px;
  text-transform: none;
}
.header-menu ul li > ul {
  display: none;
  width: 260px;
  background: #fff;
  padding: 16px;
  border-radius: 3px;
  position: absolute;
  top: 100%;
  left: -16px;
  z-index: 999;
}
.header-menu ul li > ul li:not(:last-child) {
  margin-bottom: 10px;
}
.header-menu ul li > ul li a {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
}
.header-menu ul li > ul li a:hover {
  color: #1a654a;
}
.header-menu ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.header-menu ul li:hover > ul {
  display: block;
}
.header-menu ul li.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}
.header-menu ul li.menu-item-has-children::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-arrow.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 6px;
}
.lp-hero-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .lp-hero-items {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 32px;
  }
  .lp-hero-items.-posts {
    display: block;
  }
  .lp-hero-items.-posts .lp-hero-items__item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.lp-hero-items .lp-hero-items__item {
  width: 100%;
  height: 198px;
  padding: 20px 42px;
  display: flex;
  gap: 10px;
  place-items: center;
  border-radius: 4px;
  background: #1a654a;
}
@media (max-width: 768px) {
  .lp-hero-items .lp-hero-items__item {
    height: 80px;
    padding: 14px 16px;
  }
}
.lp-hero-items .lp-hero-items__item.-post-item {
  height: 120px;
  padding: 12px 20px;
}
@media (max-width: 768px) {
  .lp-hero-items .lp-hero-items__item.-post-item {
    height: 96px;
    padding: 12px 16px;
  }
}
.lp-hero-items .lp-hero-items__item:hover {
  opacity: 0.86;
}
.lp-hero-items i {
  display: inline-block;
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .lp-hero-items i {
    width: 20px;
    height: 20px;
  }
}
.lp-hero-items i.post-icon {
  flex: 1 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .lp-hero-items i.post-icon {
    width: 46px;
    height: 46px;
  }
}
.lp-hero-items span {
  color: #CAE0D9;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .lp-hero-items span {
    font-size: 16px;
  }
}
.lp-hero-items span.lp-hero-items__title {
  font-size: 17px;
}
@media (max-width: 768px) {
  .lp-hero-items span.lp-hero-items__title {
    font-size: 14px;
  }
}
.content-page-header h1 {
  text-transform: uppercase;
}
.content-wrapper {
  background: #1a654a;
  padding: 16px;
  overflow: hidden;
  border-radius: 4px;
}
.content-top-section {
  background: #21835e;
  padding: 7px 16px;
  margin-top: -16px;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 20px rgba(2, 7, 41, 0.1);
}
@media (min-width: 768px) {
  .content-top-section {
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-gap: 20px;
    align-items: center;
  }
}
.breadcrumbs {
  color: #86BFA9;
  font-size: 12px;
}
.breadcrumbs i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/breadcrumbs-icon.svg) no-repeat center;
  background-size: contain;
  position: relative;
  top: 2px;
}
.breadcrumbs a {
  color: #86BFA9;
}
.breadcrumbs a:hover {
  color: #fff;
}
.page-search-block {
  position: relative;
}
@media (max-width: 768px) {
  .page-search-block {
    display: none;
  }
}
.page-search-block form {
  width: 200px;
  background: #1A664A;
  border-radius: 4px;
}
.page-search-block form input[type=text],
.page-search-block form input[type=email],
.page-search-block form input[type=password],
.page-search-block form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Poppins", sans-serif;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 4px;
  padding: 5px 16px;
  font-size: 14px;
  color: #fff;
}
.page-search-block form input[type=text]:focus,
.page-search-block form input[type=email]:focus,
.page-search-block form input[type=password]:focus,
.page-search-block form textarea:focus {
  outline: none;
  color: #fff;
}
.page-search-block form textarea {
  height: 188px;
}
.page-search-block form ::-webkit-input-placeholder {
  font-size: 14px;
  color: #86BFA9;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.page-search-block form ::-moz-placeholder {
  font-size: 14px;
  color: #86BFA9;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.page-search-block form :-ms-input-placeholder {
  font-size: 14px;
  color: #86BFA9;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.page-search-block form :-moz-placeholder {
  font-size: 14px;
  color: #86BFA9;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.page-search-block form :focus::-webkit-input-placeholder {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.page-search-block form :focus::-moz-placeholder {
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.page-search-block form :focus:-ms-input-placeholder {
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.page-search-block form :focus:-moz-placeholder {
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.page-search-block form textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #86BFA9;
  text-indent: 0;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.page-search-block form textarea::-moz-placeholder {
  font-size: 14px;
  color: #86BFA9;
  text-indent: 0;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.page-search-block form textarea:-moz-placeholder {
  font-size: 14px;
  color: #86BFA9;
  text-indent: 0;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.page-search-block form textarea:-ms-input-placeholder {
  font-size: 14px;
  color: #86BFA9;
  text-indent: 0;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.page-search-block form textarea:focus::-webkit-input-placeholder {
  text-indent: 50px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.page-search-block form textarea:focus::-moz-placeholder {
  text-indent: 50px;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.page-search-block form textarea:focus:-moz-placeholder {
  text-indent: 50px;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.page-search-block form textarea:focus:-ms-input-placeholder {
  text-indent: 50px;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.page-search-block form button {
  display: inline-block;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.page-search-block form button:hover {
  opacity: 0.86;
}
.page-search-block form input {
  color: #86BFA9;
  background: transparent;
  border-color: transparent;
  padding: 8px 50px 8px 16px;
}
.page-search-block form input:focus {
  border-color: #fff;
}
.page-search-block form button {
  width: 20px;
  height: 20px;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/search-icon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 9px;
  right: 9px;
}
.page-search-block form button:hover {
  opacity: 0.86;
}
.page-cover-block {
  position: relative;
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .page-cover-block {
    margin-bottom: 32px;
  }
}
.page-cover-block img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .page-cover-block img {
    height: 240px;
  }
}
.page-cover-block .page-cover-block__content {
  width: 100%;
  height: 100%;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/shadow.png) no-repeat center bottom;
  background-size: cover;
  padding-bottom: 24px;
  display: flex;
  place-content: center;
  place-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-cover-block .page-cover-block__btn {
  display: flex;
  place-content: center;
  place-items: center;
}
.page-cover-block .page-cover-block__btn a {
  background: #FFCD05;
  border-radius: 4px;
  padding: 8px 32px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}
.page-cover-block .page-cover-block__btn a:hover {
  opacity: 0.86;
}
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.post-entry h2,
.post-entry .h2 {
  font-size: 32px;
  border-bottom: 2px solid #FFCD05;
  padding-bottom: 4px;
}
@media (max-width: 768px) {
  .post-entry h2,
  .post-entry .h2 {
    font-size: 26px;
  }
}
.post-entry h3,
.post-entry .h3 {
  font-size: 24px;
  border-bottom: 2px solid #21835F;
  padding-bottom: 4px;
  text-transform: none;
}
@media (max-width: 768px) {
  .post-entry h3,
  .post-entry .h3 {
    font-size: 20px;
  }
}
.post-entry p:not(:last-child) {
  margin-bottom: 24px;
}
.post-entry strong {
  color: #fff;
}
.post-entry a {
  color: var(--yellow-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-entry a:hover {
  color: var(--main-green-color);
}
.post-entry .wp-block-columns {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .post-entry .wp-block-columns {
    flex-direction: column;
  }
}
.post-entry .wp-block-quote {
  color: #fff;
  padding: 40px 40px 40px 80px;
  margin: 15px 0 30px;
  position: relative;
  border-radius: 8px;
  background: #21835e;
}
.post-entry .wp-block-quote:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_1' enable-background='new 0 0 24 24' viewBox='0 0 24 24'%3E%3Cpath d='m4.7 17.7c-1-1.1-1.6-2.3-1.6-4.3 0-3.5 2.5-6.6 6-8.2l.9 1.3c-3.3 1.8-4 4.1-4.2 5.6.5-.3 1.2-.4 1.9-.3 1.8.2 3.2 1.6 3.2 3.5 0 .9-.4 1.8-1 2.5-.7.7-1.5 1-2.5 1-1.1 0-2.1-.5-2.7-1.1zm10 0c-1-1.1-1.6-2.3-1.6-4.3 0-3.5 2.5-6.6 6-8.2l.9 1.3c-3.3 1.8-4 4.1-4.2 5.6.5-.3 1.2-.4 1.9-.3 1.8.2 3.2 1.6 3.2 3.5 0 .9-.4 1.8-1 2.5s-1.5 1-2.5 1c-1.1 0-2.1-.5-2.7-1.1z' fill='%23000000' style='fill: rgb(255, 255, 255);'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
}
.post-entry .wp-block-table {
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .post-entry .wp-block-table {
    width: calc(100% + 20px);
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-right: -20px;
    margin-bottom: 24px;
  }
}
.post-entry .wp-block-table .wp-element-caption {
  text-align: left;
}
.post-entry .wp-block-table table {
  width: 100%;
}
.post-entry table {
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.0784313725);
}
.post-entry table a {
  color: #fff;
}
.post-entry table a:hover {
  opacity: 0.86;
}
.post-entry table thead tr th {
  background: #21835e;
  padding: 12px 16px;
  text-align: left;
  color: #fff;
  font-size: 18px;
}
.post-entry table tr:nth-child(odd) {
  background: #21835e;
}
.post-entry table tr td {
  padding: 14px 16px;
}
.post-entry ul {
  padding-left: 20px;
  margin-bottom: 24px;
}
.post-entry ul li.c-marker {
  margin-left: -20px;
}
.post-entry ul li:not(.c-marker) {
  list-style: disc;
  position: relative;
}
.post-entry ul li:not(.c-marker):not(:last-child) {
  margin-bottom: 10px;
}
.post-entry ul li:not(.c-marker)::marker {
  color: var(--yellow-color);
  font-size: 18px;
}
.post-entry ol {
  padding-left: 20px;
  margin-bottom: 24px;
}
.post-entry ol li {
  list-style: decimal;
  position: relative;
}
.post-entry ol li:not(:last-child) {
  margin-bottom: 10px;
}
.post-entry ol li::marker {
  color: var(--main-green-color);
  font-size: 18px;
}
.post-entry.-small-p-mb p:not(:last-child) {
  margin-bottom: 16px;
}
.post-entry .compare-table--wrap {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  color: #000;
  margin: 30px 0;
  overflow-x: auto;
}
.post-entry .compare-table--wrap table {
  width: 100%;
  margin-bottom: 0;
}
.post-entry .compare-table--wrap table thead th {
  background: #207E5B;
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}
.post-entry .compare-table--wrap table tr {
  background: #fff !important;
}
.post-entry .compare-table--wrap table td {
  text-align: center;
}
.post-entry .compare-table--logo {
  width: 60px;
  min-width: 60px;
}
.post-entry .compare-table--logo img {
  max-width: 100%;
  height: auto;
}
.post-entry .compare-table--first {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-entry .compare-table--name {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
.post-entry .compare-table--name:hover {
  color: #000;
  text-decoration: underline;
}
.post-entry .compare-table--status {
  background: #e4e4e4;
  border-radius: 12px;
  padding: 20px 35px;
}
.post-entry .compare-table--payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.post-entry .compare-table--payment {
  height: 20px;
}
.post-entry .compare-table--payment svg {
  display: block;
  height: 20px;
  width: auto;
}
.post-entry .compare-table--link {
  color: #000 !important;
  background: #FFCD05;
  padding: 12px 25px;
  border-radius: 6px;
  display: inline-block;
  min-width: 150px;
  text-decoration: none !important;
  font-weight: 700;
}
.wp-block-image {
  margin-bottom: 32px;
}
.wp-block-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: inline-block;
  margin: 0 auto;
}
.wp-block-image .aligncenter {
  display: flex;
  place-content: center;
  place-items: center;
}
.wp-block-image .alignleft {
  float: left;
  margin: 16px 32px 0 0;
}
@media (max-width: 768px) {
  .wp-block-image .alignleft {
    float: unset;
    display: flex;
    place-content: center;
    place-items: center;
    margin: 0 0 24px 0;
  }
}
.wp-block-image .alignright {
  float: right;
  margin: 0 0 16px 32px;
}
@media (max-width: 768px) {
  .wp-block-image .alignright {
    float: unset;
    display: flex;
    place-content: center;
    place-items: center;
    margin: 0 0 24px 0;
  }
}
.wp-block-button {
  display: flex;
  place-content: center;
  place-items: center;
  margin-bottom: 42px;
}
.wp-block-button .wp-block-button__link {
  display: inline-block;
  background: #FFCD05;
  color: #000 !important;
  text-decoration: none;
  padding: 8px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.wp-block-button .wp-block-button__link strong {
  color: #000 !important;
}
.wp-block-button .wp-block-button__link:hover {
  opacity: 0.86;
}
.faq-block {
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .faq-block {
    margin-bottom: 24px;
  }
}
.faq-block .faq-block__item:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .faq-block .faq-block__item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.faq-block .faq-block__item.-toggle .faq-block__title::after {
  transform: rotate(180deg);
}
.faq-block .faq-block__item.-toggle .faq-block__text {
  display: block;
}
.faq-block .faq-block__title {
  background: #21835e;
  padding: 16px 16px;
  padding-right: 42px;
  border-radius: 4px;
  box-shadow: 0px 0px 20px rgba(2, 7, 41, 0.1);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  display: block;
  border: none;
  position: relative;
  margin: 0;
}
.faq-block .faq-block__title::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-arrow.svg) no-repeat center;
  background-size: 20px;
  position: absolute;
  top: 14px;
  right: 16px;
}
.faq-block .faq-block__text {
  display: none;
  padding: 16px;
}
.site-footer {
  margin-top: 42px;
  margin-bottom: 16px;
}
.site-footer .container {
  max-width: 100%;
}
.site-footer .site-footer__news__w {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-gap: 10px;
  margin-bottom: 10px;
}
.site-footer .site-footer__news__sec > .footer-menu__title {
  background: #1a654a;
  padding: 0 16px;
  border-radius: 4px;
  height: 48px;
  line-height: 48px;
}
.site-footer .site-footer__news__sec__content {
  display: none;
  padding: 16px;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
@media (max-width: 768px) {
  .site-footer .site-footer__news__sec__content {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.site-footer .site-footer__news__sec__content.-toggle {
  display: grid;
}
.site-footer .site-footer__news__btn {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: #1a654a url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-arrow.svg) no-repeat center;
  background-size: 18px;
}
.site-footer .site-footer__news__btn.-toggle {
  background: #1a654a url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-arrow-top.svg) no-repeat center;
  background-size: 18px;
}
.footer-menu__title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .footer-menu__title {
    font-size: 12px;
  }
}
.footer-menu {
  margin-top: 16px;
}
.footer-menu ul li {
  font-size: 12px;
}
.footer-menu ul li:not(:last-child) {
  margin-bottom: 5px;
}
.footer-menu ul li a {
  color: #86BFA9;
}
.footer-menu ul li a:hover {
  color: #fff;
}
.site-footer__menues {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 16px;
  background: #1a654a;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .site-footer__menues {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.site-footer__copyr {
  background: #1a654a;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.site-footer__copyr .site-footer__copyr__text {
  font-size: 12px;
  margin-top: 12px;
}
.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  gap: 10px;
}
@media (max-width: 768px) {
  .site-footer__bottom {
    display: flex;
    flex-direction: column;
  }
}
.site-footer__support {
  text-align: center;
  background: #1a654a;
  padding: 16px;
  border-radius: 4px;
}
.site-footer__support .site-footer__support__tel a {
  color: #86BFA9;
  font-size: 20px;
  font-weight: 500;
}
.site-footer__support .site-footer__support__tel a:hover {
  color: #fff;
}
.site-footer__socials {
  flex: 1 0 auto;
  width: 320px;
  background: #1a654a;
  padding: 16px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .site-footer__socials {
    width: 100%;
  }
}
.site-footer__socials ul {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 16px;
  place-content: center;
  place-items: center;
}
.site-footer__socials ul li a {
  width: 24px;
  height: 24px;
}
.site-footer__socials ul li a:hover {
  opacity: 0.86;
}
.site-footer__socials ul li i {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.site-footer__socials ul li i.icon-twitter {
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-twitter.svg) no-repeat center;
  background-size: contain;
}
.site-footer__socials ul li i.icon-facebook {
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-facebook.svg) no-repeat center;
  background-size: contain;
}
.site-footer__socials ul li i.icon-instagram {
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-instagram.svg) no-repeat center;
  background-size: contain;
}
.site-footer__socials ul li i.icon-telegram {
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-telegram.svg) no-repeat center;
  background-size: contain;
}
.site-footer__age {
  background: #1a654a;
  width: 96px;
  padding: 16px;
  border-radius: 4px;
  display: flex;
  place-content: center;
  place-items: center;
}
@media (max-width: 768px) {
  .site-footer__age {
    width: 100%;
  }
}
.site-footer__age span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.main-sidebar__toggle_btn {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  place-content: center;
  place-items: center;
  background: #1a654a;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .main-sidebar__toggle_btn {
    display: none;
  }
}
.main-sidebar__toggle_btn span {
  color: #CAE0D9;
  font-size: 12px;
}
.main-sidebar__toggle_btn i {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(//guidebook.betwinner.com/wp-content/themes/bw/dist/styles/../../images/icon-arrow-r.svg) no-repeat center;
  background-size: contain;
}
.main-sidebar__toggle_btn.-toggle span {
  display: none;
}
.main-sidebar__toggle_btn.-toggle i {
  transform: rotate(180deg);
}
.register-block {
  padding: 16px 8px 0;
  border-radius: 4px;
  background: #E8F1EE;
  color: #000;
  overflow: hidden;
}
.register-block .register-block__title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.register-block form input[type=text],
.register-block form input[type=email],
.register-block form input[type=password],
.register-block form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Poppins", sans-serif;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 4px;
  padding: 5px 16px;
  font-size: 14px;
  color: #fff;
}
.register-block form input[type=text]:focus,
.register-block form input[type=email]:focus,
.register-block form input[type=password]:focus,
.register-block form textarea:focus {
  outline: none;
  color: #000;
}
.register-block form textarea {
  height: 188px;
}
.register-block form ::-webkit-input-placeholder {
  font-size: 14px;
  color: #373737;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.register-block form ::-moz-placeholder {
  font-size: 14px;
  color: #373737;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.register-block form :-ms-input-placeholder {
  font-size: 14px;
  color: #373737;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.register-block form :-moz-placeholder {
  font-size: 14px;
  color: #373737;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.register-block form :focus::-webkit-input-placeholder {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.register-block form :focus::-moz-placeholder {
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.register-block form :focus:-ms-input-placeholder {
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.register-block form :focus:-moz-placeholder {
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.register-block form textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #373737;
  text-indent: 0;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.register-block form textarea::-moz-placeholder {
  font-size: 14px;
  color: #373737;
  text-indent: 0;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.register-block form textarea:-moz-placeholder {
  font-size: 14px;
  color: #373737;
  text-indent: 0;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.register-block form textarea:-ms-input-placeholder {
  font-size: 14px;
  color: #373737;
  text-indent: 0;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.register-block form textarea:focus::-webkit-input-placeholder {
  text-indent: 50px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.register-block form textarea:focus::-moz-placeholder {
  text-indent: 50px;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.register-block form textarea:focus:-moz-placeholder {
  text-indent: 50px;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.register-block form textarea:focus:-ms-input-placeholder {
  text-indent: 50px;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.register-block form button {
  display: inline-block;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.register-block form button:hover {
  opacity: 0.86;
}
.register-block form input[type=text] {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-bottom: 10px;
  color: #000;
  padding-top: 9px;
  padding-bottom: 9px;
}
.register-block form input[type=text]:focus {
  border: 1px solid #1A664A;
}
.register-block form label {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 8px;
  align-items: flex-start;
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.register-block form label a {
  color: #1A664A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.register-block form label a:hover {
  text-decoration: none;
}
.register-block form label input[type=checkbox] {
  position: relative;
  margin-top: 2px;
}
.register-block form button {
  width: 100%;
  background: #FFCD05;
  border-radius: 4px;
  text-align: center;
  text-align: center;
  padding: 8px 14px;
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  font-weight: normal;
  margin-bottom: 16px;
}
.register-block form button:hover {
  opacity: 0.86;
}
.register-block .register-block__bottom {
  background: #21835e;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-left: -8px;
  margin-right: -8px;
}
.burger {
  display: none;
}
@media (max-width: 1280px) {
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 15px;
    position: relative;
    z-index: 11;
  }
  .burger span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 10px;
  }
  .burger::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 10px;
    position: absolute;
    transition: all 0.5s linear;
  }
  .burger::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 10px;
    position: absolute;
    transition: all 0.5s linear;
    top: 99%;
  }
  .burger::after {
    bottom: 99%;
  }
  .burger.active span {
    background: rgba(62, 99, 95, 0);
  }
  .burger.active::before {
    top: calc(50% - 1px);
    transform: rotate(225deg);
    background-color: white;
  }
  .burger.active::after {
    bottom: calc(50% - 1px);
    transform: rotate(-225deg);
    background-color: white;
  }
  .header-menu {
    position: absolute;
    background-color: rgb(26, 101, 74);
    top: calc(100% + 16px);
    right: 0;
    z-index: 1000;
    padding: 20px;
    width: 280px;
    border-radius: 3px;
    box-shadow: 0px 0px 5px 0px rgb(28, 82, 56);
  }
  .header-menu.active {
    display: block;
  }
  .header-menu ul {
    flex-direction: column;
    gap: 30px;
  }
  .site-header {
    position: relative;
  }
}
@media (max-width: 768px) {
  .burger {
    order: 1;
  }
  .site-header .site-header__langs {
    display: block;
    order: 1;
  }
}
@media (max-width: 500px) {
  .site-header .site-header__logo {
    width: 100%;
  }
  .site-header .site-header--row {
    flex-wrap: wrap;
    gap: 15px;
  }
  .site-header .site-header__langs {
    margin-left: auto;
  }
}
.main-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block-link-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.block-link-items li {
  list-style: inside;
  width: calc(25% - 15px);
}
.block-link-items a {
  color: white;
}
@media screen and (max-width: 1500px) {
  .block-link-items li {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media screen and (max-width: 1200px) {
  .block-link-items li {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 900px) {
  .block-link-items li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .block-link-items li {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .block-link-items {
    gap: 10px;
  }
  .block-link-items li {
    width: 100%;
  }
}