html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, a, abbr, address, big, cite, code, del, dfn, em, img, ins, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, input, legend, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, main, nav, output, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block; }

body {
  line-height: 1; }
@font-face {
  font-family: 'Future';
  src: url('../fonts/future-tense-regular.eot');
  src: local('☺'), url('../fonts/future-tense-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

ol, ul, nav {
  list-style: none; }

* {
  box-sizing: border-box; }

img, video, canvas {
  max-width: 100%; }

img {
  vertical-align: bottom; }

a {
  text-decoration: none;
  color: #C95B32; }

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

a:hover {
  text-decoration: underline;
  color: #C95B32; }

html, body {
  height: 100%;
  width: 100%; }

iframe {
  width: 100%; }

a, button, a:hover, button:hover {
  cursor: pointer; }

button, button:focus, button:active {
  outline: none;
  border: none; }

blockquote {
  margin: 0; }

body {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: normal;
  background: #13163A;
  letter-spacing: normal;
  font-size: 14px;
  
  -webkit-font-smoothing: antialiased; }

h1, .h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  }

h2, .h2 {
  font-size: 18px;
  font-weight: normal;
  line-height: 21px;
  color: #f30654;
  margin-bottom: 12px; }

h3, .h3 {
  font-size: 16px;
  font-weight: normal;
  line-height: 18px;
  margin-bottom: 20px; }

h4, .h4 {
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 20px; }

p {
  font-size: 13px;
  font-weight: normal;
  line-height: 20px;
  margin: 0 0 12px 0; }

div p:last-child {
  margin-bottom: 0; }

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0; }

img {
  max-width: 100%;
  height: auto; }
.text-center {
  text-align: center; }

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

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

.text-uppercase {
  text-transform: uppercase; }
.sidebar_title {
    font-size: 18px;
    margin-top: 26px;
    margin-left: 80px;
    positin: relative;
}
.sidebar_title:before{
  content: url("../img/category.svg");
  position: absolute;
  left: 21px;
  top: 18px;
  width:31px;
  height: 31px;
  background: #C95B32;
  border-radius: 9px;
}
.menu_top ul#menu-main-menu {
    display: flex;
    align-items: start;
    margin-left: 95px;

}
.menu_top ul#menu-main-menu li{
  margin: 10px 0;
  padding: 15px 0;

}

.menu_top a{
  color: #fff;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  padding: 15px 20px;
  z-index: 100;
}
.menu_top {
    overflow: hidden;
    margin-left: 10px;
}
.menu_top ul#menu-main-menu li:hover{
  background: #C95B32;
  border-radius: 20px;
}
.single_cat_img{
  width: 40px;
  height: 40px;
  flex: none;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: solid 2px transparent;
  border-radius: 12px;
}
.single_cat_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.all_cat{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  width: 280px;
  margin-left: 7px;
}
.single_cat{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  position: relative;
}
.single_cat > a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.single_cat label {
  position: static;
  text-align: left;
  display: block;
  opacity: 0;
  max-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: none;
  border-radius: 0;
  padding: 0;
  z-index: 1;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.2s ease, max-width 0.2s ease;
}
.page > .sidebar:hover .single_cat label {
  opacity: 1;
  max-width: 200px;
}
.single_cat a, .single_cat label {
  text-decoration: none;
}
.right_cat_img label {
  position: absolute;
    left: -20px;
    right: -20px;
    text-align: center;
    display: none;
    opacity: 0;
    font-size: 14px;
    color: #fff;
    background: #000;
    border-radius: 5px;
    padding: 10px 0px;
    z-index: 100;
    cursor: pointer;
    bottom: 57px;
}
.right_cat_img label:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 8px solid #000;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.single_cat:hover .single_cat_img {
    border: solid 2px #E2B64F;
    border-radius: 12px;
}
.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; 
  border-bottom: solid 1px rgba(255,255,255,0.12);
  }
.top_label{
  color: #fff;
  font-family: 'Future';
  text-align: center;
  font-size: 120px;
  line-height: 120px;
  font-weight: 400;
  position: relative;
  margin-bottom: 30px;
  z-index: 10;
}

/*.top_label:before{
  content: url('../img/left_icon.svg');
  position: absolute;
  left: -29px;
  top: -8px
}
.top_label:after{
  content: url('../img/right_icon.svg');
  position: absolute;
  right: 21px;
  top: 11px;
}*/


.top_description {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #F2EAD2;
    width: 40%;
    margin-left: 48%;
    margin-bottom: 60px;
}
.top_description div{
     position: relative;
}
.top_description div:before{
  content: url('../img/star.svg');
  position: absolute;
  left: -114px;
  top: -85px;
}
.logo {
  position: relative; 
 padding-top: 7px;}
