@viewport {
	width: device-width;
	zoom: 1;
}

html,
body {
	font-family: 'Open Sans', sans-serif !important;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1;
}

a {
	text-decoration-skip-ink: auto;
}

a[href^='tel'] {
	color: inherit;
	text-decoration: none;
}

button {
	outline: 0;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

q {
	display: inline;
	font-style: italic;
}

q:before {
	content: '"';
	font-style: normal;
}

q:after {
	content: '"';
	font-style: normal;
}

textarea,
input[type='text'],
input[type='button'],
input[type='submit'],
input[type='reset'],
input[type='search'],
input[type='password'] {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}

input[type='search'] {
	-webkit-appearance: textfield;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	padding: 2px;
}

big {
	font-size: 120%;
}

small,
sup,
sub {
	font-size: 80%;
}

sup {
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

dd {
	margin-left: 20px;
}

kbd,
tt {
	font-family: courier;
	font-size: 12px;
}

ins {
	text-decoration: underline;
}

del,
strike,
s {
	text-decoration: line-through;
}

dt {
	font-weight: bold;
}

address,
cite,
var {
	font-style: italic;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

/* colours */

.cta-color-1 {
	background-color: #157f59;
	color: #fff !important;
}

.cta-color-2 {
	background-color: white;
	color: #9b9b9b;
	border: 1px solid #ececec;
	border-left: 5px solid #ececec;
}

.cta-color-3 {
	background-color: #ffc300;
	color: #1a3986;
}

/* global */

.sticky-top {
	z-index: 100 !important;
}

.cta {
	display: block;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 14px;
	z-index: 8;
	position: relative;
}

blockquote:last-child {
	margin-bottom: 20px !important;
}

blockquote p {
	margin: 0;
}

blockquote {
	margin: 0 !important;
	background-color: #fff6da;
	padding: 8px 14px;
}

.cta-text-small {
	font-size: 13px;
}

.cta-text-medium {
	font-size: 15px;
}

.cta-text-large {
	font-size: 16px;
}

h1 {
	font-size: 2.1rem;
	font-weight: 600;
}

.container.container-smaller {
	max-width: 990px;
}

.d-pc {
	display: block;
}

@media only screen and (max-width: 991px) {
	.d-pc {
		display: none !important;
	}

	.author-text .d-inline-block a i {
		font-size: 18px;
	}
}

.msg-green {
	color: white;
	background-color: #188961;
}

.msg-red {
	color: white;
	background-color: #dc3545;
}

.msg-system {
	position: fixed;
	bottom: 0;
	right: 0;
	margin: 0;
	z-index: 666;
	font-size: 12px;
	padding: 12px 22px;
}

/* header */

#header {
	box-shadow: 0px 0px 20px #00000029;
}

.header-menu ul li a {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 14px;
}

.header-menu ul li a:hover {
	text-decoration: none;
}

.header-menu ul li {
	display: inline-block;
	position: relative;
}

.header-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* mobile menu */
@media only screen and (min-width: 992px) {
	.header-menu ul .menu-item-has-children::after {
		content: ' > ';
		color: #8eaef1;
		font-size: 11px;
		font-weight: 500;
		display: inline-block;
		transform: rotate(90deg);
		position: absolute;
		right: 6px;
		bottom: 1px;
	}

	.header-menu ul .menu-item-has-children a {
		padding-right: 18px;
	}

	.header-menu ul li:hover .sub-menu {
		display: block;
	}

	.header-menu ul li .sub-menu {
		display: none;
		position: absolute;
		background-color: #fff;
		padding: 12px 20px;
		left: -15px;
		padding-top: 20px;
		top: 29px;
	}

	.header-menu ul li .sub-menu li {
		width: 100%;
		white-space: nowrap;
		text-overflow: ellipsis;

		margin-bottom: 10px;
	}

	#header .logo {
		max-width: 145px;
	}
}

@media only screen and (max-width: 991px) {
	#header .logo {
		order: 1;
		max-width: auto !important;
	}

	.header-menu ul li .sub-menu li {
		border-bottom: 0;
		border-top: 1px solid #0000001c;
	}

	#header .menu-mobile-button {
		order: 3;
	}

	#header .header-control {
		order: 2;
	}

	#header .header-menu {
		order: 4;
	}

	#header .container {
		padding: 0;
	}

	.header-menu ul li a {
		display: block;
		border-radius: 0;
		padding: 12px;
	}

	.menu-mobile-button {
		outline: none !important;
		box-shadow: none !important;
		border: 0 !important;
		border-radius: 4px;
		background-color: white;
	}

	.header-menu ul li {
		display: block;
		margin-bottom: 0px;
		border-bottom: 1px solid #0000001c;
		padding-bottom: 0px;
	}
}

/* header icons */
.header-control i {
	padding: 4px 8px;
	font-size: 21px;
	border-radius: 12px;
}

.control-red {
	background-color: #dc3545;
}

.control-green {
	background-color: #188961;
}

.control-gift-number {
	position: absolute;
	top: -5px;
	right: -5px;
	color: white;
	padding: 2px 4px;
	font-size: 9px;
	border-radius: 12px;
	margin: 0;
	z-index: 0;
	min-width: 18px;
	text-align: center;
	min-height: 14px;
}

.control-gift-box {
	display: inline-block;
	position: relative;
}

.control-gift-box:hover .control-gift-number {
	z-index: 2;
}

.control-gift {
	z-index: 1;
	position: relative;
}

.header-control {
	position: relative;
	text-align: end;
}

@media only screen and (max-width: 991px) {
	.header-control {
		text-align: center;
	}
}

.control-gift-under-box {
	position: absolute;
	background-color: #188961;
	width: 100%;
	border-radius: 12px;
	text-align: left;
	display: none;
	padding: 8px 6px 8px 0px;
	top: 45px;
	z-index: 666;
	min-width: 300px;
	right: 0;
}

.control-gift-box-wrapper {
	max-height: 300px;
	overflow-x: hidden;
	overflow-y: scroll;
}

