body{
    position: relative;
	scroll-behavior: smooth;
}
.header{
    background-color: #5AD037;
    position: sticky;
    top: 0;
    z-index: 6;
}
.header__menu-list{
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    padding: 0;
    margin: 0;
    height: 100%;
}
.header__menu-btn svg{
    fill: #fff;
}
.header__menu-btn{
    display: none;
}
.menu-item-has-children{
    position: relative;
    padding-right: 18px;
}
.menu-item-has-children > .header__menu-btn{
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.menu-header-container{
    height: 100%;
}
.guider__author,
.guider__author_link{
	font-weight: 700;
    color: #394e6b;
}
.guider__author_link{
	text-decoration: none;
}
.guider__author_link:hover{
	color: #394e6bbf;
}
.guider__author{
	margin-bottom: 20px;
}
.guider__item,
.guider__item:hover{
	color: #373870;;
	text-decoration: none;
}
.guiders__wrapp{
	background: #f2f5f7;
	padding: 50px 0;
}
.guider__item_title{
	font-weight:900;
	font-size: 20px;
}
.guider__img{
	display: block;
    width: 100%;
    border-radius: 15px;
    height: auto;
	margin-bottom: 20px;
}
.header__menu-list .menu-item{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__menu-list .menu-item + .menu-item{
    margin-left: 25px;
}
.header__menu-list .menu-item a{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
    color: #fff;
}
.header__menu-list .menu-item:hover > a,
.header__menu-list .menu-item.current-menu-item{
    color: #fea49f;
}
.header__menu-list .menu-item.menu-item-has-children:hover .header__menu-btn svg{
    fill: #fea49f;
}
.menu-item-has-children .sub-menu{
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    min-width: 250px;
    position: absolute;
    background-color: #080b3c;
    visibility: hidden; 
    pointer-events: none;
    transition: all .3s ease;
}
.menu-item-has-children:hover .sub-menu{
    opacity: 1;
    visibility: visible; 
    pointer-events: auto;
    transform: translateY(0);
}
.header__menu-list .menu-item-has-children .sub-menu .menu-item{
    margin-left: 0;
    padding: 10px;
    border-bottom: 1px dashed rgba(255,255,255,.1);
	text-align: center;
}

.sub-menu .menu-item-has-children .sub-menu{
			opacity: 0;
}
.sub-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.sub-menu .menu-item:last-child{
    border-bottom: none;
}
.search svg{
    fill: #fff
}
.search:hover{
    cursor: pointer;
}
.search:hover svg{
    fill: #fea49f;
}
.header__search{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111357;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
}
.header__search.open{
    z-index: 9;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.searchform{
    position: relative;
    z-index: 9999;
}
.search_close svg,
.searchform__inner button svg{
    fill: rgba(255,255,255,.7)
}
.searchform__inner{
    display: flex;
    justify-content: space-between;
}
.searchform__inner button{
    width: 45px;
    height: 45px;
    border: unset;
    background-color: #2a2c6f;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 100%;
}
.searchform__inner input{
    border: unset;
    background-color: transparent;
    font-size: 35px;
    color: #fff;
    width: calc(100% - 50px);
    
}
.searchform__inner input:focus{
    outline: unset;
}
.search_overlay{
    background: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
.search_close-cross{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    top: 45px;
    right: 50px;
    cursor: pointer;
    transform-origin: center;
    transition: all .3s ease;
}
.search_close:hover{
    transform: rotate(180deg);
}
.mobile__menu-btn{
    display: none;
}
.mobile__menu-btn svg{
    fill: #fff;
}
.header_menu.open{
    background-color: #0d1977;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
	height: 100vh;
	overflow-y: scroll;
}
.header_menu.open .header__menu-list{
    margin-top: 35px;
    flex-direction: column;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 25px;
}
.header_menu.open .header__menu-list .menu-item a{
    font-size: 18px;
/*     padding: 5px 0; */
	display: block;
	margin: 18px;
	height: 58px;
}
.menu_close-cross{
    display: none;
}
.footer{
    padding: 100px 0 60px 0;
    background-color: #080b3c;
}
.footer_list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer_list .menu-item{
    padding: 4px;
}
.footer_list a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.footer_list a:hover{
    color: #fea49f;
}
.footer_col_title{
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 700;
}
.footer_socials a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 49px;
    height: 49px;
    padding: 5px;
    border-radius: 100%;
    background: #243a6f;
}
.footer_socials img{
    display: block;
    width: 100%;
    height: 100%;
    filter: brightness(0%) invert(1);
}
.footer_socials{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.footer_other{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer_other li{
    margin: 5px 5px 5px 5px;
};
.footer_other:first-child{
    margin: 5px 5px 5px 0;
}
.footer_other img{
    display: block;
    max-height: 35px;
    width: auto;
}
.baner{
    background: #0d1977;
    padding: 60px 0;
}
.baner_title{
    font-size: 2.8em;
    line-height: 1.1em;
    color:  #fed700;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
    max-width: 550px;
}
.baner_text{
    font-size: 16px;
    color: #fff;
    margin-bottom: 24px;
}
.baner_link{
    z-index: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    padding: 18px 25px 18px 18px;
    background-color: #fff;
    border-radius: 4px;
    margin: 10px 0;
    transition: all .3s ease;
}
.baner_link:hover {
    color: #243b56;
}
.baner_link:hover .baner_link_text{
    transform: translateX(10px);
}
.baner_link:hover .baner_link_img{
    transform: rotate(360deg);
    transition: all .3s ease;
}
.baner_link_img{
    width: 32px;
    height: 32px;
    margin-right: 18px;
    
}
.baner_link_text{
    font-weight: 600;
    color: #243b56;
    font-size: 18px;
    transform: translateX(0);
    transition: all .3s ease;
}
.baner_link_arrow{
    background: #fea49f;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    width: 50px;
    height: 100%;
}
.baner_link_arrow::before{
    content: '';
    position: absolute;
    display: block;
    background: #fff;
    width: 12px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-75%);
}
.baner_link_arrow::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-25%);
    width: 0;
    height: 0;
    border-left: 12px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.baner_arrow{
    position: relative;
    display: flex;
    min-width: 10rem;
    height: 1.5rem;
    overflow: hidden;
    background-color:  #0d1977;
}
.filler {
    position: absolute;
    bottom: -1px;
    width: 700rem;
    height: 1.5rem;
    margin-left: 50%;
    transform: translateX(-50%);
}
.curve {
    fill: #f8f9fb;
}
.main{
    background: #f8f9fb;
}
.table_links{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
    padding: 25px 0;
}
.cat_item{
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 10px 12px;
}
.cat_item img{
    width: 65px;
    height: 65px;
    border-radius: 100%;
}
.cat_item_info{
    padding-left: 15px;
}
.cat_item_text{
    font-size: 14px;
    font-weight: 800;
    line-height: 16px;
    letter-spacing: -.02em;
    color: #111357;
}
.cat_item_date{
    font-size: 10px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 2px;
    color: #f09994;
}
.cat_item_flag{
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fea49f;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 15px;
    border-radius: 12px 0 8px;
}
.review_rating .post-ratings img{
    width: 20px;
    height: 20px;
}
.review{
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 25px;
}
.review_img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
   	height: 160px;
    border-radius: 12px;
    overflow: hidden;
}
.review_img img{
    max-width:100%;
    height: auto;
}
.review_img_permalink{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    color: #b7b6b6;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 10px;
}
[data-content] p a,
[data-content] li a{
	display: inline-block;
	min-height: 48px;
}
.main strong{
	display: inline-block;
}
.review_img_permalink:hover{
    color: #777676;
}
.review_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding-right: 25px;
    width: -webkit-fill-available;
}
.review_info_main{
    width: -webkit-fill-available;
    margin-right: 25px;
    margin-left: 25px;
	
	display: flex;
    flex-direction: column;
    align-items: center;
}
.review_number,
.rating_average{
    font-size: 15px;
    font-weight: 600;
    color: #b7b5b5;
}
.review_permalink{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #111357;
	display: inline-block;
	
}
.post-ratings{
    display: flex;
    align-items: center;
}
.rating_average{
    margin-left: 10px;
}
.review_title{
    
   
}
.review_offer{
    border-bottom: 1px solid #f1f1f1;
    text-transform: uppercase;
    font-weight: 700;
    color: #f09994;
    font-size: 14px;
}
.review_bonus{
    display: block;
    text-decoration: none;
    color: #111357;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 18px;
	min-height: 48px;
}
.review_bonus:hover,
.review_permalink:hover{
    color: #111357;
}
.review_plus{
    position: relative;
    padding-left: 18px;
    font-weight: 600;
    color: #6f6f6f;
    font-size: 14px;
    letter-spacing: -.3px;
    white-space: pre-wrap;
}
.review_plus::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 13px;
    background-image: url(../img/marker.png);
    background-size: cover;
    transform: rotate(90deg) translateX(30%);
}
.review_link_out{
    min-width: 245px;
    display: block;
    white-space: nowrap;
    text-align: center;
    padding: 15px 10px;
    margin-top: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    background: #5ad037;
    border-bottom: 3px solid #5ab93d;
    box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
    transform: translateY(0);
    transition: all .3s ease;
}
.review_link_out:hover{
    color: #fff;
    transform: translateY(-7px);
    box-shadow: 0 6px 3px rgb(0 0 0 / 15%);
}
.main{
    color: #243b56e6;
    font-size: 18px;
}
.main img.alignright{
    float: right;
}
.main img.alignleft{
    float: left;
}
.main img.aligncenter{
    margin: 0 auto;
    display: block;
}
.main table{
    overflow-x: scroll;
    margin: 0 auto;
}
.main td{
    border: 1px solid #080b3c;
}
.main td{
    padding: 5px 10px;
}
.main tr:nth-child(odd){
    background: #b7b8d7;
}
.main tr:nth-child(even){
    background: #dcddf6;
}
.anchor__list li{
	color: #fff;
}
.anchor__list.open{
	display: block;
}
.anchors_btn .anchors_show_less,
.anchors_btn.open .anchors_show_more{
	display: none;
}
.anchors_btn.open .anchors_show_less,
.anchors_btn .anchors_show_more{
	display: block;
}
.anchor__list{
	display: none;
/* 	list-style: none; */
	padding: 0;
	margin: 0
}
/* .anchor__list li{
	padding: 10px 0;
} */
.anchor__list li a{
	color: #fff;
	text-decoration: none;
	display: block;
    min-height: 25px;
    margin-bottom: 8px;
}
.anchor__list li a:hover{
	color: #fea49f;
	text-decoration: none;
}
.togller{
	display: flex;
    color: #fff;
}
.anchors_btn{
	padding-left: 10px;
	cursor: pointer;
}
.content_anchors{
	font-size: 18px;
    font-weight: 900;
}
blockquote {
    border-left: 4px solid #111357;
    padding: 25px;
    background: #fff;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
	font-size: 20px;
}
.casino{
		padding: 60px 0;
		background-color: #111357;
		margin-bottom: 15px;
		color: #fff;
	}
	.casino__box{
		text-align: center;
	}
	.casino__img{
	/* 	height: 125px;
		width: 125px; */
		margin: 0 auto 25px;
	}
	.casino__img img{
		width: 300px;
		height: auto;
		border-radius: 15px;
		border: 2px solid #fff;
	}
	.casino__img.slot__logo img{
		width: 50%;
	}
	h1.casino__name {
		font-size: 36px;
		margin-bottom: 5px;
		position: relative;
		margin-bottom: 10px;
	}
	.post-ratings{
		justify-content: center;
	}
	.post-ratings img, .post-ratings-loading img, .post-ratings-image img{
		height: 18px;
	}
	.casino__bonus{
		font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    color: #fea49f;
	}
	.casino__link a{
		display: inline-block;
	    margin-top: 25px;
    min-width: 250px;
    padding: 15px;
    font-size: 18px;
    border-bottom: 2px solid #5ab93d;
    box-shadow: 0 3px 3px rgb(0 0 0 / 15%);	
		background-color:#5acd00;
		transition: all .3s;
		border-radius: 5px;
		color: #fff;
		text-decoration:none;
		font-weight: 700;
	}
	.casino__link a:hover{
		    transform: translateY(-3px);
	}
	.casino__text{
		    margin-top: 15px;
    text-align: center;
    color: #f5f5f5;
		font-size: 8px;
    padding: 6px 5px;
	}
	
	.info__box{
		display: flex;
		justify-content: space-between;
		border-radius: 12px;
    padding: 35px;
    position: relative;
		margin-bottom: 50px;
		box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
		background: #fff;
	}
	.info__title{
		    font-size: 24px;
    font-weight: 700;
		color: rgba(36,59,86,1);
	}
	.info__main{
		width: 55%;
	}
	.info__more{
		max-height: 0;
    transition: all .4s;
    overflow: hidden;
	}
	.info__more--open{
		max-height: 1000px;
    transition: all .4s;
    padding-top: 25px;
	}
	.info__item{
		min-height: 42px;
		display: flex;
		justify-content: space-between;
		padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
	}
	.info__item-name{
		width: 40%;
		font-size: 16px;
    font-weight: 700;
	}
	.info__item-text{
		width: 59%;
		font-size: 16px;
    font-weight: 700;
		text-align: end;
		padding-right: 15px;
	}
	.info__pay{
		padding-top: 25px;
	}
	.info__pay-table{
		display: flex;
		justify-content: start;
		height: auto;
	}
	.info__pay-table img{
		height: 40px;
		margin-right: 10px;
	}
	.info__other{
		padding-top: 25px;
	}
	
	
	.info__pros-cons{
		width: 39%;
		
	}
	.info__pros, .info__cons{
		padding: 12px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
	}
	
	.info__pros{
		background: #caf0d7;
    color: #2c864b;
    margin-bottom: 15px;
	}
	.info__cons{
		    background: #f8cec7;
    color: #ac4131;
	}
	.info__pros-item, .info__cons-item{
		position: relative;
		padding: 3px 0 3px 20px;
	}
	.info__pros-item img{
		position: absolute;
	top: 10px;
    left: -5px;
    height: 14px;
	}
	.info__cons-item img{
		position: absolute;
	top: 9px;
    left: -5px;
    height: 16px;
	}
	.info__button{
		bottom: -20px;
		left: 50%;
		transform: translatex(-50%);
	height: 40px;
		width:40px;
	cursor: pointer;
    background: #f8f9fb;
    padding: 10px;
    border-radius: 50px;
    bottom: -20px;
    position: absolute;
    border: 1px solid #d6d6d6;
		
	}
	.info__button img{
	transform: rotate(180deg);	
	}
	.info__button--open img{
		transform: rotate(0);
	}
	.info__img{
		height: 18px;
    width: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	}
	.info__img img{
		height: 100%;
		width:100%;
	}
