@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Regular.woff2') format('woff2'),
	url('../fonts/Inter-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Medium.woff2') format('woff2'),
	url('../fonts/Inter-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
	url('../fonts/Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Bold.woff2') format('woff2'),
	url('../fonts/Inter-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Black.woff2') format('woff2'),
	url('../fonts/Inter-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

.wrapper {
	flex-direction: column;
	display: flex;
	overflow-x: hidden;
	min-height: 100%;
}

form, input, textarea, button {
	font-family: "Inter", sans-serif;
	font-weight: normal;
	font-style: normal;
}

input[type="submit"],
input[type="button"] {
	appearance: none;
	-webkit-appearance: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
}

a img {
	border: none;
}

b, strong {
	font-weight: 700;
}

body {
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #040A2F;
}

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

.header {
	padding: 19px 0;
	border-bottom: 1px solid #151E51;
}

.header-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-btns {
	display: flex;
	align-items: center;
	gap: 23px;
}

#menu-toggle {
	display: none;
}

.top-btns .btn {
	border-radius: 20px;
	padding: 1px;
	height: 40px;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}

.btn-login {
	background-color: #1ECDF8;
}

.btn-login:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s ease-in-out;
}

.btn-login:after {
	background: linear-gradient(270deg, #0064FB 0%, #1ECDF8 100%);
}

.top-btns .btn span {
	padding: 4px 42px;
	border-radius: 20px;
	font-size: 18px;
	height: 100%;
	line-height: 120%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	outline: none;
	color: #ffffff;
	text-decoration: none;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.btn-login span{
	background: #0064FB;
}

.btn-login span::before {
	content: "";
	position: absolute;
	background: linear-gradient(90deg, #0064FB 0%, #1ECDF8 100%);
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: -1;
	transition: opacity 0.3s ease-in-out;
}

.btn-login:hover span::before {
	opacity: 0;
}

.btn-login:hover:after {
	opacity: 0;
}

.btn-register {
	background: #2A3579;
	/*background: linear-gradient(90deg, #0064FB 0%, #1ECDF8 100%);*/
}

.btn-register span{
	background-color: #1B266B;
}

.btn-register:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s ease-in-out;
	background: linear-gradient(90deg, #0064FB 0%, #1ECDF8 100%);
}

.btn-register:hover::after {
	opacity: 1;
}

.btn-register:hover span{
	color: #1ECDF8;
}

.category {
	margin-top: 50px;
	display: flex;
	align-items: center;
	padding: 0 60px;
	overflow-x: auto;
}

.category::-webkit-scrollbar {
	width: 3px;
	height: 3px;
}

.category::-webkit-scrollbar-thumb {
	background: #6D7EC2!important;
	border-radius: 3px;
}

.category::-webkit-scrollbar-track {
	background: rgba(109, 126, 194, 0.2);
}

.category-item {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #6D7EC2;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.3s ease-in-out;
	position: relative;
	white-space: nowrap;
	padding: 19px 14px 0;
}

.category-item.active {
	color: #ffffff;
}

.category-item.active:before {
	opacity: 0;
}

.category-item.active:after {
	opacity: 1;
}

.category-item:hover {
	color: #ffffff;
}

.category-item:hover:after {
	opacity: 1;
}

.category-item:hover:before {
	opacity: 0;
}

.category-item:before {
	content: "";
	background-size: cover;
	width: 15px;
	height: 14px;
	position: absolute;
	margin: 0 auto;
	top: 0;
	transition: opacity 0.3s ease-in-out;
}

.category-item:after {
	content: "";
	background-size: cover;
	width: 15px;
	height: 14px;
	position: absolute;
	margin: 0 auto;
	top: 0;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.category .category-item:first-child:before {
	background-image: url("../img/icon_category_all.svg");
}

.category .category-item:first-child:after {
	background-image: url("../img/icon_category_all_hover.svg");
}

.category-all:before {
	background-image: url("../img/icon_category_all.svg");
}

.category-all:after {
	background-image: url("../img/icon_category_all_hover.svg");
}

.category .category-item:nth-child(2):before,
.category .category-item:nth-child(7):before{
	background-image: url("../img/icon_category_best_slots.svg");
}

.category .category-item:nth-child(2):after,
.category .category-item:nth-child(7):after {
	background-image: url("../img/icon_category_best_slots_hover.svg");
}


.category .category-item:nth-child(3):before,
.category .category-item:nth-child(8):before {
	background-image: url("../img/icon_category_new_slots.svg");
}

.category .category-item:nth-child(3):after,
.category .category-item:nth-child(8):after {
	background-image: url("../img/icon_category_new_slots_hover.svg");
}

.category .category-item:nth-child(4):before,
.category .category-item:nth-child(9):before {
	background-image: url("../img/icon_category_free_slots.svg");
}

.category .category-item:nth-child(4):after,
.category .category-item:nth-child(9):after {
	background-image: url("../img/icon_category_free_slots_hover.svg");
}

.category .category-item:nth-child(5):before,
.category .category-item:nth-child(10):before {
	background-image: url("../img/icon_category_777.svg");
	width: 14px;
	height: 14px;
}

.category .category-item:nth-child(5):after,
.category .category-item:nth-child(10):after {
	background-image: url("../img/icon_category_777_hover.svg");
	width: 14px;
	height: 14px;
}

.category .category-item:nth-child(6):before,
.category .category-item:nth-child(11):before {
	background-image: url("../img/icon_category_year.svg");
}

.category .category-item:nth-child(6):after,
.category .category-item:nth-child(11):after {
	background-image: url("../img/icon_category_year_hover.svg");
}

.main {
	padding-bottom: 50px;
}

.main-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-top: 33px;
}

.main-filters {
	width: 302px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 19px;
}

.block-filter {
	min-height: 58px;
	background-color: #071041;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid #151E51;
}

.block-filter-top {
	height: 58px;
	display: flex;
	align-items: center;
	padding: 0 43px 0 48px;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	cursor: pointer;
	position: relative;
}

.block-filter-top:before {
	content: "";
	background-image: url("../img/icon_category_all_hover.svg");
	width: 15px;
	height: 14px;
	background-size: cover;
	position: absolute;
	margin: auto;
	left: 18px;
}

.block-filter-top:after {
	content: "";
	background-image: url("../img/icon_arrow.svg");
	width: 12px;
	height: 14px;
	background-size: cover;
	position: absolute;
	margin: auto;
	right: 15px;
	transition: all 0.3s ease-in-out;
}

.block-filter.active .block-filter-top:after {
	transform: rotate(90deg);
}

.check_in {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	width: 100%;
}

.check_in label {
	font-size: 15px;
	color: #6D7EC2;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 16px;
}

.check_in label, .check input {
	cursor: pointer;
}

.check_in input[type="radio"],
.check_in input[type="checkbox"] {
	display: none;
}

.check_in input[type="checkbox"] + .check_copy {
	width: 14px;
	height: 14px;
	border-radius: 2px;
	border: 1px solid #6D7EC2;
	cursor: pointer;
	display: inline-block;
	flex-shrink: 0;

	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.check_in input[type="checkbox"]:checked + .check_copy {
	background-image: url("../img/icon_check.svg");
	border-color: #0064FB;
	background-color: #0064FB;
}


.block-filter-body {
	padding: 18px;
	max-height: 210px;
	overflow: hidden;
	overflow-y: auto;
	margin-right: 12px;
	display: none;
}

.block-filter-body::-webkit-scrollbar {
	width: 3px;
}

.block-filter-body::-webkit-scrollbar-thumb {
	background: #6D7EC2!important;
	border-radius: 3px;
}

.block-filter-body::-webkit-scrollbar-track {
	background: rgba(109, 126, 194, 0.2);
}

.list-filter {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cards-inners {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
}

.card-slot {
	display: flex;
	background-color: #151E51;
	border-radius: 15px;
	padding: 1px;
	max-width: 230px;
	width: calc(25% - 15px);
	position: relative;
	flex-shrink: 0;
}

.card-slot:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 15px;
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s ease-in-out;
	background: linear-gradient(270deg, #0064FB 0%, #1ECDF8 100%);
}

.card-slot:hover::after {
	opacity: 1;
}

.card-slot:hover .card-slot-media:after{
	opacity: 1;
}

.card-slot:hover .btn-play-demo {
	opacity: 1;
}

.card-slot:hover .adults-only {
	border-top-color: transparent;
}

.slot-inner {
	padding: 17px;
	border-radius: 15px;
	background-color: #071041;
	transition: all 0.3s ease-in-out;
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
	display: flex;
	overflow: hidden;
	flex-direction: column;
}

.card-slot-media {
	overflow: hidden;
	height: 127px;
	border-radius: 15px;
	position: relative;
}

.card-slot-media:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(7, 16, 65, 0.62);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 0.3s  ease-in-out;
}

.btn-play-demo {
	position: absolute;
	height: 34px;
	border-radius: 20px;
	background: #1ECDF8;
	padding: 1px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	color: #ffffff;
	width: fit-content;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	z-index: 2;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.btn-play-demo:after {
	content: "";
	background: linear-gradient(0deg, #0064FB 0%, #1ECDF8 100%);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

.btn-play-demo span {
	position: relative;
	z-index: 3;
	padding: 0 42px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: #0064FB;
	overflow: hidden;
	width: 100%;
	transition: opacity 0.3s ease-in-out;
}

.btn-play-demo span:after {
	content: "";
	background: linear-gradient(90deg, #0064FB 0%, #1ECDF8 100%);
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: -1;
	transition: opacity 0.3s ease-in-out;
}

.btn-play-demo:hover:after {
	opacity: 0;
}

.btn-play-demo:hover span:after {
	opacity: 0;
}

.btn-play-casino {
	position: absolute;
	height: 28px;
	border-radius: 20px;
	background: #F6C000;
	padding: 1px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	color: #ffffff;
	width: fit-content;
	font-size: 11px;
	font-weight: 500;
	text-transform: capitalize;
	z-index: 2;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.btn-play-casino:after {
	content: "";
	background: linear-gradient(180deg, #F6C000 0%, #EE4111 100%);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

.btn-play-casino span {
	position: relative;
	z-index: 3;
	padding: 0 42px;
	width: 100%;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: #F85B30;
	overflow: hidden;
	transition: opacity 0.3s ease-in-out;
}

.btn-play-casino span:after {
	content: "";
	background: linear-gradient(90deg, #EE4111 0%, #F4A803 81%, #F6C000 100%);
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: -1;
	transition: opacity 0.3s ease-in-out;
}

.btn-play-casino:hover:after {
	opacity: 0;
}

.btn-play-casino:hover span:after {
	opacity: 0;
}


.card-slot-media img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.card-slot-body {
	padding: 17px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: auto;
	gap: 8px;
}

.card-slot-title {
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	text-transform: capitalize;
}

.card-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 3px;
}

.provider {
	color: #6D7EC2;
	font-weight: 500;
	font-size: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 150px;
	text-transform: capitalize;
}

.rtp {
	font-size: 11px;
	font-weight: 500;
	color: #ffffff;
	background-color: #0064FB;
	border-radius: 10px;
	text-align: center;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	text-transform: uppercase;
}

.rating {
	font-size: 15px;
	font-weight: 500;
	color: #FFCD19;
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
}

.rating:before {
	content: "";
	background-image: url("../img/star.svg");
	background-size: cover;
	width: 18px;
	height: 17px;
	margin-top: -4px;
}

.adults-only {
	font-size: 15px;
	color: #424E7F;
	padding-top: 8px;
	border-top: 1px solid #151E51;
	text-align: center;
	height: 28px;
	position: relative;
}

.slot-recommendation.card-slot:after {
	background: linear-gradient(270deg, #D0E9A7 0%, #80BF62 100%);
	opacity: 1;
}

.box-recommendation {
	position: absolute;
	top: -11px;
	width: fit-content;
	z-index: 11;
	left: 0;
	right: 0;
	padding: 0 17px;
	margin: 0 auto;
	height: 22px;
	background-color: #71B203;
	border-radius: 10px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 500;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 53px;
}

.pagination a,
.pagination span {
	font-size: 15px;
	min-width: 20px;
	min-height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #6D7EC2;
	text-decoration: none;
}

.pagination a.prev:before, .pagination a.next:before {
	content: "";
	background-repeat: no-repeat;
	width: 20px;
	height: 22px;
	display: inline-block;
}

.pagination a.prev:before {
	background-image: url("../img/icon_arrow_left.svg");
}

.pagination a:hover:before {
	background-position: 0 -22px;
}

.pagination a.next:before {
	background-image: url("../img/icon_arrow_right.svg");
}

.pagination a {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.pagination a:hover,
.pagination span.current {
	color: #ffffff;
}

.footer {
	padding: 46px 0;
	background-color: #020827;
}

.logo-footer {
	margin: 0 auto;
	width: fit-content;
}

.footer-links {
	margin-top: 29px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 19px;
	flex-wrap: wrap;
}

.footer-links a {
	font-size: 18px;
	line-height: 23px;
	color: #FFFFFF;
	text-decoration: none;
	padding: 4px 31px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
	color: #6D7EC2;
}

.footer-description {
	font-size: 15px;
	line-height: 23px;
	text-align: center;
	color: #F1F3F6;
	margin-top: 29px;
}

.footer-logo {
	margin-top: 29px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
}

.main-content {
	width: 100%;
	flex: auto;
}

.filter-buttons {
	justify-self: end;
	margin-bottom: 15px;
	position: relative;
}

.filter-box-rating {
	position: relative;
}

.filter-current {
	height: 46px;
	min-width: 191px;
	border-radius: 10px;
	overflow: hidden;
	padding: 1px;
	background-color: #151E51;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.filter-box-rating .filter-current.open {
	border-radius: 10px 10px 0 0;
}

.filter-box-rating .filter-current.open .btn-filter-current:after {
	transform: rotate(90deg);
}

.btn-filter-current {
	width: 100%;
	height: 100%;
	background-color: #071041;
	padding: 0 21px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
	color: #ffffff;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.filter-current.open .btn-filter-current{
	border-radius: 10px 10px 0 0;
}

.filter-box-rating .btn-filter-current:after {
	content: "";
	background-image: url("../img/icon_arrow.svg");
	background-size: cover;
	width: 12px;
	height: 14px;
	position: absolute;
	right: 21px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 0.3s ease-in-out;
}

.filter-buttons-block {
	display: none;
	position: absolute;
	min-width: 191px;
	top: 100%;
	left: 0;
	z-index: 2;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	border: 1px solid #151E51;
}

.list-box li {
	background-color: #071041;
	height: 38px;
	padding: 0 21px;
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
	color: #ffffff;
	border-bottom: 1px solid #151E51;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
	position: relative;
}

.list-box li.active:after {
	content: "";
	background-image: url("../img/icon_check_blue.svg");
	background-size: cover;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 21px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.non-scroll {
	overflow: hidden;
}

.list-box li:hover {
	background-color: #1B266B;
}

.list-box li:last-child {
	border-bottom: none;
}

.filter-current:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 10px;
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s ease-in-out;
	background: linear-gradient(270deg, #0064FB 0%, #1ECDF8 100%);
}

.filter-current:hover::after {
	opacity: 1;
}

.filter-current.open:hover::after {
	opacity: 0;
}

.filter-box-main {
	display: none;
}

.btn-filter-main {
	display: flex;
	align-items: center;
	position: relative;
	gap: 7px;
}

.btn-filter-main:before {
	content: "";
	background-image: url("../img/icon_filter.svg");
	width: 14px;
	height: 14px;
	display: inline-flex;
}

.filter-box-main .filter-current {
	min-width: 109px;
}

.filter-mob {
	display: none;
}

.filter-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 16px;
}

.filter-header-info {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 500;
	color: #6D7EC2;
	position: relative;
}

.filter-header-info:before {
	content: "";
	background-image: url("../img/icon_filter2.svg");
	width: 14px;
	height: 14px;
}

.icon-close {
	background-image: url("../img/icon_close.svg");
	width: 17px;
	height: 18px;
	cursor: pointer;
}

.breadcrumbs {
	margin-top: 40px;
}

.breadcrumbs-list {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
	color: #ffffff;
}

.breadcrumbs-list li {
	list-style: none;
}

.breadcrumbs-list a, .breadcrumbs-list span.separator {
	color: #6D7EC2;
	text-decoration: none;
}

.breadcrumbs-list a, .breadcrumbs-list span {
	font-size: 16px;
	font-weight: 500;
	display: flex;
}

.breadcrumbs-list span.separator {
	display: flex;
	background-image: url("../img/icon_arrow.svg");
	width: 9px;
	height: 10px;
	background-size: cover;
}

.page-wrapper {
	margin-top: 33px;
}

.page-wrapper-top {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

.page-slot-media {
	max-width: 790px;
	width: 100%;
}

.slot-picture-small {
	width: 98px;
	height: 61px;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s ease-in-out;
}

.slot-picture-small img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.slider-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	height: 420px;
}

.block-swiper-mini {
	position: relative;
}

.swiper-main-mini {
	flex-shrink: 0;
	height: 360px;
	margin: 30px 0;
}

.swiper-main {
	height: 420px;
}

.slot-picture {
	height: 420px;
	width: 100%;
	overflow: hidden;
	border-radius: 15px;
	position: relative;
}

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

.slot-video:after {
	content: "";
	position: absolute;
	border-radius: 15px;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	background-color: rgba(7, 16, 65, 0.62);
}

.slot-picture-small-video {
	position: relative;
}

.slot-picture-small-video:after {
	content: "";
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	background-color: rgba(7, 16, 65, 0.62);
}

.slot-picture-small-video:before {
	content: "";
	background-image: url("../img/icon_play.png");
	width: 14px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}

.slot-picture img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btns-slot {
	position: absolute;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.btns-slot .btn-play-demo {
	display: flex;
	position: relative;
	height: 38px;
	width: 221px;
	font-size: 18px;
	opacity: 1;
}

.btns-slot .btn-play-casino {
	display: flex;
	position: relative;
	height: 38px;
	width: 221px;
	font-size: 18px;
	opacity: 1;
}

.swiper-main-arrow .btn-arrow:after {
	content: "";
}

.swiper-main-arrow .btn-arrow {
	background-image: url("../img/slider_arrow.svg");
	width: 16px;
	height: 14px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.swiper-main-arrow .swiper-button-prev {
	top: 0;
}

.swiper-main-arrow .swiper-button-next {
	top: auto;
	bottom: 0;
	transform: rotate(180deg);
}

.swiper-main-mini .swiper-slide-thumb-active .slot-picture-small {
	border-color: #6FE3FF;
}

.user-rating {
	width: 100%;
}

.box-scale {
	width: 100%;
}

.rating-caption {
	font-size: 24px;
	text-transform: uppercase;
	color: #ffffff;
}

.block-star {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 27px;
}

.block-star .number {
	font-size: 52px;
	font-weight: 900;
	color: #ffffff;
}

.box-list-star {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.list-star {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style-type: none;
}

.list-star li {
	background-image: url("../img/star.svg");
	background-size: cover;
	width: 18px;
	height: 17px;
}

.list-star li.star {
	background-image: url("../img/star.svg");
}

.list-star li.star-empty {
	background-image: url("../img/star_empty.svg");
}

.box-list-star p {
	font-size: 15px;
	line-height: 23px;
	color: #6D7EC2;
}

.block-scale {
	margin-top: 27px;
	display: flex;
	align-items: flex-start;
	width: 100%;
	flex-direction: column;
	gap: 12px;
}

.box-scale-top {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	font-size: 15px;
	line-height: 23px;
	color: #6D7EC2;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.scale-line {
	width: 100%;
	height: 8px;
	border-radius: 5px;
	background-color: #424E7F;
	overflow: hidden;
}

.scale-fill {
	height: 100%;
	border-radius: 5px;
	background-color: #6D7EC2;
}

.block-title {
	margin-top: 33px;
}

.slot-update {
	font-size: 15px;
	line-height: 23px;
	color: #6D7EC2;
}

.block-title h1 {
	font-size: 30px;
	line-height: 35px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 12px;
}

h2 {
	font-size: 24px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
}

h3 {
	font-size: 18px;
	line-height: 23px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
}

.block-content {
	margin-top: 33px;
}

.block-content h2, .block-content h3 {
	margin-top: 33px;
}

.block-content > h2:first-child,
.block-content > h3:first-child,
.block-content > p:first-child{
	margin-top: 0;
}

.block-content p {
	color: #6D7EC2;
	font-size: 18px;
	line-height: 23px;
	margin-top: 30px;
}

.block-content ul, .block-content ol {
	padding-left: 30px;
	margin-top: 30px;
}

.block-content li {
	color: #6D7EC2;
	font-size: 18px;
	line-height: 23px;
	margin-top: 10px;
}

.block-bonuses {
	margin-top: 33px;
}

.box-bonuses {
	margin-top: 33px;
	padding: 2px;
	background: linear-gradient(270deg, #0064FB 0%, #1ECDF8 100%);
	border-radius: 15px;
	overflow: hidden;
	width: fit-content;
}

.box-bonuses-inside {
	padding: 14px 37px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	gap: 88px;
	border-radius: 15px;
	background-color: #030725;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.box-bonuses-inside:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(0, 100, 251, 0.3) 0%, rgba(30, 205, 248, 0) 100%);
}

.bonuses-media {
	overflow: hidden;
	border-radius: 8px;
	height: 108px;
	width: 174px;
}

.bonuses-media img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.info-bonuses {
	font-size: 24px;
	line-height: 26px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 21px;
}

.box-bonuses-inside .btn-play-demo {
	opacity: 1;
	position: relative;
	font-size: 18px;
	height: 38px;
	flex-shrink: 0;
}

.info-bonuses span {
	color: #FFCD19;
}

.block-general-info {
	margin-top: 33px;
}

.block-general-inners {
	margin-top: 33px;
	display: flex;
	align-items: flex-start;
	gap: 105px;
	padding: 21px 0;
}

.list-info {
	list-style-type: none;
}

.list-info li {
	color: #ffffff;
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 16px;
	margin-top: 16px;
}

.list-info li:first-child {
	margin-top: 0;
}

.list-info li span:first-child{
	color: #6D7EC2;
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
}

.block-pros-cons {
	margin-top: 33px;
}

.pros-cons-inners {
	display: flex;
	align-items: stretch;
	gap: 34px;
	margin-top: 33px;
}

.pros-cons-item {
	flex: 1;
	border-radius: 15px;
	overflow: hidden;
	padding: 21px 37px;
	border: 1px solid #9FFB03;
	background-color: #071041;
	position: relative;
	z-index: 0;
}

.pros-cons-item:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.pros-cons-item.pros:after {
	background: linear-gradient(90deg, rgba(113, 178, 3, 0.3) 0%, rgba(113, 178, 3, 0) 100%);
}

.pros-cons-item.cons:after {
	background: linear-gradient(90deg, rgba(248, 91, 48, 0.3) 0%, rgba(248, 91, 48, 0) 100%);
}

.pros-cons-item .pros{
	border-color: #9FFB03;
}

.pros-cons-item .cons{
	border-color: #F85B30;
}

.pros-cons-item .title {
	font-size: 18px;
	line-height: 23px;
	color: #FFFFFF;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	width: fit-content;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	gap: 16px;
}

.pros-cons-item .title:before {
	content: "";
	width: 26px;
	height: 25px;
	background-size: cover;
}

.pros-cons-item.pros .title:before {
	background-image: url("../img/icon_thumbs_up.png");
}

.pros-cons-item.cons .title:before {
	background-image: url("../img/icon_thumbs_down.png");
	width: 25px;
	height: 25px;
}

.pros-cons-item ul {
	margin-top: 16px;
	list-style-type: none;
}

.pros-cons-item ul li {
	font-size: 18px;
	line-height: 23px;
	color: #FFFFFF;
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.pros-cons-item ul li:before {
	content: "+";
	font-size: 18px;
	line-height: 23px;
	color: #FFFFFF;
	font-weight: 500;
}

.pros-cons-item.pros ul li:before {
	content: "+";
	color: #9FFB03;
}

.pros-cons-item.cons ul li:before {
	content: "-";
	color: #EE4111;
}

.block-slider {
	margin-top: 33px;
}

.block-slider-wrap {
	margin-top: 18px;
	position: relative;
}

.block-slider .card-slot {
	display: flex;
	width: 100%;
	max-width: 100%;
	height: 100%;
}

.block-slider .swiper-slots {
	height: 100%;
	padding-top: 15px;
}

.block-slider .swiper-wrapper {
	height: 100%;
	align-items: stretch;
}

.block-slider .swiper-wrapper .swiper-slide {
	height: auto;
}

.swiper-slots-arrow {
	display: flex;
	align-items: center;
	gap: 33px;
	position: absolute;
	right: 0;
	top: -36px;
}

.swiper-slots-arrow .sw-arrow {
	background-image: url("../img/slider_arrow.svg");
	background-size: cover;
	width: 16px;
	height: 14px;
	cursor: pointer;
	position: relative;
	z-index: 5;
}

.swiper-slots-arrow .sw-arrow.swiper-button-slots-prev {
	transform: rotate(270deg);
}

.swiper-slots-arrow .sw-arrow.swiper-button-slots-next {
	transform: rotate(90deg);
}

.d-mob {
	display: none;
}

.block-head .update{
	font-size: 15px;
	line-height: 23px;
	color: #6D7EC2;
}

.block-head h1 {
	font-size: 30px;
	color: #FFFFFF;
	text-transform: uppercase;
	margin-top: 12px;
}

.section-content {
	padding: 50px 0;
}

.section-content .block-content:first-child {
	margin-top: 0;
}

.group-content {
	display: flex;
	align-items: flex-start;
	gap: 47px;
	margin-top: 33px;
}

.group-content .text > h2:first-child,
.group-content .text > h3:first-child,
.group-content .text > p:first-child{
	margin-top: 0;
}

.group-content .media {
	max-width: 600px;
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.group-content .media img{
	border-radius: 15px;
}

.block-content h3 {
	text-transform: none;
}

.section-faq {
	padding: 50px 0;
}


.faq-inners {
	width: 100%;
	margin-top: 33px;
}

.faq-item {
	width: 100%;
	font-size: 18px;
	line-height: 23px;
	color: #ffffff;
	border-radius: 10px;
	background-color: #071041;
	border: 1px solid #151E51;
	overflow: hidden;
	margin-bottom: 33px;
	transition: all 0.3s ease-in-out;
}

.faq-item:last-child {
	margin-bottom: 0;
}

.faq-item .question {
	width: 100%;
	padding: 22px 70px 22px 30px;
	font-weight: 700;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-item .question:after {
	content: "";
	position: absolute;
	width: 12px;
	height: 14px;
	right: 30px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url("../img/icon_arrow.svg");
	background-repeat: no-repeat;
	transition: all 0.3s ease-in-out;
}

.faq-item:hover, .faq-item.active {
	border-color: #0064FB;
}

.faq-item.active .question:after {
	transform: rotate(90deg);
}


.faq-item .answer {
	display: none;
	width: 100%;
	color: #6D7EC2;
	padding: 0 70px 22px 30px;
}

.faq-item .answer ul, .faq-item .answer ol {
	padding-left: 20px;
}

.pum-content iframe {
	width: 1000px;
	border-radius: 10px;
	display: block;
	overflow: hidden;
}

.pum-theme-331 .pum-container, .pum-theme-lightbox .pum-container {
	padding: 0!important;
	border-radius: 10px!important;
	border: 0!important;
}

.no-results {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
}

.icon-no-result {
	background-image: url("../img/icon_no_results.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 256px;
	height: 313px;
	margin: 0 auto;
}

.no-results p{

}

.page-error-404 .btn {
	position: relative;
}

.page-error-404 {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 112px 0;
}

.btn-home {
	padding: 4px 42px;
	border-radius: 20px;
	height: 38px;
	font-size: 18px;
	text-transform: capitalize;
	line-height: 120%;
	border: 1px solid #2A3579;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	outline: none;
	color: #ffffff;
	text-decoration: none;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	z-index: 1;
	background-color: #1B266B;
	margin-top: 33px;
}

.btn-home:hover {
	border-color: #0064FB;
	color: #1ECDF8;
}

@media screen and (max-width: 1550px) {
	.page-error-404 {
		padding: 50px 0;
	}
}

@media screen and (max-width: 1350px) {
	.main-filters {
		width: 285px;
	}
	.group-content .media {
		max-width: 500px;
	}

}

@media screen and (max-width: 1200px) {
	.card-slot {
		width: calc(33% - 11px);
		max-width: 100%;
	}

	.page-slot-media {
		max-width: 710px;
	}

	.page-wrapper-top {
		gap: 20px;
	}

	.box-scale-top {
		font-size: 13px;
		line-height: 18px;
	}

	.box-bonuses-inside {
		gap: 50px;
	}

	.info-bonuses {
		font-size: 20px;
		line-height: 23px;
	}

	.pum-content iframe {
		width: 780px;
		height: 500px;
	}

	.icon-no-result {
		width: 126px;
		height: 154px;
	}
}

@media screen and (max-width: 1023px) {
	#menu-toggle {
		margin-left: auto;
	}

	.profile {
		background-image: url("../img/icon_account.svg");
		width: 24px;
		height: 24px;
		cursor: pointer;
	}

	#menu-toggle.active .profile {
		background-position: 0 -24px;
	}

	#menu-toggle span {
		display: block;
		background: #ffffff;
		border-radius: 2px;
		transition: .25s ease-in-out;
	}

	.overlay {
		position: absolute;
		background: #071041;
		top: 47px;
		right: 0;
		z-index: 15;
		border: 1px solid #151E51;
		border-bottom-left-radius: 15px;
		height: fit-content;
		transform: translateX(100%);
		-webkit-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
		overflow: hidden;
		display: block;
		padding: 14px 31px;
	}

	.top-btns .btn {
		min-width: 131px;
		height: 30px;
	}

	.top-btns .btn span {
		font-size: 12px;
		padding: 4px 12px;
		width: 100%;
	}

	.scroll {
		width: 100%;
		height: 100%;
		display: flex;
		overflow: hidden;
		overflow-y: scroll;
		flex-direction: column;
	}

	.overlay.open {
		transform: translateX(0);
	}

	.top-btns {
		gap: 10px;
		flex-direction: column;
	}

	#menu-toggle {
		display: flex;
		z-index: 99;
	}

	.category {
		margin-top: 24px;
		padding: 0 20px;
	}

	.category-item {
		font-size: 12px;
	}

	.card-slot {
		width: calc(50% - 10px);
	}

	.header {
		padding: 11px 0;
	}

	.footer-links {
		margin-top: 15px;
		flex-direction: column;
	}

	.footer-description {
		font-size: 12px;
		line-height: 17px;
		margin-top: 15px;
	}

	.footer-logo {
		margin-top: 15px;
		gap: 26px;
	}

	.footer {
		padding: 24px 0;
	}

	.breadcrumbs {
		margin-top: 24px;
	}

	.breadcrumbs-list a, .breadcrumbs-list span {
		font-size: 12px;
	}

	.page-wrapper {
		margin-top: 20px;
	}

	.page-wrapper-top {
		gap: 20px;
		flex-direction: column;
		align-items: center;
		margin-top: 20px;
	}

	.d-desk {
		display: none;
	}

	.d-mob {
		display: block;
	}

	.block-title {
		margin-top: 20px;
	}

	.slot-update {
		font-size: 12px;
	}

	.block-title h1 {
		font-size: 25px;
		line-height: 30px;
	}

	.box-bonuses-inside {
		gap: 20px;
		flex-direction: column;
		align-items: center;
		padding: 26px 23px;
	}

	.box-bonuses {
		margin: 15px auto 0;
	}

	h2 {
		font-size: 18px;
		line-height: 23px;
	}

	.block-content h2, .block-content h3 {
		margin-top: 20px;
	}

	.block-star {
		margin-top: 15px;
	}

	.box-list-star p {
		font-size: 12px;
		line-height: 23px;
	}

	.block-scale {
		margin-top: 15px;
	}

	.block-content p {
		font-size: 15px;
		line-height: 21px;
		margin-top: 15px;
	}

	.block-content li {
		font-size: 15px;
		line-height: 21px;
	}

	.block-pros-cons {
		margin-top: 20px;
	}

	.group-content {
		align-items: center;
		gap: 15px;
		flex-direction: column;
	}

	.group-content .media img {
		margin: 0 auto;
	}

	.pum-content iframe {
		width: 600px;
		height: 450px;
	}
}

@media screen and (max-width: 767px) {
	.footer-logo img {
		height: 24px;
	}

	.main-filters {
		transform: translateX(-110%);
		position: absolute;
		top: -24px;
		left: 0;
		transition: all 0.3s ease-in-out;
		z-index: 15;
		background-color: #071041;
		gap: 0;
	}

	.main-filters.active {
		transform: translateX(-0%);
	}

	.block-filter {
		border-radius: 0;
		border: 0;
		border-bottom: 1px solid #151E51;
	}

	.block-filter:last-child {
		border-bottom: 0;
	}

	.filter-buttons {
		display: flex;
		align-items: center;
		gap: 10px;
		justify-self: flex-start;
	}

	.filter-box-main {
		display: block;
	}

	.filter-current {
		height: 30px;
		min-width: 160px;
	}

	.filter-buttons-block {
		min-width: 160px;
	}

	.card-slot {
		border-radius: 11px;
	}

	.slot-inner {
		padding: 11px 8px;
	}

	.card-slot-media {
		height: 127px;
		border-radius: 10px;
	}

	.card-slot-body {
		padding: 11px 0;
		gap: 5px;
	}

	.pagination {
		justify-content: center;
		gap: 14px;
		margin-top: 20px;
	}

	.main {
		padding-bottom: 24px;
	}

	.check_in label {
		font-size: 13px;
		gap: 14px;
	}

	.list-filter {
		gap: 14px;
	}

	.block-filter-body {
		padding: 16px;
	}

	.block-filter-top {
		padding: 0 40px 0 44px;
	}

	.block-filter-top:before {
		left: 16px;
	}

	.filter-mob {
		display: block;
	}

	.block-title h1 {
		font-size: 22px;
		line-height: 23px;
	}

	.box-scale-top {
		font-size: 12px;
		line-height: 23px;
	}

	.block-content p {
		font-size: 12px;
		line-height: 17px;
		margin-top: 15px;
	}

	.block-content ul, .block-content ol {
		margin-top: 15px;
	}

	.block-content li {
		font-size: 12px;
		line-height: 17px;
		margin-top: 5px;
	}

	.box-bonuses-inside .btn-play-demo {
		font-size: 13px;
		height: 32px;
	}

	.box-bonuses-inside .btn-play-demo span {
		padding: 0 42px;
	}

	.block-general-info {
		margin-top: 20px;
	}

	.block-general-inners {
		margin-top: 20px;
		gap: 14px;
		padding: 0;
	}

	.list-info {
		flex: 1;
	}

	.list-info li span:first-child {
		font-size: 13px;
		line-height: 23px;
	}

	.pros-cons-inners {
		flex-direction: column;
		gap: 34px;
		margin-top: 15px;
	}

	.pros-cons-item {
		padding: 21px 25px;
	}

	.pros-cons-item .title {
		font-size: 14px;
		line-height: 23px;
	}

	.pros-cons-item ul li {
		font-size: 14px;
		line-height: 23px;
	}

	.block-slider {
		margin-top: 20px;
	}

	.block-slider-wrap {
		margin-top: 0;
		position: relative;
	}

	.swiper-slots-arrow {
		position: static;
		justify-content: center;
		margin-top: 15px;
		top: -36px;
	}

	.slider-wrapper {
		display: block;
		height: auto;
	}

	.swiper-main {
		height: auto;
	}

	.swiper-main-mini {
		flex-shrink: 0;
		height: auto;
		margin: 20px;
	}

	.slot-picture-small {
		width: auto;
	}

	.swiper-main-arrow .swiper-button-prev {
		top: 0;
		left: 0;
		right: auto;
		bottom: 0;
		margin: auto;
		transform: rotate(-90deg);
	}

	.swiper-main-arrow .swiper-button-next {
		top: 0;
		right: 0;
		left: auto;
		bottom: 0;
		margin: auto;
		transform: rotate(90deg);
	}

	.slot-picture {
		height: 350px;
	}

	.rating-caption {
		font-size: 18px;
	}

	.page-wrapper-top {
		gap: 0;
	}

	.block-head .update {
		font-size: 12px;
		line-height: 22px;
	}

	.block-head h1 {
		font-size: 22px;
		line-height: 23px;
	}

	.block-content {
		margin-top: 20px;
	}

	.block-bonuses {
		margin-top: 20px;
	}

	.section-faq {
		padding: 24px 0;
	}

	.section-content {
		padding: 24px 0;
	}

	.faq-inners {
		margin-top: 15px;
	}

	.faq-item {
		font-size: 12px;
		line-height: 17px;
		margin-bottom: 15px;
	}

	.faq-item .answer {
		padding: 0 70px 15px 30px;
	}

	.faq-item .question {
		padding: 15px 70px 15px 30px;
	}

    .btn-home {
		padding: 4px 32px;
		font-size: 16px;
		margin-top: 20px;
	}

	.page-error-404 {
		padding: 20px 0;
	}

	.pum-theme-331 .pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close {
		right: 0!important;
		top: 0!important;
	}

	.pum-theme-331 .pum-container, .pum-theme-lightbox .pum-container {
		width: 100% !important;
		top: 0!important;
	}

	.pum-content iframe {
		width: 100%;
		height: 100vh;
	}

	.no-results {
		font-size: 15px;
	}

	.icon-no-result {
		width: 76px;
		height: 93px;
	}
}

@media screen and (max-width: 550px) {
	.card-slot-media {
		height: 82px;
	}

	.card-slot-title {
		font-size: 12px;
	}

	.provider {
		font-size: 10px;
	}

	.rtp {
		font-size: 8px;
		height: 15px;
	}

	.rating {
		font-size: 9px;
	}

	.rating:before {
		width: 12px;
		height: 12px;
		margin-top: -2px;
	}

	.adults-only {
		font-size: 10px;
		padding-top: 8px;
		height: 18px;
	}

	.btn-play-demo {
		height: 22px;
		border-radius: 13px;
		font-size: 10px;
	}

	.btn-play-demo span {
		padding: 0 27px;
		border-radius: 13px;
	}

	.btn-play-casino {
		height: 18px;
		border-radius: 13px;
		font-size: 8px;
	}

	.btn-play-casino span {
		padding: 0 27px;
		border-radius: 13px;
	}

	.box-recommendation {
		top: -6px;
		padding: 0 11px;
		height: 14px;
		border-radius: 10px;
		font-size: 8px;
	}

	.list-info li {
		font-size: 10px;
		gap: 5px;
		margin-top: 10px;
	}

	.list-info li span:first-child {
		font-size: 10px;
	}

	.slot-picture-small {
		height: 41px;
	}

	.slot-picture {
		height: 200px;
	}

	.btns-slot .btn-play-demo {
		height: 32px;
		width: 180px;
		font-size: 13px;
	}

	.btns-slot .btn-play-casino {
		height: 32px;
		width: 180px;
		font-size: 13px;
	}

	.btns-slot {
		gap: 9px;
	}

	.category {
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}
}