.control-gift-box-wrapper::-webkit-scrollbar {
	width: 6px;
}

.control-gift-box-wrapper::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 14px;
}

.control-gift-box-wrapper::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 14px;
}

.control-gift-box-wrapper::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* special offer box */
.special-offer-box {
	background-color: white;
	border-radius: 12px;
}

.special-offer-box .special-offer-logo img {
	border-radius: 50%;
	max-width: 80px;
}

.special-offer-box .special-offer-logo-casino img {
	max-width: 112px;
}

.disable-notification {
	position: absolute;
	right: 10px;
	width: 28px !important;
	top: -3px;
	padding: 2px;
}

.disable-notification i {
	color: #f44336 !important;
	font-size: 12px;
}

.special-offer-offer p {
	font-size: 14px;
	font-weight: 700;
}

.special-offer-cta .cta {
	padding: 6px 0px;
	font-size: 13px;
	color: white;
}

/* search */
.control-search-under-box {
	position: absolute;
	width: 100%;
	text-align: left;
	display: none;
	bottom: -51px;
	left: 0;
	padding-bottom: 10px;
	padding-top: 10px;
}

.control-search-under-box .searchform input {
	width: 100%;
	border: 0;
	padding: 6px 20px;
	border-radius: 14px;
	font-size: 13px;
	outline: none;
}

.control-search-under-box .searchform #datafetch .search-result:hover {
	background-color: #00000017;
}

.control-search-under-box .searchform #datafetch .search-result {
	border-bottom: 1px solid #ffffff0d;
	padding: 8px 0px;
}

.control-search-under-box .searchform #datafetch .search-result span {
	font-size: 11px;
}

.control-search-under-box .searchform #datafetch .search-result a {
	font-size: 14px;
	padding-left: 12px;
	color: white;
}

.control-search-under-box .searchform #datafetch {
	position: absolute;
	width: 95%;
	left: 50%;
	transform: translate(-50%);
	z-index: 600;
}

.control-search-under-box .searchform .datafetch {
	border-radius: 14px;
	padding: 22px;
}

/* author */

.author-data .author-image img {
	border-radius: 50%;
	width: 100%;
	height: auto;
}

.author-data .author-image {
	max-width: 80px;
	max-height: 80px;
}

.author-full-data {
	border-radius: 14px;
}

.author-post-box .post-author {
	max-width: fit-content;
	margin-right: 10px;
}

@media only screen and (max-width: 991px) {
	.author-post-box .post-author {
		padding: 6px 12px;
		margin: 2px;
	}

	.author-post-box .post-author svg {
		display: none;
	}

	.author-description {
		flex: 100%;
		margin-top: 10px;
	}
}

/* welcome text */
.welcome-text p a {
	font-weight: 500;
}

.welcome-text .read-more-link:after {
	content: '⯆';
}

/* news */
.news-box {
	background-color: white;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e2e4ea;
}

.news-image-large .post-logo {
	position: absolute;
	top: 50%;
	left: 50%;
}

.software-developer .post-logo {
	z-index: 12;
	transform: translate(-50%, -50%);
}

.software-developer .post-logo img {
	max-width: 160px;
	height: auto;
}

.software-developer .post-thumbnail img {
	object-fit: fill;
	min-height: 150px;
	opacity: 0.25;
	filter: grayscale(1);
}

.news-image-large .post-thumbnail img {
	object-fit: fill;
	min-height: 170px;
	width: 100%;
	height: auto;
	min-width: 1px;
}

.news-image .post-thumbnail {
	max-height: 150px;
	overflow: hidden;
}

.more-news-single .news-post {
	max-width: 300px;
}

.news-image .post-thumbnail img {
	object-fit: fill;
	min-height: 150px;
	width: 100%;
	height: auto;
	min-width: 1px;
}

.software-developer .post-thumbnail {
	max-height: 150px;
	min-height: 150px;
}

.software-developer .news-box {
	border: 0;
}

@media only screen and (min-width: 992px) {
	.news-image-large {
		max-width: 330px !important;
		background-color: #ebf7fe;
	}

	#bonus-container .casinos-post .casinos-box {
		min-height: 285px;
	}
}

@media only screen and (max-width: 991px) {
	.news-image-large {
		max-width: 100%;
		min-width: 100%;
	}

	.software-developer .post-thumbnail img {
		display: none;
	}

	.software-developer .news-image-large {
		max-height: 110px;
		overflow: hidden;
	}
}

.news-post .post-title {
	font-size: 19px;
	font-weight: 600;
}

.news-post .post-title a:hover {
	text-decoration: underline;
}

.post-content p {
	font-size: 13px;
	margin: 0;
}

.post-author p,
.post-date p {
	font-size: 12px;
}

.post-author,
.post-date {
	display: inline-block;
	padding: 6px 10px 6px 25px !important;
	border: 1px solid #ececec;
	border-left: 5px solid #ececec;
	border-radius: 14px;
	margin-bottom: 10px;
	margin-top: 10px;
	position: relative;
	background-color: white;
}

.post-author a:hover {
	text-decoration: underline;
}

.post-author a {
	text-transform: capitalize;
	font-weight: 600;
}

.post-author svg,
.post-date svg {
	position: absolute;
	left: 6px;
	width: 13px;
	height: 13px;
	top: 8px;
	color: #dad8d8;
}

.news-box-small {
	text-align: center;
}

.news-box-small .post-title {
	font-size: 15px;
}

.news-box-small .post-title a {
	overflow: hidden;
	display: block;
	max-height: 45px;
	min-height: 45px;
}

/* casino filtration main page */

@media only screen and (max-width: 991px) {
	.cta-terms {
		max-width: 90px !important;
	}

	.cta-review {
		max-width: 110px !important;
	}

	.casino-ctas .row div:nth-child(3) {
		padding: 0px 10px 0px 2px;
	}

	.casino-ctas .row div:nth-child(2) {
		padding: 0px 4px 0px 2px;
	}

	.casino-ctas .row div:nth-child(1) {
		margin: 0;
		padding: 0px 6px 0px 10px;
	}

	.cta-claim a {
		font-size: 13px;
	}
}

