*::-webkit-scrollbar {
    width: 10px;
    background-color: #5B5B5F;
  }
  
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000;
	border: 1px solid #ccc;
  }
  
*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
    border-radius: 10px;
    background-color: #f9f9fd;
}

*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	width: 100%;
	font-size: 100%;
	line-height: 1.4;
	font-size: 18px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color:#333333;
	font-family: "Roboto", sans-serif;
	color: #fff;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;color: #fff;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;width: 100%;}

h2,h3,h4,h5,h6{font-size:inherit;font-weight: 700;color:#ffb400;}
/*--------------------*/

h1{
	margin-bottom: 20px;
    font-size: 44px;
	color: #fff;
    text-align: center;
}

h2{
    font-size: 36px;
}

h3{
    font-size: 30px;
}

.container{
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
}

.header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #111525;
}

section{
    margin: 40px 0;
}

.header__content {
    display: flex;
	justify-content: space-between;
    align-items: center;
	padding: 10px 0;
    gap: 20px;
}

.header__logo{
    display: block;
    max-width: 80px;
}

.header__button_box{
	display: flex;
	align-items: center;
	gap: 20px;
}

.header__nav {
	padding: 20px 0;
}

.menu-header{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.menu-header li a{
	font-size: 20px;
}

.header__button_link {
    background: #FDB400;
    padding: 10px 20px;
    border-radius: 16px;
    transition: ease .3s background;
    font-weight: 500;
    text-transform: uppercase;
}

.login_header_button {
    background: transparent;
    border: 1px solid #e91821;
}

.header__button_link:hover{
	background: #f4b24e;
}

.login_header_button:hover{
	background: #e91821;
}

.header__button_box_mobile{
	display: none;
}

.menu__btn, .input__burger{
	display: none;
}

@media(max-width:992px){

    .header__button_box_mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 40px;
    }

#menu__toggle {
	opacity: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 22px;
  right: 40px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 6;
  border: 1px solid #FFFFFF14;
  background-color: #191919;
  border-radius: 8px;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
	display: block;
	position: absolute;
	width: 15px;
	height: 2px;
	background-color: #FFFFFF;
}
.menu__btn > span::before {
	content: '';
	top: -5px;
}
.menu__btn > span::after {
	content: '';
	top: 5px;
}

.menu__box {
    z-index: 5;
    position: fixed;
    visibility: hidden;
    top: -150%;
    left: 0;
    width: calc(100vw);
    padding: 80px 0;
    list-style: none;
    text-align: center;
    background-color: #090909CF;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.menu-header li{
  width: 90%;
  padding: 10px 0;
  border-radius: 5px;
}

.menu__item {
	display: block;
	padding: 12px 24px;
	color: #333;
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
}
.menu__item:hover {
	background-color: #CFD8DC;
}
#menu__toggle:checked ~ .menu__btn > span {
	transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
	top: 0;
	transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
	visibility: visible;
	top: 0;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
	transition-duration: .25s;
}
.menu__box {
	transition-duration: .25s;
}
.menu__item {
	transition-duration: .25s;
}

.menu-header{
	flex-direction: column;
    gap: 0;
}

.menu-header-menu-container{
    margin-bottom: 20px;
}

.footer__nav_menu .current_page_item {
    background-color: transparent;
}

.header__button_box_mobile a{
    width: fit-content;
}
}

.content__wrapper_box{
    color: #fff;
}

.content__wrapper_box ul li{
	list-style: disc;
}

.content__wrapper_box li{
	margin: 8px 0 8px 20px;
}

.content__wrapper_box ol{
    counter-reset: item;
}

.content__wrapper_box ol li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    counter-increment: item;
}

.content__wrapper_box ol li:before {
    content: counter(item);
    display: flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffb805;
    border: 1px solid;
    border-radius: 50%;
    flex: 0 0 27px;
}

.content__wrapper_box p{
	margin: 8px 0;
}

.content__wrapper_box h2, .content__wrapper_box h3{
	margin: 18px 0 24px 0;
}

.content__wrapper_box img{
	height: 100%;
}

.breadcrumb__box{
    margin: 20px 0;
}

.aioseo-breadcrumbs span{
    color: #FF0048;
}

.breadcrumb__box .aioseo-breadcrumbs span a{
    color: #000;
}

.content__wrapper_box table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
	border-collapse: separate;
}
.content__wrapper_box table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #EDEDED;
	font-size: 14px;
	border-top: 1px solid #ddd;
}
.content__wrapper_box table tr th:first-child, .content__wrapper_box table tr td:first-child {
	border-left: 1px solid #ddd;
}
.content__wrapper_box table tr th:last-child, .content__wrapper_box table tr td:last-child {
	border-right: 1px solid #ddd;
}
.content__wrapper_box table thead tr th:first-child {
	border-radius: 20px 0 0 0;
}
.content__wrapper_box table thead tr th:last-child {
	border-radius: 0 20px 0 0;
}
.content__wrapper_box table tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.content__wrapper_box table tbody tr:nth-child(even) {
    background: #F8F8F8;
    color: #000;
}

.content__wrapper_box table tbody tr:nth-child(even) a {
    color: #000;
}

.content__wrapper_box table tbody tr:last-child td{
	border-bottom: 1px solid #ddd;
}
.content__wrapper_box table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 20px;
}
.content__wrapper_box table tbody tr:last-child td:last-child {
	border-radius: 0 0 20px 0;
}

.content__wrapper_box table tbody tr:first-child td{
	border-top: 1px solid #ddd;
}
.content__wrapper_box table tbody tr:first-child td:first-child {
	border-radius: 20px 0 0 0;
}
.content__wrapper_box table tbody tr:first-child td:last-child {
	border-radius: 0 20px 0 0;
}