.sticky_wrapp{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111357;
    height: 75px;
}
.sticky_inner{
	display: flex;
    align-items: center;
    justify-content: space-between;
	overflow: hidden;
}
.sticky_logo{
    height: auto;
    width: 155px;
}
.sticky_bonus{
    color: #fff;
    font-weight: 600;
}
.sticky_wrapp div{
	height: 100%;
}
.sticky_bonus{
	font-size: 20px;
	display: flex;
    align-items: center;
}
.sticky_link{
    display: inline-block;
    padding: 3px 5px;
    font-size: 18px;
    border-bottom: 2px solid #5ab93d;
    box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
    background-color: #5acd00;
    transition: all .3s;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.sticky_link:hover{
	color: #fff;
}
.bonus{
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    background: #fff;
    border-radius: 12px;
    margin: 15px 0;
    padding: 5px 15px;
}
.bonus_logo{
	width: 180px;
}
.bonus_info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bonus_type{
    font-weight: 500;
    font-size: 16px;
    color: #787575;
}
.bonus_name{
    font-weight: 700;
    font-size: 22px;
}
.bonus_link{
    display: inline-block;
    padding: 10px 16px;
    font-size: 18px;
    border-bottom: 2px solid #5ab93d;
    box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
    background-color: #5acd00;
    transition: all .3s;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.bonus_link:hover{
	color: #fff;
}
.info__pay-table{
	flex-wrap: wrap;
    justify-content: center;
    margin: 15px;
}
.retings_blocks{
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    background: #fff;
}
.retings__item_top{
    display: flex;
    justify-content: space-between;
}
.retings__item_line{
    height: 15px;
    width: 100%;
    background: #ccc;
    border-radius: 5px;
    overflow: hidden;
	display: flex;
}
.retings__item{
	margin-bottom: 10px;
}
.item_value_red{
    width: 10%;
    display: block;
    height: 100%;
    background: #fed700;
}
.pwb__owerlay{
    background: #0000008f;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
	z-index: 999;
}
.pwb{
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.pwb__wrapp{
    background: #111357;
    padding: 15px;
    border-radius: 10px;
}
.pwb__wrapp_img{
	width: 300px;
}
.pwb__wrapp_img img{
    width: 100%;
    height: auto;
}
.pwb__text{
    color: #fff;
    text-align: center;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
}
.review__link_out{
    display: block;
    padding: 3px 5px;
    font-size: 18px;
    border-bottom: 2px solid #5ab93d;
    box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
    background-color: #5acd00;
    transition: all .3s;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.review__link_out:hover{
	text-decoration: none;
}
.pwb_descr{
	background: #111357;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-size: 21px;
    max-width: 990px;
}
.pwb__close::after,.pwb__close::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transform-origin: center;
    top: 15px
}

.pwb__close::after {
    transform: rotate(-45deg)
}

.pwb__close::before {
    transform: rotate(45deg)
}

.pwb__close {
    display: block;
    position: absolute;
    top: 75px;
    right: 75px;
    width: 23px;
    height: 23px;
    cursor: pointer
}
.pwb__owerlay.close{
	display: none;
}
.footer_text{
	color: #fff;
}
.scrollup{
	position: fixed;
	z-index: 999;
	bottom: 100px;
	right: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	background-color: #0d1977;
	border-radius: 100%;
}
.scrollup_arrow{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 12.5px 21.7px 12.5px;
	border-color: transparent transparent #ffffff transparent;
}
.rep_rev{
	padding: 30px 0;
    background: #f8f9fb;
}
.rep_rev_item{
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 42px -13px rgba(0,0,0,0.62);
	height: 100%;
}
.rep_rev_top{
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
	height: 170px;
}
.rep_rev_logo{
	height: 100%;
}
.rep_rev_logo img{
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}
.rep_rev_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000069;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: #FFF 0 0 4px;
	opacity: 0;
	transition: all .3s ease;
}
.rep_rev_top:hover .rep_rev_overlay{
	opacity: 1;
}
.rep_rev_link{
    margin: 10px 0;
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #243b56e6;
    text-decoration: none;
}
.rep_rev_col{
	margin: 20px 0;
}
.author-page{
    display: flex;
    justify-content: start;
    gap: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 20px;
	margin-bottom: 15px;
}
.author-page .author-page__photo{
    margin: 0;
    border: 3px solid #080b3c;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
}
.author_info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.author_descr{
    font-size: 20px;
    line-height: 22px;
}
.author_pages{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin: 15px 0;
}
.author_page{
    width: 100%;
    position: relative;
    background: #fff;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
	border-radius: 10px;
	transition: all .2s ease;
}
.author_page:hover{
	box-shadow: 0px 4px 11px 2px #ccc;
}
.author_page-date{
    width: 100%;
    text-align: end;
    font-size: 14px;
    font-style: italic;
    color: #979595;
}
.page_name{
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}
.author_page-icon{
    display: block;
    width: 35px;
    height: auto;
    position: absolute;
    top: 0px;
    left: 6px;
}
.page_link{
	margin-top: 15px;
}
.footer__support {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    margin: 30px 0;
}

.footer__support img {
    height: 42px;
    width: auto;
}
.footer__copyright_border {
    width: 100%;
    height: 2px;
    background: #edefff54;
}
.footer__copyright{
	text-align:center;
	padding:20px 0;
	color: #fff;
}
.footer_menu_title{
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    min-height: 110px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_list .menu-item{
	text-align: center;
}
.author{
	border-radius: 20px;
}
.author__wrapper{
	border-radius: 17px;
}
.review_permalink{
    display: block;
    text-align: center;
    
}
.review_rating{
    display: flex;
    justify-content: space-between;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
}
.review_rating .post-ratings{
	width: fit-content;
}
.review_offer{
	text-align: center;
}
.rating_star{
    display: flex;
    align-items: center;
}
.rating_star img{
	width: 20px;
}
.slots_info .retings__item{
    border-bottom: 1px solid #ccc;
    padding-bottom: 4px;
}
.info_title{
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}
.review_link_out.review_img_permalink{
	background: #bdbdbd;
    border-bottom: 3px solid #636363;
}
.casino__rating{
	display: flex;
	justify-content: center;
	align-items: center;
}
.sticky_inner .casino__rating .rating_numb{
	color: #fff;
}
.showMore_button.review_link_out{
	width: fit-content;
	margin: 0 auto;
	cursor: pointer;
}
.cust_links{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #fff;
    border-radius: 8px;
    padding: 10px 20px 20px;
    margin: 30px 0;
    grid-gap: 12px 24px;
}
.cust_links_item{
    font-weight: normal;
    line-height: 33px;
    font-size: 18px;
    color: #434656;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 5px 30px #e1eaf8;
    border-radius: 4px;
    padding: 12px 17px 12px 10px;
    text-decoration: none;
}
.cust_links_item:hover{
	box-shadow: 0 6px 7px 0 rgba(0,0,0,0.1);
}
.cust_links_item img{
    transform: rotate(180deg);
}
@media (max-width: 991px){
	.cust_links{
		grid-template-columns: 1fr 1fr;
	}
	.author_pages{
		grid-template-columns: 1fr 1fr;
	}
	.pwb_descr{
		max-width: 760px;
	}
	.pwb{
		flex-direction: column;
	}
	.pwb__wrapp{
		display: flex;
		align-items: center;
		gap: 10px;
		max-width: 760px;
		width: 100%;
    	justify-content: space-between;
	}
	.pwb__wrapp_img{
		width: 70px;
	}
	.pwb__text, .review__link_out{
		font-size: 14px;
	}
	.row.align-items-center{
		flex-direction: column;
		text-align: center;
	}
	.header_menu{
		width: 100%;
	}
	.review{
		flex-direction: column;
		padding: 15px 0;
	}
	.review_img{
		height: 200px;
		overflow: hidden;
	}
	.review_title{
		text-align: center;
	}
}
@media (max-width: 800px){
		.info__box{
			flex-direction: column-reverse;
		}
		.info__pros-cons {
    width: 100%;
    margin-bottom: 15px;
}
		.info__main {
    width: 100%;
}
	}
	
	
@media(max-width: 767px){
	.cust_links{
		grid-template-columns: 1fr;
	}
	.casino__img.slot__logo img {
		width: 100%;
	}
	.footer__support {
        flex-wrap: wrap;
        row-gap: 15px;
    }
	.author_pages{
		grid-template-columns: 1fr;
	}
	.bonus{
		flex-direction: column;
	}
	.bonus_link{
		margin: 15px 0;
	}
	.custom-banner__img{
		position: static;
	}
	.custom-banner__content{
		position: static;
		transform: unset;
		margin: 0 auto;
		width: 100%;
		background: #fff3;
		border-radius: 10px;
		margin-top: 15px;
	}
	.menu-header-container{
		width: auto;
	}
	.row.align-items-center{
		flex-direction: row;
	}
	.main table{
		display: block;
	}
	.main tbody{
/* 		min-width: 720px; */
		display: table;
	}
	.main tr{
/* 		min-width: 720px; */
		display: table-row;;
	}
    .review_info_other .review_plus:last-of-type{
        padding-bottom: 10px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    .review_plus::before{
        left: 10px;
    }
    .review_info_main{
        margin-right: 0;
    }
    .review_offer{
        width: 100%;
		padding-top: 0;
    	padding-bottom: 20px;
    }
    .review_number,
    .rating_average,
    .review_permalink{
        font-size: 18px;
    }
    .review_info_other{
        width: 100%;
        padding-left: 25px;
    }
    .review_plus{
        white-space: normal;
        font-size: 13px;
        padding: 0 10px 0 25px;
        background: #effbf5;
    }
    .review_link_out{
        min-width: unset;
        width: 100%;
    }
    .review_bonus{
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -.03em;
        padding: 10px;
        border-radius: 8px 8px 0 0;
        
    }
    .review_info{
        flex-direction: column;
    }
    .review_img{
        min-width: 100px;
    }
    .menu_close-cross{
        position: absolute;
        right: 30px;
        top: 20px;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #0d1977;
        border-radius: 5px;
    }
    .menu_close-cross svg{
        fill: #fea49f;
    }
    .mobile__menu-btn{
        display: block;
    }
    .logo__img{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header_menu{
        position: absolute;
        padding: 0;
        top: 0;
        left: 0;
        opacity: 0;
        overflow-y: scroll;
        overflow-x: hidden;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-50px);
        transition: all .3s ease;
    }
    .header__menu-list .menu-item + .menu-item {
        margin-left: 0;
    }
    .menu-item-has-children .sub-menu{
        position: static;
    }
    .header__menu-list .menu-item-has-children{
        flex-direction: column;
        align-items: flex-start;
    }
    .header__menu-list .menu-item-has-children .sub-menu{
        height: 0;
        transition: none;
        background-color: inherit;
    }
    .header__menu-list .menu-item-has-children .sub-menu .menu-item{
        justify-content: flex-start;
    }
    .header_menu.open .header__menu-list .menu-item-has-children .sub-menu a{
        font-size: 14px;
    }
    .menu-item-has-children >.header__menu-btn{
        top: 6px;
        transform: translateY(0);
        transition: all .3s ease;
    }
    .menu-item-has-children.open >.header__menu-btn{
        transform: translateY(0) rotate(180deg);
    }
    .menu-item-has-children:hover .sub-menu{
        opacity: 0;
        visibility: hidden; 
        pointer-events: none;
    }
    .header__menu-list .menu-item-has-children.open .sub-menu{
        opacity: 1;
        visibility: visible; 
        pointer-events: auto;
        height: auto;
    }
	.sub-menu .menu-item-has-children.open >.header__menu-btn {
    transform: translateY(0) rotate(180deg);
}
			.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu{
				opacity: 0;
    visibility: hidden;
    pointer-events: none;
				height: 0;
			}
			.menu-item-has-children .sub-menu .menu-item-has-children.open .sub-menu{
				opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: auto;
			}
    .footer_col_title{
        margin-top: 30px;
    }
    .footer{
        padding: 20px 0 40px 0;
    }
    .table_links{
        grid-template-columns: 1fr;
    }
	.pwb_descr{
		max-width: 320px;
		font-size: 14px;
		padding: 7px;
	}
	.pwb__wrapp{
		max-width: 320px;
	}
	.pwb__wrapp_img{
		width: 50px;
	}
	.pwb__text, .review__link_out{
		font-size: 13px;
    	font-weight: 400;
	}
	.scrollup{
		bottom: 80px;
    	right: 20px;
	}
	.casino__img img{
		width: 215px;
	}
	h1.casino__name{
		font-size: 23px;
	}
	.casino__bonus{
		font-size: 14px;
	}
	.casino{
		padding: 20px 0;
	} 
	.baner{
		padding:20px;
	}
	.header a img {
		width:150px;
		height:75px;
		margin:0!important;
	}
}
@media (max-width: 500px){
		.info__title{
			font-size: 20px;
		}
		.info__item-name, .info__item-text{
			font-size: 14px;
		}
		.info__pros-item, .info__cons-item{
			font-size: 14px;
		}
		.sticky_bonus, .sticky_link{
			font-size: 12px;
			text-align: center;
		}
		.sticky_link{
			text-align: center;
		}
	.review_star_block {
		margin-bottom:20px;
	}
	}
.update {
    text-decoration: italic;
    font-size: 14px;
    margin-bottom: 15px;
}

.sub-menu .menu-item-has-children .sub-menu {
    opacity: 0;
}

.sub-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}


/* 		для автора */

.author {
    padding: 5px;
    border: 1px solid #080b3c;
    margin-bottom: 20px;
	margin-top: 20px;
    background-color: #b7b8d7;
}

.author__wrapper {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    background-color: white;
}

.author__main {
    margin-right: 15px;
}

.author__photo {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #080b3c;
    background-color: #080b3c;
}

.author__photo img {
    width: 180px;
    object-fit: cover;
}

.author__box {
    padding: 5px;
}

.author__name{
    color: #243b56e6;
    font-size: 24px;
    font-weight: 600;
}

.author__social-link {
    width: 150px;
    margin: 8px auto;
}

.author-page__title {
    text-align: center;
    margin-bottom: 10px;
}

.author-page__social-link {
    width: 200px;
    margin: 10px auto;
}

.author-page__photo {
    width: 200px;
    margin: 0 auto;
    padding: 5px;
    background-color: #080b3c;
}

.author-page__photo img {
    width: 100%;
    object-fit: contain;
    margin: 0 auto;
}


/* 		для автора */


/* 		убираю в контексте отступы там где ссылки */

[data-content] p a,
[data-content] li a {
    min-height: auto;
}
.author__text{
	position: relative;
	margin: 15px 0;
    padding: 10px 0;
}
.author__text::before,
.author__text::after{
	content: '';
	display: block;
	position: absolute;
	width: 70%;
	height: 1px;
	background: #0693e3;
}
.author__text::after{
	bottom: 0;
	right: 0;
}
.author__text::before{
	top: 0;
	left: 0;
}
.anchor__list.open {
	margin-left: 25px;
}
thead {
	text-align: center;
    border: 1px solid #000;
}
th {
	border-style: unset;
	border-width: unset;
	border: 1px solid #000;
}
@media (max-width: 992px) {
    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }
    .header_menu {
        width: 100%;
    }
}

@media (max-width: 767px) {
	.sticky_logo{
		width: 100px;
	}
    .sub-menu .menu-item-has-children.open>.header__menu-btn {
        transform: translateY(0) rotate(180deg);
    }
    .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        height: 0;
    }
    .menu-item-has-children .sub-menu .menu-item-has-children.open .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: auto;
    }
    .row.align-items-center {
        flex-direction: row;
    }
    .author__wrapper {
        flex-direction: column;
    }
    .author__photo {
        width: 184px;
        margin: 0 auto;
    }
}

h2, h3, h4, h5, h6{
	color:#0d1977;
}

.review_star_block{
	    display: flex;
    flex-direction: column;
    align-items: center;
}
.review__bonus_name{
	font-weight:400;
	font-size:16px;
	text-align:left;
}
.reviews .review {
	background: #0d1977;
	padding:20px;
}
.review_permalink, .review_bonus, .review__bonus_name, .rating_numb{
	color:#fff;
}