/*!
Theme Name: black-ring-theme
Theme URI: 
Author: Viv
Author URI:
Description: Theme for Wordpress
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: black-ring-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

black-ring-theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit;
}
 
 
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    overflow-x: hidden;
    color: #fff;
    background-color: #0d0d0d;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

.wp-block-table {
    overflow: auto
}

.wp-block-table::-webkit-scrollbar {
    height: 5px;
}

.wp-block-table table, table {
    margin-top: 24px;
    border-collapse: collapse;
    width: 100%;

}

.wp-block-table table {
    border-radius: 12px;
    border: 2px solid #e40539;
    background: #1b1c1d;
}

.wp-block-table table thead, table thead {
    border-bottom: none
}

.wp-block-table table th, table th {
    padding: .5rem 1rem;
    text-align: center;
    color: #ffffff;
    background-color: #e40539;
    /*white-space: nowrap;*/
}

.wp-block-table table th:not(:last-child) {
    border-right: 1px solid #FFFFFF50;
}

.wp-block-table table td, table td {
    border: 1px solid #FFFFFF50;
    padding: .5rem 1rem;
}

.wp-block-table .has-fixed-layout {
    table-layout: fixed;
}

.wp-block-table .has-fixed-layout th {
    word-break: normal
}

.wp-block-table .has-fixed-layout td {
    word-break: normal
}

/* Links
--------------------------------------------- */
a {
	font-weight: 400;
    font-size: 16px;
	color: #e40539;
}

a:visited {
	
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}


.page-header {
    background-color: #1b1c1d;
    border-bottom: 1px solid #FFFFFF0D;
}

.page-header ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.page-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 32px;
}

.page-header-logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 142px;
    margin-right: 58px;
}

.page-header-logo img {
    max-height: 44px;
    object-fit: contain;
}

.get-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    line-height: 0;
}

.page-header-burger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    cursor: pointer;
}

.page-header-burger span {
    display: block;
    border-radius: 20%;
    width: 100%;
    height: 3px;
    background-color: #fff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
}


.page-header-burger.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotateZ(45deg);
    -ms-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotateZ(45deg)
}

.page-header-burger.active span:nth-of-type(2) {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0)
}

.page-header-burger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotateZ(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotateZ(-45deg)
}



ol[class], ul[class] {
    list-style: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1b1c1d;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #c4002d;
    border: 1px solid #c4002d;
    border-radius: 10px;
    height: 20%;
}


::-webkit-scrollbar-thumb:hover {
    background: #a5002a;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #c4002d #1b1c1d;
}

body {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

@supports (-ms-overflow-style: none) {
    body::-webkit-scrollbar {
        display: none;
    }
    body {
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: #c4002d #1b1c1d;
    }
}

.page-header-nav {
    flex: 1 1;
}

.main-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    gap: 24px;
}

.main-nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
}

.main-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    word-break: break-all;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    -webkit-transition: color .2s ease 0s;
    transition: color .2s ease 0s;
    text-decoration: none;
}

.main-nav-item:hover > a:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.main-nav-item:hover .sub-menu {
    opacity: 1;
    pointer-events: auto
}

.sub-menu-arrow svg {
    width: 100%;
    height: auto;
    max-width: 15px;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}

.menu-item-has-children:hover .sub-menu-arrow svg {
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg);
}

.main-nav-link > svg{
    max-width: 28px;
    max-height: 28px;
}

.main-nav-link .get-image img {
    width: auto;
    height: 1.2rem;
    -o-object-fit: contain;
    object-fit: contain
}

.main-nav-link-current, .main-nav-link:hover {
    color: #fff
}

.main-nav-link-current,
.sub-menu-link-current{
    cursor: auto;
}

.main-nav-item-has-children, .menu-item-has-children {
    position: relative
}

.menu-item-has-children .main-nav-link{
    margin-right: 0;
    padding-right: 4px;
}

.menu-item-has-children.active .sub-menu-arrow svg {
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg)
}

