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

html, body {
	height: 100%;
	margin: 0;
}

body {
	font-family: "Inter", sans-serif;
	color: #283043;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--main-page-bg);
}

.main {
	color: var(--text-p);
	flex: 1;
}

.container {
	max-width: 1324px;
	margin: 0 auto;
}

.header {
	display: flex;
	text-align: center;
	padding: 15px 0;

}

a {
	text-decoration: none;
	color: var(--text-a);
}

.top-menu {
	display: flex;
	align-items: center;
	width: 87%;
}

.logo {
	font-size: 25px;
	color: #295774;
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 600;
}

.menu {
	display: flex;
	gap: 32px;
	padding: 5px 24px;
}

.menu a {
	text-decoration: none;
	color: var(--menu-text-color);
	font-size: 20px;
	font-weight: 600;
}

.header-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-left: auto;
}

.page-button {
	padding: 7px 27px;
	text-transform: uppercase;
	border-radius: 15px;
	color: var(--main-banner-btn-text);
	font-weight: 500;
	background-color: var(--main-banner-btn);
	font-size: 22px;
	transition: background-color 0.3s;
	cursor: pointer;
}

.login {
	background-color: var(--btn1);
	transition: background-color 0.3s;
	color: var(--btn1-text-color);
}

.registration {
	background-color: var(--btn2);
	transition: background-color 0.3s;
	color: var(--btn2-text-color);
}

.bonuses {
	background-color: var(--btn3);
	transition: background-color 0.3s;
	color: var(--btn3-text-color);
}

.page-button:hover {
	color: var(--main-banner-btn-text);
	background-color: var(--main-banner-btn-hover);
}

.page-button.login:hover {
	background-color: var(--btn1-hover);
	color: var(--btn1-text-color);
}

.page-button.registration:hover {
	background-color: var(--btn2-hover);
	color: var(--btn2-text-color);
}

.page-button.bonuses:hover {
	background-color: var(--btn3-hover);
	color: var(--btn3-text-color);
}

.top-content {
	padding: 30px 0 15px 0;
}

.banner {
	width: 100%;
	height: 387px;
	border-radius: 30px;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 400px;
	border-radius: 30px;
}

.banner-text {
	position: absolute;
	top: 25%;
	left: 70px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.banner-text p {
	font-size: 40px;
	color: var(--main-banner-text1);
	text-transform: uppercase;
	font-weight: 600;
}

.banner-text .bonus {
	color: var(--main-banner-text2);
	font-size: 60px;
	margin-bottom: 35px;
}

.banner-text .page-button {
	padding: 14px 34px;
}

.main h1 {
	font-size: 33px;
	padding: 10px 0;
}

.main h2 {
	font-size: 28px;
	padding: 10px 0 15px;
}

.main ul, .main ol {
	padding: 20px 40px;
}

.main p {
	color: var(--text-p);
	padding: 10px 0;
	font-size: 19px;
}

.main ul, .main ol {
	font-size: 19px;
}

.table-wrapper {
	max-width: 985px;
	margin: 25px auto;
	border: 1px solid #d0d7de;
	border-radius: 16px;
}

.table-wrapper {
	overflow: hidden;
}

.styled-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 19px;
	color: #1f2937;
	min-width: 600px;
}

.styled-table th {
	text-align: left;
	padding: 11px 16px;
	font-weight: 400;
	color: var(--table-left-text);
	white-space: nowrap;
	border-right: 1px solid #DCE3E8;
}

.styled-table .styled-th {
	background-color: #E9EEF1;
	font-weight: 600;
}

.styled-table .styled-th th {
	font-weight: 600;
}

.styled-table td {
	padding: 11px 16px;
	color: var(--table-right-text);
}

.styled-table tr:not(:last-child) {
	border-bottom: 1px solid #DCE3E8;
}

.bottom-block {
	position: fixed;
	z-index: 999999;
	display: flex;
	justify-content: space-between;
	padding: 20px 58px;
	background-color: var(--plashka-bg);
	align-items: center;
	width: 100%;
	bottom: 0;
	left: 0;
	gap: 7px;
}

.bottom-block .logo {
	color: #FFFFFF;
}

.bottom-block p {
	font-size: 19px;
}