.casino-filtration .casino-filtration-data ul li {
	display: inline-block;
	margin-right: 4px;
}

.casino-ctas .row div:hover i {
	opacity: 1;
	transition-duration: 0.4s;
}

.casino-ctas i {
	opacity: 0.6;
	transition-duration: 0.4s;
	margin-right: 4px;
}

.casino-filtration .casino-filtration-data ul {
	margin: 0;
	padding: 0;
}

.casino-filtration .casino-filtration-data ul li b {
	padding: 8px 20px;
	cursor: pointer;
}

.casino-filtration .casino-filtration-data ul li b.active {
	background-color: #ffc300;
	color: #1a3986;
}

/* casinos */
.casinos-post .casinos-box {
	background-color: white;
	border-radius: 14px;
}

.casino-position-1 .casinos-box {
	background-color: #fff6e0;
}

.casinos-post .casino-positions img {
	font-size: 29px;
}

.casinos-post .casino-positions {
	font-size: 29px;
}

.casinos-post .casinos-box .casino-logo {
	max-width: 170px;
	border-radius: 14px;
}

@media only screen and (max-width: 991px) {
	.casinos-post .casinos-box .casino-logo {
		max-width: 160px;
		width: 100%;
		height: auto;
		display: block;
	}
}

.casinos-post {
	position: relative;
}

.casinos-post .casino-positions {
	position: absolute;
	left: 14px;
	top: -7px;
	width: 29px;
	height: 29px;
	margin: 0;
	padding: 0;
}

.casinos-post .casino-bonus p {
	margin: 0;
}

.casinos-post .casino-bonus {
	border: 1px solid #ececec;
	border-radius: 14px;
	border-left: 4px solid #ececec;
	text-align: center;
	background-color: white;
}

.casinos-post .casino-bonus .casino-bonus-type a {
	text-transform: uppercase;
}

.casinos-post .casino-cons p:before {
	font-size: 20px;
	content: ' • ';
	position: absolute;
	left: -3px;
	top: -5px;
	color: #188961;
}

.casinos-post .casino-cons p {
	position: relative;
	padding-left: 10px;
}

.casinos-post .casino-bonus .casino-bonus-value a {
	font-size: 17px;
	font-weight: 700;
	line-height: 17px;
}

.casinos-post .casino-cons p {
	font-size: 13px;
	font-weight: 500;
}

.casinos-post .casino-cons p img {
	font-size: 17px;
}

/* starting table */
.table-design th {
	background-color: #eff3fe;
}

.table-design tr:nth-child(odd) {
	background-color: #f3f4f7;
}

.table-design {
	width: 100%;
	border-collapse: collapse;
}

.table-design th,
.table-design td {
	border: 1px solid #f3f4f7;
}

.starting-table {
	background-color: white;
	border-radius: 14px;
}

.starting-table img {
	border-radius: 12px;
}

.table-design p,
.table-design b {
	font-size: 13px;
	padding: 8px 12px;
}

@media only screen and (max-width: 991px) {
	.table-design-main td p {
		min-width: 200px;
	}

	.table-design-main {
		overflow-x: auto;
	}
}

/* content */
.content-box {
	background-color: white;
}

.content-box a {
	color: #157f59;
	font-weight: 600;
}

.content-box p {
	font-size: 13px;
	line-height: 1.5rem;
	font-weight: 500;
}

.content-box table th {
	background-color: #f1f7ff;
	color: #1c2d42;
	font-weight: 600;
}

.content-box table td,
.content-box table th {
	padding: 6px 10px;
	/* border-bottom: 1px solid #f3f4f7; */
	font-size: 13px;
}

.content-box ol li {
	margin-bottom: 6px;
	line-height: 1.5rem;
	font-size: 13px;
}

.content-box ol {
	list-style: decimal;
	margin-top: 20px;
	padding-left: 20px;
}

.content-box ul li {
	margin-bottom: 6px;
	line-height: 1.5rem;
	font-size: 13px;
}

.content-box ul {
	list-style: disc;
	margin-top: 20px;
	padding-left: 20px;
}

.content-box table {
	border-radius: 4px;
	width: 100%;
	border: 1px solid #f4f5f5;
	border-collapse: separate;
	border-spacing: 0px;
}

.content-box table tr:nth-child(even) {
	background-color: #fff;
}

.content-box h2 {
	font-size: 24px;
	font-weight: 700;
}

.content-box h3 {
	font-size: 21px;
	font-weight: 600;
}

.content-box h4 {
	font-size: 19px;
	font-weight: 600;
}

.content-box h5 {
	font-size: 19px;
	font-weight: 500;
}

.content-box h6 {
	font-size: 19px;
	font-weight: 500;
}

.text-box .image img {
	border-radius: 14px;
}

.text-with-image .image {
	max-width: 150px;
}

.text-with-image .image-Center {
	max-width: 100%;
	max-height: 200px;
	overflow: hidden;
	border-radius: 14px 14px 0px 0px;
}

.text-with-image .image-Right {
	order: 2;
}

@media only screen and (max-width: 991px) {
	.text-with-image .text {
		order: 2;
	}

	.text-with-image .image {
		max-width: 100%;
		width: 100%;
		min-width: 100%;
		order: 1;
		margin-bottom: 20px !important;
	}
}

.how-to-register p {
	font-size: 13px;
}

.how-to-register ul {
	padding: 0;
}

.how-to-register ul li {
	font-size: 13px;
}

.how-to-register h2,
.how-to-register h3 {
	font-size: 23px;
	font-weight: 700;
}

.how-to-register-steps .step h3 {
	font-size: 14px;
	margin-top: 14px;
	line-height: 21px;
}

.how-to-register-steps .step .description p {
	line-height: 18px;
	font-size: 12px;
}