.menu-item-has-children.active .sub-menu {
    position: relative;
    top: 0;
    display: block;
    margin-top: 0;
    padding: 0 1rem;
    opacity: 1;
    pointer-events: auto
}

.menu-item-has-children.active .sub-menu:before {
    display: none
}


.sub-menu-arrow svg {
    width: 100%;
    height: auto;
    max-width: 15px;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms
}



.page-header-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: auto;
}

.page-header-nav + .page-header-buttons {
    margin-left: 20px;
}

.page-header-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: 0;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
    color: #FFFFFF;
    transition: 250ms;
    cursor: pointer;
    padding: 0 0 0 12px;
    min-width: 160px;
    height: 40px;
    position: relative;
}



.page-header-button-first {
    color: #FFF;
    background: linear-gradient(80.54deg, #CE9119 0%, #F4AE26 100%);
}

.page-header-button-second {
    color: #FFF;
    background: linear-gradient(90deg, #E40539 0%, #FA2E5D 100%);
}

.page-header-button-first:hover {
    background-color: transparent;
}

.page-header-button-second:hover {
    color: linear-gradient(90deg, #E40539 0%, #FA2E5D 100%);
    background-color: transparent;
}

.page-header-button + .page-header-button {
    margin-left: 8px;
}


.sub-menu {
    position: absolute;
    top: 100%;
    z-index: 100;
    list-style: none;
    margin-top: .5rem;
    border-radius: 5px;
    padding: .5rem 1rem;
    background-color: #1b1c1d;
    opacity: 0;
    transition: 250ms;
    width: 150px;
    pointer-events: none;
}


.sub-menu:before {
    content: "";
    position: absolute;
    left: 0;
    top: -.5rem;
    width: 100%;
    height: .5rem;
    background-color: transparent
}

.sub-menu:hover {
    color: #1b1c1d
}

.sub-menu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: .5rem 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    white-space: nowrap;
    text-decoration: none;
    color: #ffffff;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.sub-menu-link .get-image img {
    width: auto;
    height: 1.2rem;
    -o-object-fit: contain;
    object-fit: contain
}

.sub-menu-link-current, .current-menu-item, .sub-menu-link:hover {
    color: #e40539
}

.main-nav-link-current, .main-nav-link:hover {
    color: #e40539;
}

.main-nav-item:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.site-footer {
    margin: 35px 20px 0 20px;
    padding: 35px 40px 40px 40px;
    background-color: #1b1c1d;
    border-radius: 12px 12px 0px 0px;
    border: 1px solid #e40539;
    border-bottom: none;
}


.game-container {
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1480px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo img, .page-footer-widget img {
    width: auto;
    object-fit: contain;
}

.footer-logo img {
    max-height: 76px;
}

.page-footer-copyright {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    margin-top: 4px;
    max-width: 120px;
}

.page-footer-dmca {
    margin-top: 24px;
}

.dmca-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
}

.footer-col-nav {
    justify-content: flex-start;
    align-items: center;
    flex: 1 1;
}

.page-footer-nav {
    width: 468px;
}

.footer-nav-list {
    display: flex;
    gap: 12px 20px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 150px;
}

.footer-nav-item {
    display: flex;
    min-width: 224px;
}

.footer-nav-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    color: #fff;
    transition: .3s ease-in-out;
}

.current-menu-item a, .footer-nav-link:hover {
    color: #e40539;
}

.page-footer-widget p {
    margin-top: 0;
}

.page-footer-widget p:not(:last-child) {
    margin-bottom: 1rem;
}

.page-footer-widget img {
    max-height: 64px;
}

.mobile-button p {
	margin-bottom: 0;
}

.page-footer-widget p {
    margin-top: 0;
}

.mobile-button {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    border-radius: 12px 12px 0 0;
    padding: 8px;
    gap: 0 8px;
    background-color: #2D2D2D;
    color: #fff;
    width: 100%;
    border: none;
    cursor: pointer;
}


@media (min-width: 768px) {
	
    .mobile-button {
        display: none;
    }
}

.mobile-button .get-image {
    grid-column: 1/2;
    grid-row: 1/3;
}
.mobile-button .get-image img {
    max-width: 58px;
    height: auto;
}


.mobile-button .get-image {
    grid-column: 1/2;
    grid-row: 1/3;
}

.mobile-button .mobile-button-title {
    grid-column: 2/3;
    grid-row: 1/2;
    text-align: left;
    margin-top: 0;
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
    text-transform: uppercase;
}

.mobile-button .mobile-button-bonus {
    grid-column: 2/3;
    grid-row: 2/3;
    text-align: left;
    color: #28a909;
    margin-top: 0;
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
    text-transform: uppercase;
}

.mobile-button-btn {
    display: flex;
    align-items: center;
    grid-column: 3/4;
    grid-row: 1/3;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    padding: 10px 16px;
    border-radius: 8px;
    background-color: #28a909;
    margin-top: 0;
}

.scroll-top {
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 10;
}

.scroll-top-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: 0;
    border: none;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    -webkit-box-shadow: 0 0 20px 5px #223c5059;
    box-shadow: 0 0 20px 5px #223c5059;
    background-color: #e40539;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    cursor: pointer;
	padding: 0;
}