/* FAQ */
.faq_section {
    margin: 30px 0
}

.faq_repeater {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq__box {
    position: relative;
    height: auto;
    overflow: hidden
}

.faq_question {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    background-color: #63646b;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 400;
    transition: .4s
}

.faq_question.active {
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #2e3542
}

.faq__icon {
    width: 16px;
    height: 16px;
    fill: #fff
}

.faq__title {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 15px 0
}

.faq_answer {
    padding: 5px;
    color: #000;
    background: #ccc;
    border-radius: 0 0 6px 6px;
}

.faq_question.activeted {
    border-radius: 6px 6px 0 0;
}

.dropbtn_button_left,
.dropbutton_list_right {
    display: none
}

.dropbutton_list_right:checked+.right__sidebar_wrapper {
    right: 35px
}

.dropbtn_button_left:checked+.left__sidebar_wrapper {
    left: 35px
}

section.faq__box {
    margin: 0;
}

/* FAQ-no AMP */
.panel{
    display: none;
}
.faq_question.activeted + .panel{
    display: block;
}
/* FAQ-no AMP */
/* FAQ */


/* Rating START */

.raiting_content {
    display: flex;
    flex-direction: column;
    gap: 17px
}

.provider__logo_box {
    background-color: #212121;
    padding: 15px;
    width: 100%;
    gap: 20px;
    border-radius: 12px;
    display: grid;
    grid-template: 1fr / 1fr 1fr 1fr 1fr;
    justify-items: center;
}

.logo-box-elem{
	height: 100%;
}

.provider__image_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 285px;
    height: 150px;
    background-color: #181819;
    overflow: hidden;
    border-radius: 10px
}

.order__rating_repeater {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,#e71821 0%,#981319 100%);
    width: 32px;
    height: 41px;
    border-radius: 10px 0
}

.provider__decorate_label {
    position: absolute;
    right: -38px;
    bottom: 20px;
    transform: rotate(-45deg);
    background: linear-gradient(180deg,#de8c11 0%,#e91821 100%);
    display: flex;
    padding: 4px 40px;
    font-size: 12px
}

.raiting__provider_box {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.box_provider_bonuses {
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width: 991px) {
    .provider__logo_box {
        flex-direction: column;
        align-items: center;
        display: flex;
    }
}

.provider__rtp {
    margin-right: 10px;
    display: inline-block
}

.box__provider_name {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    color: #ffb400
}

.thebest_provider {
    padding: 10px;
    background: linear-gradient(23deg,#16c60c8f 0%,#16c60c 100%);
    border-radius: 4px;
    font-size: 12px
}

.provider__preference_box {
    display: grid;
    grid-template: 1fr 1fr/minmax(80px,200px) minmax(50px,70px);
    margin-bottom: 15px
}

.raiting__box_RevievButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #e91821;
    border-radius: 10px;
    padding: 14px 21px;
    position: relative;
    gap: 10px;
    border: 1px solid;
    border-color: #e91821;
    transition: ease .3s all;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
}

.raiting__box_RevievButton:hover{
    background: #ec2953;
    border-color: #fff;
}

.provider__button_preference {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
    margin-right: 20px;
}

.provider__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.provider__image {
    width: 100%;
	height: 100%;
}

.box__bonuses_content {
    margin-right: 30px;
    max-width: 220px
}

.box__provider_bonus {
    color: #e4e4e4;
    font-size: 12px;
    margin-bottom: 5px
}

.box__provider_dep_bonus {
    font-size: 18px;
    font-weight: 700;
    text-align: center; 
}

.box__provider_cache_bonus {
    font-size: 18px;
    font-weight: 700;
    color: #14b30b
}

.btn-wrap-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider__rating_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 18px;
    text-align: center;
}

.box__rating_wrapper {
    display: flex;
    gap: 3px;
    font-size: 22px;
}

.provider__rating_cont{
    font-weight: 700;
}

/* Rating END */

.footer{
    padding: 40px 0;
    background: #111525;
}

.footer__button_box{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer__button_link{
    background: #dd9d3b;
    padding: 10px 20px;
    border-radius: 16px;
    transition: ease .3s background;
    font-weight: 500;
    text-transform: uppercase;
}
.footer__button_link:hover{
	background: #f4b24e;
}

.footer__disclamer, .footer__copy{
    font-size: 16px;
    color: #d1d1d1;
}

.footer__copy{
    text-align: center;
    margin-top: 10px;
}

/* 404 start */

.errore__section{
    text-align: center;
}

.errore__button_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

/* 404 end */

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

@media(max-width:1200px){
    .hero__text_title {
        font-size: 36px;
        line-height: 1.2;
    }
}

@media(max-width:992px){
    .content__wrapper_box table{
        overflow-x: scroll;
        scrollbar-color: #FFB804 #232834;
        scrollbar-width: thin;
        display: block;
    }
    .content__wrapper_box table tbody {
        display: block;
        width: max-content;
    }
}

@media(max-width:492px){
    h1{
        font-size: 32px;
    }
    .header__button_box{
        gap: 5px;
    }
    .header__button_link{
        padding: 10px;
    }
    .header__content{
        gap: 10px;
    }
    section {
    margin: 20px 0;
}
.provider__logo_box{
    gap: 15px;
}

.box__provider_name{
    font-size: 20px;
}

.box__provider_dep_bonus{
    font-size: 16px;
}
}

@media(max-width:380px){
    h1{
        font-size: 24px;
    }
    .provider__image_box{
        width: 225px;
    }
    .logo-box-elem, .logo-box-elem img {
    width: 100%;
    height: 100%;
}
    .login_header_button{
        display: none;
    }
}