/* USER VARIABLES SECTION */

:root {
	--primary: #1F1F1F;
	--green: #A5F853;
	--accent-color: rgba(255, 255, 255, 0.4);
	--white: #fff;
	--regular-text: 16px;
	--lineheight: 160%;
	--pfont: akshar, sans-serif;
	--hfont: oswald, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--pletterspacing: .4px;
	--hletterspacing: .2px;
}


/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	--bs-gutter-x: .625rem;
}

.row, .row > * {
	--bs-gutter-x: 1.25rem;
}

/* FONTS LOAD SECTION */

@font-face {
	src: url("../fonts/Akshar-Regular.woff2") format("woff2");
	font-family: "akshar";
	font-weight: 400;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Akshar-Medium.woff2") format("woff2");
	font-family: "akshar";
	font-weight: 500;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Akshar-Bold.woff2") format("woff2");
	font-family: "akshar";
	font-weight: 700;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Oswald-Demibold.woff2") format("woff2");
	font-family: "oswald";
	font-weight: 600;
	font-style: normal;
}

/* GENERAL CSS SETTINGS */

::placeholder {
	color: #666;
}

::selection {
	background-color: var(--white);
	color: #fff;
}

input, textarea {
	outline: none;
}

input:focus:required:invalid, textarea:focus:required:invalid {
	border-color: red;
}

input:required:valid, textarea:required:valid {
	border-color: green;
}

body {
	font-family: var(--pfont);
	letter-spacing: var(--pletterspacing);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	background-color: var(--primary);
	color: var(--white);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* UTILITIES */

.text-center {
	text-align: center !important;
}

.text-start {
	text-align: start !important;
}

.text-end {
	text-align: end !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-green {
	color: var(--green);
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

.position-relative {
	position: relative;
}

.position-sticky {
	position: sticky;
	top: 24px;
}

.vw-100 {
	width: 100vw;
}

.vh-100 {
	height: 100vh;
}

/* SPACING */

.gap-3 {
	gap: 16px;
}

/* CONTENT */

h1, h2, h3, .h3 {
	font-family: var(--hfont);
	letter-spacing: var(--hletterspacing);
	text-transform: uppercase;
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 0;
}

h1 {
	font-size: 96px;
}

h2 {
	font-size: 48px;
}

h3, .h3 {
	font-size: 24px;
}

h4, .h4 {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
}

h5 {
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
	color: rgba(255, 255, 255, 0.5);
}

p {
	margin-bottom: 16px;
}

img {
	max-width: 100%;
}

.content > * {
	margin-bottom: 16px;
}

.content h2 {
	margin-bottom: 37px;
}

.content h3 {
	margin-top: 16px;
	margin-bottom: 25px;
}

.content h4 {
	margin-top: 25px;
}

.content hr {
	margin: 0;
}

.content *:last-child {
	margin-bottom: 0;
}

.content img {
	width: auto;
	height: auto;
}

.content blockquote {
	position: relative;
	background-color: var(--green);
	color: var(--primary);
	padding: 16px 48px 16px 16px;
}

.content blockquote::before {
	content: '';
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url(../images/icons/icon_info.svg) center no-repeat;
}

.content .wp-block-table {
	overflow-x: auto;
}

.content table {
	min-width: 700px;
}

/* .content a:has(img) {
  transition: all .3s;
}
.content a:has(img):hover {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  cursor: zoom-in;
} */

button {
	background: unset;
	border: unset;
}

table {
	background-color: rgba(255, 255, 255, 0.2);
	width: 100%;
}

table thead {
	background-color: var(--green);
}

table tbody {
	background-color: rgba(255, 255, 255, 0.2);
}

table tbody tr {
	border-top: 1px solid rgba(255, 255, 255, 0.4);
}

table th {
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
}

table th,
table td {
	padding: 12px 14px;
	/* width: calc(100% / 3); */
	/* vertical-align: unset; */
}

hr {
	background: rgba(255, 255, 255, 0.5);
}

ul,
ol {
	list-style: none;
	padding-left: 29px;
	margin: 0;
}

ol > li {
	counter-reset: line;
	counter-increment: step-counter;
}

ul > li,
ol > li {
	position: relative;
	margin-bottom: 8px;
}

ul > li::before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 7px;
	left: -25px;
	border-style: solid;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
	border-color: var(--green);
}

ol > li::before {
	content: counter(step-counter) '.';
	color: var(--green);
	display: inline-block;
	position: absolute;
	top: 2px;
	left: -21px;
	width: 10px;
}

blockquote p {
	margin: 0;
}


blockquote {
	margin-top: 32px !important;
	margin-bottom: 32px !important;
}

ol > li {
	counter-reset: line;
	counter-increment: step-counter1;
}

ul > li,
ol > li {
	position: relative;
	margin-bottom: 8px;
}

ul > li::before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 7px;
	left: -18px;
	border-style: solid;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
	border-color: var(--green);
}

ol > li::before {
	content: counter(step-counter1) '.';
	color: var(--green);
	display: inline-block;
	position: absolute;
	top: 2px;
	left: -21px;
	width: 10px;
}

/* .article-header {
  padding-top: 100px !important;
} */

.breadcrumb__item {
	flex-shrink: 0;
}

/* LIGHTBOX  */

.content a.zoom-lightbox {
	display: block;
	position: relative;
	text-align: center;
}

.content a.zoom-lightbox img {
	position: relative;
	transition: all .3s;
	filter: brightness(60%);
}

.content a.zoom-lightbox::before {
	content: '';
	background: url(../images/icons/icon-zoom.svg) center no-repeat;
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	left: calc(50% - 25px);
	top: calc(50% - 25px);
	z-index: 1;
	pointer-events: none;
}

.content a.zoom-lightbox img:hover {
	filter: brightness(35%);
	cursor: zoom-in;
}

.lb-outerContainer {
	background-color: transparent !important;
}

.lb-dataContainer {
	position: relative;
	z-index: 999;
	padding-top: 0 !important;
	padding-bottom: 10px !important;
}

.lb-outerContainer {
	background: unset;
	border-radius: 0;
}

.lightbox .lb-image {
	border: none;
	border-radius: 0;
}

.lb-data .lb-details {
	display: none !important;
}

.lb-data .lb-close {
	background: url(../images/icons/icon-slider-close.svg) center no-repeat;
	opacity: 1;
	position: relative;
	right: -8px;
}

.lb-data .lb-close:hover {
	opacity: 0.7;
}

.lb-nav {
	top: 40px;
}

.lb-nav a.lb-prev {
	background-image: url(../images/icons/icon-slider-prev.svg);
}

.lb-nav a.lb-next {
	background-image: url(../images/icons/icon-slider-next.svg);
}

.lb-nav > a {
	opacity: .6 !important;
}

.lb-nav > a:hover {
	opacity: 1 !important;
}

/* LINKS & BUTTONS */

a {
	color: var(--white);
	-webkit-transition: color .3s;
	transition: color .3s;
}

a:hover {
	color: var(--green);
}

.btn {
	color: var(--white);
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	text-decoration: underline;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	-webkit-transition: color .3s;
	transition: color .3s;
}

.btn_white {
	color: var(--white);
}

.btn:hover {
	color: var(--green);
}

a.btn_primary {
	color: var(--primary);
}

a.btn_primary:hover {
	color: #5fc000;
}

.btn_arrow-left {
	padding: 20px 0 15px 77px;
}

.btn_arrow-right {
	padding: 20px 75px 15px 0;
}

.btn_arrow-left::before,
.btn_arrow-right::after {
	content: '';
	position: absolute;
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: url(../images/icons/icon_arrow-with-circle.svg) center no-repeat;
	-webkit-transition: filter .3s;
	transition: filter .3s;
}

.btn_arrow-left::before {
	top: 0;
	left: 0;
}

.btn_arrow-right::after {
	top: 0;
	right: 0;
}

.btn_large {
	font-family: var(--hfont);
	font-weight: 600;
	font-size: 32px;
	line-height: 120%;
}

.btn_large.btn_arrow-left {
	padding: 13px 0 13px 77px;
}

.btn:hover::before,
.btn:hover::after {
	filter: invert(33%) sepia(50%) saturate(507%) hue-rotate(44deg) brightness(109%) contrast(97%);
}

.btn-table-arrow {
	display: flex;
	justify-content: end;
	margin-right: 12px;
	gap: 8px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: var(--green);
	text-transform: uppercase;
	text-decoration: none;
}

.btn-table-arrow::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/icons/icon-btn-arrow.svg) center no-repeat;
	transition: filter .3s;
}