.scroll-top-button svg {
    fill: #fff;
    pointer-events: none;
}

.scroll-top-button:hover {
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px)
}

.breadcrumb {
    padding: 8px 0;
    background: #0D0D0D;
    border-bottom: 1px solid #FFFFFF0D;
}

.breadcrumbs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.breadcrumbs-item {
    margin-right: 8px;
}

.breadcrumbs-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    color: #f4ae26;
    padding: 4px 0;
    transition: color .3s ease-in-out
}


.breadcrumbs-link-no-active, .breadcrumbs-link:hover {
    color: #fff;
}

.breadcrumbs-list svg {
	width: 4px;
    height: 4px;
    margin-right: 8px;
    stroke: #fff;
}

.page-404 .game-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.page-404-title {
    margin-top: 2rem;
    font-size: 5rem;
    line-height: 6rem;
    text-align: center;
	margin-bottom: 32px;
}

.page-404-subtitle {
    margin: 0;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center;
}

.page-404-link {
    display: inline-block;
    margin: 4.1rem auto 4.1rem;
    border: none;
    border-radius: 5px;
    padding: .7rem 2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #2CB865 0%, #089E4E 100%);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: 150ms;
    -o-transition: 150ms;
    transition: 150ms;
    cursor: pointer;
}

.game-wrap {
    margin-top: 64px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.game-wrap:first-child {
    margin-top: 40px;
}

.game-wrap:not(:last-child) {
    margin-bottom: 2rem;
}

.game-container .game-container {
    padding-right: 0;
    padding-left: 0;
}

.text-image > .wp-block-heading.align-left, .wp-block-heading.align-left {
    grid-column: 1 / 3;
    margin-bottom: 20px;
    text-align: left;
}

.text-image > .wp-block-heading.align-right, .wp-block-heading.align-right {
    grid-column: 1 / 3;
    margin-bottom: 20px;
    text-align: right;
}

.text-image > .wp-block-heading.align-center, .wp-block-heading.align-center {
    grid-column: 1 / 3;
    margin-bottom: 20px;
	text-align: center;
}

.play-block .wp-block-heading {
	grid-column: 1 / 3;
}

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

.text-content .left {
	text-align: left;
}

.text-content .right {
	text-align: right;
}

.text-image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
	align-items: center;
}

.text-image-container.no-image {
	grid-template-columns: auto;
}

.text-image-container.reversed {
	grid-template-columns: 1fr 1fr;
}

.text-image-container.reversed .text-block {
	order: 2;
}


.text-image-container.reversed .image-block {
	order: 1;
}

.content-button {
    margin-top: 24px;
}

