button {
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }
}

.container-new {
  margin: 0 auto;

  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  width: 100%;
  background-image: linear-gradient(
      359.86deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0.32) 37.66%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url("<?php echo get_stylesheet_directory_uri(); ?>/images/test-new16.jpg");
  background-size: cover;
  box-sizing: border-box;
}

h1 {
  color: #000314;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }
}

a {
  color: #22b9ff;
}

a:hover {
  color: #000314;
}
/*
    img {
        height:auto
    } */

.page-banner {
  grid-column-gap: 42px;
  /* align-items: center; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 15px;
}

@media (max-width: 768px) {
  .page-banner {
    display: block;
    padding-bottom: 24px;
  }
}

.page-banner .page-banner--content h1 {
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-banner .page-banner--content h1 {
    font-size: 22px;
    /* min-height:76px */
  }
}

.page-banner .page-banner--content .post-entry {
  color: #fff;
}

@media (max-width: 768px) {
  .page-banner .page-banner--image {
    min-height: 340px;
  }
}
/*
    .post-entry p:not(:last-child) {
        margin-bottom:32px
    }
 
    @media (max-width: 768px) {
        .post-entry p:not(:last-child) {
            margin-bottom:20px
        }
    }
    */
.post-entry a {
  border-bottom: 1px solid #22b9ff;
}

.post-entry a:hover {
  border: none;
  color: #22b9ff;
}

.post-entry .wp-block-table::-webkit-scrollbar:vertical {
  width: 8px;
}

.post-entry .wp-block-table::-webkit-scrollbar:horizontal {
  height: 8px;
}

.post-entry ol li::marker {
  color: #e41d60;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  text-transform: none;
  unicode-bidi: isolate;
  white-space: pre;
}

.catfish-block .catfish-block--cta-btn a::hover {
  background: #22b9ff;
  box-shadow: 0 0 20px rgba(34, 185, 255, 0.25);
}

:where(.is-layout-flex) {
  gap: 0.5em;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}

h2 {
  /*      font-weight: 700;
                margin: 5px auto 10px;
                letter-spacing: 1px */
}

h2 {
  font-size: 20px;
}

.btn {
  display: inline-flex; /* Изменено на inline-flex для центрирования содержимого */
  justify-content: center; /* Центрирует содержимое по горизонтали */
  align-items: center; /* Центрирует содержимое по вертикали */
  border-radius: 10px; /* Сохраняем скругление границ, как в вашем исходном коде */
  color: #29cd66; /* Сохраняем цвет текста */
  font-size: 14px; /* Сохраняем размер шрифта */
  text-transform: uppercase; /* Сохраняем преобразование текста в верхний регистр */
  text-align: center; /* Сохраняем выравнивание текста по центру */
  padding: 10px 20px; /* Сохраняем внутренние отступы */
  /* Сохраняем межбуквенное расстояние, если оно вам нужно. Если нет, оставьте закомментированным */
  /* letter-spacing: 1px; */
}

.btn:hover {
  color: #fff;
  background: #2ad369;
}

.btn.btn-active {
  color: #fff;
  background: #2ad369;
}

.btn.btn-active:hover {
  background: #15bd54;
}

.fa {
  display: inline-block;
  font: 14px/1 Roboto;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  width: 20px;
  height: 20px;
}

.fa::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 16px;
  height: 16px;
}

.fa-angle-down::before {
  background-image: url("<?php echo get_stylesheet_directory_uri(); ?>/images/fa-angle-down.svg");
}

.btn-active .fa::before {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(92deg)
    brightness(101%) contrast(107%);
}

.btn-active {
  cursor: pointer;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
}

.img-wrapper > img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%,-50%); */
  width: 100%;
  height: 100%;
  /*    -webkit-transition: 1s ease-out;
                -moz-transition: 1s ease-out;
                -o-transition: 1s ease-out;
                transition: all 1s ease-out */
}

@media all and (min-width: 768px) {
  h2 {
    font-size: 36px;
  }
}

.loop-container {
  overflow-x: auto;
  margin: 25px 0 0;
  color: #fff;
  position: relative;
}