.btn-table-arrow:hover {
	color: var(--white);
}

.btn-table-arrow:hover::after {
	filter: grayscale(1);
}

.btn-arrow {
	display: flex;
	align-items: center;
	justify-content: end;
	margin-right: 12px;
	gap: 8px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: var(--green);
	text-transform: uppercase;
	text-decoration: none;
}

.btn-arrow--black {
	border-radius: 24px;
	color: var(--primary);
}

.btn-arrow--black::after {
	content: '';
	position: relative;
	top: -1px;
	display: inline-block;
	width: 20px;
	height: 16px;
	background: url(../images/icons/icon-btn-arrow-black.svg) center no-repeat;
	transition: filter .3s;
}

/* BREADCRUMB */

.breadcrumb {
	margin: 0;
	padding: 0 0 28px 0;
}

.breadcrumb__item {
	position: relative;
	display: inline-block;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	margin-bottom: 0;
	padding-left: 32px;
}

.breadcrumb > *:first-child {
	padding: 0;
}

.breadcrumb__item.active {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: underline;
}

.breadcrumb__item + .breadcrumb__item::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 7px;
	left: 11px;
	border-style: solid;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
	color: rgba(255, 255, 255, 0.5);
}


.breadcrumb__item::before {
	content: none;
	margin: 0;
}

/* HEADER */

.logo {
	width: 60px;
}

.header-nav {
	margin-right: calc(-1 * var(--bs-gutter-x));
	margin-left: calc(-1 * var(--bs-gutter-x));
}

.header-inner {
	padding: 24px 0 23px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.menu {
	margin: 0;
	padding: 0;
}

.menu__item {
	display: inline-block;
	margin-left: 120px;
	margin-bottom: 0;
}

.menu__item::before {
	content: none;
}

.menu__item.active a {
	color: var(--green);
}

/* SECTIONS */

.intro {
	padding-top: 105px;
	padding-bottom: 120px;
}

.intro-header {
	padding-bottom: 64px;
}

.intro-header__desc {
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	color: rgba(255, 255, 255, 0.5);
	padding: 10px 6px 30px 0;
}

.intro-banner {
	height: 480px;
	background: url(../images/section-intro_image-full.webp) center 40% no-repeat;
	background-size: cover;
}

.page:not(.home, .page-template-page-contacts) {
	padding-top: 110px;
	padding-bottom: 80px;
}

.page-header {
	padding-bottom: 100px;
}

.page-header__desc {
	margin-top: 19px;
	max-width: 600px;
	font-weight: 500;
	line-height: 140%;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.5);
}


.star-rating {
	display: flex;
	gap: 4px;
}

.star {
	display: inline-block;
	width: 24px;
	height: 24px;
	transition: opacity .3s;
}

.star-rating_white .star {
	width: 30px;
}

.star-rating_black .star {
	width: 30px;
}

.star_full {
	background: url(../images/icons/icon-star-green.svg) center no-repeat;
}

.star_full_green {
	background: url(../images/icons/icon-star-green-bg.svg) center no-repeat;
}

.star_full_white {
	background: url(../images/icons/icon-star-white.svg) center no-repeat;
}

.star_empty {
	background: url(../images/icons/icon-star-gray.svg) center no-repeat;
}

.progress-bar {
	position: sticky;
	left: 0;
	top: 0;
	width: 0;
	height: 3px;
	background: var(--green);
	z-index: 1;
}

/* .stickyed {
  position: sticky;
  display: flex;
  flex-direction: column;
  align-self: start;
  width: 100%;
  top: 0;
  background-color: tomato;
  z-index: 999;
}
.progress {
  display: flex;
  width: 0;
  transition: width linear;
  overflow: hidden;
}
.progress hr {
  width: 100%;
  height: 50px;
  margin-top: -1px;
  background: var(--green);
} */

.article-nav {
	padding: 46px 0 48px;
	flex-wrap: wrap;
}

.article-banner {
	position: absolute;
	top: 0;
	width: 100%;
	height: 627px;
	background: linear-gradient(180deg, rgba(31, 31, 31, 0.75) 0%, rgba(31, 31, 31, 0.3) 100%), url(../images/section-article_image.webp) center no-repeat;
	background-size: cover;
	z-index: -1;
}

.article-decor-line {
	height: 2px;
	width: 55%;
	background: var(--green);
}

.article-author {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 40px 0 40px;
}

.article-author__photo {
	width: 48px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
}

.article-author__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.article-author__name {
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	text-transform: uppercase;
}

.accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s;
}

.bk-sites-hr {
	margin: 40px 0;
}

.bk-item {
	position: relative;
	margin-bottom: 72px;
}

.bk-item-main {
	display: flex;
	justify-content: space-between;
}