.content-button-control {
    display: inline-block;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #2CB865 0%, #089E4E 100%);
    border: 1px solid linear-gradient(90deg, #2CB865 0%, #089E4E 100%);
    transform-origin: center;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.content-button-control:hover {
    opacity: .7;
}

.content-button.align-center {
    text-align: center;
}

.text-image-container .get-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2 / 3;
    grid-row: 1 / 10;
    border-radius: 12px;
    overflow: hidden;
}

.text-image.h1-block .get-image {
    grid-row: 1 / 10;
}

.text-image-container.align-center .get-image {
    align-items: center;
}

.text-image.h1-block .wp-block-heading ~ .get-image {
    grid-row: 1 / 10;
}

.btn {
    position: relative;
    max-width: 260px;
    padding: 16px 32px;
    gap: 10px;
    border-radius: 8px;
    margin-top: 16px;
    display: block;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    min-width: 100%;
    text-decoration: none;
	text-transform: uppercase;
}

.after-btn-block p {
	margin-top: 1rem;
}

.toc {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    border: 2px solid #e40539;
    background: #1b1c1d;
    padding: 16px;
    margin: 0;
}

.toc-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    margin: 0;
    width: 100%;
    cursor: pointer;
	font-weight: 600;
    font-size: 1.6rem;
    line-height: 2.1rem;
}

.toc-title:after {
    content: '';
    display: flex;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-image: url(./images/round-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    transition: 250ms;
}

.toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    max-height: 0;
}


.toc.active .toc-list {
    max-height: 100%;
}

.toc.active .toc-title {
    margin-bottom: 15px;
}

.toc.active .toc-title:after {
    transform: unset;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    text-decoration: none;
    color: #FFF;
    transition: .3s ease-in-out;
    border-radius: 8px;
    border: 1px solid #e40539;
}

.toc-link:focus, .toc-link:hover {
	color: #28a909;
}