.bottom-block p span {
	text-transform: uppercase;
}

/* Адаптив для мобильных */
@media (max-width: 600px) {

	.styled-table {
		font-size: 15px;
	}

	.styled-table th,
	.styled-table td {
		padding: 12px;
	}
}

.main h3 {
	font-size: 22px;
	padding: 10px 0;
}

.main h4 {
	font-size: 19px;
	padding: 15px 0;
}

/* Стили для мобильного меню */
.mobile-menu {
	display: none;
	position: fixed;
	top: 57px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	z-index: 1000;
	transition: transform 0.3s ease-in-out;
	transform: translateX(-100%);
}

.mobile-menu.open {
	display: block;
	transform: translateX(0);
}

.mobile-menu nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0 20px 0;
	gap: 24px;
	background-color: #E5ECF4;
}

.mobile-menu a {
	color: #6182B4;
	text-decoration: none;
	padding: 15px;
	font-size: 18px;
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-toggle {
	display: none;
}

.footer {
	padding: 35px 58px;
	background-color: var(--footer-bg);
}

.footer .container {
	display: flex;
	font-size: 14px;
	gap: 30px;
	justify-content: center;
	flex-direction: column;
	font-size: 19px;
}

.first-row {
	display: flex;
	justify-content: space-between;
}

.footer p {
	text-align: center;
	padding: 0 35px;
}

.popular-games {
	display: flex;
	justify-content: space-between;
	gap: 5px;
	margin: 20px 0;
}

.popular-game {
	background-color: var(--popular-game-card);
	border-radius: 25px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	height: 100%;
}

.name-of-game {
	color: var(--popular-game-title);
	font-weight: 600;
}

.provider {
	color: var(--popular-game-provider);
}

.page-img {
	margin: 20px auto;
	display: flex;
	justify-content: center;
}

.game-providers {
	display: flex;
	justify-content: space-between;
	margin: 10px 0 20px;
}

.review {
	display: flex;
	padding: 30px;
	background-color: var(--review-bg);
	border-radius: 30px;
	flex-direction: column;
	gap: 15px;
}

.reviews {
	display: flex;
	gap: 17px;
}

.date {
	text-align: right;
	color: #295774;
}

.review p {
	color: var(--review-text);
	padding: 0;
}

.review-author {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	align-items: center;
}

.review-author p {
	color: var(--review-date);
	font-size: 22px;
}

p.full-name {
	font-weight: 600;
	color: var(--review-author);
}

.right-column {
	display: flex;
	gap: 60px;
	align-items: center;
}

.social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.event-item {
	padding: 30px 50px;
	border-radius: 30px;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 284px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

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

.top-event {
	display: flex;
	gap: 20px;
}

.top-event p {
	color: var(--sports-geo-liga-text);
	font-size: 19px;
}

.top-event p:last-child {
	margin-left: auto;
}

.middle-element {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 25px 0;
}

.middle-element > * {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	font-size: 22px;
	color: var(--sports-team-name);
	font-weight: 600;
}

.bottom-element {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	color: var(--sports-odds-text);
	font-size: 22px;
}

.bottom-element > * {
	padding: 5px 23px;
	border-radius: 15px;
	background-color: var(--sports-odds-box);
	display: flex;
	justify-content: space-between;
	gap: 45px;
}

.page-button.fixed-block-but {
	display: none;
}

@media (max-width: 1474px) {
	.event-item {
		padding: 30px 30px;
	}

	.top-content {
		padding: 0 0 15px 0;
	}
}

@media (max-width: 1320px) {
	.event-item .bottom-element {
		gap: 5px;
	}

	.popular-games, .game-providers {
		flex-wrap: wrap;
	}
}

@media (max-width: 1240px) {
	.events {
		flex-direction: column;
	}

	.event-item {
		padding: 30px 50px;
	}

	.page-img.big-img {
		width: 100%;
	}

	.bottom-block p {
		font-size: 13px;
	}

	.bottom-block .page-button, .bottom-block .logo {
		font-size: 13px;
	}

	.bottom-block {
		padding: 20px;
	}
}

@media (max-width: 1160px) {
	.bottom-element > * {
		padding: 5px 5px;
		gap: 25px;
	}

	.event-item {
		padding: 30px 20px;
	}
}

/*настройка мобильного меню*/

/* Общие стили */
.header {
	position: relative;
	z-index: 100;
}

/* Бургер и логотип всегда видны */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	background: none;
	border: none;
	padding: 10px;
}

.burger {
	width: 25px;
	height: 2px;
	background-color: #295774;
	margin: 3px 0;
	border-radius: 50px;
}

/* Десктопное меню */
.top-menu {
	display: flex;
	align-items: center;
	gap: 20px;
}

.basic-wrap {
	margin-top: 90px;
}

/* Мобильное меню */
@media (max-width: 1080px) {
	.menu-toggle {
		display: flex;
	}

	.header {
		justify-content: space-between;
	}

	.top-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
		z-index: 50;
	}

	.top-menu.active {
		display: flex;
		align-items: flex-end;
	}

	.top-menu.active {
		padding: 0;
		padding-right: 0;
		box-shadow: 0px 22px 23.5px rgba(0, 0, 0, 0.25);
		width: 100%;
	}

	.menu a {
		margin: 10px 0;
		display: block;
	}

	.header-buttons {
		display: flex;
		flex-direction: column;
		width: auto;
		gap: 26px;
		margin-top: 10px;
		align-items: end;
	}

	.reviews {
		flex-direction: column;
		align-items: center;
	}

	.footer .first-row {
		flex-direction: column;
		align-items: center;
	}

	.wrapper:has(.header) {
		padding: 0;
	}

	.header {
		padding: 15px 20px;
	}

	.top-menu.active {
		padding: 15px 20px;
	}

	.bottom-element {
		font-size: 17px;
	}

}