.bk-item-general {
	flex-basis: 31.5%;
	min-height: 210px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px;
	background: var(--white);
}

.bk-item-general img {
	width: 240px;
	height: auto;
}

.bk-item-offer {
	flex-basis: 18.5%;
}

.bk-item-offer__info {
	font-weight: 700;
	font-size: 32px;
	line-height: 130%;
	color: var(--green);
	margin-bottom: 12px;
}

.bk-item-offer__caption {
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	margin-bottom: 24px;
}

.bk-item-adv {
	flex-basis: 36%;
}

.bk-item-adv-wrap {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.bk-item__adv-list {
	flex: 1 0 calc(50% - 12px);
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
}

.bk-item__adv-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	margin: 0;
}

.bk-item__adv-item::before {
	content: '';
	transform: none;
	border: none;
	position: initial;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}

.bk-item__adv-list_disadv li::before {
	background: url(../images/icons/icon-li-minus.svg) center no-repeat;
}

.bk-item__adv-list_adv li::before {
	background: url(../images/icons/icon-li-plus.svg) center no-repeat;
}

.bk-item-more-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin: 18px 0;
}

.bk-link {
	font-weight: 500;
	font-size: 10px;
	line-height: 15px;
	color: var(--green);
	text-transform: uppercase;
	text-decoration: underline;
	transition: color .3s;
}

.bk-link:hover {
	color: var(--white);
	text-decoration: none;
}

.bk-item-accordion-panel-content {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0 21px;
}

.bk-item-brief {
	flex: 1 0 40%;
	padding: 32px 24px 24px;
}

.bk-item-brief__head-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.bk-item-brief__author {
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;
}

.bk-item-brief__date {
	font-size: 14px;
	line-height: 15px;
	color: rgba(255, 255, 255, 0.4);
}

.bk-item-brief__text {
	margin-bottom: 16px;
}

.bk-item-info {
	flex: 1 0 auto;
	padding: 32px 0 24px;
}

.bk-item-about {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-weight: 500;
	font-size: 14px;
	line-height: 15px;
}

.bk-item-about__caption {
	color: rgba(255, 255, 255, 0.4);
}

.bk-item-pics {
	flex: 0 0 37%;
	display: flex;
	gap: 24px;
}

.bk-item-decor {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -32px;
	height: 32px;
	background: url(../images/bk-item-decor.jpg) center repeat-x;
}

/* .swiper */
.swiper-bk-sites {
	position: relative;
	margin-bottom: 40px;
}

.swiper {
	padding-bottom: 60px;
}

.swiper-button-prev,
.swiper-button-next {
	transform: scale(.7);
	color: var(--green);
	top: unset;
	bottom: 0;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: .25;
}

.swiper-scrollbar-drag {
	background: var(--green);
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
	bottom: 20px;
	width: calc(100% - 100px);
	margin: 0 50px;
}

.bk-table {
	min-width: auto !important;
}

.bk-table,
.bk-table * {
	background: none;
	text-align: center;
}

.bk-table-compare {
	table-layout: fixed;
}

.bk-table-compare tbody tr:first-child {
	border-top: none;
}

.bk-table-compare th {
	padding: 8px 14px 4px;
}

.bk-table-compare td {
	padding: 14px;
	text-transform: lowercase;
}

.bk-table-compare th {
	font-weight: 500;
	font-size: 11px;
	line-height: 15px;
	color: var(--green);
	text-transform: uppercase;
}

.color-ghost {
	color: rgba(255, 255, 255, 0.5);
}

.bt-table-compare-btn {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--green);
	transition: color .3s;
}

.bt-table-compare-btn:hover {
	color: var(--white);
}

.bk-table-topbetlarge {
	width: 100%;
	/* table-layout: fixed; */
}

.bk-table-topbetlarge td {
	width: 100%;
}

.bk-table-topbetlarge th {
	font-weight: 600;
	font-size: 16px;
	line-height: 18px;
	text-transform: uppercase;
	color: var(--white);
	padding-bottom: 0;
}

.bk-table-topbetlarge tbody tr {
	border-top: 1px solid var(--green);
	border-left: 1px solid var(--green);
}

.bk-table-topbetlarge tr {
	position: relative;
}

.bk-table-topbetlarge th.bk-table__rank {
	width: 0;
	height: 0;
}

.bk-table-topbetlarge td.bk-table__rank {
	position: absolute;
	top: -16px;
	left: -16px;
	display: flex;
	width: 32px;
	height: 32px;
	justify-content: center;
	align-items: center;
	color: var(--primary);
	background: var(--green);
}

.bk-table-topbetlarge td.bk-table__operator {
	width: 27%;
}

.bk-table-topbetlarge td.bk-table__bonus {
	width: 25%;
}

.bk-table-topbetlarge td.bk-table__desc {
	width: 30%;
}

.bk-table-topbetlarge td.bk-table__action {
	width: 18%;
}

td.bk-table__action {
	text-align: end;
}

.bk-table__bonus-title {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
}

.bk-table__bonus-caption {
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
	color: var(--green);
}

table td.bk-table__desc {
	text-align: start;
}

.bk-table__desc span {
	font-weight: 600;
}

.bk-table__desc ul {
	padding: 0;
	margin-bottom: 4px;
}

.bk-table__desc * {
	text-align: start;
	font-size: 12px;
	line-height: 160%;
}

.bk-table__desc ul li {
	margin-bottom: 4px;
}

.bk-table__desc ul li::before {
	content: '+ ';
	position: initial;
	transform: none;
	border: none;
}


.bk-table-topbetsmall {
	background: rgba(255, 255, 255, 0.05);
}

.bk-table-topbetsmall th {
	font-weight: 500;
	font-size: 11px;
	line-height: 15px;
	color: var(--green);
	text-transform: uppercase;
	padding: 18px 12px;
}

.bk-table-topbetlarge tbody tr {
	border-top: 1px solid var(--green);
}

.bk-table-topbetsmall .bk-table__rank {
	text-align: left;
}

.bk-table-topbetsmall td.bk-table__rank span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--green);
	color: var(--primary);
	border-radius: 50%;
}

.bk-table-topbetsmall .bk-table__operator img {
	width: 160px;
}

/* .table-bk-list */
.table-bk-list,
.table-bk-list__thead,
.table-bk-list__tbody {
	background: none;
}

.table-bk-list {
	background: unset;
}

.table-bk-list__thead,
.table-bk-list__tbody {
	display: flex;
	flex-direction: column;
}

.table-bk-list__tbody {
	gap: 24px 0;
}