.toc-link:before {
    content: '';
    display: flex;
    width: 12px;
    min-width: 12px;
    height: 12px;
    background-image: url(./images/list-marker.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.wp-block-table table td, table td {
    border: 1px solid #FFFFFF50;
    padding: .5rem 1rem;
}

.bookmakers-table {
    width: 100%;
    margin: 0;
    border: none;
}

.bookmakers .bookmakers-table {
    border-collapse: separate;
    width: 100%;
	margin-top: 25px;
	margin-bottom: 25px;
}

.bookmakers-table tbody {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.bookmakers-table tr {
    display: flex;
}

.bookmakers-table td {
    border: none;
    padding: 0;
    width: 100%;
}

.bookmaker {
    background-color: #3e3e3e;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: -ms-grid;
    display: flex;
}

.bookmaker .bookmaker-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    background-color: #32332e;
}

.bookmaker .bookmaker-image p {
    margin: 0;
}

.bookmaker .bookmaker-content {
    flex: 1 1;
    padding: 0 20px;
    margin: 20px 0 10px;
}

.bookmaker .bookmaker-content-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bookmaker .bookmaker-name {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.bookmaker .bookmaker-rating {
    flex-direction: row-reverse;
    align-items: center;
}

.bookmaker .bookmaker-rating .rating-counter {
    display: flex;
    align-items: center;
    padding: 0 10px 0 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #FFF;
}

.bookmaker .bookmaker-rating .rating-counter .rating-counter-filled {
    margin-left: 5px;
    color: #ffba00;
}

.bookmaker .bookmaker-ad {
    border: 1px solid #28a909;
    border-radius: 3px;
    padding: 10px;
}

.bookmaker .bookmaker-ad-title {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bookmaker .bookmaker-info-list {
	margin: 0;
    align-self: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    list-style: none;
}

.bookmaker .bookmaker-item {
    display: flex;
    align-items: center;
}

.bookmaker .bookmaker-item svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.bookmaker .bookmaker-item p {
    margin: 0;
    height: fit-content;
}

.bookmaker .bookmaker-buttons {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-basis: 248px;
    justify-content: center;
    border-left: 1px solid #e40539;
}

.bookmaker .bookmaker-button {
    display: block;
    padding: 22px 10px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .05);
    cursor: pointer;
    transition: opacity .3s;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    outline: 0;
}

.bookmaker .bookmaker-button-get {
    color: #fff;
    background-color: #28a909;
}

.bookmaker .bookmaker-button-read {
    color: #fff;
    background-color: #c4002d;
}


.bookmaker .bookmaker-button:not(:last-child) {
    margin-bottom: 10px;
}

.bookmaker .bookmaker-button:focus, .bookmaker .bookmaker-button:hover {
    opacity: .7;
}


.table-image td {
    text-align: center;
    vertical-align: center;
}

.table-image .table-image-image {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.screenshot-gallery-list {
	margin: 0;
    display: flex;
    gap: 20px;
	margin-top: 25px
}

.screenshot-gallery-list .screenshot-gallery-item a {
	display: block
}

.content-button .btn {
	background-color: #4ea45e;
	border-color: #4ea45e
}

.content-button .btn:hover {
    opacity: .7;
}


.info-block-v2-list {
    border: 1px solid #FFFFFF50;
    box-shadow: 0 0 15px rgb(0 0 0 / 5%);
    border-collapse: collapse;
    width: 100%;
}

.info-block-v2 {
    overflow: auto;
}

.info-block-v2-item:not(:last-child) {
    border-bottom: 1px solid #FFFFFF50;
}

.info-block-v2-item-logo-and-title {
    border: none;
    padding: 25px 10px;
    font-weight: 700;
    min-width: 200px;
}

.info-block-v2-item-other-cell {
    padding: 25px 10px;
    align-self: center;
    border-bottom: 1px solid #FFFFFF50;
    flex-grow: 1;
    border-top: none;
}

.info-block-v2-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 310px;
}

.info-block-v2-item-logo-and-title .get-image {
    margin-right: 20px;
    flex-shrink: 0;
}

.info-block-v2-item-logo-and-title img {
    max-height: 45px;
    object-fit: contain;
    width: 100%;
    max-width: 180px;
}

.info-block-v2-item p {
	margin: 0;
}

.promotions .promotions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
	margin: 0;
}

.promotions .promotions-item {
    display: flex;
    gap: 16px;
    flex: 1 1 calc(50% - 10px);
    border-radius: 12px;
    border: 2px solid #e40539;
    background-color: #1b1c1d;
    overflow: hidden;
}

.promotions .promotions-content {
	display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 16px 16px 0;
}

.promotions .promotions-title {
    font-size: 23px;
    font-weight: 800;
    line-height: 28px;
    margin: 0;
}

.promocode {
    display: flex;
    gap: 8px;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

.promocode-field {
    flex: 1 1;
    color: #28a909;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border-radius: 8px;
    border: 2px dashed #28a909;
    padding: 12px;
    max-width: 220px;
}

.promocode .copy-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.promocode .copy-btn svg {
    pointer-events: none;
}

.promocode .copy-btn:hover {
    background: rgba(255, 255, 255, 0.30);
}

.promotions .get-image img {
    height: 100%;
    width: auto;
    min-width: 220px;
    object-fit: cover;
	background: rgba(255, 255, 255, 0.30);
}


.bonus-button {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 320px;
    justify-content: space-between;
    border-radius: 8px;
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    border: none;
    width: fit-content;
    cursor: pointer;
}

.bonus-button.gift-btn {
	position: relative;
    color: #FFFFFF;
    background-color: #28a909;
    padding: 12px 12px 12px 64px;
    border: 1px solid #28a909;
    transition: 0.2s ease-in-out;
}

@keyframes move{
    50%{
        transform: translateY(-5px) rotate(15deg);
    }
    70%{
        transform: translateY(-5px) rotate(5deg)
    }
}

.bonus-button.gift-btn:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 6px;
    width: 52px;
    min-width: 52px;
    height: 52px;
    background-image: url(./images/mini-gift.png);
    background-position: center;
    background-repeat: no-repeat;
    animation: move 2s infinite;
}

.bonus-button.gift-btn:after {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-image: url(./images/user.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.bonus-button.gift-btn:hover {
    color: #28a909;
    background-color: transparent;
}


.promotions .promotions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
	margin: 0;
}

.promotions .get-image {
    height: 100%;
}

.promotions .promotions-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 15px 15px 0;
}

.promotions .promotions-description {
    color: #D2D2D2;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    flex: 1 1;
    margin: 0;
}

.how-to .how-to-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
	margin: 0;
}

.how-to > :not(.how-to__title):not(.content-button) {
    grid-column: 1 / 2;
}

.how-to .how-to-item {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1b1c1d;
}

.how-to .how-to-item:not(:last-child):before {
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    margin: auto;
    content: '';
    width: 44px;
    min-width: 44px;
    height: 24px;
    background-image: url(./images/how-to-arrows.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1b1c1d;
    z-index: 1;
}

.how-to .how-to-item:not(:last-child):after {
    position: relative;
    content: '';
    width: calc(100% - 32px);
    height: 1px;
    background-color: #e40539;
    margin: 12px auto 27px auto;
}

.how-to .how-to-counter {
    width: 100%;
    padding: 12px 12px 8px 12px;
    background-color: #e40539;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    color: #FFFFFF;
}

.how-to .how-to-content {
    display: grid;
    padding: 16px;
    gap: 0 16px;
    grid-template-columns: repeat(2, 1fr);
}

.how-to .get-image {
    grid-column: 2 / 3;
    grid-row: 1 / 10;
}

.how-to .how-to-title {
    grid-column: 1 / 2;
    margin-top: 0;
    margin-bottom: 8px;
}

.how-to .how-to-content > :nth-child(3) {
    margin-top: 0;
}

.how-to .how-to-title {
    grid-column: 1 / 2;
    margin-top: 0;
    margin-bottom: 8px;
}


.how-to .how-to-content-content {
	grid-column: 1 / 2;
    margin-top: 0;
    margin-bottom: 10px;
}

.pros-and-cons-body .pros-and-cons-block {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    width: 50%;
    padding: 12px;
    background-color: #262626;
}

.pros-and-cons-body .pros-and-cons-block-title {
    text-align: center;
    padding: 12px;
    width: 100%;
    margin-bottom: 16px;
}

.pros-and-cons-body {
    display: flex;
    gap: 20px;
}


.pros-and-cons-body .pros-and-cons-block-title {
    text-align: center;
    padding: 12px;
    width: 100%;
    margin-bottom: 16px;
}

.pros-and-cons-body .pros-and-cons-block .pros-and-cons-list {
    padding: 0;
    margin: 0;
}

.pros-and-cons-body .red {
    background-color: #c4002d;
}

.pros-and-cons-body .pros-and-cons-block .pros-and-cons-list-item {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    list-style: none;
	font-size: 18px;
}

.pros-and-cons-body .pros-and-cons-block .pros-and-cons-list-item:last-child {
    margin-bottom: 0;
}

.pros-and-cons-body .pros-and-cons-block .pros-and-cons-list-item:before {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 4px;
    flex: 0 0 auto;
    border-radius: 4px;
}

.pros-and-cons-body .pros-and-cons-block .plus:before, .pros-and-cons-body .pros-and-cons-block .minus:before {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 28px;
}

.pros-and-cons-body .pros-and-cons-block .plus:before {
    content: '+';
    background-color: #c4002d;
    color: #fff;
}

.pros-and-cons-body .green {
    background-color: #28a909;
}

.pros-and-cons-body .pros-and-cons-block .minus:before {
    content: '-';
    background-color: #28a909;
    color: #fff;
}

.author-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.author-block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-decoration: none;
    padding: 0 30px;
    border-radius: 3px;
}

.author-block-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    padding: 10px;
    background-color: #3e3e3e;
}

