/*
Theme Name: rps
Author: rps
Version: 1.0
Description: Required Plugins: Yoast SEO, ACF
Tested up to: 7
Requires PHP: 7
*/

/* Start */

@font-face {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 100 1000;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/RobotoFlex1.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --body-bg: white;
    --header-bg: #1B2355;
    --black: #0B0320;
    --heading-color: #1B2355;
    
    --breadcrumb-last: #909CFF;
    
    --blockquote-border: #D6DAFF;
    --table-border: none;
    
    --a: #1B2355;/*#62E5C6*/
    --a-hover: #62E5C6;
    --sub-menu-color: white;
    --sub-menu-background: #1B2355;
    --mob-menu-bg: #D6DAFF;
    --mob-menu-color: #1B2355;
    
    --button-bg: #62E5C6;
    --button-bg-hover: #97F8E0;
    --button-color: #1B2355;
    --button-color-hover: #1B2355;
    --button-blue: #909CFF;
    --button-blue-hover: #B7BEFF;


    --grey: #999;
    --darkgrey: #282725;
    --darkgrey2: #252525;
    --lightgrey: #eaeaea;
    --green: #009663;
    --darkgreen: #00714B;
    --red: #AE0A39;
    --darkred: #92001A;
    --lavander: #D6DAFF;
    --links-bg: #1B2355;
    
}



html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Flex', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; 
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    background-color: var(--body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

.button-big {
    text-decoration: none;
    color: white;
    border-radius: 30px;
    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: 20px;
    padding: 10px 30px;
    text-align: center;
    width: 170px;
    font-size: 18px;
    font-weight: 600;   
    transition: background 0.15s;
}

.button-red {
    background: var(--red);
}

.button-red:hover {
    background: var(--darkred);
    color: white;
}

.button-blue {
    background: var(--button-blue);
    color: white;
    display: inline-block;
}

.button-blue:hover {
    background: var(--button-blue-hover);
    color: white;
}

.button-standart {
    background: var(--button-bg);
    color: var(--button-color);
    display: inline-block;
}

.button-standart:hover {
    background: var(--button-bg-hover);
    color: var(--button-color-hover);
}

.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(--heading-color);
	height: 36px;
	transition: color 0.15s;
}

.articleauthor__contacts a:hover {
    color: var(--a-hover);
}

.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: 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;
}

@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(--lavander);
    box-sizing: border-box;
    overflow: hidden;
}

.sidebar__header {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    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: 30px;
    height: 30px;
    border-radius: 15px;
    background-image: url(img/faq.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.1s;
    transform: rotate(180deg);
}

.sidebar__content {
    padding: 8px 20px 20px 20px;
    background: var(--lavander);
    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: 14px;
    font-weight: 600;
    color: var(--heading-color);
    transition: color 0.1s;
    padding: 12px 0;
    display: block;
}

.sidebar__content a:hover {
    color: var(--a-hover);
}

.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(--lavander); 
    padding: 20px;
}

.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(--heading-color);
    width: calc(100% - 60px);
}

.author-sidebar__name-label {
    background: var(--lavander);
    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(--lavander);
    font-size: 14px;
    font-weight: 400;    
}

.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;
}



/* Articleauthor */

.articleauthor {
    margin: 60px 0 30px 0;
    padding: 30px;
    background: var(--lavander);
    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(--heading-color);
	text-decoration: none;
}

.articleauthor__name:hover {
	color: var(--a-hover);
}

.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;
    }    
    
}

@media (max-width: 600px) {
    
}




/* Header */

.header {
    background: var(--header-bg);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    height: 116px;    
}