@media (max-width: 728px) {
	.event-item {
		padding: 30px 30px;
	}

	.footer .right-column {
		flex-direction: column;
		align-items: center;
		gap: 25px;
	}

	.banner-text p {
		font-size: 23px;
	}

	.banner-text .bonus {
		font-size: 40px;
		margin-bottom: 15px;
	}

	.banner-text {
		top: 55%;
		left: 25px;
	}

	.main h1 {
		font-size: 28px;
	}

	.main h2 {
		font-size: 24px;
	}

	.main p, .main ul, .main ol {
		font-size: 17px;
	}

	.page-button, .banner-text .page-button {
		font-size: 20px;
		padding: 7px 19px;
	}

	.banner-text .page-button {
		border-radius: 4px;
	}

	.popular-game {
		font-size: 13px;
	}

	.top-content {
		padding: 0 0 15px 0;
	}

	.top-event p, .middle-element > *, .bottom-element {
		font-size: 14px;
	}

	.footer {
		padding: 35px 20px;
	}

	.styled-table {
		min-width: auto;
	}

	.bottom-block {
		padding: 15px;
		gap: 17px;
	}

	.bottom-block .page-button.bon {
		display: none;
	}

	.logo img {
		width: 28px;
		height: 25px;
		border-radius: 15px;
	}

	.page-button.fixed-block-but {
		display: block;
		background-color: #729FBB;
		border-radius: 8px;
		margin-top: 8px;
	}

	.bottom-block p span {
		margin-bottom: 8px;
		display: inline-block;
	}

	.basic-wrap {
		margin-top: 70px;
	}

}

@media (max-width: 560px) {
	.top-menu.active .menu {
		flex-direction: column;
		gap: 26px;
	}

	.middle-element {
		gap: 20px;
	}

	.bottom-element > * {
		gap: 10px;
	}

	.top-menu.active .menu {
		padding: 5px 0px 24px;
	}

	.top-menu.active {
		gap: 0;
	}
}

@media (max-width: 460px) {
	.bottom-element > * {
		padding: 5px 16px;
	}

	.page-img {
		width: 100%;
	}
}

.articles {
	display: flex;
	justify-content: space-between;
	gap: 17px;
	margin: 20px 0;
}

.article {
	background-color: #E9EEF1;
	border-radius: 25px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 18px;
}

.article-text {
	color: #295774;
}

.top-author-block {
	padding: 25px 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}

.author-photos {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}
.author-photos img {
	border-radius: 30px;
}

.author-info h1 {
	font-size: 33px;
}

.author-info h2 {
	font-size: 28px;
	margin-top: 15px;
}