.table-bk-list__thead-tr,
.table-bk-list__tbody-tr {
	display: flex;
	/* flex-wrap: wrap; */
}
.table-bk-list--no-action .table-bk-list__thead-tr,
.table-bk-list--no-action .table-bk-list__tbody-tr {
	justify-content: space-around;
}
.table-bk-list__tbody-tr {
	border-radius: 85px;
	border: none;
}

.table-bk-list__th,
.table-bk-list__td {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.table-bk-list__th-rank,
.table-bk-list__td-rank {
	flex-basis: 11%;
	align-items: start;
}

.table-bk-list__th-operator,
.table-bk-list__td-operator {
	flex-basis: 23%;
}

.table-bk-list__th-bonus,
.table-bk-list__td-bonus {
	flex-basis: 23%;
}

.table-bk-list__th-rating,
.table-bk-list__td-rating {
	flex-basis: 23%;
}

.table-bk-list__th-action,
.table-bk-list__td-action {
	flex-basis: 20%;
}

.table-bk-list__th-action {
	padding: 20px 50px;
}

.table-bk-list__th {
	font-weight: 600;
	font-size: 10px;
	line-height: 15px;
	color: rgba(255, 255, 255, 0.3);
}

.table-bk-list__tbody-tr {
	background: rgba(255, 255, 255, 0.05);
}

.td-rank__rank {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--green);
	color: var(--green);
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
}

.table-bk-list__tbody-tr:first-of-type .td-rank__rank {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: var(--green);
	color: var(--primary);
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
}

.td-bonus__desc {
	color: var(--green);
}

.table-bk-list__btn {
	background: #1F1F1F;
	border-radius: 32px;
	padding: 12px 24px;
	color: var(--green);
	text-decoration: none;
	text-transform: uppercase;
}

.table-bk-list__btn::after {
	content: '';
	position: relative;
	top: 3px;
	margin-left: 5px;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/icons/icon-btn-arrow.svg) center no-repeat;
	transition: filter .3s;
}

.table-bk-list__btn:hover {
	color: var(--white);
}

.table-bk-list__btn:hover::after {
	filter: grayscale(100%);
}


/*  */

.bk-score__bonus {
	font-weight: 700;
	text-transform: uppercase;
	text-align: start;
}

.rating {
	display: flex;
	justify-content: center;
	gap: 34px;
	margin-right: 12px;
}

.rect {
	display: inline-block;
	width: 8px;
	height: 22px;
}

.rect_full {
	background: var(--green);
}

.rect_empty {
	background: var(--white);
}

.bk-score__summary {
	font-weight: 700;
	background: var(--green);
	color: var(--primary);
	padding: 4px;
	text-align: end;
}

.bk-score tr:last-child {
	background: rgba(255, 255, 255, 0.05);
}

.bk-score tr:last-child td:first-child {
	color: var(--green);
}


.modal {
	display: none;
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.8);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	position: relative;
	background: #2A2A2A;
	margin: 7% auto;
	width: 820px;
}

.modal-close {
	position: absolute;
	top: 0px;
	right: -50px;
	display: block;
	width: 32px;
	height: 32px;
	background:  url(../images/icons/icon-close.svg) center no-repeat;
	transition: opacity .3s;
}

.modal-close:hover {
	opacity: .5;
}

.modal-btn {
	color: var(--white);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	padding: 8px 100px;
	border: 2px solid transparent;
	margin: 0 16px;
	transition: border .3s, background .3s, color .3s;
}

.modal-btn_green {
	background: var(--green);
	color: var(--primary);
}

.modal-btn:hover {
	border: 2px solid var(--green);
	color: var(--white);
	background: transparent;
}


.bk-compare-modal-title {
	padding-left: 12px;
	font-weight: 500;
	font-size: 24px;
	line-height: 140%;
	text-transform: uppercase;
	color: var(--white);
}

.modal-btns {
	text-align: center;
	padding: 0 20px 20px;
}


.modal-close--notave {
	width: 32px;
	height: 32px;
	top: -40px!important;
	bottom: unset;
	right: 0!important;
	left: unset;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><rect x="0.5" y="0.5" width="31" height="31" fill="%232A2A2A"/><path d="M25.3332 6.66675L6.6665 25.3334M25.3332 25.3334L6.6665 6.66675" stroke="%23A5F853" stroke-width="2.66667" stroke-linecap="round"/><rect x="0.5" y="0.5" width="31" height="31" stroke="%23A5F853"/></svg>');
	transition: .3s;
}

.modal-close--notave:hover {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><rect x="0.5" y="0.5" width="31" height="31" fill="%232A2A2A"/><path d="M25.3332 6.66675L6.6665 25.3334M25.3332 25.3334L6.6665 6.66675" stroke="%23A5F853" stroke-width="2.66667" stroke-linecap="round"/><rect x="0.5" y="0.5" width="31" height="31" stroke="%23A5F853"/></svg>');
	opacity: .7;
}


.modal-content--notave {
	width: 780px!important;
	margin: 5% auto!important;
	border: 1px solid #A5F853;
	background: #2A2A2A;
}

@media (max-width : 820px) {
	.modal-content--notave {
		margin: 10% auto!important;
	}
}

@media (max-width : 575px) {
	.modal-content--notave {
		width: 90%!important;
	}
}

/* notave */

.notave {
	position: relative;
	text-align: center;
	padding: 32px 0;
}

.notave__title {
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%; /* 25.2px */
	text-transform: uppercase;
	padding: 10px;
	text-align: center;
	margin-bottom: 14px;
	border-top: 1px solid #A5F853;
	border-bottom: 1px solid #A5F853;
	background: rgba(165, 248, 83, 0.05);
}

.notave__subtitle {
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 25.6px */
	margin-bottom: 16px;
}


.notave__logo-wrap {
	margin-bottom: 16px;
}
.notave__logo-img {
	background-color: #fff;
	width: 232px;
}

.notave__bonus {
	color: #FFF;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 160%; /* 38.4px */
	margin-bottom: 16px;
	padding: 0 12px;
}
.notave__bonus span {
	color: #A5F853;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 160%;
}
.notave__btn-wrap {
	display: flex;
	justify-content: center;
	text-align: center;
}

.notave__btn {
	display: flex;
	padding: 12px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: #A5F853;
	color: #1F1F1F;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	text-decoration: none;
  transition: background .3s, color .3s;
}

.notave__btn:hover {
	background: #1F1F1F;
	color: #A5F853;
}

/* .notave__btn {} */

@media (max-width : 767px) {
}