/* 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(--a-hover);
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children::after {
    content: '';
    display: inline-block;
    margin-left: 10px;    
    width: 14px;
    height: 8px;
    background-image: url(img/menu-arrow.png);
}

.menu-item-has-children:last-child .sub-menu {
    left: auto;
    right: 0;
}

.sub-menu {
    display: none;
    list-style: none;
    padding-left: 0;
    z-index: 10;
    position: absolute;
    left: 0;
    top: 20px;
    list-style: none;
    padding-top: 44px;
    min-width: 250px;
    width: 100%;
}


@media (min-width: 1201px) {
	.menu-item-has-children:hover .sub-menu {
		display: block;
	}	
	.menu-item-has-children:hover::after {
		background-image: url(img/menu-arrow-hover.png);
	}
	.line-1 > .sub-menu {
		padding-top: 58px;
	}
	.line-2 > .sub-menu {
		padding-top: 29px;
	}
}

.sub-menu li {
    background: var(--sub-menu-background);
}

.sub-menu li a {
    display: block;
    padding: 0 45px 5px 20px;
    line-height: 1.7;
    color: var(--sub-menu-color);
}

.sub-menu li:first-child {
    padding-top: 16px;
    border-top: 4px solid #62E5C6
}

.sub-menu li:last-child {
    padding-bottom: 16px;
    border-radius: 0 0 12px 12px;
}

.menu-buton {
    display: none;
    width: 30px;
    height: 30px;
    background: url(img/burger.png);
    background-repeat: no-repeat;
    background-position: center;
}

.menu-buton-active {
    background: url(img/burger-close.png);
    background-repeat: no-repeat;
    background-position: center; 
    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;
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 20px 20px;
        background: var(--mob-menu-bg);        
    }
    
    .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(--mob-menu-color);
    }
    
    .sub-menu {
        display: block;
        position: inherit;
        padding-top: 0;
        left: 0;
        top: 0;    
    }
    
    .sub-menu li {
        background: var(--sub-menu-bg-mob);
    }   

    .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-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(--breadcrumb-last) !important;
    font-size: 16px !important;
    font-weight: 600;   
}


@media (max-width: 600px) {

    .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(--a);
}

article a:hover {
    color: var(--a-hover);
    text-decoration: none;
}

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: 10px;
    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(--heading-color);
}

article h2, .h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 60px 0 30px 0;
    color: var(--heading-color);
}

article h2::after, .h2::after {
    content: '';
    display: block;
    width: 175px;
    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(--heading-color);
}

article h4, .h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: var(--heading-color);
}

article h5, .h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: var(--heading-color);
}

article h6, .h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: var(--heading-color);
}

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-image: url(img/ol.png); 
    color: #fff; 
    width: 30px;
    height: 30px;
    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: #909CFF;
    text-align: left;
}
    
article table tr:nth-of-type(odd) td {
    background: var(--lavander);
}

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: 10px;
}

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: 10px;
}

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: 10px;
}

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: 10px;
}

blockquote {
    margin: 0;
    border-left: 3px solid var(--blockquote-border);
    padding-left: 24px;
}

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: var(--links-bg);
	color: white;
    display: grid;
    grid-template-columns: 40px 110px;
    gap: 10px;
    align-items: center;
    position: relative;
}

.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::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: 0 0 40px 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;
    }        
}



/* Casinolist */

