/*!
Theme Name: vodka
Text Domain: vodka
*/

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

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

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

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

/**
* Render the `main` element consistently in IE.
*/
main {
  display: block;
  clear: both;
}
* {
  box-sizing: border-box;
}
/**
* 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;
}

/* Colors */

:root {
  --color-accent: #2a8dfe;
  --color-accent-hover: #2a8dfe;
  --color-accent-second: #16974129;
  --color-accent-second-hover: #16974129;
  --color-bg: #0c111c;
  --color-bg-second: #0b0d15;
  --color-text: #fff;

  --border: 3px solid rgba(0, 144, 255, 0.4);
  /* --border-button: 1px solid #007aff; */
  --border-radius: 5px;
}

/* 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: 900;
}

/**
* 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;
  max-width: 100%;
}

/* 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: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  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 {
  background: var(--color-bg-second);
  border: none;
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 20px 0;
}

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
--------------------------------------------- */

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

ul,
ol {
  padding: 0;
  margin: 0 0 15px 15px;
}

ul {
  list-style: square;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 15px;
}

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,
.wp-block-table table,
table.wp-block-table {
  margin: 20px auto;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

table td,
.wp-block-table table td,
table.wp-block-table td,
table th,
.wp-block-table table th,
table.wp-block-table th {
  padding: 10px 15px;
  border: var(--border);
}

.wp-block-table table th,
table.wp-block-table th,
table tr:nth-child(even) {
  background: var(--color-bg);
}

/* Links
--------------------------------------------- */
a,
a:visited {
  color: var(--color-accent);
}

a:hover,
a:focus,
a:active {
  color: #fff;
  text-decoration: none;
}

a:focus {
  outline: thin dotted;
}

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

/* Forms
--------------------------------------------- */
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
--------------------------------------------------------------*/

.background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: url('/wp-content/uploads/other/back-novem.png');
  background-size: cover;
  opacity: 0.2;
  filter: blur(25px);
  background-position: center;
}

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

/* Navigation
--------------------------------------------- */
.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 {
  color: #fff;
  display: block;
  text-decoration: none;
}

.main-navigation a:hover {
  color: var(--color-accent);
}

/* Small menu. */
.menu-toggle {
  width: 44px;
  height: 44px;
  background-color: var(--color-bg-second);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
}

.icon-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.main-navigation.toggled ul {
  display: flex;
  flex-direction: column;
}

.main-navigation.toggled ul {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  background-color: var(--color-bg);
  padding: 50px;
}

.admin-bar .main-navigation.toggled ul {
  top: 80px;
}

@media screen and (min-width: 920px) {
  .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;
  display: block;
}

.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. */
.logo {
  max-width: 200px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo__img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* 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 .footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .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;
}

/* Custom style */

/* Header */