.how-to-register-steps .step .description {
	min-height: 88px;
}

.how-to-register-steps .step .content-box {
	box-shadow: none;
	border: 0;
}

.how-to-estimate-time p b,
.how-to-currency p b {
	font-size: 21px;
}

.how-to-estimate-time p,
.how-to-currency p {
	text-transform: uppercase;
	font-size: 11px;
}

.how-to-estimate-time,
.how-to-currency {
	border-radius: 14px;
	text-align: center;
}

.how-to-estimate-time i,
.how-to-currency i {
	font-size: 31px;
	color: #d6def4;
	margin-bottom: -5px;
	display: block;
}

.how-to-register-steps .step img {
	border-radius: 16px 16px 0px 0px;
}

.how-to-register-steps .step .step-img {
	max-height: 250px;
	overflow: hidden;
}

.dragable {
	overflow-x: auto;
	overflow-y: hidden;
	flex-wrap: nowrap;
}

.dragable::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

/* Track */
.dragable::-webkit-scrollbar-track {
	background: white;
	border-radius: 14px;
}

/* Handle */
.dragable::-webkit-scrollbar-thumb {
	background: #ffc300;
	border-radius: 14px;
}

/* Handle on hover */
.dragable::-webkit-scrollbar-thumb:hover {
	background: #188961;
}

.multiple-items {
	cursor: grab;
	display: inline-flex;
	padding: 0;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.how-to-register-steps .step {
	max-width: 300px;
	min-width: 300px;
	flex: none;
	margin: 0;
	z-index: 1;
}

.faq .faq-box .faq-item {
	background-color: #fff;
	padding: 10px 20px;
}

.faq .faq-box .faq-item .accordion-collapse p {
	margin: 0;
}

.faq .faq-box .faq-item h3 {
	margin: 0;
	padding: 4px;
}

.faq .faq-box .faq-item .accordion-button:focus {
	box-shadow: none;
	outline: none;
}

.faq .faq-box .faq-item .accordion-button {
	background-color: transparent;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	box-shadow: none;
}

.faq .faq-icon {
	width: 50px;
	height: 50px;
	background-color: white;
	border-radius: 50%;
	right: 50%;
	top: -30px;
	background-image: url(../images/faq-icon.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.cons-and-pros .cons {
	padding: 12px;
}

.cons-and-pros .cons ul {
	list-style: none;
	color: #2e364e;
	margin: 0;
	padding: 12px 30px;
}

.cons-and-pros .cons ul li {
	position: relative;
}

.cons-and-pros .cons ul li::before {
	content: '';
	position: absolute;
	top: 5px;
	left: -20px;
	width: 14px;
	height: 11px;
	background: url('/images/check.svg') center center / cover no-repeat;
}

.cons-and-pros .pros {
	padding: 12px;
}

.cons-and-pros .pros ul {
	list-style: none;
	color: #2e364e;
	margin: 0;
	padding: 12px 30px;
}

.cons-and-pros .pros ul li {
	position: relative;
}

.cons-and-pros .pros ul li::before {
	content: '';
	position: absolute;
	top: 5px;
	left: -20px;
	width: 12px;
	height: 12px;
	background: url('/images/close.svg') center center / cover no-repeat;
}

/* casinos small */

@media only screen and (min-width: 992px) {
	.text-with-image .image img {
		width: 100%;
	}

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

	.casinos-small {
		max-width: 190px !important;
		min-width: 190px !important;
		margin-right: 10px;
	}
}

@media only screen and (max-width: 991px) {
	.multiple-items {
		justify-content: flex-start;
	}

	#filtered-bonuses .casinos-small {
		max-width: 175px;
		min-width: 175px;
	}
}

.casino-image-small .casino-image-inner {
	max-height: 80px;
	min-height: 80px;
	position: relative;
	border-radius: 14px;
	overflow: hidden;
}

.casino-image-small .casino-image-inner img {
	padding: 12px;
	width: 100%;
	height: auto;
}

.casinos-small.highlight-bonus .casinos-box {
	background-color: #fff6e0;
}

.highlight_bonus {
	top: 8px;
	max-width: 12px;
	margin: 0;
	padding: 0;
	left: 10px;
	color: #ffcc4d;
	font-size: 16px;
}

.bonus-filtration.active {
	background-color: #ffc300;
	color: #1a3986;
}

.bonus-filtration {
	color: white;
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	cursor: pointer;
	text-transform: uppercase;
}

.bonus-filtration input[type='checkbox'] {
	width: 0;
	height: 0;
}

/* bonuses shortcode */
.casino-bonuses-shortcode .casinos-shortcode:last-child {
	margin-right: 0;
}

.casino-bonuses-shortcode .casinos-shortcode {
	max-width: 180px;
	min-width: 180px;
	margin-right: 10px;
}

.casino-bonuses-shortcode .casinos-shortcode .bonus-value p {
	font-weight: 700;
}

.casino-bonuses-shortcode {
	border-radius: 14px;
	padding: 12px;
}

/* slots shortcode */
.slots-short-bg {
	border-radius: 14px;
	padding: 12px;
}

.slots-shortcode .bonus-value p {
	margin: 10px 0 0;
	padding: 0;
	font-size: 16px;
	display: block;
	font-weight: 500;
	text-decoration: none;
	line-height: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	text-align: center;
}

.slots-shortcode .slot-bg {
	border: 0;
}

.slots-shortcode {
	min-width: 200px;
	max-width: 200px;
	margin-right: 10px;
}

.slots-shortcode:last-child {
	margin-right: 0;
}

.slots-shortcode .slots-shortcode-img {
	min-height: 200px;
}

.slots-shortcode .slots-shortcode-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slots-shortcode .slots-shortcode-img {
	min-height: 130px;
	max-height: 130px;
	border-radius: 14px 22px 0px 0px;
	overflow: hidden;
}

/* fast links */
.fast-links-closed {
	max-height: 350px;
	overflow-x: hidden;
	overflow-y: scroll;
}

.fast-links a {
	background-color: white;
	display: block;
	padding: 6px 16px;
	font-size: 13px;
	border-radius: 14px;
	border: 1px solid #ececec;
	border-left: 4px solid #ececec;
}

.sticky-headings {
	border-top: 1px solid #ededed;
	z-index: 8;
	border-bottom: 1px solid #ededed;
}

/* breadcrumbs */
#breadcrumbs {
	font-size: 13px;
}

#breadcrumbs a {
	text-decoration: underline;
	font-size: 13px;
	text-transform: capitalize;
}