.author-block .author-block-inner img {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    width: auto;
    height: 100px;
}

.author-block .author-block-inner > :not(img) {
    grid-column: 2 / 3;
    margin: 0;
}

.author-block-name, .author-block-description, .author-block-content {
    color: #fff;
}

a.author-block:hover .author-block-inner {
    outline: 1px solid #c4002d;
    background-color: #202020;
}

.faq-item {
    border-radius: 12px;
    border: 2px solid #e40539;
    background: #1b1c1d;
	padding: 16px;
}

.faq-item:not(:last-child) {
    margin-bottom: 15px;
}

.faq-details {
    outline: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 8px;
    outline: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.faq-question-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}

.faq-details .faq-question-title {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 24px;
}

.faq-answer {
    padding: 16px 0 0 0;
}

.faq-question:after {
    content: '';
    display: flex;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-image: url(./images/round-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    transition: 250ms;
}

.faq-details[open] .faq-question:after {
    transform: unset;
}

h2 {
    margin-bottom: 1rem;
    font-size: 30px;
    font-weight: 800;
    line-height: 36px;
}

.game-demo {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
    overflow: hidden;
}

.game-demo .game-preview, .game-demo .game-content, .game-demo .game-preview:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game-demo .game-preview .get-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.game-demo .game-preview .get-image img {
    max-height: 100%;
    object-fit: contain;
}

.game-demo .game-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    z-index: 1;
}