.header {
  position: fixed;
  justify-content: space-between;
  height: 80px;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  background: var(--color-bg);
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.header__inner {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  padding: 20px 30px;
  margin: 0 auto;
  height: 100%;
}

.admin-bar .header {
  top: 32px;
}

.header__logo {
  margin-right: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 20px;
}

.main-navigation ul {
  gap: 20px;
}

.afflinks {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.wp-element-button,
.home .entry-content a,
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  display: inline-block;
  border-radius: var(--border-radius);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  line-height: 17px;
  text-align: center;
  height: 44px;
  width: fit-content;
  padding: 10px 20px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 5px 6px rgba(17, 20, 27, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
  border: 3px solid #0000;
  border-radius: 50px;
  color: #fff !important;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(180deg, #41c6ff, #1a64fc),
    linear-gradient(180deg, #79cdfd, #1a64fc);
  background-origin: border-box;
}

.button:hover,
.wp-element-button:hover,
.home .entry-content a:hover,
button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover {
  color: #fff !important;
  text-decoration: none;
  transform: scale(1.05);
}

.button_second,
#commentform .form-submit input[type='submit'] {
  background-image: linear-gradient(180deg, #192232, #192232),
    linear-gradient(180deg, #2c3a55, #243249 5%, #192232 30%, #151c27);
}

.button_second:hover {
  color: #fff !important;
  text-decoration: none;
  transform: scale(1.05);
}

.button.button_mobile {
  display: none;
}

.button_animated {
  animation: banner-unreg-pulse 2s infinite;
}

@media (max-width: 767px) {
  .button.button_mobile {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .afflinks .button:nth-child(1) {
    display: none;
  }
}
@media (max-width: 500px) {
  .header__inner {
    padding: 20px 5px;
  }
  .main-navigation {
    margin-right: 0;
  }

  .header .button {
    font-size: 14px;
    padding: 10px 5px;
  }
}

.site-main {
  padding: 90px 10px;
}

.admin-bar .site-main {
  padding-top: 100px;
}

.banner {
  min-height: 300px;
	width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  /* padding: 20px; */
  position: relative;
  background: url('/wp-content/uploads/other/cashBackNew.jpg') center
    center/cover no-repeat;
}

.banner:after {
  content: '';
  height: 471px;
  width: 393px;
  background-image: url('/wp-content/uploads/other/cashHeroNew.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.banner__content {
  z-index: 1;
  width: 400px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  padding: 30px;
}

.banner__text {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  max-width: none;
  border-radius: var(--border-radius);
}

.banner__text span {
  color: var(--color-accent);
}

.banner__content .button {
  text-transform: uppercase;
  width: 100%;
  margin: 0 auto;
}

.banner__tg {
  position: relative;
  z-index: 3;
}

.tg .tg__link {
  background: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.tg__link:hover {
  color: #000;
}

.tg__link::after {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 10px;
  background-color: #24a1de;
  mask: url('/wp-content/uploads/other/tg.svg') no-repeat center / contain;
  -webkit-mask: url('/wp-content/uploads/other/tg.svg') no-repeat center /
    contain;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .banner::after {
    display: none;
  }
}

.slots,
.articles {
  margin: 30px auto;
}

.slots__title,
.articles__title {
  font-size: 27px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--border-radius);
  background: var(--color-bg-second);
  padding: 20px;
  display: flex;
  width: fit-content;
  margin: 30px auto;
  align-items: center;
}

.slots__title::before,
.articles__title::before,
.slots__title::after,
.articles__title::after {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 5px;
  background-repeat: no-repeat;
  background-size: cover;
}

.slots__title::before,
.slots__title::after {
  background-image: url('/wp-content/uploads/other/chip.png');
}

.articles__title::before,
.articles__title::after {
  background-image: url('/wp-content/uploads/other/chip.png');
}

.slots__list,
.articles__list {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 50% 50%;
}

.slot,
.article {
  background: var(--color-bg-second);
  display: flex;
  margin: 10px;
  border-radius: var(--border-radius);
  border: var(--border);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.slot {
  flex-direction: row;
}

.article {
  height: auto;
  align-items: flex-start;
}

.slot__title,
.article__title {
  margin: 0;
  padding: 20px;
  /* overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical; */
}

.article__title {
  width: 50%;
}

.article__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff !important;
  height: 100%;
  width: 100%;
}

.article__img,
.slot__img {
  height: 100%;
  width: 50%;
  object-fit: cover;
}

.slot__action {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.slot__action .button {
  width: 100%;
  padding: 10px 0;
  font-size: 15px;
}

.article__text {
  font-size: 18px;
}

@media (max-width: 767px) {
  .slots__list,
  .articles__list {
    grid-template-columns: 100%;
    margin: 0 0 20px;
  }
}

@media (max-width: 450px) {
  .slot,
  .article__link {
    flex-direction: column;
  }
  .article__img,
  .slot__img,
  .slot__action,
  .article__title {
    width: 100%;
  }
}

ul.wp-block-list li {
  list-style-type: disclosure-closed;
}

.site {
  max-width: 1200px;
  margin: 0 auto;
}

.wp-element-caption {
  color: #b4b3b3;
  text-align: center;
}

.wp-block-table thead {
  border: none;
}

@media (max-width: 900px) {
  .wp-block-table table,
  table.wp-block-table,
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 20px;
    background: none;
    border: none;
	  text-align: left;
  }
}

.content-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.search-field[type='search'] {
  width: 100%;
  background-color: var(--color-bg-second);
  color: #fff;
  border-radius: var(--border-radius);
  border: var(--border);
  display: flex;
  height: 40px;
  padding: 0 10px;
  caret-color: #fff;
}

.search-field[type='search']:focus {
  color: #fff;
}

.search-field:focus {
  outline: none;
}

.screen-reader-text {
  color: #fff;
}

.search-submit {
  display: none !important;
}

.content-wrapper article,
.widget-area {
  padding: 0 20px;
}

.widget-area a {
  color: #fff;
}

.widget-area #recent-posts-2 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-area #recent-posts-2 ul li {
  padding: 10px 0;
  margin-bottom: 5px;
}

.content-wrapper aside.widget-area {
  margin-top: 30px;
}

@media (min-width: 900px) {
  .content-wrapper {
    display: block;
    clear: both;
  }

  .content-wrapper article {
    width: 70%;
    float: left;
  }

  .content-wrapper aside.widget-area {
    width: 30%;
    float: left;
  }
}

.subscribe {
  padding: 10px;
  margin: 20px 0;
  display: block;
  border-radius: var(--border-radius);
  background: var(--color-bg-second);
  border: var(--border);
}

.subscribe__title {
  font-size: 30px;
  font-weight: 900;
  margin: 10px 0;
}

.subscribe__text {
  margin: 0;
}

.clear:before,
.clear:after {
  content: '';
  display: table;
  table-layout: fixed;
}

.clear:after {
  clear: both;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
input[type='url'],
textarea,
select,
.form-control {
  background-color: var(--color-bg-second);
  border: var(--border);
  color: #fff !important;
  border-radius: var(--border-radius);
  padding: 20px;
}

textarea:focus {
  outline: 2px solid #212f44;
}

.sidebardata {
  border-radius: var(--border-radius);
  background: var(--color-bg-second);
  padding: 20px;
  border: var(--border);
}

.sidebardata__title {
  margin: 0;
}

.sidebardata__text {
  font-weight: 900;
  margin: 0;
}

.sidebardata__item {
  padding: 10px 0;
}

.sidebardata__item:last-child {
  border: none;
}

.game-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.game-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.last-reviews {
  margin-top: 30px;
  border-radius: var(--border-radius);
  background: var(--color-bg-second);
  border: var(--border);
  padding: 20px;
}

.last-reviews-title {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 30px;
}

.review-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.review-item-about {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.review-item-about img {
  border-radius: var(--border-radius) !important;
}

.review-text {
  margin-bottom: 5px;
}

.review-item-contact p {
  margin: 0;
}

.review-avatar {
  object-fit: cover;
}

.mirrors__button {
  padding: 0 10px;
  font-size: 18px;
  margin: 0 30px;
}

.mirrors__title,
.all-bonuses__title {
  font-size: 25px;
}

.all-bonuses__item {
  border-radius: var(--border-radius);
  background: var(--color-bg-second);
  border: var(--border);
  padding: 30px;
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.all-bonuses__text {
  margin: 0;
  color: var(--color-accent);
}

.all-bonuses__title {
  margin: 0;
}

.all-bonuses__button {
  min-width: 230px;
}

@media (max-width: 767px) {
  .all-bonuses__item {
    flex-direction: column;
    text-align: center;
  }
}

.support__header {
  display: flex;
  align-items: center;
  flex-direction: row;
  /* gap: 10px; */
}

.support__title {
  line-height: 1;
  font-size: 26px;
  margin: 5px 0;
}

.comment-list {
  margin: 0;
}

/* footer */

.footer__item {
  margin: 0 auto;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

.footer__item_bg_dark {
  background: var(--color-bg);
}

.footer__nav ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav ul a {
  color: #fff;
  text-decoration: none;
}

.footer__nav ul a:hover {
  color: var(--color-accent);
}

.footer-nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
}

.footer {
  text-align: center;
  display: block;
  clear: both;
  position: relative;
  width: 100%;
}

.footer__images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

.footer__images img {
  max-width: 100px;
  max-height: 30px;
  width: 100%;
  height: 100%;
}

.providers.footer__images img {
  filter: invert(1);
}

@media (min-width: 700px) {
  .footer__images img {
    max-width: 120px;
    max-height: 30px;
  }
}
.slots-category ul {
  margin: 20px auto;
  padding: 0 0 20px;
  list-style: none;
  display: flex;
  gap: 30px;
  overflow: auto;
}

.slots-category ul li a {
  text-decoration: none;
  display: inline-block;
  border-radius: var(--border-radius);
  color: #fff;
  background: var(--color-bg-second);
  border: var(--border);
  padding: 10px;
  white-space: nowrap;
}

.widget-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.widget_recent_entries {
  background: var(--color-bg-second);
  padding: 20px;
  border-radius: var(--border-radius);
  border: var(--border);
}

.home .entry-content a:not(.button) {
  font-size: 18px;
  font-weight: 900;
  display: block !important;
  margin: 10px auto !important;
}

.modal {
  margin: 20px 0;
  position: relative;
  z-index: 3;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.content-promo {
  border-radius: var(--border-radius);
  background: var(--color-bg-second);
  border: var(--border);
  text-align: center;
  padding: 10px;
  margin-bottom: 30px;
}

.content-promo__text {
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 15px 0;
}

@keyframes sizebtn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes banner-unreg-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.breadcrumbs .breadcrumbs__link {
  color: #fff;
	padding: 20px 10px;
}