.btn-search {
  padding: 0 28px;
  height: 52px;
  position: absolute;
  right: 4px;
  align-items: center;
  background: #C95B32;
  border-radius: 15px;
 color: #fff;
 font-size: 14px;
  outline: 0; }
 button.btn-search:hover {
    background: #A84726;
    transition: 1s;
}
.mobil_menu {
 display:none;
 padding: 10px;
 background: #C95B32 url(../img/category.svg) no-repeat;
 width: 31px;
 height: 31px;
 position: fixed;
 z-index: 10000;
 top: 94px;
 border-radius: 9px;
}
.mobil_menu i {
  color: #fff;
  font-size: 18px;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .menu i{
  display: none;
 }
  .menu ul {
    display: flex; }
    .menu ul li {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 25px; }
      .menu ul li a {
        color: #FFFFFF;
        text-align: center;
        text-decoration: none; }
       .menu ul li a span {
          font-size: 16px;
          color: #F2EAD2;
          line-height: 16px; 
          font-weight: 400;}
       .menu ul li:hover a span{
        color: #C95B32;
       }
  .search input {
    font-size: 12px;
    line-height: 14px;
    border: 0;
    outline: 0;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 10px;
    width: 130px;
    height: 43px;
    background: #13163A;
    color: #fff;
    }
.search-container {
    margin-top: 15px;
    position: relative;
}
.search-container:after{
 content: url("../img/search.svg");
 position: absolute;
 right:0px;
 top:13px;
}
.main {
  margin-bottom: 30px;
  padding: 30px 0px; }
.home .main{
 margin-top: 367px;
}
.main.category, .main.single {
    padding-top: 60px;
}
.main.category .popular_cat, h2.popular_cat {
  margin-top: 0px !important;
}
.content {
  max-width: 812px;
  width: 100%; }
.page > .sidebar::-webkit-scrollbar {
    width: 0px;
}
.page > .sidebar {
  scrollbar-width: none;	
  position: fixed;
  overflow-y: scroll;
    z-index: 100000;
    width: 70px;
    height: 100vh;
    background: linear-gradient(180deg, #2C2138 0%, rgba(70, 66, 144, 0) 100%);
    -webkit-transition: width 0.2s linear;
    transition: width 0.2s linear;
   -o-transition: width 0.2s linear;
  color: #fff; }
  .page > .sidebar:hover { 
  width: 260px; 
}
/* The other .sidebar (inside .main, holds the ads block) should not be
   fixed/expanding — it's just a normal box in the page flow. */
.main > .sidebar {
  position: static;
  width: auto;
  height: auto;
  background: none;
}
.rating {
    font-size: 0px;
    text-align: left;
}
.post-ratings img {
  margin-right: 6px;
  width: 16px;
}
.popular-game {
  width: 255px;
  background: #C95B32;
  border-radius: 50px;
  padding: 12px 20px 25px;
  position: relative;
  z-index: 16; }
  .popular-game__title {
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    padding: 10px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 700; }
  .popular-game__title span{
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
  }  
  .popular-game__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -5px;
    margin-right: -5px; }
  .popular-game__item {
    width: 65px;
    height: 65px;
    border-radius: 5px;
    margin: 0 5px 10px 5px; }
    .popular-game__item a {
      width: 100%;
      height: 100%;
      overflow: hidden; }
    .popular-game__item img {
      max-width: 100%;
      height: auto;
      border: 3px solid #C95B32;
      border-radius: 15px;
      box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.25); }
    .popular-game__item:hover img {
      border-color: #E2B64F;
      transition: 1s;
    }
.tooltip {
  position: relative; }
  .tooltip .box {
    position: absolute;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    background: #000;
    border-radius: 5px;
    top: -46px;
    left: 0;
    min-width: 156px;
    white-space: nowrap;
    text-align: center;
    padding: 10px 14px;
    z-index: 1005; }
    .tooltip .box:after {
      content: '';
      width: 0;
      height: 0;
      border-left: 9px solid transparent;
      border-right: 9px solid transparent;
      border-top: 8px solid #000;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      margin: 0 auto; }

.breadcrumbs {
  position: relative;
  margin-bottom: 10px; }

.breadcrumb {
  display: flex; }
  .breadcrumb li {
    display: flex;
    align-items: center;
    color: #FFFFFF; }
    .breadcrumb li a {
      font-size: 16px;
      line-height: 18px;
      color: #FFFFFF;
       }
      .breadcrumb li a:hover {
        text-decoration: underline; }
    .breadcrumb li span {
      font-size: 16px;
      line-height: 18px;
      color: #FFFFFF; }
    .breadcrumb li:not(:last-child):after {
      content: url("../img/Arrow-Right2.svg");
      margin: 0 4px 4px;
      display: inline-flex; }

.advertising {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1B1830;
  border-radius: 15px;
  padding: 19px;
  margin-bottom: 10px; }
.catalog__title.bg-pink {
    margin: 30px 0;
}

/* Text page: center the whole block and let it use more width */
.content:has(.catalog__description) {
  max-width: 1040px;
  margin: 0 auto;
}
.catalog:has(.catalog__description) {
  justify-content: center;
}
.catalog__description {
  margin-top: 20px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: #F4F1E6;
  border: none;
  border-radius: 50px;
  padding: 70px 60px;
  text-align: center;
  color: #2C2138;
  font-size: 16px;
  font-weight: 500;
}
.catalog__description h2 {
    color: #1B1830;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin: 30px 0 14px;
    text-align: center;
}
.catalog__description h3 {
    color: #1B1830;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    margin: 24px 0 12px;
    text-align: center;
}
.catalog__description p {
    font-size: 16px;
    margin-bottom: 16px;
    text-align: center;
}
.catalog__description a {
    color: #C95B32;
    text-decoration: underline;
}
.catalog__description ul,
.catalog__description ol {
    text-align: left;
    max-width: 820px;
    margin: 0 auto 20px;
    padding-left: 26px;
}
.catalog__description ul {
    list-style: disc;
}
.catalog__description ol {
    list-style: decimal;
}
.catalog__description ul li,
.catalog__description ol li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #2C2138;
}
.catalog__description ul li::marker {
    color: #C95B32;
}
.catalog__description ol li::marker {
    color: #C95B32;
    font-weight: 700;
}
.catalog__description ul ul,
.catalog__description ol ol,
.catalog__description ul ol,
.catalog__description ol ul {
    margin-top: 8px;
    margin-bottom: 0;
}
.game {
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  .game__title {
    width: 100%;
    border-radius: 5px;
    padding: 7px 10px 9px 10px;
    margin-bottom: 10px;
    order: 1; }
    .game__title h1 {
      font-weight: 500;
      font-size: 18px;
      line-height: 27px;
      text-align: center;
      margin: 0;
      text-transform: none;
      color: #fff; }
  .game__player {
    width: 100%;
    padding: 12px 0px;
    border-radius: 50px;
    background: #C95B32;
    }
    .game__player__content {
      position: relative;
      min-height: 500px;
      margin-bottom: 10px; }
    .game__player__footer {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      padding: 32px; }
    .game__player__played {
      display: block;
     float: left; }
      .game__player__played span {
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        color: #ffffff; }
     .game__player__header {
    background: #C95B32;
    border-radius: 25px;
   padding: 10px 12px 0;
    margin: 20px;
    height: 70px;
}
.game__player .game__player__rate {
    float: right;
    margin-top: -70px;
    font-size: 0px;
    width: 28%;
    text-align: right;
    padding: 14px 10px;
    border-radius: 15px;
    background: #C95B32;
}
.game__description_block {
    border: 1px solid rgba(255,255,255,0.18);
    box-sizing: border-box;
    box-shadow: 0px 5px 40px rgb(0 0 0 / 5%);
    border-radius: 50px;
    margin-top: 20px;
}
  .game__image {
   width: 100%;
    max-width: 175px;
    height: auto;
    margin: 30px;
    border-radius: 25px;
    float: left; }
    .game__image img {
      border-radius: 25px;
    width: 100%;
    height: auto;      
    }
  .game__description {
    width: 100%;
    padding: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #F2EAD2;
   }
    .game__description h1 {
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px; 
    margin-top: 25px;}
  .game__promo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: #C95B32;*/
    border-radius: 5px;
    padding: 19px;
    margin-top: 20px;
    margin-bottom: 20px;
    order: 6; }
  .game__similar {
    background: #1B1830;
    border: 1px solid #1B1830;
    box-sizing: border-box;
    border-radius: 50px;
    padding: 70px 0;
    float: left;
    width: 100%; }
    .single footer.footer {
    float: left;
    width: 100%;
}
  .game__similar .catalog__list{
    padding: 0 46px;
  }  
  .comments {
    width: 100%;
    margin-top:30px;
    text-align: center; }
  .game .comments {
    width: 100%;
    background: #ffffff;
    border-radius: 5px;
    padding: 19px; }
  .game .banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    order: 2; }

.block__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    color: #FFFFFF;
    margin-bottom: 50px;
    text-align: center; }
.game_body {
    width: 100%;
    position: absolute;
    bottom: -30px;
    text-align: center;
    display: flex;
    align-items: center;
}
.game-card__name a {
font-weight: 600;
font-size: 14px;
line-height: 100%;
text-align: center;
color: #F2EAD2;
}
.game-card__rate .rating img {
    width: 9px;
}
.game-card {
  position: relative;
  margin: 8px auto;
  }
.catalog__list{
  width: 152px;
  height: 152px;
  background: url(../img/game_bg1.png) no-repeat;
  margin: 0px 12px 15px;
}  
.catalog__list.no_style {
    background: none;
    border: none;
}
.catalog__list:hover{
  transition: 1s;
}
.catalog__list.no_style:hover{
  border: none;
}
.catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: url(../img/bg4.png) no-repeat;
    padding: 50px 30px;
}
.main.search .catalog {
   justify-content: flex-start;
}
.catalog__list:hover a{
  color: #E2B64F;
  transition: 1s;
}
.catalog__list:hover img {
  border: solid 3px #E2B64F;
  transition: 1s;
}

/* All Games grid: fixed 170x170 cards, 6 per row, tight gap,
   card background/frame restored. Scoped with :has() so this only
   applies to the real games grid (.catalog containing .catalog__list),
   not other unrelated content wrapped in a .catalog div (e.g. the
   text-page privacy-policy card). */
.catalog:has(.catalog__list) {
  display: grid;
  grid-template-columns: repeat(6, 170px);
  justify-content: center;
  gap: 14px;
  background: none;
  padding: 30px 0;
}
.catalog__list {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  background: url(../img/game_bg1.png) no-repeat;
  background-size: cover;
}
.game-card {
  width: 100%;
  height: 100%;
  margin: 0;
}
.game-card__thumb {
  width: 100%;
  height: 100%;
}
.game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: solid 2px transparent;
  border-radius: 16px;
}
  .catalog__list:hover  .game-card__name, .left-game-card:hover  .game-card__name, .right-game-card:hover .game-card__name {
    display: block;
    cursor: pointer;
  }   
  .game-card__name {
    display: none;
    position: absolute;
    bottom: 0px;
    left: 12px;
    width: 130px;
    z-index: 1;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    text-shadow: #000 1px 1px 10px;
    line-height: 16px;
    margin-bottom: 5px;
    height: auto;
    text-align: center;
    padding: 0 10px; }
  .left-game-card .game-card__name, .right-game-card .game-card__name {
    width: 90px;
    left:0px;
    padding: 0 5px;
    font-size: 12px;
  }  
    .game-card__name a {
      text-decoration: none; }
  .catalog__list .game-card__name {
    display: block;
    background: linear-gradient(180deg, transparent 0%, rgba(19,22,58,0.85) 70%);
    padding: 20px 10px 8px;
    border-radius: 0 0 16px 16px;
  }
 .game-card__thumb {
    text-align: center;
} 
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  margin-bottom: 30px; 
 float: left;
  width: 100%;}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center; 
 }
  .pagination li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-right: 10px; 
     background: url(../img/pagination.svg) no-repeat;}
    .pagination li a {
      font-size: 14px;
      line-height: 24px;
      font-weight: 500;
      color: #F2EAD2;
      text-align: center;
      text-decoration: none; 
      padding: 16px 23px; }
     .pagination li span {
      font-size: 16px;
      line-height: 18px;
      color: #fff;
      text-align: center;
      text-decoration: none; }
    .pagination span.current {
    background: url(../img/pagination_active.svg) no-repeat !important;
    padding-top: 20px; 
    width: 60px;
    height: 60px;
    color: #1B1830;
    font-weight: 400;
    font-size: 14px;
  }
      .pagination li:hover {
        background: url(../img/pagination_active.svg) no-repeat !important; 
        transition: 1s;}
      .pagination li:hover a {
        color: #1B1830; }
    .fa-arrow-right:before {
    content: url(../img/next.svg) !important;
} 
.fa-arrow-left:before {
    content: url(../img/prev.svg) !important;
} 
a.next i, a.prev i {
    margin-top: 6px;
}
    .pagination li.bv-prev a:before {
      content: '';
      color: #C95B32;
      border-right: 2px solid #C95B32;
      border-bottom: 2px solid #C95B32;
      position: absolute;
      width: 9px;
      height: 9px;
      top: 18px;
      left: 20px;
      transform: rotate(135deg); }
    .pagination li.bv-prev:hover a:before {
      color: #fff;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff; }
    .pagination li.bv-next a:before {
      content: '';
      color: #C95B32;
      border-right: 2px solid #C95B32;
      border-bottom: 2px solid #C95B32;
      position: absolute;
      width: 9px;
      height: 9px;
      top: 18px;
      left: 14px;
      transform: rotate(-45deg); }
    .pagination li.bv-next:hover a:before {
      color: #fff;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff; }
   .pagination li:last-child {
      margin-right: 0; }
.seo_block h1{
  font-family: 'Nunito', sans-serif;
font-style: normal;
font-weight: 800;
font-size: 40px;
line-height: 120%;
text-transform: none;
color: #FFFFFF;
white-space: nowrap;
position: relative;
}  
.seo_block.category h1 {
    font-size: 34px;
    margin-bottom: 40px;
}
/*.seo_block.home h1:after{
  content: url(../img/seo_title_right.svg);
  position: absolute;
  right: -55px;
  top: -50px;
}  
.seo_block.home h1:before{
  content: url(../img/seo_title_left.svg);
  position: absolute;
  left: 43px;
  bottom: -78px;
}  */  
.seo_block {
    display: flex;
    width: 100%;
    margin: 40px 0;
    background: #1B1830;
    border-radius: 34px;
    padding: 40px;
}
.seo_block.category {
    flex-direction: column;
}
.seo_text, .seo_text p{
font-weight: 500;
font-size: 16px;
line-height: 2;
color: #F2EAD2;
text-align: left;
}
.seo_text h1 {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 16px;
  text-align: left;
}
.seo_text h2, .seo_block h2 {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  margin-top: 30px;
  margin-bottom: 14px;
  text-align: left;
}
.seo_text h3 {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 10px;
  text-align: left;
}
.seo_text h4, .seo_text h5, .seo_text h6 {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 18px;
  margin-bottom: 8px;
  text-align: left;
}
.seo_text a {
  color: #E2B64F;
  text-decoration: underline;
  font-weight: 600;
}
.seo_text a:hover {
  color: #C95B32;
}
.seo_text ul, .seo_text ol {
  margin: 14px 0 20px;
  padding-left: 24px;
}
.seo_text ul {
  list-style: disc;
}
.seo_text ol {
  list-style: decimal;
}
.seo_text ul li, .seo_text ol li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #F2EAD2;
}
.seo_text ul li::marker {
  color: #E2B64F;
}
.seo_text ol li::marker {
  color: #E2B64F;
  font-weight: 700;
}
.seo_text table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
}
.seo_text table th, .seo_text table td {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  color: #F2EAD2;
}
.seo_text table th {
  background: #2C2138;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
.seo_text table tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}
.page_description {
font-family: 'Future';
font-weight: 400;
font-size: 34px;
line-height: 160%;
text-transform: uppercase;
color: #FFFFFF;
margin-left: 50px;
width: 45%;
text-align: left;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: solid 1px rgba(255,255,255,0.12);
  padding-top: 10px;
  margin-top: 30px;
  align-items: center;
  }
  .footer .menu{
    padding-top: 5px;
  }
  .footer .menu ul li {
    padding-left: 0px;
    margin: 0 15px;
  }
  li.privat {
    position: relative;
}
li.privat:before{
  content: url(../img/lock.svg);
  position: absolute;
  left: -22px;
  top: -3px;
}
  .footer .menu a{
   font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  }
  .footer-logo {
    margin: 12px 0; }
  .footer ul#menu-main-menu a {
    color: #13163A;
    position: relative;
}  
.new_games {
    width: 100%;
    background: url(../img/bg2.png) no-repeat;
    padding: 60px 10px 90px;
    position: relative;
    z-index: 1000;
}		
.new_games h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #13163A;
    transform: rotate(2.26deg);
    background: #E2B64F;
    border-radius: 22px;
    position: absolute;
    right: 33px;
    top: -37px;
    padding: 20px 30px;
    font-family: 'Future';
    z-index: 1;
}
.new_games:after{
   content: url(../img/rings.svg);
   position: absolute;
  right: -35px;
    top: -117px;
    z-index: 0;
}
.overflow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1001; }
  .all_categorys {
    background: url("../img/bg.png") no-repeat;
    text-align: center;
    position: relative;
    padding: 40px 25px;
    z-index: 1005;
    display: flex;
    margin-bottom: 70px;
}
.owl-stage-outer {
    padding-left: 11px;
}
#owl-carousel .owl-item {
    width: 144px !important;
    height: 165px;
    background: linear-gradient(0deg, #2C2138 0%, rgba(53, 50, 106, 0.25) 100%);
    border-radius: 26px;
    display: flex;
    justify-content: center;
}
.owl-carousel .owl-item:hover .category_item label{
  background: #C95B32;
  transition: 1s;
}
#owl-carousel .owl-item img {
  width: 114px;
  height: 114px;
  margin: 15px auto;
}
#owl-carousel {
    padding-bottom: 30px;
    width: 100%;
}
.cat_item.big, .cat_item.big img {
    width: 312px;
    height: 312px;
    border-radius: 16px;
}
.cat_item.small, .cat_item.small img {
    width: 144px;
    height: 144px;
    border-radius: 16px;
}
.cat_item.small {
    margin: 8px 10px;
}
.cat_item.big {
    margin: 9px;
}
button.owl-dot {
    width: 5px;
    height: 5px;
    background: #13163A !important;
    margin: 5px;
    opacity: 0.5;
    border-radius: 50%;
}
button.owl-dot.active{
  width: 5px;
  height: 5px;
  margin-top: 4px;
  border: 4px solid #C95B32 !important;
  opacity: 1;
  background: none !important;
}
button.owl-prev {
    position: absolute;
    left: -73px;
    bottom: 42%;
    width: 36px;
    height: 74px;
    background: url("../img/left.svg") no-repeat !important;
    font-size: 0px !important;
}
button.owl-next {
    position: absolute;
    right: -60px;
    bottom: 42%;
    width: 36px;
    height: 74px;
    background: url("../img/right.svg") no-repeat !important;
    font-size: 0px !important;
}
.popular_games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.game_item {
    width: 365px;
    height: 94px;
    background: linear-gradient(90deg, #2C2138 0%, rgba(53, 50, 106, 0.25) 128.77%);
    border-radius: 26px;
    margin-right: 12px;
    margin-bottom: 10px;
    padding: 10px;
    position: relative;
	cursor: pointer;
}
.game_item:after {
    content: url(../img/heart.svg);
    position: absolute;
    right: 10px;
    top: 10px;
}
.game_item img {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    float: left;
    margin: 5px 10px 9px 7px;
}
.game_item label {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #F2EAD2;
    margin-top: 16px;
    float: left;
    width: 240px;
    cursor: pointer;
}
.game_item:hover {
    border: solid 2px #C95B32;
    transition: 1s;
}
.game_item .cat_name {
    float: left;
    margin-top: 7px;
}
.game_item .cat_name a{
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #E2B64F;
    text-decoration: none;
}
.slide_row label {
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 15px;
    background: #C95B32;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
}
.slide_row:hover label{
    opacity: 1;
    transition: 1s;
}
.slide_row {
    margin-bottom: 25px;
    position: relative;
}
.cat_item:hover .cat_item_img{
 border-color: #C95B32;
 transition: 1s;
}
.cat_item a {
  color:  #fff;
 font-weight: 600;
  font-size: 16px;
  line-height: 25px;
} 
.cat_item a:hover{
  text-decoration: none;
}
 .all_categorys_footer{
    background: #C95B32;
    border-radius: 50px;
    position: relative;
    height: 15px;
    bottom: 6px;
    width: 92%;
    left: 4%;
    z-index: 1;
  }
  h2.popular_cat{
    font-family: 'Future';
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    transform: rotate(-2.39deg);
    background: #C95B32;
    border-radius: 22px;
    padding: 20px 30px;
    width: 288px;
    margin: 0px auto -16px;
    position: relative;
    z-index: 140;
  }
  h2.popular_cat:after {
    content: url(../img/rings2.svg);
    position: absolute;
    right: -87px;
    top: -79px;
    z-index: 0;
}
  .popular_category {
    display: flex;
    justify-content: space-between;
    background: url("../img/bg3.svg") no-repeat;
    padding: 50px 30px 20px;
    position: relative;
    z-index: 10;
}
  .popular-game_footer{
    background: #C95B32;
    border-radius: 50px;
    position: relative;
    height: 18px;
    bottom: 14px;
    width: 70%;
    left: 15%;
    z-index: 1;
  }
  .all_categorys h3{
  position: absolute;
  left:0px;
  top: -30px;
  z-index: 2;
  font-family: 'Future';
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  text-transform: uppercase;
  padding: 20px 30px;
  margin-bottom: 0px;
  transform: rotate(2deg);
  background: #C95B32;
  border-radius: 22px;
  width: 275px;
  }
  .top_games {
    display: flex;
}
  .category_item_img img {
    width: 100px;
    border-radius: 20px;
}
h2.all_games {
    color: #1B1830;
    font-family: 'Future';
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    transform: rotate(-4.5deg);
    background: #C95B32;
    border-radius: 22px;
    padding: 20px 30px;
    width: 271px;
    position: relative;
}
 h2.all_games:after {
    content: url(../img/rings3.svg);
    position: absolute;
    right: -87px;
    top: -79px;
    z-index: 0;
}
h2.category_name {
    margin-top: 40px;
    font-family: 'Future';
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
} 
.category_item {
    position: relative;
}
.category_item label {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #F2EAD2;
    padding: 10px 14px;
    background: #2C2138;
    border: 5px solid #13163A;
    border-radius: 22px;
    width: 114px;
    z-index: 10;
    position: absolute;
    bottom: 10px;  
    cursor: pointer;
}    

h2.all_games{
    margin-top: 40px;
    margin-bottom: -35px;
}  
  .game-top__thumb{
    width: 106px;
    height: 95px;
    border-radius: 25px;
    margin: 0px auto;
    position: absolute;
    top: -10px;
    left: 10px;
}
}
.game-top__thumb img {
    width: 106px;
    height: 95px;
    border-radius: 25px;
}
.game-top__body {
    text-align: center;
    background: #fff;
    border-radius: 25px;
    position: relative;
    height: 142px;
    width: 126px;
    margin-top: 20px;
    padding-top: 94px;
}
.game-top .rating img{
  float: left;
  width: 9px !important;
}
.game-top__body a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
}
.game-top__body a:hover{
  text-decoration: none;
}
.game-top__body:hover{
  box-shadow: 0 0 20px rgba(15, 135, 103, 0.2);
}
.game-top .game-card__rate {
    float: left;
    width: 100%;
    text-align: center;
    margin: 10px 34px 10px;
}
div#owl-carousel2 {
    margin-bottom: 42px;
}
.no_mobil {
  display: block;
}
.to_mobil, .show_content{
  display: none;
}
.archive.category .main {
     margin-top: 0px;
}     
.main.search {
    margin-top: 0px;
}
 ul.list_category li {
    display: inline-block;
    margin-right: 20px;
    background: #C95B32;
    padding: 20px 10px 14px 55px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    height: 50px;
    
}
ul.list_category li:hover img{
  border-color: #C95B32;
  transition: 1s;
}
ul.list_category a{
  color: #fff;
}
ul.list_category img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    position: absolute;
    left: 0px;
    top:  0px;
    border: 3px solid #C95B32;
    border-radius: 15px;
}
.container.bottom {
    display: block;
    float: left;
}