.form-search-wrap {
	background: var(--primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	padding-bottom: 20px;
}

.form-search {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-grow: 1;
	border-bottom: 1px solid var(--white);
}

.form-search__input {
	color: var(--white);
	padding: 12px 52px 12px 12px;
	width: 100%;
	background: transparent;
	border: none;
}

.form-search__button {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-block;
	background: url(../images/icons/icon-form-search.svg) center no-repeat;
	width: 24px;
	height: 24px;
	transition: opacity .3s;
}

.form-search__button:hover {
	transition: .7;
}


.form-search__button:hover::after {
	opacity: .7;
}


.bk-compare-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding: 20px 20px 32px;
}

.bk-compare-item {
	flex-basis: calc(25% - 20px);
	position: relative;
	padding: 32px 16px;
	border: 5px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 2px solid var(--white);
}

.bk-compare-item.active {
	border-color: var(--green);
}

.bk-compare-item__close {
	display: none;
	position: absolute;
	top: 8px;
	right: 8px;
	cursor: pointer;
	background: var(--primary);
	transition: opacity .3s;
	padding: 2px;
}

.bk-compare-item__close::after {
	content: '';
	display: block;
	background: url(../images/icons/icon-close.svg) center no-repeat;
	width: 10px;
	height: 10px;
	background-size: contain;
}

.bk-compare-item.active .bk-compare-item__close {
	display: block;
}

.bk-compare-item__close:hover {
	opacity: .5;
}

.bk-compare-item__title {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	text-align: center;
	letter-spacing: 0.02em;
}

.bk-advantages {
	display: flex;
	margin-top: 72px;
	position: relative;
	background: #2A2A2A;
	padding: 24px 48px;
}

.bk-advantages-adv {
	position: relative;
	top: -48px;
	left: 0;
	color: var(--primary);
	background: var(--green);
	padding: 24px;
	width: 270px;
	flex-shrink: 0;
}

.bk-advantages-disadv {
	padding: 24px;
}

.bk-advantages ul {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.bk-advantages li {
	display: flex;
	align-items: center;
	margin: 0;
}

.bk-advantages li::before {
	position: initial;
	border: none;
	transform: none;
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 4px;
}

.bk-advantages-adv li {
	flex-basis: 100%;
}

/* .bk-advantages-disadv li {
	flex-basis: calc(50% - 8px);
} */

.bk-advantages-adv li::before {
	background: url(../images/icons/icon-adv-check.svg) center no-repeat
}

.bk-advantages-disadv li::before {
	background: url(../images/icons/icon-adv-chest.svg) center no-repeat
}

.bk-roster {
	background: rgba(165, 248, 83, 0.05);
	border: 1px solid var(--green);
	padding: 24px;
}

.bk-contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-top: 40px;
}

.bk-contact-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.05);
	padding: 10px;
	text-transform: uppercase;
	text-decoration: none;
}

.bk-contact-item::before {
	content: '';
	width: 44px;
	height: 44px;
	background-color: rgba(255, 255, 255, 0.05);
	background-position: center;
	background-repeat: no-repeat;
}

.bk-contact-item_fm::before {
	background-image: url(../images/icons/icon-contact-fm.svg);
}

.bk-contact-item_tw::before {
	background-image: url(../images/icons/icon-contact-tw.svg);
}

.bk-contact-item_fb::before {
	background-image: url(../images/icons/icon-contact-fb.svg);
}

.bk-contact-item_wa::before {
	background-image: url(../images/icons/icon-contact-wa.svg);
}

.bk-contact-item_in::before {
	background-image: url(../images/icons/icon-contact-in.svg);
}

.bk-contact-item_chat::before {
	background-image: url(../images/icons/icon-contact-chat.svg);
}

.bk-contact-item_phone::before {
	background-image: url(../images/icons/icon-contact-phone.svg);
}

.bk-contact-item_email::before {
	background-image: url(../images/icons/icon-contact-email.svg);
}

.faq-title {
	margin-top: 40px !important;
	font-weight: 700;
	font-size: 40px;
	line-height: 130%;
	color: var(--green);
	text-transform: uppercase;
}

.faq {
	border-bottom: 2px solid #353535;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.faq__title {
	position: relative;
	font-weight: 500;
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0.02em;
	margin-bottom: 12px;
	padding: 12px 80px 12px 0;
	cursor: pointer;
}

.faq__chevron {
	position: absolute;
	top: 4px;
	right: 4px;
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../images/icons/icon-chevron-faq-down.svg) center no-repeat;
}

.faq__title.active .faq__chevron {
	background: url(../images/icons/icon-chevron-faq-up.svg) center no-repeat;
}

.rate-share {
	display: flex;
	justify-content: space-around;
	text-align: center;
	margin-top: 40px;
}

.rate-share__title {
	display: block;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.rate .rate-share__title {
	margin-bottom: 28px;
}

.article .content .star-rating {
	margin: 16px 0;
}

.share-item::before {
	content: '';
	display: inline-block;
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-position: center;
}

.share-item_tg::before {
	background-image: url(../images/icons/icon-share-tg.svg);
}

.share-item_tw::before {
	background-image: url(../images/icons/icon-share-tw.svg);
}

.share-item_fb::before {
	background-image: url(../images/icons/icon-share-fb.svg);
}

.share-item_wa::before {
	background-image: url(../images/icons/icon-share-wa.svg);
}

.share-item {
	transition: opacity .3s;
}

.share-item:hover {
	opacity: .6;
}

.articles {
	padding-bottom: 80px;
}

.articles-body {
	border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.articles-body-nav {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}

.articles-body-nav__link {
	padding: 10px 10px 8px;
	border: 1px solid var(--green);
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	text-decoration-line: underline;
	text-transform: uppercase;
	color: var(--white);

}

.articles-body-nav__link:hover {
	color: var(--green);
}

.articles-body-nav__link.active {
	background: var(--green);
	pointer-events: none;
	cursor: default;
	color: var(--primary);
}

.article-item {
	padding: 60px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.article-item__rtime {
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 12px;
}

.article-item__cat {
	color: #a5f853cc;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.article-item__rating {
	margin-bottom: 32px;
}

.date {
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	color: rgba(255, 255, 255, 0.4);
}

.date_bright {
	color: rgba(255, 255, 255, 0.5);
}

.article-item__title-link {
	text-decoration: none;
}

.article-item__title-link:hover {
	color: unset;
}

.article-item__title {
	margin-bottom: 30px;
}

.article-item__image {
	aspect-ratio: 35 / 23;
	object-fit: cover;
	width: 100%;
}

.rounded-300 {
	border-radius: 300px;
}

.article {
	padding-bottom: 100px;
}

.article .breadcrumb {
	padding: 0;
}

.article-header {
	height: calc(600px - 88px);
	/* height: auto!important; */
	padding-top: 64px;
}

.article-header__date {
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	text-transform: uppercase;
	color: var(--white);
	opacity: 0.5;

}

.article-header__rtime {
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 16px;
}

.article-header__title {
	font-size: 80px;
	margin-bottom: 42px;
}

.benefits {
	display: flex;
	align-items: center;
	gap: 32px;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

.benefit-item__caption {
	color: var(--white);
}

.benefit-item__info {
	color: var(--primary);
	background: var(--green);
	padding: 5px 10px 2px;
	border-radius: 199px;
	min-width: 32px;
	min-height: 32px;
	text-align: center;
}


.similar {
	padding-bottom: 80px;
}

.similar-header {
	padding-bottom: 24px;
}

.similar-body {
	padding-top: 24px;
}

.similar-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	border: none;
}

.similar-item .btn_arrow-left {
	margin-top: auto;
}

.similar-item__image-wrap {
	position: relative;
	aspect-ratio: 5 / 3;
	overflow: hidden;
	margin-bottom: 15px;
}

.similar-item__image-wrap a {
	display: block;
	width: 100%;
	height: 100%;
}

.similar-item__image-wrap a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.similar-item__rating {
	position: absolute;
	bottom: 32px;
	left: 20px;
}

.similar-item__date {
	margin-bottom: 10px;
}

.similar-item__title {
	margin-bottom: 8px;
}

.similar-item__rtime {
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 500;
}

.aside-list__item,
.kamatoc li {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 15px;
}

.aside-list__item::before,
.kamatoc li::before {
	border-color: var(--white);
	top: calc(50% - 5px);
	left: -26px;
}

.aside-list__link,
.kamatoc a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.7);
}

.aside-list__link.active,
.kamatoc a.active {
	color: var(--green);
}

.aside__btn {
	display: block;
	width: 100%;
	text-align: start;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 140%;
	font-weight: 500;
	padding: 12px;
	color: #1F1F1F;
	background-color: var(--green);
	margin-bottom: 24px;
	position: relative;
}

.aside__btn::after {
	content: '';
	position: absolute;
	top: 3px;
	right: 10px;
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../images/icons/icon-chevron-faq-up.svg) center no-repeat;
}