#breadcrumbs .breadcrumb_last {
	font-size: 13px;
	color: #2c53a3;
	text-transform: capitalize;
}

/* post detail */
.post-detail .post-detail-inner .post-detail-image {
	max-height: 300px;
	overflow: hidden;
	border-radius: 14px 22px 0px 0px;
}

.post-detail .post-detail-inner .post-detail-image img {
	width: 100%;
	height: auto;
}

.post-detail .post-detail-title h1 {
	font-size: 25px;
	font-weight: 700;
}

/* single developer */
.single-developer .single-developer-bg {
	border-radius: 14px;
	border: 1px solid #e0e0e0;
}

@media only screen and (max-width: 991px) {
	.single-dev-info {
		order: 1;
	}

	.single-dev-content {
		order: 2;
	}
}

/* single casino */
.casino-detail .casino-detail-bg {
	background: white;
	box-shadow: 0px 0px 30px #00000017;
	border-radius: 14px;
}

.casino-detail-bg .cons-and-pros li {
	margin-bottom: 6px;
	font-size: 13px;
}

.casino-detail {
	margin-top: 40px;
	margin-bottom: -70px;
}

@media only screen and (max-width: 991px) {
	.casino-detail-bonus {
		max-width: auto;
	}
}

@media only screen and (min-width: 992px) {
	.casino-detail-bonus {
		max-width: 220px;
	}
}

.casino-detail-bonus .casino-detail-logo {
	background-color: #fafafa;
	border-radius: 14px;
	width: 100%;
	max-width: 220px;
	max-height: 220px;
	min-height: 100px;
	position: relative;
	margin: 0 auto;
}

.casino-detail-bonus .casino-detail-logo img {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

.casino-detail-bonus .casino-detail-bonus-box .bonus-details {
	border: 1px solid #ececec;
	border-radius: 14px;
	padding: 12px;
	border-left: 4px solid #ececec;
}

.casino-detail-bonus .casino-detail-bonus-box .bonus-details p a {
	font-size: 20px;
	font-weight: 600;
}

.casino-detail-bonus .casino-detail-bonus-box .bonus-details p {
	font-size: 13px;
	color: grey;
}

.casino-detail-navigation {
	border-bottom: 1px solid #ededed;
}

.casino-detail .casino-detail-navigation .cta-reload,
.casino-detail .casino-detail-navigation .cta-full-screen {
	border: 1px solid #ececec;
	border-left: 4px solid #ededed;
	border-radius: 6px;
	padding: 6px 10px 6px 10px;
	margin-right: 4px;
	background-color: white;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	color: #2b241c;
}

.casino-detail .casino-detail-navigation .cta-favorite i {
	color: #db4343;
	margin-right: 4px;
	margin-left: 4px;
}

.casino-detail .casino-detail-navigation .cta-favorite:hover {
	color: #db4343;
}

.casino-detail .casino-detail-navigation .cta-favorite {
	border: 1px solid #ececec;
	border-left: 4px solid #db4343;
	border-radius: 6px;
	padding: 6px 10px 6px 6px;
	margin-right: 4px;
	background-color: white;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	color: #2b241c;
}

.casino-detail .casino-detail-navigation .cta-compare i {
	color: #1a3986;
	margin-right: 4px;
	margin-left: 4px;
}

.casino-detail .casino-detail-navigation .cta-compare:hover {
	color: #1a3986;
}

.casino-detail .casino-detail-navigation .cta-compare {
	border: 1px solid #ececec;
	border-left: 4px solid #1a3986;
	border-radius: 6px;
	padding: 6px 10px 6px 6px;
	margin-right: 4px;
	background-color: white;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	color: #2b241c;
}

.casino-detail .casino-detail-navigation .cta-rating i {
	color: #fdbf0f;
	margin-right: 4px;
	margin-left: 4px;
}

.casino-detail .casino-detail-navigation .cta-rating:hover {
	color: #fdbf0f;
}

.casino-detail .casino-detail-navigation .cta-rating {
	border: 1px solid #fdbf0f;
	border-left: 4px solid #fdbf0f;
	border-radius: 6px;
	padding: 6px 10px 6px 6px;
	margin-right: 4px;
	background-color: #fff3d2;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	color: #2b241c;
}

@media only screen and (max-width: 991px) {
	.casino-detail .casino-detail-navigation .cta-favorite,
	.casino-detail .casino-detail-navigation .cta-compare,
	.casino-detail .casino-detail-navigation .cta-rating {
		font-size: 11px;
	}

	.single-slot-game-insider {
		padding: 22px;
	}
}

.casino-info .casino-info-bg {
	background-color: white;
	border-radius: 14px;
	box-shadow: 0px 0px 20px #f2f2f2;
	border: 1px solid #e2e4ea;
}

.casino-info .casino-info-bg .casino-info-ul li a {
	margin-right: 10px;
	font-size: 14px;
	background-color: white;
	padding: 8px 10px 8px 6px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 6px;
	border-left: 4px solid #ececec;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	border-right: 1px solid #ececec;
	display: block;
}

.casino-info .casino-info-bg .casino-info-ul li {
	display: inline-block;
	margin-bottom: 6px;
}

.casino-info .casino-info-bg .casino-info-ul {
	padding: 0;
}

.casino-info .casino-info-bg .casino-info-ul li a i {
	color: #dddddd;
	margin-right: 4px;
}

.rating-action {
	display: inline-block;
}

.rating-action #rating-container {
	position: absolute;
	right: 0;
	background: #fff3d2;
	width: 100%;
	min-width: 200px;
	border-radius: 14px;
	margin-top: 10px;
	border: 1px solid #fdc119;
}