.casinolist {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.casinolist div, .casinolist a {
    box-sizing: border-box;
}

.gold-wrapper {
    background: linear-gradient(90deg, #EEAD3D, #FCEBC5, #E69D28, #E8AC49, #EBB965);
    border-radius: 20px 20px 80px 20px;
    box-shadow: 0 3px 15px 0 rgba(147, 149, 204, 0.15);
    padding: 3px;
}

.gold-wrapper .casinoitem {
    background: white;
    border-radius: 17px 17px 77px 17px;
    box-shadow: none;
}

.casinoitem {
    width: 100%;
    padding: 55px 20px 20px 20px;
    background: white;
    border-radius: 20px 20px 80px 20px;
    box-shadow: 0 3px 15px 0 rgba(147, 149, 204, 0.15);
    margin: auto;
    position: relative;
}

.casinolist-review .casinoitem {
    padding: 20px;
}

.casinolist-review .casinoitem__plus p::before, .casinolist-review .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;
}

.casinolist-review {
    margin-top: 20px;
}

.casinolist-review .casinoitem__plus ul li:nth-of-type(n+4),
.casinolist-review .casinoitem__plus p:nth-of-type(n+4) {
	display: none;
}


.gold-wrapper .casinoitem .casinoitem__rank {
    background: linear-gradient(281deg, #E59C25 11%, #FFCE60 54%, #EEAD3D 78%);
    border: none;
    color: white;
    border: none;
    line-height: 40px;
}

.casinoitem__rank {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100px;
    height: 40px;
    border-radius: 20px 0;
    border: 3px solid #909CFF;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    color: #909CFF;
}

.casinoitem__content {
    display: grid;
    grid-template-columns: 16% 10% 24% 24% calc(26% - 40px);
    align-items: center;
    justify-items: center;
    justify-content: space-between;
    gap: 10px;    
}

.casinoitem__logo {
    width: 130px;
    height: 130px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transition: opacity 0.2s;
}

.casinoitem__logo:hover {
    opacity: .8;
}

.casinoitem__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rating-info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.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-tc {
    font-size: 12px;
    font-weight: 300;
}

.casinoitem__plus {
    border-radius: 12px;
    border: 2px solid var(--lavander);
    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;   
}

.casinoitem__plus ul {
    margin-bottom: 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/plus.png);
    background-image: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.casinoitem__bonus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 12px;
    border: 2px solid var(--lavander);
    padding: 10px;
    font-weight: 500;
    line-height: 1.2;
    width: 100%;
    height: 100%;    
}

.casinoitem__bonus div:nth-of-type(1) {
    font-size: 16px;
    font-weight: 600;    
}

.casinoitem__bonus div:nth-of-type(2) {
    font-size: 26px;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
}

.casinoitem__bonus div:nth-of-type(2) p {
    line-height: 1;
}

.casinoitem__bonus p {
    font-size: 26px;
    font-weight: 700;  
    margin-bottom: 10px;
}

.casinoitem__bonus p:last-child {
    margin-bottom: 0;
}

.casinoitem__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.casinoitem__reg {
    max-width: 100%;
    border-radius: 25px;
    padding: 14px 30px;
}

.casinoitem__review {
    max-width: 100%;
    text-decoration: none;
    color: var(--black);
    border-bottom: 2px dashed var(--black);
    transition: border-bottom 0.15s, color 0.15s;   
}

.casinoitem__review:hover {
    border-bottom: 2px dashed #62E5C6;
}

.tc18 {
    font-size: 12px;
    margin-top: 10px;
	background: var(--lavander);
    padding: 5px;
    border-radius: 3px;
}

.tc18 p {
	margin: 0;
    font-size: 12px;	
}

.tc18 a, .tc18 a:hover {
	color: var(--black);
}

@media (max-width: 1200px) {
    
    .casinoitem {
        padding: 45px 10px 10px 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) {
    
    .casinoitem {
        padding: 55px 10px 30px 10px;
    }    
    
    .casinoitem__content {
        display: flex;
        flex-direction: column;
        width: 220px;
        margin: auto;        
    }
    
    .casinoitem__logo {
        width: 100%;
        height: 114px;
        background-position: center;
    }
    
    .casinoitem__reg {
        width: 220px;
        font-size: 18px;
    }    

    .casinoitem__review {
        font-size: 16px;
    }
    
    .casinoitem__plus p, .casinoitem__plus ul li {
        line-height: 1.5;
    }

    
}



/* 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 3px 15px 0 rgba(147, 149, 204, 0.15);
}

.schema-faq-question {
    display: block;
    padding-right: 30px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    color: var(--heading-color);
	margin: 0;
}

.schema-faq-question::after {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-image: url(img/faq.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.1s;
}

.schema-faq-answer {
    display: none;
    margin: 20px 0 0 0;
    padding-top: 20px;
}

.faq-open .schema-faq-answer {
    display: block;
}

.faq-open .schema-faq-question::after {
    transform: rotate(180deg);
}

@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 {
    border-radius: 90px 90px 0 0;
    background: var(--lavander);
    padding: 100px 0;
}

.morearticles div, .morearticles a {
    box-sizing: border-box;
}

.morearticles .container {
    padding: 0 20px;
}

.morearticles .h2 {
    margin-top: 0;
    margin-bottom: 45px;
}

.morearticles .h2::after {
    background-image: url(img/h2_.png);
}

.relatedposts {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.relatedpost {
    background: white;
    width: 205px;
    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: 24px;
}

.relatedpost__image {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    background-image: url(/wp-content/uploads/2023/09/mostbet-logo-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.relatedpost__button {
    font-size: 16px;
    width: 100%;
}

.relatedpost__title {
    color: var(--heading-color);
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 1200px) {

    .morearticles {
        border-radius: 70px 70px 0 0;
        padding: 70px 0;
    }
    
    .relatedposts {
        gap: 24px;
        justify-content: center;
    }     
    
}


@media (max-width: 600px) {
    
    .morearticles {
        border-radius: 0;
        padding: 50px 0;
    }   

    .morearticles .h2 {
        margin-bottom: 30px;
    }  
    
    .relatedposts {
        gap: 18px;
    }    
    
    .relatedpost {
        background: white;
        width: 152px;
        min-height: 276px;
        border-radius: 20px;
        gap: 10px;
        padding: 20px;
    }  
    
    .relatedpost__image {
        width: 120px;
        height: 120px;
        border-radius: 10px;    
    }
    
    .relatedpost__title {
        font-weight: 600;
        font-size: 14px;
    }    
    
}



/* 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(--heading-color);
    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;
}

.plusminus__plus, .plusminus__minus {
    width: calc(50% - 10px);
    border-radius: 20px;
    border: 3px solid var(--lavander);
    padding: 20px;
    box-sizing: border-box;
}

.plusminus__plus ul, .plusminus__minus ul {
    margin: 0;
}

.plusminus__plus p, .plusminus__minus p {
    margin-bottom: 0;
    padding-left: 36px;
    position: relative;
}

.plusminus__plus p::before, .plusminus__plus ul li::before {
    content: url(img/like.png);
    background-image: none;
    display: block;
    position: absolute;
    top: -4px;
    left: 0;
}

.plusminus__minus p::before, .plusminus__minus ul li::before {
    content: url(img/nolike.png);
    background-image: none;
    display: block;
    position: absolute;
    top: 0;
    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(--heading-color);
    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 {
	padding-bottom: 120px;
}

.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;
    margin: 0;
}

.footer-menu a {
    font-size: 16px;
    text-decoration: none;
    color: var(--black);
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: var(--a-hover);
}

.copyright {
	flex-basis: 40%;
}

@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;
	}
	.footer {
		padding-bottom: 50px;
	}
}

.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);
    transition: color 0.15s;
}

.page-numbers:hover {
    color: var(--a-hover);
}

.current {
    color: var(--a);
}


/* Parters */

.partners {
    display: flex;
	align-items: center;
    padding-bottom: 60px !important;
}

.partners div, 
.partners a {
    background-size: cover;
}

.plus18 {
    width: 60px;
    height: 60px;
    background-image: url(img/plus18.png);
}

.stodlinjen {
    width: 138px;
    height: 57px;
    background-image: url(img/stodlinjen.png);
}

.spelpause {
    width: 145px;
    height: 27px;
    background-image: url(img/spelpause.png);
}

.spel-inspek-tionen {
    width: 104px;
    height: 75px;
    background-image: url(img/spel-inspek-tionen.png);
}

@media (max-width: 1200px) {
	.partners {
    	flex-direction: row !important;
		flex-wrap: wrap;
		justify-content: space-around !important;
	}
}

@media (max-width: 600px) {
	.partners {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		justify-items: center;
		align-items: center !important;
	}
}



.casinoitem__newcontent {
	display: none;
	grid-template-columns: calc(26% + 10px) 24% 24% calc(26% - 40px);
	align-items: start;
	justify-items: start;
    margin-top: 10px;
}

.casinoitem-open .casinoitem__newcontent {
    display: grid;
}

@media (max-width: 768px) {
    .casinoitem-open .casinoitem__newcontent {
        display: flex;
    }
}

.casinoitem__paymethods > div:nth-of-type(1), .casinoitem__limits > div:nth-of-type(1), .casinoitem__mindepo > div:nth-of-type(1), .casinoitem__payspeed > div:nth-of-type(1) {
	font-size: 16px;
    font-weight: 600;
	margin-bottom: 10px;
}

.casinoitem__paymethods div:nth-of-type(1), .casinoitem__limits div:nth-of-type(1), .casinoitem__mindepo div:nth-of-type(1), .casinoitem__payspeed div:nth-of-type(1) {
	font-size: 16px;
    font-weight: 600;
}

.casinoitem__paymethods {
	padding-top: 10px;
}

.casinoitem__paymethods div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.casinoitem__paymethods div:nth-of-type(2) 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;
}

 .casinoitem__mindepo, .casinoitem__payspeed {
	width: 100%;
    height: 100%;
    border: 2px solid var(--lavander);
    border-radius: 10px;
    padding: 10px;
}

.casinoitem__limits {
	width: 100%;
    height: 100%;
    padding: 10px;
}

.visa {
    background-image: url(/wp-content/themes/rps/img/pay/visa.png);
}

.mastercard {
    background-image: url(/wp-content/themes/rps/img/pay/mastercard.png);
}

.bitcoin {
    background-image: url(/wp-content/themes/rps/img/pay/bitcoin.png);
}

.spei {
    background-image: url(/wp-content/themes/rps/img/pay/spei.png);
}

.cash {
    background-image: url(/wp-content/themes/rps/img/pay/cash.png);
}

.skrill {
    background-image: url(/wp-content/themes/rps/img/pay/skrill.png);
}

.neteller {
    background-image: url(/wp-content/themes/rps/img/pay/neteller.png);
}

.payscale {
    background-image: url(/wp-content/themes/rps/img/pay/payscale.png);
}

.paypal {
    background-image: url(/wp-content/themes/rps/img/pay/paypal.png);
}

.ethereum {
    background-image: url(/wp-content/themes/rps/img/pay/ethereum.png);
}

.todito {
    background-image: url(/wp-content/themes/rps/img/pay/todito.png);
}

.euteller {
    background-image: url(/wp-content/themes/rps/img/pay/euteller.webp);
}

.paysafecard {
    background-image: url(/wp-content/themes/rps/img/pay/paysafe2.png);
}

.zimpler {
    background-image: url(/wp-content/themes/rps/img/pay/zimpler.webp);
}

.payid {
    background-image: url(/wp-content/themes/rps/img/pay/payid.png);
}

.americanexpress {
    background-image: url(/wp-content/themes/rps/img/pay/americanexpress.jpg);
}

.bitcoincash {
    background-image: url(/wp-content/themes/rps/img/pay/bitcoincash.jpg);
}

.cashtocode {
    background-image: url(/wp-content/themes/rps/img/pay/cashtocode.jpg);
}

.discover {
    background-image: url(/wp-content/themes/rps/img/pay/discover.jpg);
}

.ezeewallet {
    background-image: url(/wp-content/themes/rps/img/pay/ezeewallet.jpg);
}

.litecoin {
    background-image: url(/wp-content/themes/rps/img/pay/litecoin.jpg);
}

.neosurf {
    background-image: url(/wp-content/themes/rps/img/pay/neosurf.jpg);
}

.trustly {
    background-image: url(/wp-content/themes/rps/img/pay/trustly.png);
}

.banktransfer {
    background-image: url(/wp-content/themes/rps/img/pay/banktransfer.webp);
}

.dogecoin {
    background-image: url(/wp-content/themes/rps/img/pay/dogecoin.jpg);
}

.ripple {
    background-image: url(/wp-content/themes/rps/img/pay/ripple.jpg);
}

.usdt_tether {
    background-image: url(/wp-content/themes/rps/img/pay/tether.webp);
}

.astropay {
    background-image: url(/wp-content/themes/rps/img/pay/astropay.webp);
}

.ecopayz {
    background-image: url(/wp-content/themes/rps/img/pay/ecopayz.webp);
}

.gpay {
    background-image: url(/wp-content/themes/rps/img/pay/gpay.webp);
}

.imps {
    background-image: url(/wp-content/themes/rps/img/pay/imps.webp);
}

.jeton {
    background-image: url(/wp-content/themes/rps/img/pay/jeton.webp);
}

.muchbetter {
    background-image: url(/wp-content/themes/rps/img/pay/muchbetter.webp);
}

.paytm {
    background-image: url(/wp-content/themes/rps/img/pay/paytm.webp);
}

.phonepe {
    background-image: url(/wp-content/themes/rps/img/pay/phonepe.webp);
}

.pix {
    background-image: url(/wp-content/themes/rps/img/pay/pix.png);
}

.upi {
    background-image: url(/wp-content/themes/rps/img/pay/upi.webp);
}

.bankid {
    background-image: url(/wp-content/themes/rps/img/pay/bankid.png);
}

.swish {
    background-image: url(/wp-content/themes/rps/img/pay/swish.png);
}

.hidden {
    display: none !important;
}

.casinoitem__more {
    display: block;
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: var(--heading-color);
    padding: 0;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    transition: 0.15s ease color;
}

.casinoitem__more:hover {
    color: var(--button-color);
}

.casinoitem__more::after {
    content: '';
    display: inline-block;
    margin-left: 10px;
    border: solid var(--heading-color);
    border-width: 0 2px 2px 0;
    padding: 2px;
    transform: rotate(45deg);
    height: 2px;
    width: 2px;
    margin-bottom: 2px;
    transition: 0.15s ease border-color;
}

.casinoitem__more:hover::after {
    border: solid var(--button-color);
    border-width: 0 2px 2px 0;
}

.casinoitem-open .casinoitem__more::after {
    transform: rotate(225deg);
    margin-bottom: 0;
}



/* Home */

:root {
    --second-color: var(--button-blue);
}

.homescreen {
    background: url(img/bg-left-1.png), url(img/bg-right-1.png), linear-gradient(0deg, white 30px, var(--lavander) 301px, var(--lavander) 100%);
    background-position: left center, right center, center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 617px;
}

.homescreen * {
    box-sizing: border-box;
}

.homescreen .container {
    padding: 0;
}

.home__header {
    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 {
    display: flex;
    margin-top: 35px;
    column-gap: 10px;
	justify-content: center;
}

.slide {
    position: relative;
    background: white;
    box-shadow: 0 3px 9px 0 #60629D1A;
    border-radius: 10px;
    margin-bottom: 10px;
    height: max-content;
	width: 250px;
}

.slide:nth-of-type(1) {
    border-left: 4px solid var(--second-color);
    border-right: 4px solid var(--second-color);
    border-bottom: 4px solid var(--second-color);
}

.pedestal .slide:nth-of-type(1) {
    order: 3;
    width: 250px;
}

.slide:nth-of-type(1)::before {
    content: url(/wp-content/themes/rps/img/offer-crown.png);
    position: absolute;
    top: -40px;
    left: 0;
}

.slide:nth-of-type(1) .promo__offer-header {
    border-radius: 6px 6px 0 0;
}

.pedestal .slide:nth-of-type(2) {
    order: 2;
    width: 235px;
    margin-top: 10px;
}

.slide:nth-of-type(2)::before {
    content: url(/wp-content/themes/rps/img/offer-cherry.png); 
    position: absolute;
    top: -30px;
    left: 0;
}

.pedestal .slide:nth-of-type(3) {
    order: 4;
    width: 235px;
    margin-top: 10px;
}

.slide:nth-of-type(3)::before {
    content: url(/wp-content/themes/rps/img/offer-money.png); 
    position: absolute;
    top: -25px;
    left: 0;
}

.pedestal .slide:nth-of-type(4) {
    order: 1;
    width: 220px;
    margin-top: 20px;
}

.pedestal .slide:nth-of-type(5) {
    order: 5;
    width: 220px;
    margin-top: 20px;
}

.promo__offer-header {
    border-radius: 10px 10px 0 0;
    background: var(--second-color);
    color: var(--black-text);
    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) {
    text-align: center;
    color: var(--black-text);
    font-size: 26px;
    font-weight: 700;
}

.promo__offer-logo {
    width: 196px;
    height: 132px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: opacity 0.2s;
}

.home__nav {
    display: none;
}

@media (max-width: 1200px) {
	
    .homescreen {
        background: url(img/bg-left-2.png), url(img/bg-right-2.png), linear-gradient(0deg, white 30px, var(--lavander) 301px, var(--lavander) 100%);
        background-position: left 30px, right 30px, center;
        background-repeat: no-repeat;
        width: 100%;
        min-height: 500px;
    }
	
	.homescreen .container {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.home__offers {
	    display: grid;
	    grid-template-columns: 1fr 1fr 1fr;
	}
	
	.slide {
	    width: 100%;
	}
    
    .pedestal .slide:nth-of-type(1) {
        order: 1;
        width: 100%;
    }
    
    .pedestal .slide:nth-of-type(2) {
        order: 2;
        margin-top: 0;
        width: 100%;
    }
    
    .pedestal .slide:nth-of-type(3) {
        order: 3;
        margin-top: 0;
        width: 100%;
    }
    
    .slide:nth-of-type(4),
    .pedestal .slide:nth-of-type(4) {
        order: 4;
        display: none;
        margin-top: 0;
        width: 100%;
    }
    
    .slide:nth-of-type(5), 
    .pedestal .slide:nth-of-type(5) {
        order: 5;
        display: none;
        margin-top: 0;
        width: 100%;
    }
    
    .promo__offer-content {
        padding: 10px;
    }
    
    .promo__offer-logo, 
    .promo__offer-btn {
        width: 100%;
    }
    
}

@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 {
        grid-template-columns: 1fr;
        position: relative;
        margin-top: 55px;
    }
    
    .slide {
        margin-left: auto;
        margin-right: auto;
        display: none;
    }
    
    .slide:nth-of-type(1) {
        display: block;
    }
	
	.promo__offer-header {
    	border-radius: 9px 9px 0 0;	
	} 
	
    .promo__offer-logo {
        width: 256px;
        height: 256px;
    }
    
    .home__nav {
        display: flex;
        gap: 10px;
        position: absolute;
		top: 50%;
        z-index: 5;
        width: 100%;
        justify-content: space-between;
        zoom: 2;
    }
    
    .home__nav-right {
        transform: rotate(180deg);
    }
	
	.home__nav circle {
		display: none;
	}
    
}


/* banner */
.sidebar_banner {
	display: block;
	margin-top: 24px;
	transition: opacity 0.15s;
}

.sidebar_banner:hover {
	opacity: 0.95;
}

.sidebar_banner img {
	max-width: 100%;
}

#bottom_banner {
    position: fixed;
    width: 100%;
    z-index: 555;
    bottom: 0;
    background: #000;
}

/* changed span on x */
#bottom_banner .x {
    position: absolute;
    top: -10px;
    right: 20px;
    display: block;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #000;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    cursor: pointer;

    z-index: 1000;
}

