@media (max-width:600px) {
  .first-screen-img {display:none!important;}
}
/* GRID */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 20px 0;
}

/* CARD */
.slot-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.slot-card img {
    width: 100%;
    display: block;
    transition: filter .3s ease, transform .3s ease;
}

/* OVERLAY */
.slot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
    padding: 20px;
    text-align: center;
}

.slot-title {
    color: #fff;
    font-family: 'Roboto Slab', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,.6);
}

/* PLAY BUTTON */
.play-btn {
    background-color: #26e176;
    color:#000;
    padding:8px 20px;
    font-family:'Roboto Slab',serif;
    font-weight:700;
    font-size:16px;
    text-transform:uppercase;
    border-radius:6px;
    box-shadow:0 3px 5px rgba(0,0,0,.25);
    line-height:1.2;
    text-decoration:none;
    transition:transform .2s ease, background-color .2s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    background-color: #16bf5e;
}

/* PC ONLY HOVER */
@media (hover: hover) and (min-width: 769px) {
    .slot-card:hover img {
        filter: blur(4px);
        transform: scale(1.05);
    }
    .slot-card:hover .slot-overlay {
        opacity: 1;
    }
}

/* MORE BUTTON */
.more-slots-wrap {
    text-align: center;
    margin: 30px 0 60px;
}

.more-slots-btn {
    background-color: #26e176;
    color:#000;
    padding:12px 35px;
    font-family:'Roboto Slab',serif;
    font-weight:700;
    font-size:18px;
    text-transform:uppercase;
    border-radius:6px;
    box-shadow:0 3px 5px rgba(0,0,0,.25);
    line-height:1.2;
    text-decoration:none;
    display:inline-block;
    transition:transform .2s ease, background-color .2s ease;
}

.more-slots-btn:hover {
    background-color: #16bf5e !important;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slot-overlay {
        display: none;
    }
    .more-slots-btn {
        display:block;
        width:100%;
    }
}



/* Фіксований промо блок */
.promo-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

body.promo-visible .promo-sticky {
    transform: translateY(0);
}

.promo-sticky-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 30px;
}

.promo-info {
    flex: 1;
}