@media all and (min-width: 1024px) {
  .table-small-div .table-bonuses .tr .col1 .img-wrapper {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.table-small-div .table-bonuses .tr {
  flex-wrap: nowrap;
}

.table-small-div .tr .col2 {
  padding: 5px 20px;
  width: auto;
  order: 1;
  line-height: initial;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.table-small-div .tr .col2 .value {
  white-space: normal;
}

.table-small-div .btn.btn-active {
  color: #fff;
  background: #2ad369;
}

.table-small-div .btn.btn-active:hover {
  background: #15bd54;
}

@media all and (min-width: 768px) {
  .table-small-div .table-bonuses .tr .col2 {
    flex-shrink: 1;
  }
}

.gambling-info-section {
  /* margin-top: 30px; */
  border-radius: 10px;
}

.gambling-info-section .img-wrapper {
  position: relative;
  overflow: hidden;
  /* width: 150px; */
  height: 90px;
  margin: 0 auto;
  border-radius: 10px;
}

.gambling-info-section .img-wrapper img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 100%;
                width: 165px; */
  width: 95px;
  height: auto;
  /*  -webkit-transition: 1s ease-out;
                -moz-transition: 1s ease-out;
                -o-transition: 1s ease-out;
                transition: all 1s ease-out; */
  border-radius: 50%;
  max-width: 100%;
}

@media all and (min-width: 768px) {
  .gambling-info-section .img-wrapper {
    height: 80px;
  }
}

.table-bonuses {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  border-radius: 10px;
}

.table-bonuses .tr {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(32, 32, 33, 0.69);
}

.table-bonuses .tr .col1 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(32, 32, 33, 0.69);
  height: 95px;
  order: 1;
}

.table-bonuses .tr .col1 .num {
  width: 36px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.table-bonuses .tr .col1 .img-wrapper {
  margin-right: 7px;
  width: 90px;
  /* height: 50px; 
                border-top-left-radius: 10px;
                border-bottom-left-radius: 10px */
  border-radius: 50%;
}

.table-bonuses .tr .col1 .img-wrapper img {
  /*height: auto 
                height: 150px; 
                height: 95px; */
}

.table-bonuses .tr .col2 {
  white-space: nowrap;
  text-align: center;
  font-weight: 600;
  /*    border-bottom: 2px dashed #fff; */
  flex-grow: 1;
  height: 50px;
  line-height: 50px;
  display: none;
}

.table-bonuses .tr .col3 {
  padding: 8px 16px;
  /*  border-left: 2px dashed #fff;
                border-bottom: 2px dashed #fff; */
  height: 50px;
  order: 3;
}

.table-bonuses .tr .col3 .btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none !important;
}

.table-bonuses .tr .col3 .btn .text {
  display: none;
}

.table-bonuses .tr .col3 .btn .fa {
  width: 32px;
  height: 32px;
  transform: rotate(-90deg);
}

.table-bonuses .tr .col3 .btn .fa::before {
  margin-top: -1px;
  margin-left: 1px;
  width: 20px;
  height: 20px;
}

.table-bonuses .tr .col3 .btn-tocasino .fa::before {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(92deg)
    brightness(101%) contrast(107%);
}

@media all and (max-width: 767px) {
  .table-bonuses .tr .col3 .btn {
    font-size: 0;
    text-indent: -9999px;
    position: relative;
  }

  .table-bonuses .tr .col3 .btn .fa {
    text-indent: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media all and (min-width: 768px) {
  .table-bonuses .tr {
    flex-wrap: nowrap;
  }

  .table-bonuses .tr .col1 {
    height: 100%;
  }

  .table-bonuses .tr .col2,
  .table-bonuses .tr .col3 {
    height: 100%;
  }

  .table-bonuses .tr .col1 {
    order: 1;
  }

  .table-bonuses .tr .col2 {
    display: block;
    order: 2;
    border: none;
    padding: 0 20px;
    width: 160px;
    flex-shrink: 0;
    font-size: 18px;
  }

  .table-bonuses .tr .col3 {
    order: 4;
    border: none;
    /*     padding-right: 20px;
                    padding-left: 20px */
  }

  .table-bonuses .tr .col1 .num {
    width: 50px;
  }

  .table-bonuses .tr .col1 .img-wrapper {
    /*    width: 165px; */
    height: 90px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .table-bonuses .tr .col3 .btn {
    padding: 10px 32px;
    width: auto;
    height: auto;
    white-space: nowrap;
    /*       letter-spacing: 1px */
  }

  .table-bonuses .tr .col3 .btn .text {
    display: block;
    font-weight: 700;
  }

  .table-bonuses .tr .col3 .btn .fa {
    display: none;
  }
}

@media all and (min-width: 1024px) {
  .table-bonuses .tr {
    flex-wrap: nowrap;
  }

  .table-bonuses .tr .col1 {
    height: 100%;
  }

  .table-bonuses .tr .col2,
  .table-bonuses .tr .col3 {
    height: 100%;
  }

  .table-bonuses .tr .col1 {
    order: 1;
  }

  .table-bonuses .tr .col2 {
    order: 2;
    border: none;
    padding: 0 80px;
    width: 250px;
    font-size: 22px;
  }

  .table-bonuses .tr .col3 {
    order: 4;
    border: none;
    /* padding-right: 60px;
                    padding-left: 60px */
  }

  .table-bonuses .tr .col1 .num {
    width: 50px;
  }

  .table-bonuses .tr .col1 .img-wrapper {
    /*    width: 165px; */
    height: 90px;
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .table-bonuses .tr .col3 .btn {
    padding: 16px 48px;
    width: auto;
    height: auto;
    white-space: nowrap;
    min-width: 61px;
    /*    letter-spacing: 1px */
  }

  .table-bonuses .tr .col3 .btn .text {
    display: block;
    font-weight: 700;
  }

  .table-bonuses .tr .col3 .btn .fa {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .table-bonuses .tr {
    flex-flow: row !important;
  }
}

.table-div .table-bonuses .tr {
  flex-wrap: nowrap;
}

.table-div .tr .col2 {
  padding: 5px 20px;
  width: auto;
  line-height: initial;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.table-div .tr .col2 .value {
  white-space: normal;
}

.table-div .btn.btn-active {
  color: #fff;
  background: #006dff;
}

.table-div .btn.btn-active:hover {
  background: #153760;
}

@media all and (min-width: 768px) {
  .table-div .table-bonuses .tr .col2 {
    flex-shrink: 1;
  }
}

a {
  text-decoration: none;
  /*  -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition:all .3s */
}

.text-read-full {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-read-full i {
  margin-right: 8px;
}

.text-read-full {
  padding: 20px;
  background: rgba(32, 32, 33, 0.69);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .text-read-full {
    padding: 10px;
  }
}
.page-banner--image {
  padding-bottom: 20px;
}
</style > <style > .inner {
  margin: 0 auto;
  width: 100%;
}

.read-next-feed img {
  height: auto;
}

body {
  background: #fdfdfd;
}

.related-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 20px 40px;
  min-height: 300px;
  background: var(--switch-grey-color) center center;
  background-size: cover;
  border-radius: 5px;
  box-shadow: rgba(39, 44, 49, 0.06) 8px 14px 38px,
    rgba(39, 44, 49, 0.03) 1px 3px 8px;
  transition: all 0.5s ease;
}

@media (min-width: 696px) {
  .related-card {
    width: calc(50% - 40px);
  }
}

@media (min-width: 1066px) {
  .related-card {
    width: calc(33.33% - 40px);
  }
}

.related-card:hover {
  box-shadow: rgba(39, 44, 49, 0.07) 8px 28px 50px,
    rgba(39, 44, 49, 0.04) 1px 6px 12px;
  transition: all 0.4s ease;
  transform: translate3D(0, -1px, 0) scale(1.02);
}

.related-card-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}

.related-card-image {
  width: 100%;
  background: var(--lightgrey) no-repeat center center;
}

.related-card-content-link {
  position: relative;
  flex-grow: 1;
  display: block;
  padding: 25px 25px 0;
  color: var(--tile-date);
}

.related-card-content-link:hover {
  text-decoration: none;
  color: var(--tile-date);
}

.related-card-title {
  margin-top: 0;
}

.related-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-card-excerpt:hover p {
  text-decoration: none !important;
  color: var(--tile-date);
}

.related-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 25px 25px;
}

/* Special Styling for home page grid (below):

The first post in the list is styled to be bigger than the others and take over
the full width of the grid to give it more emphasis. Wrapped in a media query to
make sure this only happens on large viewports / desktop-ish devices.

 */

/* Adjust some margins for smaller screens */
@media (max-width: 650px) {
  .related-card {
    margin: 0 20px 5vw;
  }
}

/* 7. Single Post
/* ---------------------------------------------------------- */
/* ^ Required to make .post-full-content:before/after z-index stacking work */

/* Full bleed images (#full)
Super neat trick courtesy of @JoelDrapper

Usage (In Ghost edtior):

![img](/some/image.jpg#full)

*/

/* Image captions

Usage (In Ghost editor):

![img](/some/image.jpg)
<small>Your image caption</small>

*/

/* Override third party iframe styles */

/* Some grouped styles for smaller viewports */

/* Tables */

/* 7.1. Subscribe Form
/* ---------------------------------------------------------- */

/* 7.2. Post Footer
/* ---------------------------------------------------------- */

/* 7.2.1 Single Author Byline
/* ---------------------------------------------------------- */

/* 7.2.2 Multiple Author Byline
/* ---------------------------------------------------------- */

/* 7.3. Comments
/* ---------------------------------------------------------- */

/* 7.4. Related posts
/* ---------------------------------------------------------- */

.read-next-feed {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
  padding: 40px 0 0 0;
}

/* 7.5. Floating Header
/* ---------------------------------------------------------- */

/* 7.6. Koenig Styles
/* ---------------------------------------------------------- */

/* Preventing full-width image overlap with post image.  */

/* 8. Author Template
/* ---------------------------------------------------------- */

/* 9. Error Template
/* ---------------------------------------------------------- */

/* 10. Subscribe Overlay
/* ---------------------------------------------------------- */

/* 11. Site Footer
/* ---------------------------------------------------------- */
/* Variables
/* ---------------------------------------------------------- */

/* Reset
/* ---------------------------------------------------------- */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/* Quotation marks */

h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  color: var(--tile-content);
}

h2 {
  margin: 1.5em 0 0.5em 0;
  font-size: 2rem;
}

@media (max-width: 500px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  margin: 1.5em 0 0.5em 0;
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 500px) {
  h3 {
    font-size: 1.7rem;
  }
}
</style>





    </div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
<br>


<style>
    /*!normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css*/

    article.post {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

/*

*, * ::before, * ::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing:border-box
}
*/

h1 {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.333;
  margin: 6% 0 1%;
  text-rendering: optimizeLegibility;
  color: var(--switch-h2-color);
}

h1 {
  font-size: 32px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.authors {
  color: var(--tile-date);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.container:after {
  clear: both;
}

.container:before,
.container:after {
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
}

@keyframes animateEntry {
  0% {
    opacity: 0;
    transform: translate(0, 10px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.first .entry-grid {
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  min-height: 300px;
  animation: animateEntry linear 0.3s;
  animation-iteration-count: 1;
}

.first .entry-media {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.first .entry-body {
  flex: 0 1 500px;
  padding: 30px 50px 55px;
}

.entry-media {
  background-color: #c6c6c6;
  display: block;
  overflow: hidden;
  position: relative;
}

.entry-header {
  overflow: hidden;
}

.lol-mobile {
  display: none !important;
}

.siska {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

@media only screen and (max-width: 600px) {
  .lol-desktop {
    display: none !important;
  }

  .lol-mobile {
    display: flex !important;
  }
}

@media screen and (max-width: 1000px) {
  .container {
    width: 100%;
    /* padding-left: 15px;
        padding-right:15px */
  }

  .first {
    padding: 20px 0;
  }
}

@media screen and (max-width: 800px) {
  .first {
    display: block;
    padding: 0px 0 30px;
  }

  .first .entry-grid {
    display: block;
    flex: none;
    min-height: auto;
  }

  .first .entry-media {
    flex: none;
  }

  .first .entry-body {
    display: block;
    flex: none;
    padding: 0;
    padding-left: 15px;
  }
}

@media screen and (max-width: 640px) {
}

.container {
  max-width: 1090px;
}

.first .entry-grid {
  display: flex;
  flex-direction: row-reverse;
}

.first .entry-grid .entry-body {
  margin-right: auto;
  padding-bottom: 20px;
}

.entry-footer {
  display: flex;
  color: var(--tile-date);
}

.first .entry-media {
  max-width: 710px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
}

@media screen and (max-width: 1060px) {
  ::-webkit-scrollbar {
    height: 1px;
  }

  ::-webkit-scrollbar-thumb {
    background: 0 0;
  }

  ::-webkit-scrollbar-track {
    background: 0 0;
  }

  .entry-footer {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .first .entry-grid {
    flex-direction: column;
  }

  .first .entry-grid .entry-media {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .content.first .article-intro {
    flex-direction: column-reverse;
  }
}

@media (max-width: 479px) {
}

.container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1272px;
  margin-right: auto;
  margin-left: auto;
}