.bottom_banner, .bottom_banner_mob {
    line-height: 0;
    display: block;
    text-align: center;
    transition: opacity 0.15s;  
}

.bottom_banner_mob {
    display: none;
}

.bottom_banner img {
    width: 100%;
    max-width: 1600px;
}

.bottom_banner_mob img {
    width: 100%;
    max-width: 360px;
}

.bottom_banner:hover, .bottom_banner_mob:hover  {
    opacity: 0.95;
}

@media (max-width: 600px) {
    .bottom_banner {
        display: none;
    }
    .bottom_banner_mob {
        display: block;
    }
}

/* new banner style */

.bottom_banner__wrapper {
    position: relative;
}

.bottom_banner_text {
    text-transform: uppercase;
    color: #e04715;
    top: 20%;
    right: 27%;
    position: absolute;
    font-size: 1.3vw;
    width: 15%;
    text-align: center;
    font-weight: bold;
    font-family: Arial, sans-srif;
}

.bottom_banner_text span {
    color: white;
}

#button-1 {
  padding: 1% 1.5%;
  width: 5%;
  border-radius: 100px;
  color: #fff;
  font-size: .9vw;
  text-transform: uppercase;
  font-weight: 400;
  font-family: Arial, sans-serif;
  display: inline-block;
  margin: 10px 0 0 0;
  letter-spacing: 0.4px;
  background-color: #781d01;
  background-size: 100% 100%;
  text-decoration: none;
  top: 10%;
  right: 46%;
  position: absolute;
  text-align: center;
}