.rating-action #rating-container .rating-buttons {
	text-align: center;
}

.rating-action #rating-container .rate-button {
	border: 0;
	background: transparent;
	color: #fdbf0f;
	font-size: 29px;
	padding: 0;
}

.rating-action #rating-container .rating-message {
	font-size: 13px;
	text-align: center;
	color: #2b241c;
	line-height: 15px;
	margin-bottom: 10px;
	margin-top: 4px;
}

/* favorites */
.favorites .favorite-inner {
	background-color: white;
	border-radius: 14px;
	text-align: center;
	border: 1px solid #e5e6ea;
}

.favorite-box .remove-favorite {
	position: absolute;
	right: 8px;
	top: 8px;
	background-color: white;
	border: 0;
	color: #dc3545;
	border-radius: 50%;
}

.favorites .favorite-inner .slot-logo img {
	width: 100%;
	height: auto;
	object-fit: fill;
}

.favorites .favorite-inner .logo {
	border-radius: 14px;
	overflow: hidden;
	max-height: 120px;
}

.favorites .favorite-inner a {
	display: block;
}

/* single bonus */
.casino-detail-bonus-value p {
	font-size: 24px;
	font-weight: 600;
}

.casino-detail-bonus-value i a {
	font-size: 13px;
	color: grey;
}

.casino-detail-bonus-value {
	border: 1px solid #ececec;
	border-radius: 14px;
	padding: 10px 10px 0px 10px;
	border-left: 4px solid #ececec;
}

.bonus-detail-boxes {
	border: 1px solid #ededed;
	padding: 12px;
	border-radius: 12px;
	border-left: 4px solid #1a3986;
}

/* footer */

.footer-menus {
	border-bottom: 1px solid #ffffff12;
}

.after-footer ul li {
	display: inline-block;
}

.after-footer ul li a {
	color: white;
}

/* slots */
.slot-bg {
	background-color: white;
	border-radius: 14px;
}

.single-slot-more .slot-bg {
	border: 1px solid #e2e4ea;
}

.slot-bg .slot-img .slot-rtp {
	position: absolute;
	left: 0px;
	top: 20px;
	color: #1a3986;
	font-size: 13px;
	padding: 2px 14px 2px 10px;
	background-color: #ffc300;
	font-weight: 600;
}

.slot-bg .slot-img img {
	width: 100%;
	height: auto;
	min-height: 160px;
	object-fit: fill;
}

.slot-bg .slot-img {
	position: relative;
	overflow: hidden;
	border-radius: 18px 18px 0px 0px;
	max-height: 160px;
	min-height: 160px;
	background-color: #f6f6f6;
}

.slot-bg .slot-title {
	padding: 0;
	font-size: 16px;
	display: block;
	font-weight: 500;
	text-decoration: none;
	line-height: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	text-align: center;
}

.slot-bg .slot-title a {
	font-weight: 600;
}

.slot-filtration-ul {
	max-height: 150px;
	overflow-x: hidden;
}

.taxonomy-title {
	font-weight: 600;
	font-size: 15px;
	border-bottom: 1px solid #ececec;
	padding-bottom: 10px;
	margin-bottom: 0;
	padding-top: 10px;
}

.slot-filtration-ul {
	display: none;
}

.slot-filtration-ul.show {
	display: block;
}

.slot-filtration-bg ul {
	background-color: #f3f4f7;
	padding: 0;
}

.slot-filtration-bg {
	background-color: white;
	max-width: 250px;
	border-radius: 14px;
}

.slot-filtration-bg .slot-filtration:hover {
	background-color: #e9eaef;
}

.slot-filtration-bg .slot-filtration {
	width: 100%;
	font-size: 13px;
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 10px;
	border-bottom: 1px solid #eaecf1;
	padding-bottom: 5px;
	padding-top: 5px;
	display: block;
}

@media only screen and (max-width: 991px) {
	.slot-filtration-bg {
		max-width: 100%;
		margin: 0 auto;
	}

	.slot-bg .slot-img {
		max-height: 140px;
		min-height: 140px;
	}

	.slot-bg .slot-img img {
		min-height: 140px;
	}
}

/* single slot */
.single-slot-game {
	min-height: 500px;
}

.single-slot-box .slot-box-ins {
	background-color: white;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e2e4ea;
}

.single-slot-box #iframeHolder iframe {
	height: 100%;
	min-height: 500px;
	width: 100%;
}

.single-slot-box #iframeHolder {
	min-height: 500px;
	width: 100%;
	max-height: 500px;
}

.single-slot-box .single-slot-game .single-slot-game-logo img {
	border-radius: 14px;
}

.slot-table td:nth-child(2) a {
	font-size: 13px;
	padding: 6px 12px;
	display: inline-block;
	border-radius: 12px;
	text-transform: capitalize;
	border-left: 4px solid #ececec;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	border-right: 1px solid #ececec;
	font-weight: 600;
	margin: 2px 2px;
}

.slot-table td:first-child {
	font-size: 12px;
	color: grey;
	text-transform: uppercase;
}

.slot-table td {
	margin-top: 2px;
	margin-bottom: 2px;
}

.slots-post-single {
	min-width: 250px;
	max-width: 250px;
}

/* compare */
.compare-filtration button {
	color: white;
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 14px;
	margin-bottom: 6px;
	background-color: #122a65;
	cursor: pointer;
	text-transform: uppercase;
	display: inline-block;
	width: auto;
	border: 0;
	margin-right: 4px;
}

.compare-box .ComparisonTable {
	width: 100%;
}

.compare-box {
	min-height: 400px;
	max-height: 400px;
	overflow-x: hidden;
}

