/*
Theme Name: rps
Author: rps
Version: 2.1
Description: Required plugins: Yoast SEO, ACF
Tested up to: 7
Requires PHP: 7
*/

/* Start */

@font-face {
	font-display: swap;
    font-family: 'Outfit';
    src: url('fonts/Outfit-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
	font-display: swap;
    font-family: 'Outfit';
    src: url('fonts/Outfit-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
	font-display: swap;
    font-family: 'Outfit';
    src: url('fonts/Outfit-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
	font-display: swap;
    font-family: 'Outfit';
    src: url('fonts/Outfit-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
	font-display: swap;
    font-family: 'Outfit';
    src: url('fonts/Outfit-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
	font-display: swap;
    font-family: 'Outfit';
    src: url('fonts/Outfit-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
	font-display: swap;
    font-family: 'Outfit';
    src: url('fonts/Outfit-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
	font-display: swap;
    font-family: 'Outfit';
    src: url('fonts/Outfit-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

:root {
    
    --white: #fff;
    --grey-text: #B9C3C3;
    --black-text: #232224;
    --dark-bg-color: #1660A4; 
    --button-color: #6F8D2F;
    --button-hover: #5B7919;
    --second-color: #F0901F;
    --advantages: #7D9934;
    --disadvantages: #B72E27;
    --advantages-bg: #f2f5eb;
    --disadvantages-bg: #f8eae9;
    --stars: #FFC20A;
    --light-bg: #FFEDE1;
    --button-text-color: #fff;

    --body-bg: white;
    --home-heading-color: #6F8D2F; 

    --linking-a: #232224;
    --linking-a-hover: #A81627;
    --links-bg: #1660a4;
    
}

/* Главное меню */
.main-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-menu li {
  position: relative;
}

.main-menu li a {
  color: var(--foreground, #fff);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  display: block;
  transition: color 0.2s ease;
}

.main-menu li a:hover {
  color: var(--accent, #FFA71A);
}

/* Подменю */
.main-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--header-bg, #19191D);
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  min-width: 180px;
  z-index: 999;
}

.main-menu li:hover > ul.sub-menu {
  display: block;
}

.main-menu li ul.sub-menu li a {
  padding: 8px 16px;
  font-weight: normal;
  white-space: nowrap;
}

/* Мобильное меню */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    background-color: var(--header-bg, #19191D);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 999;
    flex-direction: column;
    padding: 20px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-menu {
    flex-direction: column;
    gap: 12px;
  }

  .main-menu li ul.sub-menu {
    position: relative;
    box-shadow: none;
    background: none;
  }

  .main-menu li:hover > ul.sub-menu {
    display: block;
  }
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; 
    color: #fff!important;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

.button-big {
    text-decoration: none;
    color: white;
    border-radius: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: center;
    width: 190px;
    font-size: 22px;
    font-weight: 600;   
    transition: background 0.15s;
    margin-bottom: 30px;
    display: inline-block;
}

.big-button {
    width: 270px;
    padding-top: 16px;
    padding-bottom: 16px;    
}

.button-small {
    text-decoration: none;
    color: white;
    border-radius: 6px;
    padding: 10px 30px;
    text-align: center;
    width: 170px;
    font-size: 16px;
    font-weight: 700;   
    transition: background 0.15s;
}

.button-standart {
    background: var(--button-color);
    color: var(--button-text-color);
    display: inline-block;
}

.button-standart:hover {
    background: var(--button-hover);
    color: var(--button-text-color);
}

.center {
    margin: 30px auto;
    display: block;
}

.tw::before {
	content: "\f301";
	font-family: 'dashicons';
}

.ld::before {
	content: "\f18d";
	font-family: 'dashicons';
}

.fb::before {
	content: "\f304";
	font-family: 'dashicons';
}

.inst::before {
	content: "\f12d";
	font-family: 'dashicons';
}

.mail::before {
	content: "\f465";
	font-family: 'dashicons';
}

.articleauthor__contacts {
	display: flex;
	gap: 10px;
	align-items: center;
}

.articleauthor__contacts a {
	text-decoration: none;
	font-size: 36px;
	color: var(--black-text);
	height: 36px;
	transition: color 0.15s;
}

.articleauthor__contacts a:hover {
    color: var(--second-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.withsidebar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

main {
    width: 100%;
}

.withsidebar main {
    width: 850px;
}

aside {
    width: 280px;
    margin-top: 20px;
}

.home aside {
    /* margin-top: 60px; */
}

.page-template-page-reviewpage aside {
    margin-top: 20px;
}

.sidebar {
    /*
    position: sticky;
    top: 30px;
    */
}

.sidebar div, .sidebar a {
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .withsidebar {
        flex-direction: column;
    }
    
    aside {
        display: none;
    }
    
    main {
        width: 100%;
    }
    
    .morearticles {
        margin-top: 30px;
    }
}

.table-of-contents {
    width: 100%;
    border-radius: 20px;
    /*border: 2px solid var(--light-bg);*/
    box-shadow: 0 0 6px 0 #57597E1A;
    box-sizing: border-box;
    overflow: hidden;
}

.sidebar__header {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-text);
    position: relative;
    cursor: pointer;
    padding: 20px;
    transition: color 0.1s;
}

.sidebar__header:hover {
    color: var(--a-hover);
}

.sidebar__header::after {
    position: absolute;
    right: 10px;
    content: '';
    width: 26px;
    height: 26px;
    background-image: url(img/toc.png);
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    transition: transform 0.1s;
}

.sidebar__content {
    padding: 8px 20px 20px 20px;
    background: var(--light-bg);
    border-radius: 0 0 16px 16px;
}

.sidebar__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar__content ul li {
    box-sizing: border-box;
}

.sidebar__content ul .li-H2:not(:first-child) {
    border-top: 2px solid white;
}

.li-H3 {
    padding-left: 20px;
}

.li-H4 {
    padding-left: 40px;
}

.sidebar__content a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-text);
    transition: color 0.1s;
    padding: 12px 0;
    display: block;
}

.sidebar__content a:hover {
    color: var(--button-color);
}

.li-H2:last-child a {
    padding-bottom: 0;
}

.li-H3 a {
    font-size: 12px;
    padding: 0 0 10px 0;
}

.h2h3 {
    border-top: 2px solid white;
    padding-top: 12px    
}

.table-of-contents-close .sidebar__content {
    display: none;
}

.table-of-contents-close .sidebar__header::after {
    transform: rotate(0deg);
}

.author-sidebar {
    margin-top: 24px;
    border-radius: 20px;
    /* border: 2px solid var(--light-bg); */
    box-shadow: 0 0 6px 0 #57597E1A;
    padding: 20px;
    width: 100%;
}

.author-sidebar__info {
    display: flex;
    gap: 10px;
}

.author-sidebar__photo {
    width: 46px;
    height: 46px;
    border-radius: 23px;
    background-image: url(img/no-image.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.author-sidebar__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-text);
    width: calc(100% - 60px);
}

.author-sidebar__name-label {
    background: var(--light-bg);
    padding: 3px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    margin-top: 4px;
    display: inline-block;
}

.author-sidebar__date {
    margin-top: 24px;
    padding: 18px;
    border-radius: 12px;
    border: 2px solid var(--light-bg);
    font-size: 14px;
    font-weight: 400;
    color: var(--black-text);
}

.author-sidebar__updated {
    padding-left: 42px;
    position: relative;
}

.author-sidebar__updated::before {
    content: '';
    background-image: url(img/updated.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
}

.author-sidebar__published {
    margin-top: 18px;
    padding-left: 42px;
    position: relative;
}

.author-sidebar__published::before {
    content: '';
    background-image: url(img/published.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;  
    left: 0;
}

.author-sidebar__button {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 16px;
    width: max-content;
}




.sidebaroffers {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebaroffer {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-areas:
                        "i t"
                        "i b"
                        "i r";
    gap: 10px;
    justify-items: center;
    box-shadow: 0 0 6px 0 #57597E1A;
}

.sidebaroffer__img {
    grid-area: i;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.sidebaroffer__title {
    grid-area: t;
    color: var(--black-text);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.sidebaroffer__button {
    grid-area: b;
    width: auto;
    font-size: 14px;
    padding: 8px 18px;
}

.sidebaroffer__review {
    grid-area: r;
    text-decoration: none;
    color: var(--button-color);
    border-bottom: 1px dashed var(--button-color);
    transition: border-bottom 0.15s, color 0.15s;   
	font-size: 16px;
}

.sidebaroffer__review:hover {
    color: var(--button-hover);
    border-bottom: 1px dashed var(--button-hover);    
}


.sidebarlinks {
    box-shadow: 0 0 6px 0 #57597E1A;
    border-radius: 10px;
    width: 100%;
    margin-top: 24px;
    padding: 24px;
}

.sidebarlinks__header {
    margin-top: 0 !important;
}

.page-template-page-eatpage .sidebarlinks__header,
.page-template-page-techpage .sidebarlinks__header {
    position: relative;
    padding-left: 48px;
}

.page-template-page-eatpage .sidebarlinks__header::before,
.page-template-page-techpage .sidebarlinks__header::before {
    content: '';
    position: absolute;
    display: block;
    background-image: url(img/www.png);
    width: 32px;
    height: 32px;
    left: 0;
    top: -3px;    
}

.eat-menu {
    list-style: none;
    border: 2px solid var(--second-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}
.eat-menu a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    color: var(--black-text);
}
.eat-menu a:hover {
    color: var(--advantages);
}

.sidebar-menu {
    margin-bottom: 0;
    padding: 0;
    list-style: none;   
}

.sidebar-menu li a {
    display: block;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    color: var(--black-text);
    padding-left: 60px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
}

.blackjack a::before {
    content: url(img/blackjack.png);
    position: absolute;
    left: 0;
}

.ruleta a::before {
    content: url(img/ruleta.png);
    position: absolute;
    left: 0;
}

.videopoker a::before {
    content: url(img/videopoker.png);
    position: absolute;
    left: 0;
}

.poker a::before {
    content: url(img/poker.png);
    position: absolute;
    left: 0;
}

.baccarat a::before {
    content: url(img/baccarat.png);
    position: absolute;
    left: 0;
}

.dados a::before {
    content: url(img/dados.png);
    position: absolute;
    left: 0;
}

.keno a::before {
    content: url(img/keno.png);
    position: absolute;
    left: 0;
}

.bingo a::before {
    content: url(img/bingo.png);
    position: absolute;
    left: 0;
}

.sidebar-menu li a:hover {
    color: var(--second-color);
}

.sidebar-menu li:not(last-child) a {
    margin-bottom: 12px;
}




/* Articleauthor */

.articleauthor {
    margin: 60px 0 30px 0;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 20px;
    box-sizing: border-box;
}

.articleauthor div, .articleauthor a {
    box-sizing: border-box;
}

.articleauthor {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.articleauthor__info {
    display: grid;
    grid-template-columns: 10% 20% 20% 20%;
    gap: 30px;
    align-items: center;
}

.articleauthor__photo {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-image: url(img/no-image.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.articleauthor__name {
    font-size: 26px;
    font-weight: 700;
    color: var(--black-text);
	text-decoration: none;
}

.articleauthor__name:hover {
	color: var(--second-color);
}

.articleauthor__job {
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    padding: 3px 16px;
    margin-top: 8px;
    width: max-content;
}

.articleauthor__updated, .articleauthor__published {
    position: relative;
    width: 140px;
    font-size: 14px;
    padding-left: 40px;
}

.articleauthor__updated::before {
    content: '';
    background-image: url(img/updated.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
}

.articleauthor__published::before {
    content: '';
    background-image: url(img/published.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 3px;
}

.articleauthor__description {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

@media (max-width: 1200px) {
    
    .articleauthor {
        padding: 30px 20px;
    }
    
    .articleauthor__info {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .articleauthor__title {
        width: calc(100% - 90px);
    }
    
    .articleauthor__updated, 
    .articleauthor__published {
        width: 80px;
        padding-top: 34px;
        padding-left: 0;
    }
    
    .articleauthor__updated::before, 
    .articleauthor__published::before {
        top: 0;
        left: 0;
    }    
    
}



/* Author */

.articleslist {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.articleslist__item {
    border-radius: 10px;
    width: 20%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
    justify-content: space-between;
	box-shadow: 0px 3px 9px 0px #60629D1A;
}

.articleslist__item-image {
	border-radius: 10px 10px 0 0;
	width: 100%;
	height: 230px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.articleslist__item-title {
    font-size: 16px;
    font-weight: 600;   
	color: var(--black-text);	
	padding: 10px;
}

.articleslist__item-meta {
	display: flex;
	justify-content: space-between;
}

.articleslist__item-author {
    font-size: 12px;
    font-weight: 500;   
	color: var(--black-text);	
	position: relative;
	padding: 0 10px 10px 10px;
    line-height: 30px;
}

.articleslist__item-date {
    font-size: 12px;
    font-weight: 500;   
	color: var(--black-text);	
	position: relative;
	padding: 0 10px 10px 46px;
    line-height: 30px;
}

.articleslist__item-date::before {
    content: url(img/published.png);
	width: 30px;
	height: 30px;
	left: 10px;
	position: absolute;
}

.pagination {
	width: 100%;
}

@media (max-width: 600px) {
	
	.articleslist {
		justify-content: center;
	}	
	
	.articleslist__item {		
		width: 300px;
	}
	
}



/* Header */

.header {
    background: var(--dark-bg-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    height: 80px;
}

/* Header Menu */

.header-menu {
    display: flex;
    row-gap: 10px;
    column-gap: 40px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
}

.header-menu a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;   
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: color 0.2s;
}

.header-menu a:hover {
    color: var(--second-color);
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children::after {
    content: '';
    display: inline-block;
    margin-left: 10px;    
    border: solid white;
    border-width: 0 2px 2px 0;
    padding: 2px;
    transform: rotate(45deg);
    height: 2px;
    width: 2px;
    margin-bottom: 2px;
}

.sub-menu {
    display: none;
    list-style: none;
    padding-left: 0;
    z-index: 10;
    position: absolute;
    left: auto;
	right: 0;
    top: 20px;
    list-style: none;
    padding-top: 45px;
    min-width: 250px;
    width: 100%;
}


@media (min-width: 1201px) {
	.menu-item-has-children:hover .sub-menu {
		display: block;
	}	
	.menu-item-has-children:hover::after {
        border: solid var(--second-color);
        border-width: 0 2px 2px 0;
        transform: rotate(225deg);
        margin-bottom: -2px;
	}	
}

.sub-menu li {
    background: var(--light-bg);
    box-shadow: 0 4px 4px 0 #36363633;
}

.sub-menu li a {
    display: block;
    padding: 0 45px 5px 20px;
    line-height: 1.7;
    color: var(--dark-bg-color);
}

.sub-menu li:first-child {
    padding-top: 16px;
    border-top: 4px solid var(--second-color);
}

.sub-menu li:last-child {
    padding-bottom: 16px;
    border-radius: 0 0 12px 12px;
}

.menu-buton {
    display: none;
    width: 30px;
    height: 30px;
}

.menu-buton-active {
    z-index: 55;
    position: absolute;
    right: 20px;
    top: 20px;    
}


@media (max-width: 1200px) {
    
    .menu-buton {
        display: block;
    }
    
    .header .container {
        padding: 30px 20px;
        height: 78px;
        position: relative;
    }  

    .header-menu {
        display: none;
    }
    
    .header-menu-active {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 60px 20px 20px 20px;
    background: var(--light-bg);
    box-shadow: 0 0 6px 0 #57597E1A;
}
    
    .header-menu-active > li > a {
        border-bottom: 2px solid white;
    }
    
    .header-menu-active > li > a {
        padding: 12px 0 10px 0;
        display: block;
    }
    
    .header-menu a, .sub-menu li a {
        color: var(--dark-bg-color);
    }
    
    .sub-menu {
        display: block;
        position: inherit;
        padding-top: 0;
        left: 0;
        top: 0;    
    }
    
    .sub-menu li {
        background: var(--light-bg);
        box-shadow: none;
    }   

    .sub-menu li:first-child {
        border-top: none;
    }
    
    .sub-menu li a {
        width: auto;
        font-size: 14px;
    } 
    
    .sub-menu li:last-child {
        padding-bottom: 10px;
    }
    
    .menu-item-has-children {
        border-bottom: 2px solid white;
    }
    
    .menu-item-has-children::after {
        display: none;
    }

}



/* Breadcrumbs */

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;  
    flex-wrap: wrap;
    margin: 20px auto 0 auto;
}

.breadcrumbs a, .breadcrumbs span {
    color: var(--black-text);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--a-hover);
}

.breadcrumbs > span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
	gap: 10px;
}

.breadcrumbs > span > span:first-child a {
    font-weight: 600;    
    display: block;
}

.breadcrumb_last {
    color: var(--button-color) !important;
    font-size: 16px !important;
    font-weight: 600;   
}


@media (max-width: 600px) {
    
    .breadcrumbs {
        margin: 0 auto 0 auto;
    }

    .breadcrumbs > span > span:first-child a {
        font-weight: 400;    
    }  
    
    .breadcrumbs a, .breadcrumbs span {
        font-size: 12px;
    } 
    
    .breadcrumb_last {
        font-size: 12px !important;
    }
    
}



/* Article */


article {
    margin-top: 20px;
    margin-bottom: 60px;
}

.home article {
    /* margin-top: 60px; */
}

article a {
    color: var(--button-color);
}

article a:hover {
    color: var(--button-hover);
    text-decoration: none;
}

article strong {
    color: var(--button-color);
}

article p {
    font-size: 18px;
    line-height: 1.3;
}

article p, article ul li, article ol li  {
    font-size: 18px;
    line-height: 1.5;
}

article img {
    border-radius: 6px;
    max-width: 100%;
    margin-bottom: 30px;
}

.aligncenter {
    margin: 0 auto 30px auto;
    display: block;    
}

.alignleft {
    margin: 20px 20px 20px 0;
    float: left;
}

.alignright {
    margin: 20px 0 20px 20px;
    float: right;
}

article h1, .h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 40px 0;
    color: var(--black-text);
}

article h2, .h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 60px 0 30px 0;
    color: var(--black-text);
}

article h2::after, .h2::after {
    content: '';
    display: block;
    width: 140px;
    height: 25px;
    background-image: url(img/h2.png);
    background-repeat: no-repeat;
    margin-top: 2px;
    margin-left: -2px;
}

article h3, .h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 30px 0;
    color: var(--black-text);
}

article h4, .h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: var(--black-text);
}

article h5, .h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: var(--black-text);
}

article h6, .h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: var(--black-text);
}

article p {
    margin: 0 0 30px 0;
    line-height: 1.4;
}

article ul {
    margin: 0 0 30px 0;
    list-style: none;
    padding: 0;
    line-height: 1.4;
}

article ul li {
    position: relative;
    padding-left: 34px;
}

article ul li::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 23px;
    height: 23px;
    display: inline-block;
    background-image: url(img/marker.png);
    background-repeat: no-repeat;
}

article ol {
    margin: 0 0 30px 0;
    padding: 0;
    line-height: 1.4;
    list-style: none;
    counter-reset: ol-counter;
}

article ol li {
    padding-bottom: 6px;
}

article ol li::before {
    content: counter(ol-counter); 
    counter-increment: ol-counter;
    background: var(--button-color);
    color: #fff; 
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
}

.wp-block-table table {
	border-collapse: inherit;
}

.wp-block-table td, .wp-block-table th {
	border: inherit;
}

article table {
    margin: 0 auto 30px auto;
    width: 100%;
    border: none !important;
    border-spacing: 0;
}

article table td, article table th {
    padding: 20px 24px !important;
}

    
article table tr th {
    background: var(--second-color);
    text-align: left;
    color: white;
}
    
article table tr:nth-of-type(odd) td {
    background: var(--light-bg);
}

article table tr:nth-of-type(1) td:nth-of-type(1), article table tr:nth-of-type(1) th:nth-of-type(1) {
    border-top-left-radius: 6px;
}

article table tr:nth-of-type(1) td:nth-last-of-type(1), article table tr:nth-of-type(1) th:nth-last-of-type(1) {
    border-top-right-radius: 6px;
}

article table tr:nth-last-of-type(1) td:nth-of-type(1), article table tr:nth-last-of-type(1) th:nth-of-type(1) {
    border-bottom-left-radius: 6px;
}

article table tr:nth-last-of-type(1) td:nth-last-of-type(1), article table tr:nth-last-of-type(1) th:nth-last-of-type(1) {
    border-bottom-right-radius: 6px;
}

blockquote {
    margin: 0 0 30px 0;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

blockquote.blockquote2 {
    margin: 0 0 30px 0;
    background: white;
    padding: 20px;
    border: 2px solid var(--second-color);
    border-radius: 10px;    
}

blockquote p:last-child {
    margin-bottom: 0;
}

iframe {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;    
}

/* linking */

.linking {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
    margin-bottom: 30px;
}

.linking a {
	text-decoration: none;
	background: white;
	width: 205px;
	min-height: 60px;
	border-radius: 10px;
	padding-left: 14px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
	background-color: white;
	color: var(--linking-a);
    display: grid;
    grid-template-columns: 40px 110px;
    gap: 10px;
    align-items: center;
    position: relative;
    box-shadow: 0px 0px 6px 0px #57597E1A;
}

.linking a:hover {
    color: var(--linking-a-hover);
}

.linking a::after {
    content: '';
    width: 14px;
    height: 8px;
    background-image: url(img/menu-arrow.png);
    transform: rotate(-90deg);
    position: absolute;
    right: 10px;
    top: auto;    
}

.linking a:hover {
    color: var(--a-hover);
}

.linking a:hover::after {
    background-image: url(img/menu-arrow-hover.png);
    transform: rotate(90deg);
}

.linking a div:nth-of-type(1) {
	width: 40px;
	height: 40px;	
}

.linking_1 {
    background-image: url(img/linking_1.png);
}

.linking_2 {
    background-image: url(img/linking_2.png);
}

.linking_3 {
    background-image: url(img/linking_3.png);
}

.linking_4 {
    background-image: url(img/linking_4.png);
}

.linking_5 {
    background-image: url(img/linking_5.png);
}

.linking_6 {
    background-image: url(img/linking_6.png);
}

.linking_7 {
    background-image: url(img/linking_7.png);
}

.linking_8 {
    background-image: url(img/linking_8.png);
}

.linking a div:nth-of-type(2) {
	padding: 10px 0;	
}

@media (max-width: 600px) {
    
    article {
        margin-top: 0;
        margin-bottom: 60px;
    } 	
    
    .home article {
        /*margin-top: 40px; */
    }    
  
    article h1, .h1 {
        font-size: 32px;
        margin: -20px 0 20px 0;
    }
    
    article h2, .h2 {
        font-size: 28px;
        margin: 40px 0 20px 0;
    }
    
    article h3, .h3 {
        font-size: 22px;
        margin: 40px 0 20px 0;
    }
    
    article h4, .h4 {
        font-size: 16px;
        margin: 40px 0 20px 0;
    }
    
    article h5, .h5 {
        font-size: 14px;
        margin: 30px 0 20px 0;
    }
    
    article h6, .h6 {
        font-size: 14px;
        margin: 30px 0 20px 0;
    }    
    
    article p {
        margin: 0 0 20px 0;
    }
    
    article ul {
        margin: 0 0 20px 0;
    }
    
    article ol {
        margin: 0 0 20px 0;
    } 
    
    article p, article ul li, article ol li {
        font-size: 16px;
        line-height: 1.6;
    }    

    .aligncenter {
        margin: 20px auto;
    }
    
    .alignleft {
        margin: 20px auto;
        float: none;
        display: block;
    }
    
    .alignright {
        margin: 20px auto;
        float: none;
        display: block;
    }

    article table td, article table th {
        padding: 10px !important;
    }

    blockquote {
        padding-left: 10px;
    }
    
    iframe {
        margin-bottom: 20px;    
    }
    
	.linking a {
	    display: flex;
		width: 155px;
		height: 90px;
		flex-direction: column;
		gap: 0;
		padding-left: 0;
		justify-content: center;
	}
	
	.linking a::after {
	    content: none;
	}
    
}

/* Banner */

.review-banner {
    display: block;
    text-decoration: none;
    padding: 0;
    line-height: 0;
	margin-top: 30px;
    margin-bottom: 30px;	
}

.review-banner img {
    width: 100%;
    height: auto;        
    margin-bottom: 0;
}

.review-banner-mob {
    display: none;
}

@media (max-width: 600px) {
    .review-banner-desc {
        display: none;
    }
    .review-banner-mob {
        display: block;
    }        
}



/* Home */

.homescreen {
    background: linear-gradient(0deg, white 220px, var(--light-bg) 220px, var(--light-bg) 100%);
    width: 100%;
    min-height: 500px;
}

.homescreen * {
    box-sizing: border-box;
}

.homescreen .container {
    padding: 0;
}

.home__header {
    color: var(--home-heading-color);
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.home__header span {
    color: var(--second-color);
}

.home__header h1 {
    font-weight: 800;
    font-size: 48px;
    margin: 0;
    padding: 40px 0;
    line-height: 1;
}

.home__header p {
    margin: 0;
    color: var(--black-text);
}

.owl-stage {
    margin-left: auto;
    margin-right: auto;
}

.home__offers .owl-stage {
    display: flex;
}

.home__offers .owl-item:nth-of-type(1) {
    order: 3;
    margin: 0 12px;
}

.home__offers .slide {
    position: relative;
}    

.home__offers .owl-item:nth-of-type(1) .slide {
    border-left: 4px solid var(--second-color);
    border-right: 4px solid var(--second-color);
    border-bottom: 4px solid var(--second-color);
}

.home__offers .owl-item:nth-of-type(1) .slide::before {
    content: url(/wp-content/themes/rps/img/offer-crown.png);
    position: absolute;
    top: -40px;
    left: 0;
}

.home__offers .owl-item:nth-of-type(2) .slide::before {
    content: url(/wp-content/themes/rps/img/offer-cherry.png); 
    position: absolute;
    top: -30px;
    left: 0;
}

.home__offers .owl-item:nth-of-type(3) .slide::before {
    content: url(/wp-content/themes/rps/img/offer-money.png); 
    position: absolute;
    top: -25px;
    left: 0;
}

.home__offers .owl-item:nth-of-type(1) .promo__offer-header {
    border-radius: 6px 6px 0 0;
}

.home__offers .owl-item:nth-of-type(2) {
    order: 2;
    transform: scale(0.96);
}

.home__offers .owl-item:nth-of-type(3) {
    order: 4;
    transform: scale(0.96);
}

.home__offers .owl-item:nth-of-type(4) {
    order: 1;
    transform: scale(0.89);
}

.home__offers .owl-item:nth-of-type(5) {
    order: 5;
    transform: scale(0.89);
}

.home__offers .slide {
    background: white;
    box-shadow: 0 3px 9px 0 #60629D1A;
    border-radius: 10px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.promo__offer-header {
    border-radius: 10px 10px 0 0;
    background: var(--second-color);
    color: white;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    padding: 5px 10px 15px 10px;
}

.promo__offer-content {
    margin-top: -10px;
    background: white;
    border-radius: 10px;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.promo__offer-content .casinoitem__plus p,
.promo__offer-content .casinoitem__plus ul li {
    margin: 5px 0;
}

.promo__offer-content .casinoitem__bonus-welcome {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.promo__offer-content .casinoitem__bonus-welcome > div:nth-of-type(1)::before {
    display: none;
}

.promo__offer-content .casinoitem__bonus-welcome > div:nth-of-type(2) {
    font-size: 28px !important;
    text-align: center;
    color: var(--advantages);
    font-weight: 700;
}

.promo__offer-logo {
    width: 196px;
    height: 132px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: opacity 0.2s;
}


@media (max-width: 1200px) {
	
	.homescreen .container {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.home__offers .owl-item {
		transform: scale(1) !important;
	}
    
    .home__offers .owl-item:nth-of-type(1) {
        order: 1;
		margin-left: 0 !important;
		margin-bottom: 0 !important;
		margin-top: 0 !important;
    }
    
    .home__offers .owl-item:nth-of-type(2) {
        order: 2;
    }
    
    .home__offers .owl-item:nth-of-type(3) {
        order: 3;
    }
    
    .home__offers .owl-item:nth-of-type(4) {
        order: 4;
    }
    
    .home__offers .owl-item:nth-of-type(5) {
        order: 5;
    }
    
}

@media (max-width: 600px) {
    
    .home__header {
        margin-bottom: 40px;
        padding-top: 40px;
        padding-left: 10px;
        padding-right: 10px;        
    }
    
    .home__header h1 {
        font-weight: 700;
        font-size: 36px;
        padding: 10px 0 0 0;
    }
    
    .home__offers .slide {
        width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
	
	.promo__offer-header {
    	border-radius: 9px 9px 0 0;	
	} 
	
    .promo__offer-logo {
        width: 256px;
        height: 256px;
    }
    
    .home__offers .owl-item:nth-of-type(1) {
        order: 1;
    } 
    
    .home__offers .owl-item:nth-of-type(2) {
        order: 2;
    } 
    
    .home__offers .owl-item:nth-of-type(3) {
        order: 3;
    } 
    
    .home__offers .owl-item:nth-of-type(4) {
        order: 4;
    } 
    
    .home__offers .owl-item:nth-of-type(5) {
        order: 5;
    } 
    
    .home__offers .owl-item {
        margin: 0 auto !important;
        transform: scale(1) !important;
    } 
    
    .home__offers .owl-nav {
        position: absolute;
        top: -40px;
        left: calc(50% - 44px);
    }

    .home__offers .owl-nav button {
        background-image: url(img/slider.png) !important;
        background-size: cover !important;
        width: 34px;
        height: 34px;
    }
    
    .home__offers .owl-nav button:hover {
        background-color: transparent !important;
    }
    
    .home__offers .owl-nav .owl-prev {
        transform: rotate(0deg);
    }
    
    .home__offers .owl-nav .owl-next {
        transform: rotate(180deg);
    }
    
    .home__offers .active span, .home__offers .owl-dot:hover span {
        background: var(--grey-text) !important;
    }
    
}



/* Casinolist */

.casinolist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.casinolist div, .casinolist a {
    box-sizing: border-box;
}

.gold-wrapper {
    background: linear-gradient(156deg, #E69D28 10%, #FFD67B 28%, #E69D28 50%, #E8AC49 75%, #EBB965 100%);
    border-radius: 10px;
    box-shadow: 0 3px 15px 0 rgba(147, 149, 204, 0.15);
    padding: 40px 3px 3px 3px;
}

.standart-wrapper {
    background: var(--second-color);
    border-radius: 10px;
    box-shadow: 0 0 6px 0 #57597E1A;
    padding: 40px 0 0 0;
}

.casinoitem {
    width: 100%;
    padding: 10px;
    background: white;
    border-radius: 0 0 8px 8px;
    margin: auto;
    position: relative;
}

.casinolist-review .casinoitem__plus p::before, .casinolist-review .casinoitem__plus ul li::before,
.promo__offer-content .casinoitem__plus p::before, .promo__offer-content .casinoitem__plus ul li::before {
    content: '';
    background-image: url(img/like.png);
    display: block;
    position: absolute;
    top: -2px;
    left: 0;
    width: 18px;
    height: 18px;
    background-size: cover;
}

.casinoitem__rank {
    position: absolute;
    top: -40px;
    left: 10px;
    height: 40px;
    font-size: 26px;
    font-weight: 600;
    line-height: 40px;
    color: white;
}

.casinoitem__rank span {
    margin-right: 12px;
}

.casinoitem__content {
    display: grid;
    grid-template-columns: 16% 10% 24% 24% calc(26% - 40px);
    grid-template-areas: 
        "logo bonus bonus              plus buttons"
        "bonustext bonustext bonustext banking banking";
    align-items: center;
    justify-items: center;
    justify-content: space-between;
    gap: 10px;    
}

.casinoitem__brand {
    grid-area: logo;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.casinoitem__logo {
    width: 130px;
    height: 130px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: opacity 0.2s;
}


.casinoitem__logo:hover {
    opacity: .8;
}

.casinoitem__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    grid-area: rating;
}

.rating-info {
    display: flex;
    gap: 8px;
    align-items: center;
    grid-area: info;
}

.rating-star {
    width: 25px;
    height: 25px;
    background-image: url(img/rating-star.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.rating-value {
    font-size: 16px;
    font-weight: 600;
}

.rating-value span {
    color: var(--grey-text);
}

.rating-tc {
    font-size: 12px;
    font-weight: 300;
    color: #999;
}

.casinoitem__plus {
    border-radius: 10px;
    border: 2px solid var(--light-bg);
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; 
    grid-area: plus;
}

.casinoitem__plus ul {
    margin-bottom: 0;
	list-style-type: none;
    padding: 0;
	margin: 0;
}

.casinoitem__plus p, .casinoitem__plus ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2; 
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.casinoitem__plus p:last-child, .casinoitem__plus ul li:last-child {
    margin-bottom: 0;
}

.casinoitem__plus p::before, .casinoitem__plus ul li::before {
    content: url(img/marker.png);
    background-image: none;
    display: block;
    position: absolute;
    top: -1px;
    left: -4px;
}

.casinoitem__bonus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    height: 100%;
    grid-area: bonus;
}

.casinoitem__bonus-payspeed,
.casinoitem__bonus-payrate,
.casinoitem__bonus-limits,
.casinoitem__bonus-welcome {
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    padding: 8px;
}

.casinoitem__bonus-payspeed > div:nth-of-type(1)::before {
    content: url(img/bonus-1.png);
    position: absolute;
    left: 0;
	top: -3px;
}

.casinoitem__bonus-payrate > div:nth-of-type(1)::before {
    content: url(img/bonus-2.png);
    position: absolute;
    left: 0;
	top: -3px;
}

.casinoitem__bonus-limits > div:nth-of-type(1)::before {
    content: url(img/bonus-3.png);
    position: absolute;
    left: 0;
	top: -3px;
}

.casinoitem__bonus-welcome > div:nth-of-type(1)::before {
    content: url(img/bonus-4.png);
    position: absolute;
    left: 0;
	top: -3px;
}

.casinoitem__bonus-item > div:nth-of-type(1) {
    position: relative;
    font-size: 12px;
    padding: 0 8px 0 24px;
    min-height: 30px;
    line-height: 1;
}

.casinoitem__bonus-item > div:nth-of-type(2) {
    font-size: 16px;
    font-weight: 700;
    padding-top: 4px;
}

.casinoitem__bonus-welcome > div:nth-of-type(2) {
    color: var(--second-color);
    font-size: 20px;
    line-height: 1;
}

.casinoitem__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    grid-area: buttons;
}

.casinoitem__reg {
    max-width: 100%;
    border-radius: 6px;
    padding: 14px 30px;
}

.casinoitem__bonustext {
    width: 100%;
    height: 100%;
    grid-area: bonustext;
    border-radius: 10px;
    border: 2px solid var(--light-bg);
    padding: 20px;
}

.casinoitem__bonustext-text {
    font-size: 14px;
    margin-top: 14px;
}

.casinoitem__bonustext-title, .casinoitem__banking-title {
    font-size: 16px;
    font-weight: 700;
    padding-left: 28px;
    position: relative;
}

.casinoitem__bonustext-title::before {
    content: url(img/cherry.png);
    position: absolute;
    top: -5px;
    left: -5px;
}

.casinoitem__banking {
    width: 100%;
    height: 100%;
    grid-area: banking;
    border-radius: 10px;
    border: 2px solid var(--light-bg);
    padding: 20px;
}

.casinoitem__banking-title::before {
    content: url(img/dollar.png);
    position: absolute;
    top: -5px;
    left: -5px;  
}

.casinoitem__banking-items {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.casinoitem__banking-items div {
    width: 48px;
    height: 36px;
    box-shadow: 0 1px 4px 0 rgba(41, 44, 44, 0.12);
    border-radius: 6px;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
	background-size: contain;
    background-position: center;		
}


.visa {
    background-image: url(img/pay/visa.png);
}

.mastercard {
    background-image: url(img/pay/mastercard.png);
}

.bitcoin {
    background-image: url(img/pay/bitcoin.png);
}

.spei {
    background-image: url(img/pay/spei.png);
}

.cash {
    background-image: url(img/pay/cash.png);
}

.skrill {
    background-image: url(img/pay/skrill.png);
}

.neteller {
    background-image: url(img/pay/neteller.png);
}

.payscale {
    background-image: url(img/pay/payscale.png);
}

.paypal {
    background-image: url(img/pay/paypal.png);
}

.ethereum {
    background-image: url(img/pay/ethereum.png);
}

.todito {
    background-image: url(img/pay/todito.png);
}

.euteller {
    background-image: url(img/pay/euteller.webp);
}

.paysafecard {
    background-image: url(img/pay/paysafe2.png);
}

.zimpler {
    background-image: url(img/pay/zimpler.webp);
}

.payid {
    background-image: url(img/pay/payid.png);
}

.americanexpress {
    background-image: url(img/pay/americanexpress.jpg);
}

.bitcoincash {
    background-image: url(img/pay/bitcoincash.jpg);
}

.cashtocode {
    background-image: url(img/pay/cashtocode.jpg);
}

.discover {
    background-image: url(img/pay/discover.jpg);
}

.ezeewallet {
    background-image: url(img/pay/ezeewallet.jpg);
}

.litecoin {
    background-image: url(img/pay/litecoin.jpg);
}

.neosurf {
    background-image: url(img/pay/neosurf.jpg);
}

.trustly {
    background-image: url(img/pay/trustly.png);
}

.banktransfer {
    background-image: url(img/pay/banktransfer.webp);
}

.dogecoin {
    background-image: url(img/pay/dogecoin.jpg);
}

.ripple {
    background-image: url(img/pay/ripple.jpg);
}

.usdt_tether {
    background-image: url(img/pay/tether.webp);
}

.astropay {
    background-image: url(img/pay/astropay.webp);
}

.ecopayz {
    background-image: url(img/pay/ecopayz.webp);
}

.gpay {
    background-image: url(img/pay/gpay.webp);
}

.imps {
    background-image: url(img/pay/imps.webp);
}

.jeton {
    background-image: url(img/pay/jeton.webp);
}

.muchbetter {
    background-image: url(img/pay/muchbetter.webp);
}

.paytm {
    background-image: url(img/pay/paytm.webp);
}

.phonepe {
    background-image: url(img/pay/phonepe.webp);
}

.pix {
    background-image: url(img/pay/pix.png);
}

.upi {
    background-image: url(img/pay/upi.webp);
}



.casinoitem__more {
    display: none;
    width: 100%;
    border: 2px solid var(--button-color);
    color: var(--button-color);
    margin-bottom: 0;
}

.casinoitem__more::after {
    content: '';
    display: inline-block;
    margin-left: 10px;
    border: solid var(--second-color);
    border-width: 0 2px 2px 0;
    padding: 2px;
    transform: rotate(45deg);
    height: 2px;
    width: 2px;
    margin-bottom: 2px;
}

.casinoitem-open .casinoitem__more::after {
    transform: rotate(225deg);
    margin-bottom: 0;
}

.casinoitem__review {
    max-width: 100%;
    text-decoration: none;
    color: var(--button-color);
    border-bottom: 2px dashed var(--button-color);
	font-weight: 600;
    transition: border-bottom 0.15s, color 0.15s;   
}

.casinoitem__review:hover {
    border-bottom: 2px dashed var(--button-hover);
    color: var(--button-hover);
}



/* casinoitem review */

.casinolist-review {
    margin-top: 20px;
}

.casinolist-review .casinoitem__content {
    grid-template-columns: 2fr 1fr 2fr 3fr 3fr;
    grid-template-areas: none;
}

.casinolist-review .casinoitem__rating, 
.casinolist-review .casinoitem__plus, 
.casinolist-review .casinoitem__bonus, 
.casinolist-review .casinoitem__buttons, 
.casinolist-review .casinoitem__brand { 
    grid-area: auto;
    width: 100%;
}



.casinolist-review .casinoitem__logo {
    width: 100%;
}

.casinolist-review .casinoitem {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.casinolist-review .casinoitem__plus,
.casinolist-review .casinoitem__bonus {
    background: white;
    border: none;
}

.casinolist-review .casinoitem__reg {
    padding: 10px 30px;
}

.casinoitem__info {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 10px;  
    padding: 10px;
}

.casinoitem__info > div:nth-of-type(1) {
    font-size: 16px;
    font-weight: 700;
    min-height: 46px;
    position: relative;
    padding-left: 36px;
}

.casinoitem__overview > div:nth-of-type(2) {
    font-size: 13px;
}

.casinoitem__welcome > div:nth-of-type(2)  {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--second-color);
}

.casinolist-review .casinoitem__banking-items {
    margin-top: 0;
}

.casinoitem__welcome > div:nth-of-type(1)::before {
    position: absolute;
    content: url(img/bonus.png);
    left: 0;
    top: -3px;
}

.casinoitem__bankoptions > div:nth-of-type(1)::before {
    position: absolute;
    content: url(img/dollar.png);
    left: 0;
    top: -3px;
}

.casinoitem__overview > div:nth-of-type(1)::before {
    position: absolute;
    content: url(img/overview.png);
    left: 0;
    top: -2px;
}


@media (max-width: 1200px) {
    
    .casinoitem {
        padding: 10px;
    }
    
    .casinoitem__logo {
        width: 100px;
        height: 100px;
    }

    .casinoitem__reg {
        width: 100%;
        padding: 14px 15px;
        font-size: 16px;
    } 
    
    .casinoitem__review {
        font-size: 14px;
    }
    
}

@media (max-width: 768px) {
    
    .gold-wrapper {
        background: linear-gradient(110deg, #E69D28 10%, #FFD67B 28%, #E69D28 50%, #E8AC49 75%, #EBB965 100%);
    }
    
    .casinoitem {
        padding: 20px 10px;
    }    
    
    .casinoitem__content {
        display: flex;
        flex-direction: column;
        width: 280px;
        margin: auto;        
    }

	.casinoitem__bonus-payspeed, .casinoitem__bonus-payrate, .casinoitem__bonus-limits, .casinoitem__bonus-welcome, .casinoitem__bonus {
		height: auto;
	}
    
    .casinoitem__brand {
        width: 100%;
		align-items: center;
    }    
    
    .casinoitem__logo {
        width: 256px;
        height: 256px;
        background-position: center;
    }
    
    .casinoitem__buttons {
        width: 100%;
    }
    
    .casinoitem__reg {
        width: 100%;
        font-size: 18px;
    }    

    .casinoitem__review {
        font-size: 16px;
    }
    
    .casinoitem__plus p, .casinoitem__plus ul li {
        line-height: 1.5;
    }
    
    .casinoitem__bonustext, .casinoitem__banking {
        padding: 10px;
    }
	
    .casinoitem__more {
        display: block;
    }
    
    .casinoitem__content .casinoitem__plus {
        display: none;
    }
    
    .casinoitem__bonustext {
        display: none;
    }
    
    .casinoitem__banking {
        display: none;
    }
    
    .casinoitem-open .casinoitem__plus {
        display: block;
        order: 5;
    }
    
    .casinoitem-open .casinoitem__bonustext {
        display: block;
        order: 6;
    }
    
    .casinoitem-open .casinoitem__banking {
        display: block;
        order: 7;
    } 
    
    .casinoitem-open .casinoitem__more {
        display: block;
        order: 10;
    }
    
}



/* FAQ */

.schema-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.schema-faq-section {
    background: white;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 1px 4px 0 #292C2C1F;;
}

.schema-faq-question {
    display: block;
    padding-right: 30px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    color: var(--black-text);
	margin: 0;
}

.schema-faq-question::after {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: var(--button-color);
    background-image: url(img/faqplus.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.1s;
}

.schema-faq-answer {
    display: none;
    margin: 20px 0 0 0;
}

.faq-open .schema-faq-answer {
    display: block;
}

.faq-open .schema-faq-question {
    border-bottom: 2px dashed var(--light-bg);
    padding-bottom: 20px;
}

.faq-open .schema-faq-question::after {
    transform: rotate(45deg);
    background-color: var(--button-hover);
}

@media (max-width: 600px) {
    .schema-faq-section {
        padding: 10px 14px;
        min-height: 44px;
    }
    
    .schema-faq-question {
        min-height: 36px;
    }

    .schema-faq-question::after {
        top: 5px;    
    } 
    
    .schema-faq-answer {
        margin: 10px 0 0 0;
        padding-top: 10px;    
    }

}




/* Morearticles */

.morearticles {
    margin: 60px 0;
}

.morearticles div, .morearticles a {
    box-sizing: border-box;
}

.morearticles .container {
    padding: 0 20px;
}

.morearticles .h2 {
    margin-top: 0;
    margin-bottom: 45px;
}

.relatedposts {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.relatedposts .owl-stage-outer {
    padding: 10px;
}

.relatedpost {
    background: white;
    width: 95%;
    min-height: 320px;
    border-radius: 10px;
    box-shadow: 0 1px 4px 0 #292C2C1F;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.archive .relatedpost {
    width: 250px;
}

.relatedpost__image {
    width: 100%;
    height: 275px;
    border-radius: 10px 10px 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.relatedpost__title {
    color: var(--black-text);
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding: 20px;
}


.morearticles .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;    
}

.morearticles .owl-nav button {
    width: 50px;
    height: 36px;
    border-radius: 10px !important;
}

.morearticles .owl-prev {
    background-color: var(--second-color) !important;
    background-image: url(img/prev.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    box-shadow: 0 1px 4px 0 #292C2C1F;;
}

.morearticles .owl-next {
    background-color: white !important;
    background-image: url(img/next.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    box-shadow: 0 1px 4px 0 #292C2C1F;;
}

.morearticles .owl-dots {
    margin-top: 15px;
}

.morearticles .owl-theme .owl-dots .owl-dot.active span, .morearticles .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--grey-text);
}

@media (max-width: 1200px) {

    .morearticles {
        padding: 70px 0;
    }
    
    .relatedposts {
        gap: 24px;
        justify-content: center;
    }     
    
}


@media (max-width: 600px) {
    
    .morearticles {
        border-radius: 0;
        padding: 50px 0;
    }   

    .morearticles .h2 {
        margin-bottom: 60px;
    }  
    
    .relatedposts {
        gap: 18px;
    }    
    
    .relatedpost {
        background: white;
        min-height: auto;
        border-radius: 10px;
    }  
    
    .relatedpost__image {
        height: 120px;
        border-radius: 10px 10px 0 0;    
    }
    
    .relatedpost__title {
        font-weight: 600;
        font-size: 14px;
        padding: 10px;
    }    
    
}



/* Games */

.games div, .games a {
    box-sizing: border-box;
}

.games {
	margin: 30px 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.game {
    background: white;
    width: 200px;
    min-height: 320px;
    border-radius: 20px;
    box-shadow: 0 3px 15px 0 rgba(147, 149, 204, 0.15);  
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
}

.game__image {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    background-image: url(img/no-image.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.game__button {
    font-size: 16px;
    width: 100%;
}

.game__title {
    color: var(--black-text);
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.game__desc {
    font-size: 14px;
	text-align: center;
}

.game .button-big {
	margin-bottom: auto;
}

@media (max-width: 1200px) {  
    .games {
        justify-content: center;
    } 
}

@media (max-width: 600px) {
    
    .game {
        background: white;
        width: 152px;
        min-height: 276px;
        border-radius: 20px;
        gap: 10px;
        padding: 10px;
    }  
    
    .game__image {
        width: 120px;
        height: 120px;
        border-radius: 10px;    
    }
    
    .game__title {
        font-weight: 600;
        font-size: 14px;
    }
	
	.game__desc {
		font-size: 12px;	
	}    
}



/* PlusMinus */


.plusminus {
    display: flex;
    justify-content: space-between;
    column-gap: 25px;
    row-gap: 20px;
    margin-bottom: 30px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

.plusminus__plus, .plusminus__minus {
    width: calc(50% - 10px);
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    background: white;
}

.plusminus__plus ul, .plusminus__minus ul {
    margin: 0;
}

.plusminus__plus ul li {
    line-height: 2;
    padding-left: 40px;
}

.plusminus__minus ul li {
    line-height: 2;
    padding-left: 40px;
}

.plusminus__plus p, .plusminus__minus p {
    margin-bottom: 0;
    padding-left: 36px;
    position: relative;
    line-height: 2;
}

.plusminus__plus p::before, .plusminus__plus ul li::before {
    content: url(img/like.png);
    background-image: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.plusminus__minus p::before, .plusminus__minus ul li::before {
    content: url(img/nolike.png);
    background-image: none;
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
}

@media (max-width: 600px) {
    .plusminus {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;        
    }
    
    .plusminus__plus, .plusminus__minus {
        width: 100%;    
    }

}



/* BonusInfo */

.bonusinfo {
    margin: 30px 0;
    border-radius: 20px;
    background: var(--lavander);
    box-shadow: 0 2px 12px 0 rgba(53, 95, 108, 0.15); 
    padding: 200px 24px 24px 24px;
    box-sizing: border-box;
    background-image: url(img/pic.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;    
}

.bonusinfo__item {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.bonusinfo__item-title {
    color: var(--black-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .bonusinfo {
        padding: 130px 20px 20px 20px;
        grid-template-columns: 1fr;
    }
    .bonusinfo__item-title {
        
    }
}





/* Footer */

.footer {
    background-color: var(--dark-bg-color);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
}

.footer-menu {
    display: flex;
    row-gap: 20px;
    column-gap: 20px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}

.footer-menu a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: var(--second-color);
}

.copyright {
	color: white;
}

@media (max-width: 1200px) {
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    } 
    
    .footer-menu {
        justify-content: flex-start;
        padding: 0;
        column-gap: 20px;
    }
}

@media (max-width: 600px) {
	.footer-menu {
		flex-direction: column;
		margin-top: 20px;
		align-items: flex-start;
	}
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}

.page-numbers {
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    color: var(--black-text);
    transition: color 0.15s;
}

.page-numbers:hover {
    color: var(--button-color);
}

.current {
    color: var(--button-hover);
}




/* Contacts */

.contactus {
    background: var(--dark-bg-color);
}
.contactus .h2 {
    margin-top: 30px;
    color: white;
}
.contactus .articleauthor__contacts a {
    color: white;
}
.contactus .articleauthor__contacts a:hover {
    color: var(--button-color);
}
.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contacts__form {
    margin-top: -30px;
}
.contacts .wpcf7-form {
    margin: 0;
    background: none;
    gap: 16px;
}
.contacts .wpcf7-form .button-small {
    background: var(--button-color);
}
.contacts .wpcf7-form .button-small:hover {
    background: var(--button-hover);
}
.contacts .wpcf7-form input, .contacts .wpcf7-form textarea {
    padding: 20px 20px;
}
@media (max-width: 1200px) {
    .contacts {
        grid-template-columns: 1fr;
    }
    .contacts__form {
        margin-top: 0;
    }
    .contacts .wpcf7-form {
        padding: 0;
    }
}


/* VBlocks Start */

/* Casinolist2 */

.casinolist2 {
    display: grid;
    grid-template-columns: 38% calc(62% - 16px);
    gap: 16px;
    width: 100%;
    margin-bottom: 30px;
}
.casinolist2 div, .casinolist2 a {
    box-sizing: border-box;
}
.casinolist2 > div {
    padding: 16px;
    box-shadow: 0 1px 4px 0 #292C2C1F;
    border-radius: 10px;
}
.casinolist2__left {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-areas:
        "i2 t2"
        "i2 r2";
    column-gap: 20px;
    row-gap: 10px;
}
.casinolist2__right {
    font-size: 16px;
}
.casinolist2__right p:last-child, .casinolist2__right ul:last-child, .casinolist2__right ol:last-child {
    margin-bottom: 0;
}
.casinolist2__img {
    width: 150px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    transition: opacity 0.2s;
    grid-area: i2;
}
.casinolist2__img:hover {
    opacity: .8;
}
.casinolist2__title {
    grid-area: t2;
    margin: 0;
}
.casinolist2__rating {
    grid-area: r2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    --progress: 0%;
    background: conic-gradient(var(--advantages) var(--progress), var(--light-bg) var(--progress));
    position: relative;
}
.casinolist2__rating:after {
    border-radius: 50%;
    display: block;
    content: "";
    background: #fff;
    position: absolute;
    left: 4px;
    top: 4px;
    height: 32px;
    width: 32px;
}
.casinolist2__rating div {
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
    position: absolute;
    z-index: 5;
    top: 13px;
    left: 0px;
    width: 40px;
}
.casinolist2__header {
    background: var(--second-color);
    color: white;
    font-weight: 600;
}
@media (max-width: 768px) {
    .casinolist2 > div {
        padding: 10px;
    }
    .casinolist2 p, .casinolist2 ul li, .casinolist2 ol li {
        font-size: 14px;
    }
    .casinolist2__left {
        display: flex;
        flex-direction: column;
		align-items: center;
    }
    .casinolist2__title {
        text-align: center;
    }
    .casinolist2__header {
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .casinolist2 {
        gap: 10px;
    }
    .casinolist2 > div {
        border-radius: 6px;
    }
    .casinolist2__img {
        width: 100%;
        height: 60px;
        border-radius: 4px;
    } 
	.casinolist2__right {
		font-size: 14px;
	}	
}



/* Casinolist30 */

.casinolist30 {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.casinolist30item {
    display: grid;
    grid-template-columns: 150px 2fr 4fr 200px;
    gap: 4%;
    width: 100%;
    box-shadow: 0 1px 4px 0 #292C2C1F;
    border-radius: 10px;
    align-items: center;
    box-sizing: border-box;
}
.casinolist30item div, .casinolist30item a {
    box-sizing: border-box;
}

.casinolist30__desc p:last-child, .casinolist30__desc ul:last-child, .casinolist30__desct ol:last-child {
    margin-bottom: 0;
}
.casinolist30__img {
    width: 150px;
    min-height: 100px;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    transition: opacity 0.2s;
}
.casinolist30__img:hover {
    opacity: .8;
}
.casinolist30__info {
	padding: 5px 0;
}
.casinolist30__title {
    margin: 0;
    margin-bottom: 4px;
}
.casinolist30__rating {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    --progress: 0%;
    background: conic-gradient(var(--advantages) var(--progress), var(--light-bg) var(--progress));
    position: relative;
    padding-bottom: 10px;
}
.casinolist30__rating:after {
    border-radius: 50%;
    display: block;
    content: "";
    background: #fff;
    position: absolute;
    left: 4px;
    top: 4px;
    height: 32px;
    width: 32px;
}
.casinolist30__rating div {
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    position: absolute;
    z-index: 5;
    top: 13px;
    left: 0px;
    width: 40px;
}
.casinolist30__desc {
    padding: 10px 0;
	font-size: 16px;
}
@media (max-width: 768px) {
    .casinolist30item {
        grid-template-columns: 150px 2fr 4fr 170px;
    }
    .casinolist30item p, .casinolist30item ul li, .casinolist30item ol li {
        font-size: 14px;
    }
    .casinolist30__desc {
        font-size: 14px;
    }  
    .casinolist30__button {
        font-size: 16px;
        font-weight: 600;
        width: 80%;
    }
}
@media (max-width: 600px) {
    .casinolist30 {
        gap: 12px;
    }    
    .casinolist30item {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 16px;
    }
    .casinolist30item > div, .casinolist30item > a {
        width: calc(50% - 10px);
    }    
    .casinolist30__img {
        width: 120px;
        height: 80px;
        border-radius: 6px;
        order: 10;
    }
    .casinolist30__info {
        order: 30;
		padding: 0;
    }
    .casinolist30__desc {
        order: 20;
    }
    .casinolist30__btn {
        order: 40;
        align-self: flex-end;
    }
    .casinolist30__button {
        width: 100%;
    }
}



/* Casinolist40 */

.casinolist40 {
    display: grid;
    grid-template-columns: 25% 25% calc(50% - 20px);
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
}
.casinolist40 div, .casinolist40 a {
    box-sizing: border-box;
}
.casinolist40 > div {
    padding: 16px;
    box-shadow: 0 1px 4px 0 #292C2C1F;
    border-radius: 6px;
}
.casinolist40__header {
    background: var(--second-color);
    color: white;
    font-weight: 600;
}
.casinolist40__left {
    display: grid;
    grid-template-columns: 33% calc(66% - 10px);
    gap: 10px;
    align-items: center;
    box-shadow: 0 1px 4px 0 #292C2C1F;
    border-radius: 6px;
    font-size: 16px;
}
.casinolist40__img {
    width: 100%;
    height: 100%;
    min-height: 80px;
    border-radius: 6px 0 0 6px;
    background-size: cover;
    background-position: center;
    transition: opacity 0.2s;
}
.casinolist40__title {
    font-weight: 500;
    font-size: 16px;
}
.casinolist40__center {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.casinolist40__right {
    font-size: 16px;
    display: flex;
    align-items: center;    
}
@media (max-width: 600px) {
    .casinolist40 {
        gap: 8px;
    }
    .casinolist40 > div {
        padding: 10px;
    }
    .casinolist40__header {
        font-size: 12px;
    }
    .casinolist40__left {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0;
    }
    .casinolist40__img {
        border-radius: 6px 6px 0 0;
    }
    .casinolist40__title {
        font-size: 14px;
        padding: 10px;
    }
    .casinolist40__center {
        font-size: 12px;
    }
    .casinolist40__right {
        font-size: 12px;
    }
}



/* block1 */

.block10 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.block10 div {
    box-sizing: border-box;
}

.block10__item {
    width: calc(33% - 20px);
    padding: 20px;
    box-shadow: 0 1px 4px 0 #292C2C1F;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.block10__img {
    width: 140px;
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.block10__header {
    margin: 0;
}

.block10__text {
    font-size: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .block10 {
        gap: 12px;
    }
    .block10__item {
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .block10 {
        flex-direction: column;
    }
    .block10__item {
        padding: 16px;
        width: 100%;
        display: grid;
        grid-template-areas: 
                    "block10img block10header"
                    "block10img block10text";
    }
    .block10__img {
        width: 110px;
        height: 110px;
        grid-area: block10img;
    }
    .block10__header {
        grid-area: block10header;
    }
    .block10__text {
        grid-area: block10text;
        text-align: left;
        font-size: 14px;
    }
}



/* Class*/
/* list1 */

.list1 li {
	border: 2px solid var(--second-color);
	border-radius: 10px;
	padding: 20px 16px 20px 48px;
	background: var(--light-bg);
}
.list1 li:not(:last-child) {margin-bottom: 16px;}
.list1 li::before {
	top: 23px;
	left: 16px;
}
.list1 li strong {
    color: var(--dark-grey);
}


/* Class*/
/* table1 */

.table1 table {	
	border-spacing: 10px !important;
}

.table1 th, .table1 td {
	border-radius: 6px;
	box-shadow: 0 1px 4px 0 #292C2C1F;
}

.table1 td {
	background: white !important;
}

@media (max-width: 600px) {
    .table1 th, .table1 td {
        font-size: 14px;
        border-radius: 4px !important;
    }    
}




/* block2 */

.block2 {
	padding: 20px;
	border-left: 10px solid var(--button-color);
	border-radius: 10px;
	box-shadow: 0 1px 4px 0 #292C2C1F;
	margin-bottom: 20px;
}

.block2 h3 {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 20px;
	padding: 6px 20px;
	border-radius: 9px;
	background: var(--second-color);
	color: white;
}

.block2 p {
    font-size: 16px;
    margin-bottom: 10px;
}

.block2 p:last-child {
	margin-bottom: 0;
}

@media (max-width: 781px) {
    .block2 {
        padding: 16px;
    }
    .block2 p {
        font-size: 14px;
    }    
    .block2 h3 {
        font-size: 20px;
    }    
}


/* block3 */

.block3 {
	margin-bottom: 20px;
    box-shadow: 0 1px 4px 0 #292C2C1F;
    padding: 20px;
    border-radius: 10px;
}
.block3-columns {
    gap: 1em;
    margin-bottom: 0;
}
.block3 img, .wp-block-image {
    margin-bottom: 0;
}
.block3 h3 {
	margin-top: 0;
	margin-bottom: 20px;
}
.block3-text {
	background: var(--light-bg);
	border: 2px solid var(--second-color);
	border-radius: 10px;
	padding: 20px 14px;
}
.block3-text p {
	font-size: 16px;
	margin-bottom: 10px;
}
.block3-text p:last-child {
	margin-bottom: 0;
}

.block3-proscons {
    margin-top: 20px;
    margin-bottom: 0;
    gap: 1em;
}

.block3-proscons ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}

.block3-pros {
    background: var(--advantages-bg);
    border-radius: 10px;
    padding: 20px;
}

.block3-proscons li {
    padding-left: 46px;
    font-size: 16px;
}

.block3-pros ul li::before {
    width: 34px;
    height: 34px;
    background-image: url(img/like.png);
    top: -4px;
}

.block3-cons {
    background: var(--disadvantages-bg);
    border-radius: 10px;
    padding: 20px;
}

.block3-cons ul li::before {
    width: 34px;
    height: 34px;
    background-image: url(img/nolike.png);
    top: 1px;
}

@media (max-width: 781px) {
    .block3-text p {
    	font-size: 14px;
    	margin-bottom: 10px;
    }
    .block3-proscons ul {
        gap: 10px;
    }
    
    .block3-pros {
        padding: 10px;
    }
    
    .block3-proscons li {
        padding-left: 36px;
        font-size: 14px;
    }
    
    .block3-pros ul li::before {
        width: 24px;
        height: 24px;
        background-image: url(img/like.png);
        background-size: cover;
            top: -1px;
    }
    
    .block3-cons {
        background: var(--disadvantages-bg);
        border-radius: 10px;
        padding: 10px;
    }
    
    .block3-cons ul li::before {
        width: 24px;
        height: 24px;
        background-image: url(img/nolike.png);
        background-size: cover;
        top: -1px;
    }
}


/* block5 */

.block5 {
    box-shadow: 0 1px 4px 0 #292C2C1F;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.block5 ul:last-child {
    margin-bottom: 0;
}



/* block6 */

.block6 * {
	box-sizing: border-box;
}
.block6 {
	margin-bottom: 20px;
	box-shadow: 0 1px 4px 0 #292C2C1F;
	padding: 15px 15px 15px 24px;
	border-radius: 10px;
	height: 181px;
}
.block6__content {
	position: relative;
	padding: 15px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-top: 2px solid #fce9d2;
	border-right: 2px solid #fce9d2;
	border-bottom: 2px solid #fce9d2;
	background-color: #fffbf9;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.block6__content h3 {
	margin: 0;
}
.block6__content::before {
	content: url(img/block6-bg.png);
	position: absolute;
	left: -54px;
	top: -2px;
}
.block6__content p {
	font-size: 16px;
}
.block6__content p:last-child {
	margin-bottom: 0;
}
.block6__num {
	display: flex;
	align-items: center; 
}
.block6__num p {
	margin-bottom: 0;
	font-size: 60px;
	font-weight: 800;
	text-align: center;
	color: #fce9d2;
}

@media (max-width: 781px) {
	.block6 {
		height: auto;
		padding: 0 16px 16px 16px;
		gap: 0;
	}
	.block6__content::before {
		content: none;
	}
	.block6__content {
		border: 2px solid #fce9d2;
		border-radius: 10px;
		margin-top: -10px !important;
	}
	.block6__num {
		margin-top: -10px !important;
	}
}

/* block7 */

.block7 {
	margin-bottom: 20px;
	gap: 30px;
}
.block7 img {
	margin: 0;
}
.block7 h3 {
	margin: 0;
}
.block7 p {
	font-size: 16px;
	margin: 10px 0 0 0;
}
.block7 figure {
	text-align: center;
}

/* VBlocks End */