.aside__btn.active::after {
	transform: rotate(180deg);
}

.contacts-body__item {
	padding: 46px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.contacts-body__item:last-child {
	padding-bottom: 17px;
}

.author__header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
}

.author__image {
	flex-shrink: 0;
	width: 160px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
}

.author__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.author__title {
	flex-grow: 1;
	font-weight: 600;
	font-size: 32px;
	line-height: 120%;
}

.author__content {
	margin-bottom: 162px;
}

.author__socials-wrap {
	flex-shrink: 0;
	display: flex;
	gap: 8px;
}

.author__social {
	transition: opacity .3s;
}

.author__social:hover {
	opacity: .6;
}

.team {
	padding-top: 80px;
	padding-bottom: 80px;
}

.team__banner {
	position: absolute;
	top: 0;
	width: 100%;
	height: 340px;
	background: linear-gradient(180deg, rgba(31, 31, 31, 0.75) 0%, rgba(31, 31, 31, 0.3) 100%), url(../images/page-team_banner.jpg) center no-repeat;
	background-size: cover;
	z-index: -1;
}

.team__title {
	margin-bottom: 110px;
}

.team__content {
	margin-top: 40px;
}

.team-item {
	border-top: 1px solid rgba(255, 255, 255, 0.4);
	padding-top: 40px;
	margin-bottom: 40px;
}

.team-item__image {
	display: block;
	width: 100%;
	margin-bottom: 32px;
}

.team-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.team-item__title {
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	text-decoration: none;
}

.team-item__position {
	margin-bottom: 32px;
	font-weight: 400;
	font-size: 21px;
	line-height: 120%;
	color: var(--green);
}

.team-item__socials {
	display: flex;
	justify-content: space-between;
}

.team-item__social {
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	text-decoration: underline;
	text-transform: uppercase;
}


.page-numbers {
	padding: 5px 12px;
	color: var(--white);
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	-webkit-transition: color .3s;
	transition: color .3s;
}

.page-numbers:hover {
	color: var(--green);
}

.page-numbers.current {
	color: rgba(255, 255, 255, 0.4);
}


/* .bk-bottombox */

.bk-bottombox {
	position: sticky;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: 0;
	background: #4C4C4C;
	padding: 12px 0;
	/* border-top: 1px solid var(--white); */
	display: none;
}

.bk-bottombox-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bk-bottombox__image {
	width: 150px;
}

.bk-bottombox__rating-betlogo-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.bk-bottombox__rating-betlogo-caption,
.bk-bottombox__rating-betlogo-score {
	font-weight: 400;
	font-size: 10px;
	line-height: 15px;
	color: var(--white);
}

.bk-bottombox__rating-betlogo {
	flex-basis: 100%;
	margin-top: 4px;
}

.rating-betlogo {
	display: flex;
	gap: 4px;
}

.rating-betlogo__star {
	display: inline-block;
	width: 16px;
	height: 16px;
}

.rating-betlogo__star--full {
	background: url(../images/icons/icon-star-betlogo-full.svg) center no-repeat;
}

.rating-betlogo__star--empty {
	background: url(../images/icons/icon-star-botlogo-empty.svg) center no-repeat;
}

.bk-bottombox__bonus-caption {
	font-weight: 400;
	font-size: 10px;
	line-height: 15px;
	color: var(--white);
}

.bk-bottombox__bonus-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 21px;
	color: var(--white);
	margin-top: 4px;
}

.bk-bottombox__btn-bonus {
	display: none;
}

.bk-bottombox__btn {
	flex-shrink: 0;
	padding: 10px 24px 8px;
	background: var(--green);
	color: var(--primary);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	line-height: 18px;
	text-decoration: none;
	transition: color .3s, background .3s;
}

.bk-bottombox__btn:hover {
	color: var(--white);
	background: var(--primary);
}


/* bk-best-item */

.bk-best-item {
	border-radius: 8px;
	padding: 34px 28px;
	text-align: center;
	border: 1px solid var(--green);
	background: #1F1F1F;
	margin-bottom: 24px;
}

.bk-best-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 102px;
	background-color: white;
	border-radius: 4px;
}

.bk-best-item__image img {
	width: 160px;
	height: auto;
}

.bk-best-item__ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px 60px;
	text-align: left;
}

.bk-best-item__li {
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	color: var(--ghost);
	margin: 0;
}

.bk-best-item__li::before {
	content: '';
	display: inline-block;
	position: initial;
	margin-right: 8px;
	width: 20px;
	height: 20px;
	background: url(../images/icons/icon-li-plus.svg) center no-repeat;
	transform: unset;
	border: none;
	background-size: contain;
}