.ComparisonTable::-webkit-scrollbar {
	width: 6px;
	height: 8px;
}

.ComparisonTable::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.ComparisonTable::-webkit-scrollbar-thumb {
	background: orange;
}

.ComparisonTable::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.compare-box .remove-from-comparison {
	background-color: transparent;
	border: 0;
	color: #dc3545;
	margin: 4px auto;
	display: block;
}

.ComparisonTable {
	background-color: #232425;
	display: flex;
	position: absolute;
}

.ComparisonTable .main-value a {
	color: #ffc107;
	font-weight: 600;
	text-transform: capitalize;
}

.ComparisonTable__header {
	padding: 24px 24px 48px;
}

.ComparisonTable__title {
	margin: 0;
	font-size: 24px;
}

.ComparisonTable__right {
	display: flex;
}

.ComparisonColumn {
	min-width: 210px;
	border-right: 1px solid #3f3f3f;
}

.ComparisonTable__left {
	background-color: #181818;
	width: 170px;
	flex-shrink: 0;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 2;
}

.ComparisonTable__left .ComparisonColumn {
	padding-top: 0;
	border-right: none;
	min-width: 170px;
}

.ComparisonColumn__header {
	background-color: #323f4d;
	top: 0;
	padding: 0 24px;
	position: sticky;
	z-index: 1;
}

.ComparisonTable__left .ComparisonColumn__header {
	background-color: #253340;
}

.ComparisonColumn__title {
	margin-bottom: 16px;
	padding-top: 16px;
	color: #c8d4e0;
}

.ComparisonColumn__row {
	padding: 10px 10px 10px 2px;
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #3f3f3f;
	text-decoration: none;
	min-height: 44px;
	white-space: nowrap;
}

.ComparisonTable__left .ComparisonColumn__row {
	border-bottom: 1px solid #222222;
}

.ComparisonColumn__row span {
	color: white;
	font-size: 12px;
	padding: 2px 6px;
	text-transform: capitalize;
	min-height: 23px;
}

.ComparisonTable__left .ComparisonColumn__row {
	justify-content: space-between;
}

.ComparisonTable__left .ComparisonColumn__row-value {
	text-align: right;
}

/* emailing */
.emailing-form input[type='submit'] {
	margin-top: 10px;
	background-color: #188961;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 14px;
	border: 2px solid #188961;
	color: white;
}

.emailing-form input[type='email'] {
	border: 2px solid #ececec;
	padding: 12px 18px;
	border-radius: 14px;
	font-size: 13px;
	color: grey;
	width: 100%;
	max-width: 400px;
}

.emailing-form input:focus {
	outline: 0;
}

@media only screen and (max-width: 991px) {
	.emailing-form input[type='email'] {
		max-width: 310px;
	}

	#add-email-form p label {
		width: 90%;
	}
}

.paginator-style li a {
	font-size: 13px;
}

.paginator-style li.active a {
	background-color: orange;
	border-color: orange;
	color: white !important;
}

@media only screen and (min-width: 992px) {
	.checked-edited {
		right: 30px;
		top: 0;
		position: absolute;
	}
}

@media only screen and (max-width: 991px) {
	.checked-edited {
		position: relative;
	}

	video {
		width: 100% !important;
	}
}

.checked-edited a {
	text-transform: capitalize;
}

.casino-reviews-bg-img img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: auto;
}

.casino-reviews-bg-img {
	max-height: 200px;
	overflow: hidden;
	position: relative;
	min-height: 200px;
}

a.scroll-to-top i {
	font-size: 31px;
	color: #1c3c7c;
	text-shadow: 0px 0px 20px #ffffff66;
}

a.scroll-to-top {
	position: fixed;
	right: 30px;
	bottom: 70px;
	z-index: 500;
}

.post-detail-text iframe {
	width: 100%;
}

/* rest */

.reviews-styling .review-rating p i {
	color: #ff9800;
}

.reviews-styling .review-rating p {
	font-size: 16px;
	margin: 0;
	color: #2c53a3;
}

.reviews-styling .review-logo {
	max-width: 160px;
	margin-left: 10px;
	min-height: 100px;
}

.reviews-styling .post-content {
	border-top: 1px solid #e2e4ea;
	padding-bottom: 10px;
	padding-top: 10px;
	font-size: 13px;
}

.casino-sticky .acf-post-title p {
	margin: 0;
	font-size: 17px;
	padding-left: 10px;
	color: white;
	font-weight: 700;
	text-shadow: 2px 2px 4px #00796d;
}

.casino-sticky .acf-logo img {
	width: 100%;
}

.casino-sticky .acf-logo {
	max-width: 100px;
	overflow: hidden;
}

.casino-sticky .acf-cta-casino a {
	color: white;
	background-color: #1c3c7c;
	padding: 12px 20px;
	border-radius: 22px;
	font-size: 13px;
}

/* footer */