#button-1:hover {
    color: #fff;
    transform: translateY(-4px);
    transition: all 0.5s ease 0s;
  }

.button__animation {
  overflow: hidden;
  position: relative;
}

.button__animation:after {
  content: "";
  margin-left: 60px;
  width: 30px;
  height: 300px;
  background: #fff;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  position: absolute;
  left: -40px;
  top: -150px;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }

@keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }


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

.bottom_banner_text {
    top: 30%;
}

}

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

#button-1 {
  width: 10%;
  font-size: 6px;
  top: 10%;
  right: 44%;
}

.bottom_banner_text {
    top: 35%;
    right: 20%;
    font-size: 6px;
    width: 15%;
}

}
/* .banner */



/* sub-sub-menu */
.menu-item-has-children .menu-item-has-children {
	box-shadow: none;
	border-bottom: none;
}

.menu-item-has-children .menu-item-has-children::after {
	content: none;
}

.menu-item-has-children .menu-item-has-children .sub-menu {
	display: none;
}

.menu-item-has-children .menu-item-has-children:hover {
	background: var(--second-color);
}

.menu-item-has-children .menu-item-has-children:hover > a {
	color: white;
}

.menu-item-has-children .menu-item-has-children:hover .sub-menu {
	display: block;
	position: absolute;
	top: 0;
	left: auto;
	right: 100%;
	padding-top: 0;
}