.game-offer h2, .game-offer h3 {
    margin-bottom: 20px; }
   .game-offer__comments {
    position: relative;
    max-width: 830px;
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px; }
  .game-offer__window {
      width: 100%;
     }
     .game-offer__window__top {
      font-family: "Poppins";
    color: #ffffff;
    font-weight: 700;
    font-size: 44px;
    margin-left: 0px;
     }
    .game-offer__window__frame {
      position: relative;
      min-height: 650px;
      margin-left: 14px; }
     
    .game_title {
   margin-bottom: 10px;
    }    
    .game_title span {
        /*background: #fff;*/
        padding: 0 12px;
    }
    .main__content.game-offer {
    display: flex;
    }
.border-block {
    margin-right: 35px;
}
.game-offer__window__bottom {
    display: flex;
    justify-content: space-between;
    background: #2C2138;
    border-radius: 0px 0px 22px 22px;
    margin: 0 0px 14px 12px;
    padding: 5px 13px;
}
.emotion {
    padding-top: 5px;
}
.btn-fullscreen {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 225px;
  height: 52px;
  font-family: 'Future';
  outline: 0;
  font-weight: 400;
  padding: 22px 0px 22px 32px;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  color: #E2B64F;
  cursor: pointer;
  margin-top: 2px;
  }
  .btn-fullscreen:before{
  content: url("../img/zoom.svg") ;
  position: absolute;
  left: 15px;
  top: 17px;
  }
  .btn-fullscreen span {
    font-size: 22px;
    line-height: 16px;
    font-weight: 600;
    text-align: center;
    color: #fff; }
  .btn-fullscreen:hover {
    background: #A84726;
   }
.right_bottom {
    display: flex;
    align-items: center;
}
.page_amount_visitor_shortcode {
  color: #fff;
  font-size: 12px;
  position: relative;
}
.page_amount_visitor_shortcode:before{
  position: absolute;
  left:-25px;
  top:2px;
  content: url("../img/users.svg") ;
}
#page-visit-counter-shortcode-block img {
  display:none;
}
.exitfullscreen svg.icon {
  color: #fff;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  z-index: 20000;
  cursor: pointer; }