.game-demo .game-content .demo-btn {
    color: #fff;
    border: 1px solid #28a909;
    background-color: unset;
}

.game-demo iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    border: none;
}

.game-demo .game-preview:after {
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.59), rgba(0, 0, 0, 0.59));
}

@media (max-width: 1370px) {
    .bookmaker {
        flex-direction: column;
    }
	
	.bookmaker .bookmaker-buttons {
		border: none
	}
}

@media screen and (max-width: 1240px) {
    .text-image-container {
        gap: 0 15px;
    }
}

@media (max-width: 1100px) {
    .page-header-nav{
        flex: 1 1 100%;
        order: 10;
        margin-top: 8px;
    }
	
	.promotions .promotions-item {
        flex: 1 1 100%;
    }
	

    .main-nav-list{
        justify-content: center;
    }
}

@media (max-width: 1024px) {
	
	
	.sub-menu-arrow svg, .menu-item-has-children:hover .sub-menu-arrow svg {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
	
	.menu-item-has-children.active .sub-menu-arrow svg {
		-webkit-transform: rotateZ(180deg);
		-ms-transform: rotate(180deg);
		transform: rotateZ(180deg);
	}
	
	.sub-menu {
        display: none;
        width: 100%;
    }
	
	.text-image-container.reversed {
		grid-template-columns: 1fr;
	}
	
	.text-image > .wp-block-heading.align-center, .wp-block-heading.align-center {
		grid-column: 1 / 2;
	}
	
	.text-image-container .text-block {
		order: 2
	}

	.text-image-container .image-block {
		order: 1
	}
	
	.menu-item-has-children {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
	
	.menu-item-has-children.active .sub-menu {
        padding: 0 0 0 48px;
    }
	
	.menu-item-has-children.active .sub-menu {
		position: relative;
		top: 0;
		display: block;
		margin-top: 0;
		padding: 0 1rem;
		opacity: 1;
		pointer-events: auto;
	}

    .sub-menu-link {
        justify-content: flex-start;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px
    }
	
	
	.sub-menu-arrow {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
        padding: 16px 5px 16px 30%;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        pointer-events: auto;
    }
	
	.main-nav-list {
        gap: 0;
    }
	
	.main-nav-item {
        width: 100%;
    }
	
	.main-nav-link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        padding: 12px 15px;
        width: 100%;
    }
	
	.text-image-container {
        grid-template-columns: 1fr;
        gap: 20px 0;
    }

    .text-image > .wp-block-heading {
        grid-column: 1;
    }
	
	.page-header-logo {
        max-width: 100px;
    }
	
	.page-header-burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-left: 20px;
    }
	
	.page-footer-widget {
		text-align: center
	}
	
	.main-nav-list {
        gap: 0;
    }
	
	.main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin-right: calc(-100vw / 2 + 100% / 2) !important;
        margin-left: calc(-100vw / 2 + 100% / 2) !important;
        max-width: 100vw !important;
        background-color: #1b1c1d;
        opacity: 0;
        -webkit-transition: opacity 250ms;
        -o-transition: opacity 250ms;
        transition: opacity 250ms;
        pointer-events: none;
    }
	
	.main-nav.active {
        z-index: 9999;
        opacity: 1;
        pointer-events: auto;
    }
	
	.main-nav-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: 30px 15px 10px 15px;
    }
	
	.page-header-nav {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
	
    .page-header-nav{
        margin-top: unset;
    }

    .main-nav-list {
        gap: 0;
    }
	
	.footer-col {
        align-items: center;
    }
	
	.footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
	
	.footer-col-nav {
        align-items: center;
    }
	
	.site-footer {
        padding: 15px;
    }
	
	.page-header-container {
        position: relative;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 8px 16px;
    }
	
	.page-header-nav + .page-header-buttons {
        margin-left: auto;
    }
	
	.page-header-buttons {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
		order: 2;
	}
	
	
	.how-to .how-to-title {
		margin-bottom: 15px
	}
	
	
	
}