.author-info p {
	font-size: 19px;
}

@media (max-width: 1365px) {
	.articles {
		flex-wrap: wrap;
	}

	.wrapper {
		padding: 15px 20px;
	}

	
}

@media (max-width: 728px) {
	.top-author-block {
		padding: 20px 0 0;
		flex-direction: column;
	}

	.footer .menu {
		gap: 20px;
		padding: 5px 0;
	}

	.footer .logo {
		margin-bottom: 30px;
	}

	.footer p {
		padding: 0;
	}

	.top-menu.active .menu a {
		margin: 0;
	}
	.article-text {
		font-size: 13px;
	}
	.article .name-of-game {
		font-size: 13px;
	}
	.article {
		border-radius: 15px;}
	.article img {
		border-radius: 15px!important;
	}
	.banner {
		border-radius: 15px;
	}
}

.huge-img {
	width: 100%;
}

.bottom-author-block {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 22px;
	font-weight: 600;
	padding: 25px 0;
}

.bottom-author-block img {
	width: 51px;
}

.main.page-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 100px 20px;
}

.main.page-404 h1 {
	font-size: 28px;
}

.main.page-404 p {
	max-width: 700px;
	text-align: center;
	font-size: 17px;
}

.main.page-404 span {
	font-size: 28px;
	font-weight: 600;
}

.main.page-404 .text2 > *:first-child {
	font-size: 28px;
	font-weight: 600;
}

.main.page-404 p.huge-text {
	font-size: 150px;
	font-weight: 900;
	color: #295774;
	text-shadow: 5px 0 0 #729FBB;
}

@media (max-width: 728px) {
	.main.page-404 span {
		font-size: 24px;
	}

	.main.page-404 .text2 > *:first-child {
		font-size: 24px;
	}

	.main.page-404 p.huge-text {
		font-size: 120px;
	}

	.main.page-404 {
		padding: 20px;
	}

	.footer p {
		font-size: 17px;
	}

	.wrapper {
		padding: 15px 20px;
	}
	.page-img {
		border-radius: 15px;
	}
	.popular-game {
		border-radius: 15px;
	}
	.popular-game img {
		border-radius: 15px!important;
	}
	.page-img {
		border-radius: 15px;
	}
	
}

.swiper, .swiper-1 {
	width: 100%;
	margin-bottom: 23px;
}

/*.swiper-slide  {
	font-size: 18px;
	display: flex;
	justify-content: center;
} */

.swiper-3 .swiper-slide {
	margin-right: 0;
}

.buttons-next-pre {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
}

.popular-games-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
	margin-bottom: 15px;
}

.swiper-1, .swiper-2, .swiper-3, .swiper-4, .swiper-5 {
	overflow: hidden;
}

.swiper-3, .swiper-4, .swiper-5 {
	margin-bottom: 20px;
}

.swiper-2 img, .swiper-1 img {
	width: 100%;
}

.buttons-next-pre img {
	cursor: pointer;
}

img.prev-arrow-1:hover, img.prev-arrow-2:hover, img.prev-arrow-3:hover, img.prev-arrow-4:hover, img.prev-arrow-5:hover {
	content: url('../img/left.svg');
}

img.after-arrow-1:hover, img.after-arrow-2:hover, img.after-arrow-3:hover, img.after-arrow-4:hover, img.after-arrow-5:hover {
	content: url('../img/right.svg');
}

.swiper-1 img {
	border-radius: 25px;
}

.swiper-2 img {
	border-radius: 25px;
}

.page-img {
	border-radius: 30px;
}

.middle-element img, .review-author img, .bottom-author-block img {
	border-radius: 100px;
}

.logo img {
	border-radius: 15px;
}

.social img {
	border-radius: 100px;
}

ul.rating {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 7px;
	padding: 0;
}