.btn-play {
  display: none; }

.breadcrumbs span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.breadcrumbs {
    color: #C95B32;
}  
.breadcrumbs a{
  text-decoration: none;
}
.bottom_description {
  background: #1B1830;
  border-radius: 16px;
  padding: 45px 20px;
}
.bottom_description__title {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: 'Future';
}
.main_block {
  background: url("../img/game_bg.png") no-repeat;
  padding: 45px 10px 0px;
  text-align: center;
  margin-bottom: 60px;
}
.game-offer__content {
    display: flex;
    margin-top: 25px;
    justify-content: center;
}
.game-offer__content .block_adv {
    width: 580px;
}
.game-offer__image {
align-items: center;
display: flex;
margin-right: 20px;
}
.game-offer__image img.icons {
     width: 44px;
     height: 44px;
     border-radius: 10px;
     margin-right: 20px;
}      
.game-offer__image h1 {
  color: #fff;
  font-family: 'Future';
font-weight: 400;
font-size: 28px;
line-height: 120%;
text-transform: uppercase;
text-align: left;
}
.right_adv {
    width: 100%;
    margin: 20px 0;
}
.right_block_cat {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.right_cat_img {
   width: 60px;
   margin: 0px 5px 10px;
   position: relative;
}
.right_cat_img img{
  border-radius: 10px;
  width: 60px;
  border: solid 3px transparent;
}
.right_cat_img img:hover {
    border-color: #E2B64F;
}
.right_cat_img:hover label{
  opacity: 1;
  transition: 1s;
  display: block;
  bottom: 66px;
}
.right_block {
    background: #2C2138;
    border-radius: 16px;
    padding-bottom: 30px;
    margin-right: 8px;
}
.right_block h3{
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Future';
font-weight: 400;
font-size: 15px;
background: #C95B32;
padding: 15px 0;
border-radius: 16px;
}
.all_tags a {
    background: #C95B32;
    padding: 6px 32px;
    color: #13163A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
}
.all_tags a:hover {
    background: #C95B32;
}
.emded {
    background: #2C2138;
    border-radius: 16px;
    padding: 12px;
}
.emded_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.emded_top h3 {
  position: relative;
  padding-left: 20px;
 }
.emded_top h3:before{
  content: url("../img/embed.svg");
  position: absolute;
  top: 0px;
  left: 0px;
}
.copy_code {
    background: #E2B64F;
    padding: 10px 7px;
    border-radius: 10px;
    cursor: pointer;
}
.copy_code:hover, .copy_code.copied {
   background: #C95B32; 
   color: #fff;
}
.emded_code {
    border: solid #4A4570 2px;
    color: #F2EAD2;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    overflow: hidden;
}

.main_block {
    display: flex;
}
.left_main_block {
    display: flex;
}
.left_sidebar {
    width: 90px;
}
.right_sidebar {
    width: 386px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    margin-left: 10px;
}
.left-game-card {
    width: 90px;
    height: 90px;
    background: 2px ;
    margin-bottom: 10px;
    position: relative;
}
.right-game-card {
    width: 90px;
    height: 90px;
    position: relative;
    background: 2px ;
    margin: 0px 3px 10px;
}
.left-game-card img, .right-game-card img {
    border-radius: 20px;
    border: solid 2px transparent;
}
.left-game-card img:hover, .right-game-card img:hover{
  background-color: #E2B64F;
}


.list_category li {
    display: inline;
    margin-right: 20px;
}
.list_category ul {
  margin-top: 15px;
}
.list_category a {
  text-transform: uppercase;
  color: #C95B32;
  text-decoration: none;
}
.game_description {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  color: #F2EAD2;
  text-align: left;
  margin-top: 26px;
  padding-right: 15px;
}
.game_description img {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}
.game_description h2 {
    color: #F2EAD2;
}
.list_category a:hover {
    color: #C95B32;
}
div#1B1830lbox-header {
    display: none;
}
#hkp-feelbox-widget #bd {
    background-color: #2C2138;
}
#wp-reactions{
  display: flex;
}    
.wp-emotion-icon{
  display: flex;
  background: #2C2138;
  border-radius: 62px;
  margin-right: 10px;
}
.feelbox-emotion-counter {
  border: none;
  color: #fff;
  font-size: 16px;
  padding-top: 13px;
}
.central_main_block {
    width: 100%;
}
.catalog__title h3{
font-family: 'Future';
font-weight: 400;
font-size: 24px;
line-height: 100%;
text-transform: uppercase;
color: #FFFFFF;
background: #C95B32;
border-radius: 22px;
padding: 20px 30px;
width: 344px;
margin: 0 auto;
text-align: center;
}
.catalog__title {
  background: linear-gradient(90deg, #2C2138 0%, rgba(53, 50, 106, 0.1) 128.77%);
border-radius: 26px;
height: 64px;
margin-top: 20px;
display: block;
align-items: center;
justify-content: center;
}
.main.single .catalog {
  background: none;
  padding: 20px 25px;  
  justify-content: flex-start;
}
.tags {
    padding-left: 5px;
}
.tags h3 {
    text-align: left;
    color: #fff;
    font-size: 24px;
    padding-left: 7px;
    text-transform: uppercase;
    font-family: 'FUTURE';
}
.single_tag {
    background: #fff;
    margin: 4px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    width: 137px;
    height: 54px;
    padding: 5px;
    color: #000;
    font-size: 13px;
    font-weight: bold;
}
.single_tag label {
    text-align: left;
    margin-left: 5px;
}
.list_tags a:hover {
    text-decoration: none;
}
.list_tags a:hover label{
  color: #fff;
  cursor: pointer;
}
.single_tag:hover{
  background: #C95B32;
}
.list_tags {
    display: flex;
    flex-wrap: wrap;
}
.mypoint {
    list-style: none;
	font-family: 'Gilroy';
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -.01em;
    color: #ffffff;
}
.mypoint li::before {
    content: "\2022";
    color: #E2B64F;
    margin-left: 10px;
    display: inline-block;
    width: 20px;
	
}
strong { font-weight: bold; }

.alm-listing.alm-ajax {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0 30px;
}
.single .alm-listing.alm-ajax {
  padding: 0px;
}


.top_label {
    background-image: url('../img/banner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding-top: 23.78%; 
    height: 0;
}

.top_label {
    background-image: url('../img/banner.svg');
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 200px;
}