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


@font-face {
	font-family: 'Benzin-Bold';
	src: url('../fonts/benzin-bold.eot'); /* IE 9 Compatibility Mode */
	src: url('../fonts/benzin-bold.eot?#iefix') format('embedded-opentype'), /* IE < 9 */
		url('../fonts/benzin-bold.woff2') format('woff2'), /* Super Modern Browsers */
		url('../fonts/benzin-bold.woff') format('woff'), /* Firefox >= 3.6, any other modern browser */
		url('../fonts/benzin-bold.ttf') format('truetype'), /* Safari, Android, iOS */
		url('../fonts/benzin-bold.svg#benzin-bold') format('svg'); /* Chrome < 4, Legacy iOS */
}

*{
	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: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
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;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/

body {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #fff;
    background-color: #0B0A0A;
    position: relative;
    overflow-x: hidden;
}

section{
	margin: 20px 0;
}

.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 25px;
}

.button-fill{padding:8px 30px;background:linear-gradient(-14deg,#560f3b,#753a88);border-radius:10px;max-width:80%;width:100%;box-shadow: 2px 2px 2px #c3730c;}

.header {
    background-color: rgb(45 45 45 / 10%);
}

.header__content {
    display: flex;
    gap: 40px;
    padding: 20px 0;
}

.logo__link {
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo__link p{
	font-size: 18px;
	font-family: 'Benzin-Bold';
	text-transform: uppercase;
}

.logo__link p span{
	color: #EFAE29;
}

.search__form label{
	display: none;
}
.search__form{
	position: relative;
    width: 100%;
}

.search__form button {
    position: absolute;
    top: 25%;
    left: 10px;
    margin: 0;
    z-index: 3;
    background-color: #EFAF2A;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    border: none;
}

.search__form button::before{
	content: '';
	position: absolute;
	top: 7px;
	left: 7px;
	width: 17px;
	height: 17px;
	background-image: url(/wp-content/uploads/2024/12/search_icon.svg);
	background-repeat: no-repeat;
}

.search__form input {
    padding: 23px 34px 23px 54px;
    width: 100%;
    background-color: #181819;
    border: none;
    border-radius: 10px;
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.2;
}

.search__form input::placeholder{
	color: #7E7E7E;
	font-weight: 500;
	font-size: 10px;
	line-height: 1.2;
}

.burger_box{
	display: none;
}

.search__icon_button_display{
    display: none;
}




.sidebar__wrapper {
    display: flex;
    gap: 10px;
}

.sidebar__box {
    width: 240px;
    position: relative;
    z-index: 3;
}

.sidebar__content {
    width: 240px;
    position: sticky;
    margin-top: 20px;
    top: 20px;
    padding-right: 10px;
    height: 450px;
    z-index: 1;
}

.sidebar__content_list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #0F0F0F;
}

.sidebar__content_list li {
    position: relative;
}

.sidebar__content_list li a {
    color: #454550;
    display: inline-flex;
    padding: 14px 5px;
    position: relative;
    z-index: 2;
    width: 90%;
    align-items: center;
    gap: 5px;
}

.sidebar__content_list li a img{
    width: 25px;
    height: 25px;
}

.sidebar__content_list li:hover {
    background-image: linear-gradient(90deg, #DE8B0F 0%, #F3B730 100%);
    border-radius: 0 10px 10px 0;
}

.sidebar__content_list li:hover a{
    color: #fff;
}

.sidebar__content_list li:nth-child(n+3)::after {
    content: '';
    position: absolute;
    top: 45%;
    right: 14px;
    width: 11px;
    height: 6px;
    background-image: url(/wp-content/uploads/2024/12/arrow_down.png);
    background-repeat: no-repeat;
    transform: rotate(270deg);
}

.sidebar__content_list li .sub-menu{
    display: none;
    opacity: 0;
    transition: ease .5s opacity;
    width: 100%;
    border-radius: 10px;
}

.sidebar__content_list li:hover .sub-menu {
    position: absolute;
    display: block;
    opacity: 1;
    top: -130%;
    left: 230px;
    background-color: #0F0F0F;
}

.sidebar__content_list .sub-menu li::after {
    content: '';
    position: absolute;
    top: 45%;
    right: 14px;
    width: 11px;
    height: 6px;
    background-image: url(/wp-content/uploads/2024/12/arrow_down.png);
    background-repeat: no-repeat;
    transform: rotate(270deg);
}








.main{
	width: 100%;
}

.slider picture img{
	border-radius: 10px !important;
}

/* provider_repiater START */
.raiting_content {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.provider__logo_box {
    background-color: #0F0F0F;
    border-radius: 20px;
    padding: 15px;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.provider__image_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 284px;
    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, #DE8C11 0%, #F2B630 100%);
    width: 32px;
    height: 41px;
    border-radius: 16px 0;
}

.provider__decorate_label {
    position: absolute;
    right: -38px;
    bottom: 20px;
    transform: rotate(-45deg);
    background: linear-gradient(180deg, #DE8C11 0%, #F2B630 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;
    flex-wrap: wrap;
}

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

.box__provider_name{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
}

.thebest_provider {
    padding: 10px;
    background-color: #FFA425;
    border-radius: 10px;
    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: linear-gradient(95.47deg, #DA8207 -0.22%, #FBC63A 116.42%);
    border-radius: 14px;
    padding: 17px 21px;
    position: relative;
	gap: 10px;
}

.provider__button_preference {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.provider__description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: auto;
}

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

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

.provider__name_box {
    padding-left: 29px;
    max-width: 190px;
    font-size: 12px;
    width: 100%;
    border-left: 2px solid #1B1C2D;
	color: #E4E4E4;
}
/* provider_repiater END */

/* CONTENT START */
#more {display: none;}

.content__section h1{
	font-weight: 700;
	font-size: 32px;
	color: #F5BA31;
	margin: 15px 0;
}

.content__section h2{
	font-weight: 700;
	font-size: 28px;
	color: #F5BA31;
	margin: 15px 0;
}

.content__section h3{
	font-weight: 700;
	font-size: 24px;
	color: #F5BA31;
	margin: 15px 0;
}

.content__section p, .content__section span, .content__section ul, .content__section li{
	color: #7E7E7E;
	font-weight: 500;
	margin: 15px 0;
	list-style: inside;
}

.content__section ul.post__link_box, .content__section ul.post__link_box li{
	list-style: none;
	margin: 0;
}

.content__section li{
	padding-left: 5px;
}

button#myBtn {
    color: #EEAE2B;
    background-color: transparent;
    text-decoration: underline;
}

.content__blur.activeted {
    filter: blur(15px);
}
.content__blur {
    transition: ease .5s filter;
}

/* CONTENT END */

/* About section start */

.section__about__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.section__about_content {
    display: grid;
    grid-template: 1fr / 1fr 1fr 1fr;
    gap: 15px;
}

.about__title_image_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 10px;
    gap: 30px;
}

.about__box_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.section__about_box {
    padding: 8px;
    background-color: #0F0F0F;
    border-radius: 14px;
}

.about__images_container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 40px;
    height: 40px;
    flex: 1 0 40px;
    background: linear-gradient(180deg, #DD880C 0%, #F5BA31 100%);
    border-radius: 10px;
}

.about__image {
    width: 30px;
}

.abour_description{
	color: #7E7E7E;
	font-size: 10px;
}

/* About section end */

/* FAQ START */
.faq_title{
	margin-bottom: 30px;
	font-size: 32px;
	font-weight: 700;
}

.faq_content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion {
	background-color: #0F0F0F;
	color: #fff;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 20px;
	font-weight: 700;
	transition: 0.4s;
	display: flex;
	justify-content: space-between;
	align-items: center;
    gap: 30px;
}
  
.accordion_arrow{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #F5BA31;
	background-color: #F5BA31;
	border-radius: 10px;
	transition: ease all .4s;
}

.accordion_arrow img{
	width: 10px;
	transition: ease all .4s;
}

.accordion:hover {
	background-color: #161616; 
}

.active{
	background-color: #0F0F0F; 
}
  
.panel {
	padding: 0 18px;
	background-color: #0F0F0F;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	color: #7E7E7E;
}

.accordion.active .accordion_arrow {
	background-color: transparent;
}

.accordion.active .accordion_arrow img{
	transform: rotate(180deg);
}

.accordion.active + .panel{
	padding: 5px 18px;
}

/* FAQ END */

.slider__container {
    position: relative;
    width: 100%;
    height: 360px;
}

.slider__container_image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.8);
    border-radius: 12px;
    object-fit: cover;
}

.slider__text {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.slider__text_title {
    font-family: 'Roboto', 'Arial';
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

.slider__text_pretitle {
    text-transform: uppercase;
    color: #7b7b7b;
}

.post__link_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post__link_box a {
    display: inline-block;
    width: fit-content;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.post__link_box a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 6px;
    height: 6px;
    background-color: #F5BA31;
    border-radius: 100%;
}

/* FOOTER START */
.footer{
	background-color: #0F0F0F;
	padding: 40px 0;
}

.footer__logo{
	margin-bottom: 22px;
}

.footer__copyright{
	font-size: 16px;
	color: #EDAA26;
}

.footer__decorater_line{
	border: 2px solid #483D28;
	margin: 7px 0;
}

.footer_desclemmer{
	font-size: 16px;
	color: #483D28;
}

/* FOOTER END */

/* TABLE START */
.site-table {
    background: #272828;
    border-radius: .4em;
    color: #fff;
    margin: 1em 0;
    min-width: 80%;
    overflow: hidden;
    width: 100%;
}

.site-table tr {
    border-color: #2c2e3b;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.site-table td:first-child {
    padding-top: .5em;
}
.site-table td, .site-table th {
    background: #16171e;
    padding: 10px;
}

.site-table td {
    display: block;
    margin: .5em 1em;
}

.site-table td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
}


.site-table td:before {
    content: attr(data-th) ": ";
    display: inline-block;
    font-weight: 700;
    margin-right: 20px;
    text-align: left;
    width: 6.5em;
}

.site-table th {
    display: none;
    margin: .5em 1em;
}

@media (min-width: 768px) {
    .site-table td:first-child, .site-table th:first-child {
        padding-left: 0;
    }
	.site-table td:before{
		display:none;
	}
}
@media (min-width: 768px) {
    .site-table td, .site-table th {
        border-radius: 5px;
        display: table-cell;
        padding: 1em !important;
        text-align: center;
    }
}
/* TABLE END */



@media(max-width:1200px){
    .section__about_content{
        grid-template: 1fr / 1fr 1fr;
    }
}

@media(max-width:992px){
    .section__about_content{
        grid-template: 1fr / 1fr;
    }
    .raiting__provider_box{
        margin-bottom: 25px;
    }
    .provider__name_box{
        padding: 0;
        border: none;
    }
    .box_provider_bonuses{
        justify-content: start;
        gap: 25px;
    }
    .provider__image_box{
        width: 100%;
    }
}

@media(max-width:768px){
    .sidebar__content_list li:hover .sub-menu {
        position: absolute;
				left: unset;
        top: 45px;
        z-index: 4;
        right: 0;
        width: 80%;

    }
    .sidebar__box {
        position: absolute;
        top: 95px;
        left: -400px;
        z-index: 30;
        height: 100%;
        transition: ease all .4s;
    }
    .mobile_display_logo p{
        display: none;
    }
    .search__form button{
        right: 10px;
        left: inherit;
    }
    .search__form input{
        padding: 23px;
    }
    .provider__button_preference{
        width: 100%;
    }
    .search__form {
        position: relative;
        width: 100%;
        margin-right: 35px;
    }

    .sidebar__box.activeted {
        left: inherit;
        right: 0;
        width: 95%;
    }

    .sidebar__content{
        width: 100%;
        padding: 0;
    }

    .burger_box {
        display: flex;
        position: absolute;
        top: 35px;
        right: 15px;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #DD880C 0%, #F5B931 100%);
        border-radius: 100%;
    }

.mobile__burger{
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #fff;
    display: block;
    top: 50%;
}

span.mobile__burger.activeted {
    height: 0;
}

.mobile__burger:before, .mobile__burger::after{
    content:'';
    position: absolute;
    display: block;
    width: 16px;
    height: 2px;
    background-color: #fff;
    transition: ease all .3s;
}

.mobile__burger:before{
    top: 5px;
}

.mobile__burger::after{
    bottom: 5px;
}

span.mobile__burger.activeted:before {
    transform: rotate(45deg);
    top: 0;
}

span.mobile__burger.activeted::after {
    transform: rotate(-45deg);
    top: 0;
}

.body.activeted {
    overflow: hidden;
}

.main-navigation {
    position: absolute;
    top: -200px;
    width: 100%;
    right: 0;
    z-index: -999;
    justify-content: right;
    align-items: flex-end;
    display: flex;
	background-color: #1A1B27;
    transition: ease all .5s;
}
.sidebar__content_list li:hover {
    border-radius: 10px 0 0 10px;
}

.sidebar__content_list {
    background-color: #0F0F0F;
    padding: 20px 0 20px 20px;
    border-radius: 10px 0 0 10px;
}

.slider img{
    filter: brightness(0.5);
}

}

@media(max-width:492px){
    .container{
        padding: 0 15px;
    }
    .accordion_arrow {
        width: 26px;
        height: 26px;
        padding: 12px;
        align-self: start;
    }
    .search__form{
        position: absolute;
        top: -400px;
		width: 95%;
    }

    .search__icon_button_display{
    display: flex;
    position: absolute;
    top: 26px;
    right: 55px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #DD880C 0%, #F5B931 100%);
    border-radius: 100%;  
    }
    .burger_box{
        top: 26px;
    }

    .search__form.active_search {
        top: 75px;
        z-index: 5;
    }

    .about__box_title{
        font-size: 18px;
    }
    .about__title_image_box{
        gap: 15px;
    }
    .slider__text{
        padding: 20px;
    }
    .slider__text h2{
        font-size: 32px;
    }
    .slider__container {
        height: 220px;
    }
}