footer {
	background-color: #152238;
	color: #fff;
	padding: 40px 20px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.footer-section {
	flex: 1 1 200px;
}

.footer-section h4 {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 15px;
	font-size: 18px;
}

.footer-section h4::before {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 40px;
	height: 6px;
	background: #0077cc;
}

.footer-section ul {
	padding: 10px 0 0 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-section ul li {
	margin: 5px 0;
}

.footer-section ul li a {
	font-size: 14px;
	line-height: 400;
	line-height: 22px;
	color: #fff;
	text-decoration: none;
}

.footer-section ul li a:hover {
	text-decoration: underline;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.footer-logo img {
	margin-left: 10px;
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
}

.alphabetical-links {
	padding: 20px 15px;
	background-color: #263950;
	margin-bottom: 15px;
	border-radius: 4px;
}

.alphabetical-links p {
	text-align: left;
	font-size: 12px;
	line-height: 15px;
	font-weight: 700;
	color: #fff;
}

.alphabetical-links__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	overflow-x: auto;
	padding: 0 0 10px 0;
}

.alphabetical-links span,
.alphabetical-links a {
	color: #fff;
	margin: 0 5px;
	text-decoration: underline;
}

.alphabetical-links a:hover {
	text-decoration: underline;
}

.warning-text {
	text-align: left;
	padding: 15px;
	border: 1px solid #2e364e;
	border-radius: 4px;
	font-size: 12px;
	color: #bbb;
	margin-bottom: 15px;
}

.footer-language {
	font-weight: bold;
	margin-bottom: 10px;
	padding: 5px 45px;
	border: 1px solid #2e364e;
	border-radius: 4px;
}

.footer-address {
	text-align: left;
	font-size: 12px;
	color: #bbb;
}

.footer-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.footer-socials {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.footer-social {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 1px solid #2e364e;
}

.footer-bottom__info {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 150px;
}

/* section popular */
.popular {
	padding: 20px 0;
}
.popular__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin: 0 0 30px 0;
}

.popular__title {
	position: relative;
	color: #1c2d42;
	font-size: 20px;
	line-height: 27px;
	font-weight: 600;
}

.popular__title::before {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 40px;
	height: 6px;
	background: #0077cc;
}

.popular__text {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.popular__text span {
	color: #1c2d42;
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	text-decoration: underline;
}

.popular__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

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

.popular__item img {
	width: 50px;
	height: 50px;
}

.popular__item h3 {
	color: #1c2d42;
	font-size: 13px;
	line-height: 22px;
	font-weight: 400;
}

/* h1 */
h1 {
	color: #1c2d42;
	font-size: 32px;
	line-height: 39px;
	font-weight: 700;
	margin: 0 0 15px 0;
}

/* person card */
.person-card {
}
.person-card__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin: 0 0 15px 0;
}

.person-card__item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.person-card__img {
	width: 48px;
	height: 48px;
}

.person-card__img img {
	max-width: 100%;
	max-height: 100%;
}

.person-card__text h3 {
	color: #1c2d42;
	font-size: 13px;
	line-height: 20px;
	font-weight: 600;
	margin: 0 0 5px 0;
}

.person-card__text p {
	width: fit-content;
	color: #1c2d42;
	font-size: 15px;
	line-height: 21px;
	font-weight: 700;
	border-bottom: 1px dotted #a3a6af;
}

.person-card__info {
	padding: 16px 13px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.person-card__info span {
	color: #1c2d42;
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
}

/* casino-block */
.casino-block {
	padding: 15px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 8px 32px 0px #0000001a;
	margin: 0 0 15px 0;
}
.casino-block.active {
	border: 4px solid #ffcb3f;
}
.casino-block__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 15px;
}

.casino-block__wrapper .img-cov {
	margin: 0;
}

.casino-block__item {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
}

.casino-block__info {
}

.casino-block__img {
	border-radius: 4px;
	margin: 0 0 10px 0;
}

.casino-block__img img {
	border-radius: 4px;
}

.casino-block__text {
	color: #444b54;
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
}

.casino-block__list ul li {
	position: relative;
}

.casino-block__list ul li::before {
	content: '';
	position: absolute;
	top: 5px;
	left: -20px;
	width: 11px;
	height: 9px;
	background: url('/images/casino-block/check.svg') center center / cover
		no-repeat;
}

.casino-block__title {
	color: #1c2d42;
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	margin: 0 0 5px 0;
}

.casino-block__btn {
	width: 195px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 20px;
	line-height: 45px;
	font-weight: 700;
	background: #2abb7e;
	border-radius: 5px;
}

.casino-block__descr {
	font-size: 10px;
	font-weight: 400;
	line-height: 12px;
	text-align: left;
	color: #a69996;
}

.casino-block__descr span {
	color: #0077cc;
}

/* table */
.table {
	border-radius: 4px;
	overflow: auto;
	margin: 30px 0;
}

.block-blue {
	padding: 20px;
	background: #f1f7ff;
	margin: 30px 0;
}

.block-blue h2 {
	position: relative;
	padding: 0 0 0 55px;
}

.block-blue h2::before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 40px;
	height: 40px;
	background: #0077cc;
	border-radius: 100%;
}

.centered {
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: 22px;
	text-align: center;
}

.img-cov {
	margin: 15px auto;
	text-align: center;
}

.img-cov img {
	width: fit-content;
	height: 100%;
}

.content-box .accordion-button {
	/* border: 1px solid #cccccc !important; */
	border-radius: 6px;
	z-index: 2;
}
.content-box .accordion-button:focus {
	/* border: 1px solid #cccccc !important; */
	box-shadow: none;
}

.content-box .accordion-collapse {
	/* border: 1px solid rgb(204, 204, 204); */
	border-radius: 0px 0px 6px 6px;
	position: relative;
	z-index: 1;
	top: -20px;
}
.content-box .accordion-collapse .accordion-body {
	padding: 30px 20px 0px 20px;
}

@media only screen and (min-width: 1501px) and (max-width: 2000px) {
	.casino-sticky {
		background: rgb(2, 0, 36);
		background: linear-gradient(
			90deg,
			rgb(255 255 255) 0%,
			rgb(255 255 255) 25%,
			#009688 25%
		);
		z-index: 100 !important;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1500px) {
	.casino-sticky {
		background: rgb(2, 0, 36);
		background: linear-gradient(
			90deg,
			rgb(255 255 255) 0%,
			rgb(255 255 255) 19%,
			#009688 19%
		);
		z-index: 100 !important;
	}
}

@media only screen and (max-width: 991px) {
	.casino-sticky .acf-cta-casino a {
		margin-right: 10px;
	}

	.casino-sticky {
		background: #009688;
		z-index: 100 !important;
	}
}

.cky-btn-revisit-wrapper {
	z-index: 90 !important;
}

.welcome-text h2 {
	color: #2c53a3;
	font-size: 1.5rem;
	margin-top: 30px;
	margin-bottom: 10px;
}

.category-description p {
	font-size: 13px;
	margin-bottom: 2px;
	color: #2c53a3;
}