.bk-best-item__rating {
	justify-content: center;
	margin: 24px 0 32px;
	gap: 0;
}

.bk-best-item__btn {
	margin-bottom: 14px;
	padding: 12px 24px;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 32px;
	color: var(--white);
}

.bk-best-item__btn::after {
	content: '';
	position: relative;
	top: 3px;
	margin-left: 5px;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../images/icons/icon-btn-arrow.svg) center no-repeat;
	transition: filter .3s;
}

.bk-best-item__link {
	display: block;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
}

/* bk-info */

.bk-info {
	background: rgba(165, 248, 83, 0.05);
	border: 1px solid #A5F853;
	box-shadow: 0px 0px 20px rgba(75, 111, 231, 0.06);
	padding: 36px 48px;
	display: flex;
	justify-content: space-between;
	gap: 60px;
	margin-bottom: 40px;
}

.bk-info__image-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 140px;
	padding: 20px;
	border-radius: 8px;
	background: white;
	margin-bottom: 8px;
}

.bk-info__image {
	width: 150px;
}

.bk-info>*:nth-child(1) {
	flex-basis: 30%;
}

.bk-info>*:nth-child(3) {
	flex-basis: 40%;
}

.bk-info>*:nth-child(2) {
	flex-basis: 30%;
}

.bk-info__bonusbtn-wrap {
	flex-shrink: 0;
}

.bk-info__bonus-title {
	font-weight: 700;
	font-size: 32px;
	line-height: 130%;
	color: var(--green);
}

.bk-info__bonus-caption {
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
}

.bk-info__btn {
	margin-top: 24px;
}

.bk-info__payment-list img {
	width: 52px;
	padding: 6px;
}

.bk-bottombox__rating-betlogo-title-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* .bk-bonus */
.bk-bonus {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 46px 30px;
	gap: 24px;
}

.bk-bonus__image {
	border-radius: 4px;
	flex-shrink: 0;
}

.bk-bonus-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
}

.bk-bonus__btn {
	flex-shrink: 0;
	padding: 12px 14px;
	background: var(--green);
	color: var(--primary);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	line-height: 18px;
	text-decoration: none;
	transition: color .3s, background .3s;
}

.bk-bonus__btn:hover {
	color: var(--white);
	background: var(--primary);
}



/* steps */

.steps {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 24px;
}
.step-item {
	border: 1px solid #A5F853;
	background: #2A2A2A;
	padding: 24px;
}
.step-item__media {
	display: block;
	overflow: hidden;
	height: 200px;
	margin-bottom: 12px;
}
.step-item__media>a {
	display: block;
	height: 100%;
}
.step-item__image {
	display: block;
	width: 100%!important;
	height: 100%!important;
	object-position: center;
	object-fit: cover;
}
.step-item__content {
	text-align: center;
	position: relative;
	z-index: 1;
}
.step-item__title {
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	text-transform: uppercase;
}

.step-item--preview {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 350px;
}

.step-item__preview-image {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat:  no-repeat;
	background-size: cover;
	filter: brightness(35%);
}

/* custom-ol */

.custom-ol {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
}

.custom-ol__item {
	display: flex;
	/* display: grid;
	grid-template-columns: 40px auto; */
	gap: 8px;
	border-radius: 2px;
	background: #2A2A2A;
	box-shadow: 0px 0px 24px 4px rgba(0, 43, 114, 0.08);
	color: #FFF;
	margin: 0;
  align-items: stretch;
  min-height: 38px;
  padding: 6px 24px;
}

.custom-ol__item::before {
  position: absolute;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	border-radius: 2px;
	color: #1F1F1F;
	background: #A5F853;
	height: 100%;
	width: 36px;
	min-height: 38px;
  padding-top: 6px;
  padding-left: 2px;
  top: 0!important;
}

/* .bk-short-info */

.bk-short-info__title {
	font-weight: 700;
	font-size: 32px;
	line-height: 130%;
	border-bottom: 1px solid var(--blue);
	margin-bottom: 28px;
}

.bk-short-info {
	background: rgba(165, 248, 83, 0.15);
	border: 1px solid var(--green);
	padding: 36px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 44px 60px;
	max-height: 300px;
	position: relative;
}

.bk-short-info--150 {
	max-height: 150px;
}

.bk-short-info--200 {
	max-height: 200px;
}

.bk-short-info--300 {
	max-height: 300px;
}

.bk-short-info--400 {
	max-height: 400px;
}

.bk-short-info--500 {
	max-height: 500px;
}

.bk-short-info::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 114px;
	background: linear-gradient(180deg, #A5F853 0.01%, #A5F853 0.02%, rgba(165, 248, 83, 0.711736) 25.31%, rgba(165, 248, 83, 0.582358) 33.65%, rgba(165, 248, 83, 0.375199) 55%, rgba(165, 248, 83, 0.0854339) 80%, rgba(165, 248, 83, 0) 100%);
	transform: rotate(-180deg);
}

.bk-short-info.active::before {
	display: none;
}

.bk-short-info__item {
	flex-basis: calc(50% - 30px);
}

.bk-short-info-item__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	text-transform: uppercase;
}

.bk-short-info-item__desc {
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
}

.bk-short-info__btn {
	position: relative;
	top: -20px;
	left: calc(50% - 20px);
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #4C4C4C url(../images/icons/icon-chevron-bk-shrot-info.svg) center no-repeat;
}

.bk-short-info__btn.active {
	transform: rotate(180deg);
}


/* FOOTER */

.footer {
	background: #F3F3F3;
	color: var(--primary);
}

.footer::before {
	content: '';
	display: block;
	width: 100%;
	height: 250px;
	background: url(../images/footer-delimiter.webp) center no-repeat;
	background-size: cover;
}

.footer-top,
.footer-mid,
.footer-bot {
	border-top: 1px solid rgba(31, 31, 31, 0.2);
}

.footer-top,
.footer-bot {
	padding: 23px 0;
}

.footer-mid {
	padding: 52px 0;
}

.footer-top__btn {
	margin-left: 117px;
}

.footer-mid__title {
	margin-bottom: 16px;
}

.footer-mid__desc {
	max-width: 348px;
}

.footer-bot__copyright {
	flex-grow: 1;
}

.footer-bot__age-limit {
	margin-left: 72px;
}

/* CUSTOM STYLES */

.wp-block-image img {
	display: block;
	width: 100%;
	height: auto;
}