@media (max-width: 1200px) {
	.menu-item-has-children .menu-item-has-children .sub-menu {
		display: block;
		padding-left: 20px;
	}	
	.menu-item-has-children .menu-item-has-children:hover .sub-menu {
		position: relative;
	}
	.menu-item-has-children .menu-item-has-children:hover {
		background: var(--light-bg);
	}
	.menu-item-has-children .menu-item-has-children:hover > a {
		color: var(--dark-bg-color);
	}
	.menu-item-has-children .menu-item-has-children .sub-menu li:first-child {
		padding-top: 0;
	}
}
/* .sub-sub-menu */



.authoreditor-wrapper {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    gap: 10px;
	padding-top: 0;
    padding-bottom: 0;
	font-size: 13px;
}

.home .authoreditor-wrapper {
	padding-top: 20px;
}

.authoreditor {
    display: grid;
    grid-template-columns: 50px auto;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    background: var(--lavander);
    padding: 10px;
    border-radius: 6px;
}

.authoreditor__photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url(/wp-content/themes/rps/img/no-image.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.authoreditor__info a {
    color: var(--button-color);
}

.authoreditor__info a:hover {
    text-decoration: none;
}



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



/* Wheel */
#fortunewheel {
	zoom: 0.8;
	background: url(/wp-content/themes/rps/img/fortunewheel.png);
	background-repeat: no-repeat;
	width: 194px;
	height: 175px;
	position: fixed;
	right: 10px;
	bottom: 190px;
	z-index: 999;
	cursor: pointer;
}
.wheel-wrapper * {
	box-sizing: border-box;
}
.wheel-wrapper {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	top: 0px;
	padding-top: 0;
	backdrop-filter: blur(8px);
	align-items: center;
	display: none;
}
.wheel {
	position: relative;
	margin: auto;
	width: 1200px;
	height: 600px;
	border-radius: 10px;
	padding: 20px;
	background: url(/wp-content/themes/rps/img/bg.jpg), linear-gradient(180deg, #001285 0%, #001075 100%);
	background-repeat: no-repeat;
	display: grid;
	justify-items: center;
	align-items: center;
}
.wheel__close {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #4F5FCD;
	position: absolute;
	top: 20px;
	right: 20px;
	rotate: 45deg;
	cursor: pointer;
	z-index: 999999;
}
.wheel__close > div {
	position: absolute;
	background: #B4BBF2;
	width: 35px;
	height: 5px;
	top: 23px;
	left: 7px;
	border-radius: 2px;
}
.wheel__close > div:nth-of-type(2) {
	rotate: 90deg;
}
.wheel__logo {
	background: url(/wp-content/themes/rps/img/wheellogo.png);
	background-repeat: no-repeat;
	width: 266px;
	height: 53px;
}
.wheel__content {
	position: relative;
	display: flex;
	justify-content: center;
}
.wheel__arrow {
	position: absolute;
	background: url(/wp-content/themes/rps/img/arrow.png);
	background-repeat: no-repeat;
	width: 429px;
	height: 457px;
	top: -40px;
	left: calc(50% - 215px);
	z-index: 2;
}
.wheel__wheel {
	background: url(/wp-content/themes/rps/img/wheel1.png);
	background-repeat: no-repeat;
	width: 400px;
	height: 400px;
	transition: rotate 3s;
}
.wheel__play {
	position: absolute;
	background: url(/wp-content/themes/rps/img/play1.png);
	background-repeat: no-repeat;
	width: 150px;
	height: 150px;
	top: 125px;
	left: calc(50% - 75px);
	cursor: pointer;
	transition: scale 0.1s;
	scale: 0.99;
	z-index: 3;
}
.wheel__play:hover {
	scale: 1;
}
.wheel__prize {
	display: none;
	backdrop-filter: blur(6px);
	width: 100%;
	height: 100%;
	justify-items: center;
	align-content: center;
	gap: 20px;
}
.wheel__prize > div {
	font-size: 32px;
	font-weight: bold;
	color: var(--black);
	line-height: 1;
	text-align: center;
}
.wheel__prize > div:nth-of-type(2) {
	font-size: 42px;
	color: var(--red);
}
.wheel__prize > a {
	text-decoration: none;
	font-size: 42px;
	font-weight: bold;
	width: 300px;
	height: 90px;
	border-radius: 45px;
	border-top: 5px solid #ffa3d1;
	background: linear-gradient(180deg, #FE44A1, #EC077A, #F787D1);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wheel__prize > a:hover {
	background: linear-gradient(180deg, #F787D1, #EC077A, #FE44A1);
}
@media (max-width: 1200px) {
	.wheel {
		width: 95%;
		background-position: center;
	}
}
@media (max-width: 600px) {
	#fortunewheel {
		zoom: 0.55;
		right: -10px;
		bottom: 230px;
		rotate: -90deg;
	}
	.wheel {
		padding-left: 10px;
		padding-left: 20px;
		zoom: 0.85;
	}
}

.casino-alt {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
}

.casino-alt-item {
    display: flex;
    border-radius: 2px;
    border-width: 2px;
    opacity: 1;
    padding-right: 30px;
    padding-left: 30px;
    gap: 30px;
    border: 2px solid #DBDCE0;
    min-height: 106px;
    align-items: center;
}


.casino-alt-item__rank {
    width: 35px;
    height: 35px;
    border-radius: 2px;
    background: #2744A3;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	color: white;
}

.golden-wrapper .casino-alt-item__rank {
	background: #FFBB00;
	color: black;
}

.casino-alt-item__content {
    display: flex;
    gap: 30px;
    width: 100%;
    min-height: 106px;
    align-items: center;
}

.casinoitem-alt__logo {
    height: 70px;
    width: 70px;
    display: flex;
    padding: 0 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.casinoalt-item__container {
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 106px;
    background: #F5F5F5;
}

.casino-alt-item__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #2744A3;
}

.casinoitem-alt__reg {
    background: #FFBB00;
    height: 46px;
    border-radius: 2px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    text-decoration: none;
}

.casino-alt-item__buttons {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
}

.tc {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    color: #898D9A;
}

.casinoitem-alt__reg:hover {
    color: black;
}

.casinoitem-alt__reg::after {
    content: "";
    width: 5px;
    height: 8px;
    /* transform: rotate(90deg); */
    background-size: contain;
    background-image: url("data:image/svg+xml,<svg width='5' height='8' viewBox='0 0 5 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 3.99844L0 7.99688L0 0L5 3.99844Z' fill='%23101112'/></svg>");
    background-repeat: no-repeat;
}


.casino-alt-item__brand {
    display: flex;
    align-items: center;
}

@media (max-width: 600px) {
	.casino-alt-item__content {
		width: 100%;
		min-height: 106px;
		align-items: center;
		flex-flow: row wrap;
		justify-content: center;
		padding: 20px 0;
	}
	.casino-alt-item__title {
		padding: 20px;
	}
	.casino-alt-item {
		padding: 0;
	}
	.casino-alt-item__brand {
		display: flex;
		align-items: center;
		width: 100%;
		gap: 55px;
		padding: 0 20px;
		/* justify-content: space-around; */
	}
	.casinoitem-alt__logo {

		padding: 0px 45px;

	}
	.casinoalt-item__container {
		width: 100%;
	}
	.casino-alt-item__buttons a {
    width: 248px;
    height: 46px;
    padding: 12px 53px;
}
}