.star:before {
	content: '';
	display: block;
	width: 22px;
	height: 21px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.star.filled::before {
	background-image: url('../img/star-full.svg');
}

.star.half-filled::before {
	background-image: url('../img/star-half.svg');
}

.star.empty::before {
	background-image: url('../img/star-empty.svg');
}

.left {
	color: var(--main-slider-toggle);
	transition: color 0.3s;
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.left:hover {
	color: #729FBB;
}

.right {
	color: var(--main-slider-toggle);
	transition: color 0.3s;
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.right:hover {
	color: #729FBB;
}

@media (max-width: 560px) {
	.left, .right {
		width: 24px;
		height: auto;
		aspect-ratio: 21 / 24;
	}
}

.swiper-1 .swiper-slide {
	height: auto !important;
}

.swiper-1 .swiper-wrapper {
	height: auto !important;
}

.review p:not(.date):not(.full-name) {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: auto;
	transition: all 0.3s ease;
	cursor: pointer;
}

/*.review p.expanded {
  -webkit-line-clamp: unset;
  display: block!important;
  max-height: none;
  overflow: visible;
}*/

/*edits styles*/
.head {
	background-color: var(--header-bg);
}

.menu a {
	transition: color 0.3s ease;
}

.menu a:hover {
	color: var(--menu-hover-color);
}

.fixing {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	width: 100%;
	/*padding-top: 30px;*/
}

.header .logo img {
	max-height: 60px !important;
	width: auto;
}

.bottom-block .logo img {
	max-height: 50px !important;
	width: auto;
}

.first-row .logo img {
	max-height: 60px !important;
	width: auto;
}

@media (max-width: 728px) {
	.header .logo img {
		max-height: 40px !important;
	}

	.first-row .logo img {
		max-height: 40px !important;
	}

	.logo img {
		border-radius: 7px;
	}
}

.main h1 {
	color: var(--text-h1);
}

.main h2 {
	color: var(--text-h2);
}

.main h3 {
	color: var(--text-h3);
}

.main h4 {
	color: var(--text-h4);
}

a:hover {
	color: var(--text-a-hover);
}

.swiper-1 img {
	max-height: 122px;
}

.review-author img {
	width: 51px;
	height: 52px;
}

.popular-game {
	justify-content: center;
}

.review p.expanded {
	display: block !important;
	-webkit-line-clamp: unset;
	-webkit-box-orient: initial;
	max-height: none;
	overflow: visible;
	text-overflow: unset;
}

.foot-text {
	color: var(--footer-text);
	
}

.plashka-text {
	color: var(--plashka-text);
}

.bon {
	background-color: var(--plashka-btn);
	transition: background-color 0.3s;
	color: var(--plashka-btn-text);
}

.page-button.bon:hover {
	background-color: var(--plashka-btn-hover);
	color: var(--plashka-btn-text);
}

.yellow-star {
	color: yellow;
}

.game-provider {
	display: flex;
	align-items: center;
}

/*языковое меню*/
.languages {
	z-index: 2;
	margin-left: 10px;
	position: relative;
	display: flex;
}

.btn-lang {
	color: #ffffff;
	background: #206DB9;
	height: 40px;
	padding: 0 22px 0 14px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	z-index: 1;
	cursor: pointer;
	font-size: 22px;
	text-transform: uppercase;
}

.languages > ul li a {
	height: 40px;
	width: 100%;
	font-size: 20px;
	font-weight: 500;
	color: #206DB9;
	display: flex;
	align-items: center;
	padding-left: 14px;
	text-decoration: none;
}

.languages.active > ul {
	display: block;
}

.languages > ul {
	position: absolute;
	left: 0;
	right: 0;
	display: none;
	background: #ffffff;
	top: 100%;
	z-index: -1;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid lightgrey;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-lang::after {
	content: '';
	display: inline-block;
	margin-left: 16px;
	width: 6px;
	height: 6px;
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg);
	transition: transform 0.3s;
}

.languages.no-menu .btn-lang::after {
	display: none;
}

.language-menu.visible {
	display: block;
}

.game-provider {
	height: 100%;
}

.game-provider img {
	margin-top: auto !important;
	margin-bottom: auto !important;
}

.swiper-2 a {
	height: auto !important;
}

.image-wrapp {
	height: 120px !important;
	display: flex;
	align-items: center;
}

.name-of-game {
	margin-top: auto;
}

.swiper-1 img {
	margin: auto;
}

@media (max-width: 768px) {
	/*.swiper-1 .swiper-slide {
		height: auto;
	}*/
	.popular-game {
		height: auto;
	}
}

.burger {
	transition: 0.4s ease;
	transform-origin: center;
}

.top-menu.active + .menu-toggle .burger:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.top-menu.active + .menu-toggle .burger:nth-child(2) {
	opacity: 0;
}

.top-menu.active + .menu-toggle .burger:nth-child(3) {
	transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 728px) {
	.bottom-block > *:first-child {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.bottom-block .logo img {
		width: auto;
		height: 35px;
	}

	.page-button.fixed-block-but {
		margin-top: 0;
		padding: 9px 27px;
	}

	.footer .logo {
		margin-bottom: 0;
	}

	.bottom-block {
		flex-direction: column;
		align-items: center;
	}
}

.wp-block-table table {
	width: 100%;
	border-collapse: separate;
	font-size: 19px;
	color: #1f2937;
	min-width: 600px;
	max-width: 985px;
	margin: 25px auto;
	border: 1px solid #d0d7de;
	border-radius: 16px;
}

.wp-block-table table tr:not(:last-child) {
	border-bottom: 1px solid #DCE3E8;
}

.wp-block-table table .styled-th {
	background-color: #E9EEF1;
	font-weight: 600;
}

.wp-block-table table .styled-th th {
	font-weight: 600;
}

.wp-block-table table th {
	text-align: left;
	padding: 11px 16px;
	font-weight: 600;
	color: var(--table-left-text);
	white-space: nowrap;
	border-right: 1px solid #DCE3E8;
	border-bottom: 1px solid #DCE3E8;
}

.wp-block-table table td {
	padding: 11px 16px;
	color: var(--table-right-text);
	border-right: 1px solid #DCE3E8;
	border-bottom: 1px solid #DCE3E8;
}

.wp-block-table table tr:not(:last-child) {
	border-bottom: 1px solid #DCE3E8;
}

.wp-block-table td, .wp-block-table th {
	border: none;
}

.wp-block-table table tr:last-child td,
.wp-block-table table tr:last-child th {
	border-bottom: none;
}

.wp-block-table table tr td:last-child,
.wp-block-table table tr th:last-child {
	border-right: none;
}

@media (max-width: 728px) {
	.wp-block-table table td, .wp-block-table table th {
		font-size: 16px !important;
	}
}

/*table {
	 width: 100%;
	 border-collapse: separate;
	 font-size: 19px;
	 color: #1f2937;
	 min-width: 600px;
 max-width: 985px;
	 margin: 25px auto;
	 border: 1px solid #d0d7de;
	 border-radius: 16px;
}
table tr:not(:last-child) {
	 border-bottom: 1px solid #DCE3E8;
}
table .styled-th {
	 background-color: #E9EEF1;
	 font-weight: 600;
}
table .styled-th th {
	 font-weight: 600;
}
table th {
	 text-align: left;
	 padding: 11px 16px;
	 font-weight: 400;
	 color: var(--table-left-text);
	 white-space: nowrap;
	 border-right: 1px solid #DCE3E8;
 border-bottom: 1px solid #DCE3E8;
}
table td {
	 padding: 11px 16px;
	 color: var(--table-right-text);
 border-right: 1px solid #DCE3E8;
 border-bottom: 1px solid #DCE3E8;
}
table tr:not(:last-child) {
	 border-bottom: 1px solid #DCE3E8;
}
td, .wp-block-table th {
 border: none;
}

table tr:last-child td,
table tr:last-child th {
	 border-bottom: none;
}

table tr td:last-child,
table tr th:last-child {
	 border-right: none;
}

@media (max-width: 728px) {
table td, .wp-block-table table th {
 font-size: 16px!important;
 }
}*/
@media (max-width: 728px) {
	.bottom-author-block img {
		width: 100px;
	}
	.foot-text {
		font-size: 17px;
	}
	.footer .menu {
		flex-wrap: wrap; 
		justify-content: center;
	}
	.author-photos img {
    border-radius: 15px;
}
}

.review {
	min-height: 257px;
	justify-content: stretch;
} 
.review-author  {
	margin-top: auto;
}
.game-provider img {
	height: 113px;
/*     width: auto; */
    margin: 0 auto;
}
.banner-text p {
	margin-bottom: 14px;
}
.banner-text .bonus {
	margin-bottom: 30px;
}