.promo-info-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-brand-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.promo-brand-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promo-text-main {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.promo-score {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-item {
    color: #ffc107;
    font-size: 18px;
    animation: star-twinkle 4s infinite;
}

.rating-item:nth-child(2) {
    animation-delay: 0.3s;
}

.rating-item:nth-child(3) {
    animation-delay: 0.6s;
}

.rating-item:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.promo-cta-box a {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-cta-box a:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: translateY(-2px);
}

.promo-cta-box a:active {
    transform: translateY(0);
}

/* Планшети великі */
@media (max-width: 1024px) {
    .promo-sticky-wrap {
        padding: 0 20px;
    }
    
    .promo-content {
        padding: 16px 0;
        gap: 25px;
    }
    
    .promo-brand-img {
        width: 65px;
        height: 65px;
    }
    
    .promo-text-main {
        font-size: 18px;
    }
    
    .promo-cta-box a {
        padding: 13px 35px;
        font-size: 16px;
    }
}

/* Планшети */
@media (max-width: 768px) {
    .promo-content {
        padding: 14px 0;
        gap: 20px;
    }
    
    .promo-info-inner {
        gap: 15px;
    }
    
    .promo-brand-img {
        width: 60px;
        height: 60px;
    }
    
    .promo-text-main {
        font-size: 17px;
    }
    
    .promo-score {
        font-size: 14px;
    }
    
    .rating-item {
        font-size: 16px;
    }
    
    .promo-cta-box a {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Мобільні великі */
@media (max-width: 640px) {
    .promo-sticky-wrap {
        padding: 0 15px;
    }
    
    .promo-content {
        padding: 12px 0;
        gap: 15px;
    }
    
    .promo-brand-img {
        width: 55px;
        height: 55px;
    }
    
    .promo-text-main {
        font-size: 16px;
    }
    
    .promo-cta-box a {
        padding: 11px 26px;
        font-size: 14px;
    }
}

/* Мобільні */
@media (max-width: 576px) {
    .promo-content {
        flex-direction: column;
        padding: 12px 0;
        gap: 12px;
    }
    
    .promo-info-inner {
        width: 100%;
        gap: 12px;
    }
    
    .promo-brand-img {
        width: 50px;
        height: 50px;
    }
    
    .promo-text-main {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .promo-score {
        font-size: 13px;
    }
    
    .rating-item {
        font-size: 15px;
    }
    
    .promo-cta {
        width: 100%;
    }
    
    .promo-cta-box a {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Мобільні малі */
@media (max-width: 375px) {
    .promo-sticky-wrap {
        padding: 0 10px;
    }
    
    .promo-content {
        padding: 10px 0;
    }
    
    .promo-brand-img {
        width: 48px;
        height: 48px;
    }
    
    .promo-text-main {
        font-size: 14px;
    }
    
    .promo-score {
        font-size: 12px;
    }
    
    .rating-item {
        font-size: 14px;
    }
    
    .promo-cta-box a {
        padding: 11px 25px;
        font-size: 13px;
    }
}
body.promo-visible {
    padding-bottom: 100px;
}

/* Для мобілки */
@media (max-width: 576px) {
    body.promo-visible {
        padding-bottom: 140px;
    }
}

/* cyrillic-ext */
.footer-nav {
    width: 100%;
    padding: 40px 20px;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-column ul li {
    margin-bottom: 10px;
}

.menu-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.menu-column ul li a:hover {
    color: #fff;
}

/* Планшети */
@media (max-width: 768px) {
    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Мобільні */
@media (max-width: 576px) {
    .footer-nav {
        padding: 30px 15px;
    }
    
    .footer-menu {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .menu-column ul li {
        margin-bottom: 8px;
    }
    
    .menu-column ul li a {
        font-size: 13px;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links a {
    display: block;
    line-height: 0;
}

.footer-links a img {
    max-width: 110px;
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    display: block;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-links a:hover img {
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
        padding: 25px 15px;
    }
    
    .footer-links a img {
        max-width: 90px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 15px;
        padding: 20px 10px;
    }
    
    .footer-links a img {
        max-width: 70px;
        max-height: 40px;
    }
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  src: url(../fonts/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

.providers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.providers img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.providers img:hover {
    transform: scale(1.1);
}

/* Адаптация для планшетов */
@media (max-width: 768px) {
    .providers {
        gap: 15px;
        padding: 15px;
    }
    
    .providers img {
        max-width: 100px;
    }
}

/* Адаптация для мобильных */
@media (max-width: 480px) {
    .providers {
        gap: 10px;
        padding: 10px;
    }
    
    .providers img {
        max-width: 80px;
    }
}

/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  src: url(../fonts/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  src: url(../fonts/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  src: url(../fonts/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100 900;
  src: url(../fonts/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  src: url(../fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  src: url(../fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  src: url(../fonts/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
}

html.is-overflow {
  overflow: hidden;
}

body.is-overflow {
  overflow: hidden
}

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

.cs_textwrapper {
  padding: 5px;
  width: 99%;
  margin: 0 auto;
  border-radius: 4px;
}

#f6 {
  border: 1px solid #ccc;
  background: #f6f6f6;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.cs_textwrapper p {
  margin-top: 10px;
}

.cs_textwrapper div {
  display: table-cell;
}

.cs_textwrapper div.cs_after_line {
  padding-left: 10px;
  width: 98%;
  margin: 10px auto;
  background-color: antiquewhite;
  border-radius: 7px;
  display: flex;
  padding-bottom: 0px;
  flex-direction: row;
}

section {
  position: relative;
}

@media (max-width: 900px) {
  :focus::-webkit-input-placeholder {
    color: transparent;
  }

  :focus::-moz-placeholder {
    color: transparent;
  }

  :focus:-moz-placeholder {
    color: transparent;
  }

  :focus:-ms-input-placeholder {
    color: transparent;
  }

  .main-content {
    padding-bottom: 30px;
  }
}

body {
  position: relative;
}

body #article-text {
  width: 100%;
  float: none;
}

#article-text h2 {
  font-size: 18px;
}

.menu-item {
  border: 1px solid #f2c993;
}

#article-text h3 {
  font-size: 17px;
  padding-left: 15px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

@media screen and (max-width: 900px) {
  #article-text h2 {
    font-size: 16px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  min-width: 320px;
}

h1 {
  font-size: 26px;
  line-height: 110%;
  color: rgb(255, 255, 255);
}

h2 {
  font-size: 20px;
  line-height: 122.22%;
}

body,
.top-header {
  min-width: 320px;
}


.main-content {
  padding-bottom: 20px;
}


@media screen and (min-width: 1200px) {
  h1 {
    font-size: 24px;
  }
}

table,
table td,
table th {
  border-color: #f1f1f1;
}

table td,
table th {
  font-size: 14px;
  padding: 10px;
}

#article-text {
  padding-bottom: 8px;
  border-bottom: 4px double #efefef;
}

.footer {
  padding: 18px 0 15px;
  background-color: #151545;
}

.footer .logo {
  padding-left: 0;
  margin-top: 12px;
  max-width: 300px;
  float: left;
}

.limit-age {
  width: 34px;
  height: 34px;
  background-color: #d60000;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 34px;
  font-size: 12px;
  display: block;
  float: left;
  margin-right: 10px;
}

.copyright {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  margin-top: 8px;
}

.copyright_black {
  display: block;
  text-align: center;
  background-color: #151545;
  margin: 0;
  padding: 10px 0;
  margin-top: -20px;
  z-index: 5;
  position: relative;
}

.td-bc-logo {
  display: block;
  height: 34px;
  width: 100px;
  cursor: pointer;
}

.td-bc-logo-L {
  background: url(/wp-content/themes/beton/img/sprt_leg_opt.png) center 0 no-repeat;
}

.td-bc-logo {
  background-size: cover;
}

#article-text {
  width: 100%;
  float: left;
}

#article-text p {
  padding-left: 20px;
}



.text-block ul {
  list-style: none;
  padding: 0 0 0 30px;
  margin: 0 0 14px 15px;
}

.text-block ol li,
.text-block ul li {
  margin-bottom: 3px;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 157%;
}

.text-block ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 9px;
  left: -12px;
  background: rgb(193 152 106);
  border-radius: 13px;
}

@media only screen and (max-width: 650px) {
  .hidden-xs {
    display: none;
  }
}

@media only screen and (max-width: 400px) {
  .section-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  #article-text {
    position: relative;
  }

  #article-text h2:before {
    top: 8px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 1160px;
  }
}


.text-block {
  max-width: 100%;
}


.section-title {
  margin: 0.83em 0;
}

.footer {
  z-index: 5;
  position: relative;
}

.main-content img {
  max-width: 100%;
}

img[class*="align"] {
  height: auto;
}

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

img.aligncenter {
  margin-bottom: 1.625em;
}

p img {
  margin-top: 0.4em;
}

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

#article-text h2 {
  position: relative;
  color: #020103;
  font-weight: 700;
  padding-left: 21px;
  padding-right: 40px;
}

#article-text h2:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #ffa420;
  left: 0;
  top: 8px;
}

#article-text {
  border-bottom: none;
}

@media only screen and (max-width: 899px) {
  body {
    position: relative;
    padding-top: 50px;
  }

  #article-text h2:before {
    top: 5px;
  }

  body {
    line-height: 20px;
  }

  h1 {
    font-size: 20px;
    line-height: 106.25%;
  }

  h2 {
    font-size: 16px;
    line-height: 113.333%;
  }
}

@media screen and (max-width: 320px) {
  body {
    padding-top: 0;
  }


}

@supports (padding: max(0px)) {}

@media (max-height: 576px) {
  @supports (padding: max(0px)) {}
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

section {
  display: block;
}

a {
  background-color: transparent;
}

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

h1 {
  font-size: 3em;
  margin: 0.67em 0;
  color: #ffffff;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

button {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

body {
  font-family: Montserrat, Helvetica Neue, Noto Sans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  min-width: 320px;
}

body {
  margin: 0;
}

@media screen and (max-width: 899px) {
  body {
    background: none;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  color: #212121;
}

.container:before,
.container:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.container:after,
.row:after {
  clear: both;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.col-xs-12 {
  width: 100%;
}

@media (min-width: 650px) {
  .container {
    width: 600px;
  }
}

img {
  vertical-align: middle;
  border: 0;
}

@media screen and (max-width: 899px) {
  .top-header {
    padding-top: 0;
  }
}

body {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  min-width: 320px;
  padding-top: 80px;
}


@media only screen and (max-width: 400px) {

  table td,
  table th {
    padding: 5px;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .section-title {
    font-size: 30px;
  }
}

.text-block p {
  margin-top: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 157%;
  margin-bottom: 20px;
}

#article-text h2 {
  position: relative;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  background: rgb(193 152 106);
  min-width: 100%;
  min-height: 50px;
  /* margin-top: 30px; */
  border-radius: 8px;
  line-height: 24px;
  padding: 0px 0 0 10px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.section-title {
  margin: 0.83em 0;
}

#article-text h2::before {
  content: "none";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #ffa420;
  left: 0;
  top: 5px;
}

@media only screen and (max-width: 899px) {
  body {
    position: relative;
    padding-top: 75px;
    line-height: 20px;
  }

  h2 {
    font-size: 16px;
    line-height: 113.333%;
  }
}

@media screen and (max-width: 320px) {
  body {
    padding-top: 0;
  }

}

@media only screen and (max-width: 899px) {
  h1 {
    font-size: 30px;
    line-height: 106.25%;
  }
}

.main-content img {
  max-width: 100%;
}

img[class*="align"] {
  height: auto;
}

.text-block {
  max-width: 100%;
}

.text-block p {
  color: #212121;
}

@media only screen and (max-width: 600px) {

  #article-text h2 {
    line-height: 24px;
  }
}

section {
  position: relative;
}

.main-content img {
  max-width: 100%;
  max-height: 200px;
}

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



#article-text h2:before {
  content: none;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 7px;
  background-color: #ffa420;
  left: 20px;
  top: 20px;
}

@media only screen and (max-width: 899px) {
  #article-text h2:before {
    top: 19.5px;
  }
}

@media screen and (max-width: 350px) {
  #article-text h2:before {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  div.container {
    width: 1160px;
  }
}

#promo {
  margin-bottom: 20px;
}



html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}



img {
  vertical-align: middle;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 650px) {
  .container {
    width: 600px;
  }
}

@media (min-width: 900px) {
  .container {
    width: 860px;
  }
}

@media (min-width: 1000px) {
  .container {
    width: 960px;
  }
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.container:before,
.container:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.container:after,
.row:after {
  clear: both;
}

.mx-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/* The Close Button */

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button {
  -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button {
  -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

.std-table-wrp {
  width: 100%;
  overflow: auto;
  margin-bottom: 10px;
}

.std-table-wrp::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.std-table-wrp::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 16px;
}

.std-table-wrp::-webkit-scrollbar-thumb {
  background: #151545;
  border-radius: 16px;
}

.std-table-wrp::-webkit-scrollbar-thumb:hover {
  background: #151545;
}

.std-table {
  border-collapse: collapse;
  margin: 15px auto;
  min-width: 100%;
}

.std-table td {
  border: 1px solid #151545;
  padding: 15px;
  font-size: 15px;
  text-align: center;

}

.std-table td:first-child,
.std-table th:first-child {
  text-align: center;
}

.std-table th {
  border: 1px solid #151545;
  color: #04005e;
  background: #fbc400;
  padding: 15px;
  font-size: 15px;
}

.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  float: left;
}

.menu li a {
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

section {
  padding-top: 10px;
}

body {
  height: 100%;
}

@media (max-width: 767px) {
  .toast__content h2 {
    font-size: 1.5em;
  }

  .menu li {
    float: none;
    margin-top: 0px;
    background-color: #333;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 100%;
    text-transform: uppercase;
    padding-left: 10px;
  }

  .menu {
    display: none;
  }
}

@media (min-width: 1200px) {
  .rrr {
    font-size: 18px;
  }
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 441px) {
  #article-text h2 {
    padding: 0px 0 0 0px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  #article-text h2 {
    padding: 0px 0 0 40px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .toast__content h2 {
    margin: 0;
    padding: 0;
    font-size: 2em;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-6,
.col-12,
.col,
.col-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.d-block {
  display: block;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.px-0 {
  padding-right: 0;
}

.px-0 {
  padding-left: 0;
}

.px-1 {
  padding-right: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
}

.py-4 {
  padding-top: 1.5rem;
}

.py-4 {
  padding-bottom: 1.5rem;
}

.mx-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {}

a.disabled {
  pointer-events: none;
  /* делаем элемент неактивным для взаимодействия */
  cursor: default;
  /*  курсор в виде стрелки */
  color: #888;
  /* цвет текста серый */
}

details summary::-webkit-details-marker {
  display: none;
}

details>summary {
  list-style: none;
}

details>summary li {
  display: inline;
}

details summary::after {
  content: "+";
  margin-left: 10px;
  margin-top: 3px;
  display: inline-block;
  width: 17px;
  height: 17px;
  line-height: 17px;
  font-size: 16px;
  background: #ff3a1a;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  font-family: sans-serif;
}

/* Android & AppStore links */

@media screen and (min-width: 1200px) {
  .toast__content h2 {
    margin: 0;
    padding: 0;
    font-size: 2.5em;
  }
}

/* / Android & AppStore links */

@media (max-width: 440px) {
  .rrr {
    font-size: 16px;
  }

  .lead {
    font-size: 1rem;
    word-wrap: break-word;
  }

  .h_h_c p {
    font-size: 18px;
  }

  #message {
    transform: scale(0.8);
  }

  #article-text h2 {
    font-size: 15px;
    line-height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    word-break: break-word;
    text-align: center;
  }

  #article-text h3 {
    font-size: 14px;
  }

  #article-text h2:before {
    content: none;
  }
}


/* BOOTSTRAP */

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-muted {
  color: #6c757d;
}

.font-weight-bold {
  font-weight: 700;
}

.text-white {
  color: #fff;
}

.text-success {
  color: #28a745;
}

a.text-success:focus,
a.text-success:hover {
  color: #19692c;
}

.text-body {
  color: #212529;
}

.text-muted {
  color: #6c757d;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

@media print {

  *,
  ::after,
  ::before {
    text-shadow: none;
    box-shadow: none;
  }


  thead {
    display: table-header-group;
  }

  img,
  tr {
    page-break-inside: avoid;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  body {
    min-width: 992px;
  }

  .container {
    min-width: 992px;
  }

  .table {
    border-collapse: collapse;
  }

  .table td,
  .table th {
    background-color: #fff;
  }
}

#faq p.cs_after_line {
  margin-top: -25px;
}

.center-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.toc-head {
  text-align: left;
  margin-left: 15px;
  margin-bottom: 15px;
}

details:focus,
summary:focus {
  outline: none;
}

details[open] summary::after {
  content: '-';
}

.cs_textwrapper .toc-list-contents {
  margin: 0 0 17px 0px;
}

.toc-list-dtls ul {
  padding: 0 0 0 20px;
  margin: 5px 0 14px 0px;
}

.faq-blk {
  margin-bottom: 35px;
}

#article-text .qst.h3 {
  margin-bottom: 5px;
}

.o-container {
  max-width: 1000px;
  padding: 0 15px;
  margin: 0 auto
}

.o-flex {
  display: flex
}

.o-flex-column {
  display: flex;
  /*flex-direction: column*/
  flex-direction: row-reverse;
  justify-content: space-between;
}

.o-flex-wrap {
  display: flex;
  flex-wrap: wrap
}

.c-header {
  background-color: #0e0f1d;
  font-size: 1.4rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99
}

.c-header__logo img {
  width: 100%;
  max-width: 140px;
  height: auto;

}

.c-header__container {
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 60px
}

.c-header__top,
.c-header__bottom {
  align-items: center
}

.c-header__top {
  justify-content: flex-end;
  gap: 25px;
}

.c-header__bottom {
  justify-content: space-between
}

.c-header__reg,
.c-header__log {
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  padding: 4px 18px
}

.c-header__reg {
  border-radius: 4px;
  color: #090a18;
  background: #05c489;
  border: #05c489 3px solid;
  padding: 10px 23px 10px 23px;
  text-decoration: none;


}

.c-header__reg:hover {
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.63);

}

.c-header__log {
  border-radius: 4px;
  color: #d3d9ea;
  background-color: rgba(0, 0, 0, 0);
  border: #d3d9ea 3px solid;
  padding: 10px 23px 10px 23px;
  font-weight: bold;
  box-shadow: 0 4px 8px #000000;
  position: relative;
  text-decoration: none;

}

.c-header__log:hover {
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.77);
}

@media (max-width:600px) {
  .c-header__top {
    gap: 10px;
  }

  .c-header__reg,
  .c-header__log {
    padding: .5rem .8rem;
  }
}

.c-burger {
  width: 40px;
  height: 40px;
  transform-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease-out
}

.c-burger .svg-icon {
  fill: #fff;
  display: block;
  width: 24px;
  height: 24px
}

.c-burger__line {
  transform-origin: 50% 50%;
  transform-box: fill-box;
  transition: transform 0.6s
}

.c-burger.is-open {
  transform: rotate(1turn)
}

.c-burger.is-open .c-burger__line-top {
  transform: rotate(45deg) translate(4px, 3px)
}

.c-burger.is-open .c-burger__line-middle {
  opacity: 0
}

.c-burger.is-open .c-burger__line-bottom {
  transform: rotate(-45deg) translate(5px, -4px)
}

.c-header__nav {
  background: rgb(193 152 106);
  position: absolute;
  font-size: 18px;
  gap: 8px;
  padding: 15px;
  top: 115px;
  transform: translateY(-125px) translateX(100%) scale(0);
  transition: all 0.3s ease-in-out;
  right: 0;
  width: 100%
}

.c-header__nav.is-active {
  transform: translateY(0px) translateX(0px) scale(1)
}

.c-header__nav a {
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 10px 0;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: 100%
}

.c-header__nav a:hover {
  color: #ffd039;
}

.c-header__nav .c-header__list {
  list-style: none;
}

@media (min-width: 768px) {

  .c-burger {
    display: none
  }

  .c-header__container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "left right";
    gap: 15px;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 60px
  }

  .c-header__bottom {
    gap: 15px;
    grid-column: 1/2;
    grid-area: left
  }

  .c-header__top {
    grid-area: right
  }

  .c-header__nav {
    position: initial;
    padding: 0;
    transform: initial
  }

  .c-header__list {
    flex-direction: row;
    gap: 25px;
    justify-content: flex-end
  }
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  outline: 0;
  background: #151545;
  color: #ffffff;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  line-height: 18px;
}

#myBtn:hover {
  filter: brightness(1.1);
}

.first-screen-container {
  padding: 20px;
  color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0e0f1d;
  background-image: url(../img/bottom.svg);
  background-position: bottom;
}

.first-screen-container .first-screen-content,
.first-screen-container .first-screen-img {
  width: 50%;
}

@media (max-width:1024px) {
  .first-screen-container {
    flex-direction: column;
    background-position: bottom;

  }

  .first-screen-container .first-screen-content,
  .first-screen-container .first-screen-img {
    width: 100%;
  }
}

.first-screen-promo {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2rem;
}

.first-screen-pp {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.first-screen-pp .pp-link {
  min-width: 240px;
  text-align: center;
  font-size: 1.2rem;
}

@media (max-width:1024px) {
  .first-screen-pp {
    flex-direction: column;
  }

  .first-screen-pp .pp-link {
    min-width: 80%;
  }
}

.first-screen-img {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.first-screen-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 100%;
}

.main-content-pp {
  display: flex;
  margin: 20px auto;
  justify-content: center;
}

.main-content-pp .pp-link {
  min-width: 70%;
  text-align: center;
}

.benefits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 30px auto;
}

.benefits .pros,
.benefits .cons {
  width: 48%;
  padding: 15px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
}

.benefits .pros ul,
.benefits .cons ul {
  list-style: none;
  margin-top: 20px;
  padding: 0 5px 0 15px;
}

.benefits .pros ul li,
.benefits .cons ul li {
  padding-left: 30px;
  padding-bottom: 7px;
  position: relative;
}

.benefits .pros ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: rgb(193 152 106);
  background: inherit;
}

.benefits .cons ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "●";
  color: #ff0000;
  background: inherit;
}

.pros {
  background-color: #ededed;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

#article-text .pros h3,
#article-text .pros h2,
#article-text .pros p {
  display: block;
  width: 100% !important;
  height: 50px;
  color: rgb(193 152 106);
  font-size: 1.5rem;
  line-height: 50px;
  padding: 0 0 0 40px;
  margin: 0;
  border-bottom: 1px solid rgb(193 152 106);
  border-top-left-radius: 4px;
}

.cons {
  background-color: #ededed;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

#article-text .cons h3,
#article-text .cons h2,
#article-text .cons p {
  display: block;
  width: 100% !important;
  height: 50px;
  color: #ff0000;
  font-size: 1.5rem;
  line-height: 50px;
  padding: 0 0 0 40px;
  margin: 0;
  border-bottom: 1px solid #ff0000;
  border-top-right-radius: 6px;
}

@media screen and (max-width:800px) {

  .benefits .pros,
  .benefits .cons {
    width: 100%;
  }

  .pros,
  .cons {
    border-radius: 6px;
    border: none;
  }

  #article-text .pros h3,
  #article-text .pros h2,
  #article-text .cons h3,
  #article-text .cons h2 {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
}

.cookie-notification.open {
  display: block;
}

.cookie-notification {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  z-index: 65;
  background: #ededed;
  border-top: 1px solid #f7ded3;
}

.cookie-notification .c_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-notification-text {
  width: 60%;
  padding: 0 5px;
  font-size: 0.9rem;
}

.cookie-notification-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.cookie-notification-link {
  display: block;
  width: 20%;
  color: #232323;
  border: 1px solid #232323;
  height: 50px;
  border-radius: 6px;
  text-align: center;
  line-height: 50px;
  margin: 10px;
}

.cookie-notification-close {
  display: block;
  width: 20%;
  color: #FFFFFF;
  border: 1px solid #232323;
  background-color: #232323;
  height: 50px;
  border-radius: 16px;
  text-align: center;
  line-height: 50px;
  margin: 10px;
  font-size: 16px;
}

@media (max-width:800px) {
  .cookie-notification .c_container {
    flex-direction: column;
  }

  .cookie-notification-text,
  .cookie-notification-link,
  .cookie-notification-close {
    width: 100%;
  }
}

.c-button-badge {
  position: absolute;
  top: -20px;
  right: -10px;
  background: #4a56e2;
  color: white;
  padding: 0.1rem 0.2rem;
  border-radius: 1rem;
  font-size: 0.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
  margin-bottom: 20px;
}

.c-button-icon {
  font-size: 1rem;
}