.hhero {
	min-height: 600px;
	padding-top: 12px;
	padding-bottom: 40px;
  }

  .hhero__title {
	font-size: 80px;
	margin-bottom: 42px;
	color: var(--white);
	max-width: 960px;
  }

  .hhero__info {
	display: flex;
	flex-direction: column;
	gap: 24px;
  }

  .hhero__content {
	position: relative;
	display: flex;
	gap: 62px;
	padding: 30px 48px;
	background-color: #252921CC;
  }

  .hhero__logo-wrap {
	width: 197px;
	height: 81px;
	background-color: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .hhero__logo-image {
	width: 100%;
	border-radius: 8px;
  }

  .hhero__verified {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #A5F8533D; 
	text-transform: uppercase;
	padding: 6px 30px;
	font-size: 14px;
  }

  .hhero__rating-wrap {
	margin-top: 28px;
  }
  .hhero__rating-inner {
	display: flex;
	align-items: center;
	gap: 12px 28px;
	margin-top: 4px;
  }
  .hhero__rating-caption {
	font-size: 14px;
  }
  .hhero__rating-score {
	font-size: 14px;
  }
  .hhero__rating {
	display: flex;
	gap: 4px
  }
  .hhero__rating-star {
	display: inline-block;
	width: 16px;
	height: 16px;
  }
  .hhero__rating-star--full {
	background: url(https://bet-guide.ke/wp-content/themes/kenya02/assets/images/icons/icon-hero-star-full.svg) center no-repeat;
  }
  .hhero__rating-star--empty {
	background: url(https://bet-guide.ke/wp-content/themes/kenya02/assets/images/icons/icon-hero-star-empty.svg) center no-repeat;
  }

  .hhero-specs {
	display: flex;
	align-items: center;
	gap: 40px;
  }
  .hhero-specs__item {
	display: flex;
	align-items: center;
	gap: 8px;
  }
  .hhero-specs-item__name {
	font-weight: 600;
	line-height: 32px;
  }
  .hhero-specs-item__param {
	display: inline-block;
	text-align: center;
	min-width: 32px;
	height: 32px;
	font-weight: 600;
	background: var(--green);
	border-radius: 100px;
	padding: 4px 8px;
	color: #1f1f1f;
  }

  .hhero__desc {
	font-size: 16px;
	font-weight: 400;
	max-width: 500px;
  }

  .hhero__desc--uppercase {
	text-transform: uppercase;
  }

  .hhero__desc--bold {
	font-weight: 700;
  }

  .hhero__btn {
	display: block;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 18px;
	color: #1f1f1f;
	padding: 12px 32px;
	background-color: var(--green);
  }

  .hhero-app-wrap {
	display: flex;
	gap: 68px;
  }
  .hhero__free {
	display: flex;
	flex-direction: column;
	gap: 12px;
  }
  .hhero__free-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--green);
  }
  .hhero__free-desc {
	text-transform: uppercase;
	font-weight: 700;
  }
  .hhero-app {
	display: flex;
	gap: 40px;
  }
  .hhero-app-item {
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: center;
  }
  .hhero-app-item__icon {
	width: 40px;
	height: 28px;
  }
  .hhero-app-item--disable {
	opacity: .3;
  }

  .hhero-bonuses {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
  }
  .hhero-bonuses-item {
	display: flex;
	gap: 8px;
  }

  .promocode-wrap-title {
	display: flex;
	gap: 20px;
	flex-direction: column;
  }
  .promocode-title {
	font-size: 40px;
	line-height: 44px;
	font-weight: 700;
	color: var(--green);
  }
  .promocode-desc {
	font-size: 18px;
	text-transform: uppercase;
  }
  .promocode-wrap {
	display: flex;
	gap: 80px;
	margin-top: 58px;
	align-items: center;
  }
  
  .hhero__payments-wrap {
	display: flex;
	gap: 8px;
	align-items: center;
  }
  .hhero-payments {
	display: flex;
	gap: 8px;
  }
  .hhero-payments__img {
	border-radius: 2px;
  }

  .hhero-vs {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
  }
  .hhero-vs__item {
	display: flex;
	flex-direction: column;
	gap: 16px;
  }
  .hhero-vs__item .hhero__rating-wrap {
	margin-top: 0px;
  }
  .hhero-vs__vs {
	font-family: oswald;
	font-weight: 600;
	font-size: 96px;
	line-height: normal;
  }

  @media (max-width: 1199px) {
	.hhero__title {
	  font-size: 62px;
	}
	.hhero-app-wrap {
	  flex-direction: column;
	  gap: 20px;
	}
	.hhero-app {
	  gap: 32px;
	}
  }

  @media (max-width: 991px) {
	.hhero__content {
	  padding: 24px;
	}
	.hhero__title {
	  font-size: 54px;
	}
	.hhero__content {
	  flex-direction: column;
	  gap: 32px;
	}
	.hhero__logo-v-wrap {
	  display: flex;
	  gap: 16px;
	}
	.hhero__verified {
	  position: initial;
	  padding: 6px 42px;
	}
	.promocode-wrap {
	  margin: 0;
	}
  }
  @media (max-width: 767px) {
	.hhero__content {
	  background-color: unset;
	  padding: 0;
	}
	.hhero__title {
	  text-align: center;
	  font-size: 48px;
	  font-weight: 600;
	}
	.hhero-specs {
	  gap: 8px;
	  flex-wrap: wrap;
	}
	.hhero__desc {
	  font-size: 14px;
	  text-align: center;
	}
	.hhero__free {
	  text-align: center;
	}
	.hhero-bonuses {
	  grid-template-columns: 1fr 1fr;
	}
	.promocode-wrap-title {
	  align-items: center;
	  gap: 10px;
	}
	.promocode-wrap {
	  flex-direction: column;
	  gap: 14px;
	}
	.hhero__payments-wrap {
	  flex-direction: column;
	  align-items: flex-start;
	}

	.hhero-vs {
	  flex-direction: column;
	  gap: 16px;
	}
	.hhero-vs__item {
	  flex-direction: unset;
	  flex-wrap: wrap;
	  align-items: flex-end;
	  gap: 16px 12px;
	}
	.hhero-vs .hhero__rating-star {
	  width: 12px;
	  height: 12px;
	  background-size: cover;
	}
	.hhero-vs .hhero__rating-inner {
	  gap: 8px;
	  margin: 0;
	}
	.hhero-vs .hhero__logo-wrap {
	  width: 129px;
	  height: 53px;
	}
	
  }

  .promocode {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 274px;
	min-height: 46px;
	cursor: pointer;
  }

  .promocode.copy {
	border: dashed 1px #fff;
  }

  .promocode.copy img {
	display: none;
  }

  .promocode__text {
	display: none;
	font-size: 24px;
  }

  .promocode.copy .promocode__text {
	display: block;

  }