@media (max-width: 768px){
	
	.how-to .how-to-content .step-image-container {
		order: 1
	}
	
	.how-to .how-to-content .how-to-content-content {
		order: 2;
		margin-top: 10px
	}
	
	.promotions .promotions-title {
		text-align:center;
		font-size: 20px
	}
	
	.promotions .promotions-description {
		text-align: center
	}
	
	.text-image > .wp-block-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }
	
	.toc-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
	
	.toc-title {
        margin: 0;
        width: 100%;
    }
	
	.toc.active .toc-list {
        margin-top: 1rem;
    }
	
	.toc-list.vertical {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }
	
	.toc-list.vertical .toc-item {
        width: 100%;
    }
	
	.toc-list.vertical .toc-item:not(:last-child) {
        margin-right: 0;
    }
	
	.toc-link {
        width: 100%;
        text-align: center;
    }
	
	.screenshot-gallery-list {
        overflow-x: auto;
        width: 100%;
        max-width: 980px;
    }
	
	.screenshot-gallery-item {
        min-width: 300px;
        max-width: 325px;
    }
	
	.promotions .promotions-item {
        flex-direction: column;
    }
	
	.promotions .get-image {
        width: 100%;
        height: auto;
    }
	
	.promotions .promotions-content {
		align-items: center;
        padding: 0 15px 15px 15px;
    }
	
	.promotions .get-image img {
        width: auto;
        height: auto;
        max-height: unset;
        min-width: unset;
        object-fit: cover;
        margin: 0 auto;
    }
	
	.pros-and-cons-body {
        flex-direction: column;
        gap: 24px;
    }
	
	.pros-and-cons-body .pros-and-cons-block {
        width: 100%;
    }
	
	.how-to .how-to-content {
        grid-template-columns: 1fr;
        padding: 16px 16px 8px 16px;
    }
	
	.text-block h1, .text-block h2 {
		font-size: 1.5em;
		margin: 0.5em 0;
	}
	
	.text-block h3, .text-block h4 {
		font-size: 1.3em;
		margin: 0.5em 0;
	}

    .text-image-container {
        gap: 15px 0;
    }

    .text-block {
        font-size: 16px;
    }

    .button-wrapper {
        text-align: center;
    }
	
	.page-footer-nav {
        width: unset;
    }
	
	.footer-nav-list {
        max-height: unset;
    }
	
	.footer-nav-item {
		justify-content: center
	}
	
	.site-footer {
        margin: 35px 15px 0 15px;
        padding: 15px;
    }
	
	.page-header-button {
        flex: 1 1;
    }
}

@media (max-width: 589px) {
	.page-header-button {
		min-width: 115px
		
	}
	
	.bookmakers-table tbody {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .page-header-buttons {
        margin: 0 -.2rem;
    }
}

@media (max-width: 500px) {
	
	.page-header-button {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
	
    .page-header-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
	
	.page-header-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
	
	
}

@media (max-width: 345px) {
	
	.page-header-button {
		min-width: 75px
	}
	
	.text-image > .wp-block-heading {
        font-size: 20px;
    }

    .text-block {
        font-size: 14px;
    }
	
}