.left-menu li{
    list-style-type: none !important;
}
.lang-switcher{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.lang-switcher li a{
    padding: 0;
}
.svg-line{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 32px;
	background: #fff;
	padding: 24px;
	border-radius: 8px;
}
.svg-line__item{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
.svg-line__item img{
	height: 50px !important;
	width: 50px !important;
	object-fit: cover;
}
.svg-line__item p{
	color: #24ba9d;
	font-weight: bold;
	margin: 0 !important;
}
@media screen and (max-width: 768px){
	.svg-line{
		flex-direction: column;
		gap: 12px;
	}
}
.breadcrumbs li:first-child:after{
	content: "/";
	color: #24ba9d;
	font-weight: bold;
	padding-right: 4px;
}
.sld3 .swiper-wrapper{
	position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.sld3 .swiper-button-next,
.sld3 .swiper-button-prev{
	color: #24ba9d;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 18px;
}
.sld3.swiper-container {
	width: 100%;
	max-height: 400px;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 20px;
}
.sld3 .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	color: #fff;
}
.review__wrapper {
    width: 100%;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .review {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 24px;
    font-size: 18px;
    max-width: 40vw;
  }
  .review__text {
    display: flex;
    flex-direction: column;
  }
  blockquote {
    border-left: 10px solid #24ba9d;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: '\201C' '\201D' '\2018' '\2019';
  }
  .review .img {
    border-radius: 50%;
    object-fit: cover;
    height: 150px;
    width: 150px;
  }
  .review__rating {
    display: flex;
    align-items: center;
  }
  blockquote:before {
    color: #24ba9d;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
  }
  @media screen and (max-width: 768px) {
    .review {
      max-width: 60vw;
    }
    .review .img {
      height: 90px;
      width: 90px;
    }
  }
  @media screen and (max-width: 550px) {
    .review {
      flex-direction: column;
      max-width: 60vw;
    }
    .review .img {
      height: 90px;
      width: 90px;
    }
  }
  .rank-input {
    color: inherit;
    width: 12px;
  }
.mtable-wrap{
	max-width: 100%;
	overflow-y: scroll;
}
.mtable{
	border: 1px solid #fff;
	width: 100%;
	border-radius: 5px;
	border-collapse: collapse;
}
.mtable th, .mtable td{
	border: 1px solid #fff;
	padding: 4px 8px;
}
.mtable tr{
	border-top-left-radius: 5px;
}
.sidebar__list a{
    display: block;
    background-color: #eaeaea;
    margin-top: -1px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    white-space: nowrap;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    line-height: 41px;
    position: relative;
    text-transform: capitalize;
}
.mtext-grid-right{
	margin-top: 24px;
	margin-bottom: 24px;
	grid-template-columns: 50% auto;
	grid-template-rows: auto 1fr;
	display: grid;
    column-gap: 24px;
    grid-template-areas:
        "title image"
        "content image";
	box-sizing: border-box;
	position: relative;
	height: max-content;

}
.mtext-grid-left{
	margin-top: 24px;
	margin-bottom: 24px;
	grid-template-columns: auto 50%;
	grid-template-rows: auto 1fr;
	display: grid;
    column-gap: 24px;
    grid-template-areas:
        "image title"
        "image content";
	box-sizing: border-box;
	position: relative;
	height: max-content;

}
.mtext img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.mtext-grid-right h1,
.mtext-grid-right h2,
.mtext-grid-right h3,
.mtext-grid-right h4,
.mtext-grid-right h5,
.mtext-grid-right h6,
.mtext-grid-left h1,
.mtext-grid-left h2,
.mtext-grid-left h3,
.mtext-grid-left h4,
.mtext-grid-left h5,
.mtext-grid-left h6
{
    font-size: 22px !important;
    font-weight: bold !important;
    margin: 0 0 20px 0 !important;
    color: #fff !important;
}
.mtext-grid-right img, .mtext-grid-left img{
	width: 500px;
	min-width: 500px;
	max-width: 500px;
	height: 500px;
	min-height: 500px;
	max-height: 500px;
	border-radius: 8px;
	object-fit: cover;
}
.mtext-grid-right .title{
	align-self: flex-start;
	grid-area: title;
	position: relative;
}
.mtext-grid-right .content{
	grid-area: content;
    align-self: flex-start;
	position: relative;
	overflow: visible;
	height: max-content;
}
.mtext-grid-right .image{
	align-self: flex-start;
	grid-area: image;
	position: relative;
}


.mtext-grid-left .title{
	align-self: flex-start;
	grid-area: title;
	position: relative;
}
.mtext-grid-left .content{
	grid-area: content;
    align-self: flex-start;
	position: relative;
	overflow: visible;
	height: max-content;
}
.mtext-grid-left .image{
	align-self: flex-start;
	grid-area: image;
	position: relative;
}
@media (max-width: 968px) {
	.mtext-grid-right .content p:nth-child(1){
		width: unset;
		min-height: unset;
	}
	.mtext-grid-right img, .mtext-grid-left img{
	  min-width: unset;
	  min-height: unset;
	  max-width: 100%;
	  width: 100%;
	  height: auto;
      max-height: 500px;
	}
    .mtext-grid-right, .mtext-grid-left{
		display: flex;
		flex-direction: column;
	}
	.mtext-grid-right img, .mtext-grid-left img{
		width: 100% !important;
		object-fit: cover;
	}
	.mtext-grid-right .image, .mtext-grid-left .image{
		align-self: unset;
	}
	.mtext-grid-right .title, .mtext-grid-left .title{
		align-self: unset;
	}
	.mtext-grid-right .content, .mtext-grid-left .content{
		align-self: unset;
	}
}
@media (max-width: 600px) {
	.mtext-grid-right img, .mtext-grid-left img{
      max-height:280px;
	}
}
details{
	background: #dc1f00;
    /*box-shadow: 0 10px 30px rgb(250 65 0 / 40%);*/
	border-radius: 8px;
	margin-bottom: 12px;
	color: white !important;
}
summary{
	font-size: 24px;
	padding: 12px 24px;
	color: white !important;
}
details p {
	font-weight: normal;
	font-size: 16px;
	padding: 12px 24px !important;
	color: white !important;
}
.slider-line {
	display: flex;
	margin: 0 0 15px 0;
	justify-content: space-between;
}

	.slider-line-item {
		background: url(../images/win-bg-ny.png) center center no-repeat;
		display: flex;
		text-align: center;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 193px;
		height: 107px;
		position: relative;
		background-size: contain;
	}

		.slider-line-item-title {
			color: #fff;
			font-size: 16px;
			text-overflow: ellipsis;
			overflow: hidden;
			white-space: nowrap;
			margin: 0 0 8px 0;
		}

		.slider-line-item-image {
			display: flex;
			justify-content: center;
			width: 78px;
			height: 56px;
			margin: 0 0 2px 0;
		}

			.slider-line-item-image img {
				width: 78px;
				height: 56px;
				border-radius: 4px;

			}

		.slider-line-item-info {
			color: #dc1f00;
			justify-content: space-between;
			font-size: 16px;
			width: 80%;
			display: flex;
		}

			.slider-line-item-info i {
				font-style: normal;
			}

			.slider-line-item-info i:first-child {
				color: #24ba9d;
			}

		.slider-line-item-over {
			display: none;
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background: rgba(0,0,0,.3);
			text-align: center;
			justify-content: center;
			align-items: center;
			flex-direction: column;
			border-radius: 4px;
		}

			.slider-line-item-over i {
				color: #fff;
				outline: 0;
				padding: 7px 24px;
				font-size: 16px;
				text-align: center;
				white-space: nowrap;
				border: 0;
				border-radius: 4px;
				-webkit-transition-duration: .2s;
				transition-duration: .2s;
				-webkit-transition-timing-function: ease-in-out;
				transition-timing-function: ease-in-out;
				cursor: pointer;
				font-style: normal;
				background: #dc1f00;
			}

				.slider-line-item-over i:hover {
					background: #c30700;
				}

		.slider-line-item:hover .slider-line-item-over {
			display: flex;
		}


body {
	padding: 80px 0 0 0;
	margin: 0;
	background: rgb(38, 38, 52);
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #000;
}

input, textarea {
	font-family: 'Roboto', sans-serif !important;
	outline: none !important;
}

h1, h2, h3, h4, form {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
}
img {
	border: none;
}

html, body {
	min-height: 100vh;
}

form {
	margin: 0;
	padding: 0;
}

.head-line {
	position: fixed;
	background: rgb(66, 66, 66);
	box-shadow: rgb(0 0 0 / 15%) 0px 0px 18px 16px;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 80px;
}

	.head-line-wrap {
		position: relative;
	}

		.logo {
			position: absolute;
			left: 50px;
			top: 10px;
			display: block;
			width: 140px;
		}

			.logo img {
				max-width: 100%;
			}

		.head-line-top {
			border-bottom: 1px #656565 solid;
			height: 45px;
			width: calc(100% - 250px);
			margin-left: 250px;
			display: flex;
			align-items: center;
			justify-content: flex-end;
		}

			.head-input {
				width: 200px;
				margin: 0 6px 0 0;
				position: relative;
			}

				.head-input input {
					display: block;
					width: 100%;
					height: 35px;
					line-height: 35px;
					padding: 0 15px;
					box-sizing: border-box;
					color: #000;
					font-size: 16px;
					background: #fff;
					border-radius: 4px;
					border: 0;
					margin: 0;
				}

				.head-input input::placeholder {
					color: #afafaf;
				}

				.hip {
					width: 22px;
					height: 22px;
					position: absolute;
					right: 10px;
					top: 50%;
					margin: -11px 0 0 0;
					border-radius: 100%;
					background: #24ba9d;
					text-align: center;
					line-height: 24px;
					color: #fff;
					font-weight: bold;
					font-size: 16px;
					font-style: normal;
				}

			.head-enter {
				height: 35px;
				line-height: 35px;
				border-radius: 4px;
				padding: 0 25px;
				box-sizing: border-box;
				font-size: 16px;
				background: #fff;
				color: #fff;
				font-weight: bold;
				background: #24ba9d;
				margin: 0 6px 0 0;
				transition: all 0.2s ease-in-out;
			}

				.head-enter:hover {
					background: rgb(51, 159, 143);
				}

			.head-reg {
				height: 35px;
				line-height: 35px;
				border-radius: 4px;
				padding: 0 25px;
				box-sizing: border-box;
				font-size: 16px;
				background: #fff;
				color: #fff;
				font-weight: bold;
				background: #dc1f00;
				margin: 0 6px 0 0;
				transition: all 0.2s ease-in-out;
			}

				.head-reg:hover {
					background: rgb(195, 7, 0);
				}

			.head-lang {
				height: 35px;
				padding: 0 35px 0 10px;
				display: flex;
				align-items: center;
				position: relative;
				cursor: pointer;
			}

				.head-lang img {
					width: 24px;
				}

				.head-lang:after {
					content: '';
					transition: all 0.2s ease 0s;
					position: absolute;
					top: 14px;
					right: 14px;
					border-width: 5px 4px;
					border-style: solid;
					border-color: rgb(255, 255, 255) transparent transparent;
					height: 0px;
					width: 0px;
				}

				.head-lang-hidden {
					display: none;
					position: absolute;
					background: rgb(66, 66, 66);
					top: 30px;
					right: 0;
					padding: 5px;
				}

					.head-lang-hidden a {
						display: flex;
						align-items: center;
						color: #fff;
						font-size: 14px;
						padding: 6px 0;
						font-weight: 500;
					}

					.head-lang-hidden a span {
						width: 27px;
						text-align: left;
					}

						.head-lang-hidden a img {
							width: 22px;
							margin: 0 5px 0 0;
						}

					.head-lang-hidden a:hover {
						color: #24ba9d;
					}

		.head-line-bottom {
			display: flex;
			align-items: center;
			justify-content: center;
		}

			.head-menu-link {
				height: 34px;
				line-height: 34px;
				margin: 0 25px;
				display: flex;
				align-items: center;
				color: rgb(169, 169, 169);
				font-size: 17px;
				transition: all 0.2s ease-in-out;
			}

				.head-menu-link img {
					height: 58%;
					display: block;
				}

				.head-menu-link-active {
					font-weight: bold;
					color: #fff;
				}

				.head-menu-link-active:before {
					content: '';
					width: 10px;
					height: 10px;
					border-radius: 100%;
					display: block;
					background: #24ba9d;
					margin: 0 10px 0 0;
				}

				.head-menu-link:hover {
					color: #fff;
				}

			.head-menu-link-more {
				color: #fff;
				font-weight: 800;
				font-size: 24px;
				display: flex;
				align-items: center;
				padding: 0 25px;
				transition: all 0.2s ease-in-out;
			}

				.head-menu-link-more i {
					font-style: normal;
					margin: -10px 0 0 0;
				}

				.head-menu-link-more:hover {
					color: #24ba9d;
				}


.main-block {
	position: relative;
}

	.main-block:before {
		content: '';
		width: calc((100% - 1280px) / 2);
		background: url(../images/girls-cards-left.jpg) right top no-repeat;
		height: 100%;
		position: fixed;
		left: 0;
		top: 0;
	}

	.main-block:after {
		content: '';
		width: calc((100% - 1280px) / 2);
		background: url(../images/girls-cards-right.jpg) left top no-repeat;
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
	}

	.main-wrap {
		width: 1260px;
		margin: 0 auto;
		text-align: left;
		background: #262634;
		padding: 10px 10px 0 10px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

		.left-col {
			width: 244px;
		}

			.left-bonus {
				height: 214px;
				position: relative;
				overflow: hidden;
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				margin: 0 0 10px 0;
			}

				.left-bonus:before {
					content: '';
					position: absolute;
					width: 100%;
					height: 100%;
					display: block;
					background: url(../images/start-bonus-coins2.png) center center no-repeat;
					left: 0;
					top: 0;
					z-index: 2;
				}

				.left-bonus:after {
					content: '';
					position: absolute;
					width: 100%;
					height: 100%;
					display: block;
					background: url(../images/start-bonus-bg.png) center center no-repeat;
					left: 0;
					top: 0;
					z-index: 1;
					animation: rotateBg 3s linear infinite
				}

				@-webkit-keyframes rotateBg{0%{opacity:1;-webkit-transform:rotate(0);transform:rotate(0)}25%,75%{opacity:0}50%{opacity:1}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg);opacity:1}}
				@keyframes rotateBg{0%{opacity:1;-webkit-transform:rotate(0);transform:rotate(0)}25%,75%{opacity:0}50%{opacity:1}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg);opacity:1}}

				.left-bonus-title {
					position: relative;
					z-index: 3;
					font-size: 20px;
					color: #fff;
					font-weight: bold;
				}

				.left-bonus-title2 {
					position: relative;
					z-index: 3;
					font-size: 48px;
					color: #fff;
					font-weight: 800;
				}

				.left-bonus a {
					color: #fff;
					outline: 0;
					padding: 11px 24px;
					font-size: 16px;
					text-align: center;
					white-space: nowrap;
					border: 0;
					border-radius: 4px;
					line-height: 22px;
					position: relative;
					overflow: hidden;
					font-weight: 500;
					-webkit-box-sizing: border-box;
					box-sizing: border-box;
					z-index: 4;
					-webkit-transition-duration: .2s;
					transition-duration: .2s;
					-webkit-transition-timing-function: ease-in-out;
					transition-timing-function: ease-in-out;
					background: #dc1f00;

					margin-top: 12px;
					-webkit-animation: scaleBtn 2s linear .4s infinite;
					animation: scaleBtn 2s linear .4s infinite;
				}

				@-webkit-keyframes scaleBtn{0%,30%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.1);transform:scale(1.1)}}
				@keyframes scaleBtn{0%,30%{-webkit-transform:scale(1);transform:scale(1)}20%{-webkit-transform:scale(1.1);transform:scale(1.1)}}

					.left-bonus a:hover {
						background: #c30700;
					}

		.right-col {
			width: calc(100% - 254px);
		}



.mtext {
	color: #fff;
	font-size: 15px;
	line-height: 120%;
	padding: 20px 10px;
}

	.mtext h1 {
		font-size: 26px;
		font-weight: bold;
		margin: 0 0 20px 0;
		color: #fff;
	}

	.mtext h2 {
		font-size: 22px;
		font-weight: bold;
		margin: 0 0 20px 0;
		color: #fff;
	}

	.mtext h3 {
		font-size: 18px;
		font-weight: bold;
		margin: 0 0 20px 0;
		color: #fff;
	}

	.mtext p {
		margin: 0 0 20px 0;
		padding: 0;
	}

	.mtext a {
		color: #fff;
		text-decoration: underline;
	}

		.mtext a:hover {
			opacity: 0.7;
		}

 .promotional-carousel-banner__stars {
    top: 10%;
    position: absolute;
    height: 154px;
    left: 3%;
    width: 278px;
	z-index: 5;
	}
   .promotional-carousel-banner__star {
    position: absolute;
    background: url(../images/star.png) no-repeat center bottom;
    background-size: contain;
    width: 40px;
    height: 40px;
    -webkit-animation-duration: 5s;
            animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
   .promotional-carousel-banner__star:nth-child(1) {
    top: 36%;
    left: 38%;
    -webkit-animation-name: welcome-star-1;
            animation-name: welcome-star-1; }
   .promotional-carousel-banner__star:nth-child(2) {
    width: 50px;
    height: 50px;
    top: -7%;
    left: 35%;
    -webkit-animation-name: welcome-star-2;
            animation-name: welcome-star-2; }
   .promotional-carousel-banner__star:nth-child(3) {
    width: 50px;
    height: 50px;
    top: -18%;
    left: 42%;
    -webkit-animation-name: welcome-star-3;
            animation-name: welcome-star-3; }
   .promotional-carousel-banner__star:nth-child(4) {
    top: 46%;
    left: -5%;
    -webkit-animation-name: welcome-star-4;
            animation-name: welcome-star-4; }
   .promotional-carousel-banner__star:nth-child(5) {
    top: 3%;
    left: 12%;
    -webkit-animation-name: welcome-star-5;
            animation-name: welcome-star-5; }
   .promotional-carousel-banner__star:nth-child(6) {
    width: 50px;
    height: 50px;
    top: 69%;
    left: 57%;
    -webkit-animation-name: welcome-star-6;
            animation-name: welcome-star-6; }
   .promotional-carousel-banner__star:nth-child(7) {
    width: 50px;
    height: 50px;
    top: 16%;
    left: 82%;
    -webkit-animation-name: welcome-star-7;
            animation-name: welcome-star-7; }
   .promotional-carousel-banner__star:nth-child(8) {
    top: 34%;
    left: 13%;
    -webkit-animation-name: welcome-star-8;
            animation-name: welcome-star-8; }
  -az .promotional-carousel-banner__text {
    right: 15%;
    top: 52%; }

@-webkit-keyframes welcome-star-1 {
  0% {
    opacity: 0; }
  12.5% {
    opacity: 1; }
  23% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes welcome-star-1 {
  0% {
    opacity: 0; }
  12.5% {
    opacity: 1; }
  23% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-webkit-keyframes welcome-star-2 {
  0% {
    opacity: 0; }
  12.5% {
    opacity: 0; }
  23% {
    opacity: 1; }
  35.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes welcome-star-2 {
  0% {
    opacity: 0; }
  12.5% {
    opacity: 0; }
  23% {
    opacity: 1; }
  35.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-webkit-keyframes welcome-star-3 {
  0% {
    opacity: 0; }
  23% {
    opacity: 0; }
  35.5% {
    opacity: 1; }
  48% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes welcome-star-3 {
  0% {
    opacity: 0; }
  23% {
    opacity: 0; }
  35.5% {
    opacity: 1; }
  48% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-webkit-keyframes welcome-star-4 {
  0% {
    opacity: 0; }
  35.5% {
    opacity: 0; }
  48% {
    opacity: 1; }
  60.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes welcome-star-4 {
  0% {
    opacity: 0; }
  35.5% {
    opacity: 0; }
  48% {
    opacity: 1; }
  60.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-webkit-keyframes welcome-star-5 {
  0% {
    opacity: 0; }
  48% {
    opacity: 0; }
  60.5% {
    opacity: 1; }
  73% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes welcome-star-5 {
  0% {
    opacity: 0; }
  48% {
    opacity: 0; }
  60.5% {
    opacity: 1; }
  73% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-webkit-keyframes welcome-star-6 {
  0% {
    opacity: 0; }
  10.5% {
    opacity: 1; }
  23% {
    opacity: 0; }
  35% {
    opacity: 1; }
  47% {
    opacity: 0; }
  60.5% {
    opacity: 0; }
  72.5% {
    opacity: 1; }
  85.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes welcome-star-6 {
  0% {
    opacity: 0; }
  10.5% {
    opacity: 1; }
  23% {
    opacity: 0; }
  35% {
    opacity: 1; }
  47% {
    opacity: 0; }
  60.5% {
    opacity: 0; }
  72.5% {
    opacity: 1; }
  85.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-webkit-keyframes welcome-star-7 {
  0% {
    opacity: 0; }
  8.5% {
    opacity: 1; }
  19% {
    opacity: 0; }
  35% {
    opacity: 1; }
  47% {
    opacity: 0; }
  60.5% {
    opacity: 1; }
  72.5% {
    opacity: 0; }
  85.5% {
    opacity: 1; }
  97.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes welcome-star-7 {
  0% {
    opacity: 0; }
  8.5% {
    opacity: 1; }
  19% {
    opacity: 0; }
  35% {
    opacity: 1; }
  47% {
    opacity: 0; }
  60.5% {
    opacity: 1; }
  72.5% {
    opacity: 0; }
  85.5% {
    opacity: 1; }
  97.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@-webkit-keyframes welcome-star-8 {
  0% {
    opacity: 0; }
  12.5% {
    opacity: 1; }
  23% {
    opacity: 0; }
  35% {
    opacity: 1; }
  47% {
    opacity: 0; }
  60% {
    opacity: 1; }
  72% {
    opacity: 0; }
  84% {
    opacity: 1; }
  97.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes welcome-star-8 {
  0% {
    opacity: 0; }
  12.5% {
    opacity: 1; }
  23% {
    opacity: 0; }
  35% {
    opacity: 1; }
  47% {
    opacity: 0; }
  60% {
    opacity: 1; }
  72% {
    opacity: 0; }
  84% {
    opacity: 1; }
  97.5% {
    opacity: 0; }
  100% {
    opacity: 0; } }

.slider-item-text {
	position: absolute;
    top: 90px;
    left: 346px;
    max-width: 205px;
    font-size: 21px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: white;
	z-index: 10;
}




.leftr-menu {
	margin: 0 0 10px 0;
}

	.leftr-menu a {
		padding: 10px 10px;
		display: block;
		color: #fff;
		background: #dc1f00;
		box-sizing: border-box;
		margin: 0 0 1px 0;
		font-size: 16px;
		position: relative;
	}



	.leftr-menu a:first-child {
		border-radius: 4px 4px 0 0;
	}

	.leftr-menu a:last-child {
		border-radius: 0 0 4px 4px;
	}

	.leftr-menu > div:last-child a {
		border-radius: 4px;
	}

	.leftr-menu a.leftr-menu-active {
		margin: 13px 0;
		border-radius: 4px;
	}

	.leftr-menu a.leftr-menu-active:after {
		position: absolute;
		content: '';
		background-image: url(../images/glow-lights.gif);
		width: calc(100% + 26px);
		height: 65px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: -13px;
		background-size: 100% 100%,0,0;
		mix-blend-mode: screen;
		z-index: 1;
	}

		.leftr-menu a:hover {
			background: #c30700;
		}

.left-menu {

}

	.left-menu a {
		padding: 11px 10px;
		display: block;
		color: #fff;
		background: #424242;
		box-sizing: border-box;
		margin: 0 0 1px 0;
		font-size: 16px;
		position: relative;
	}

	.left-menu a.left-menu-fg {
		margin: 10px 0;
		border-radius: 4px;
	}

		.left-menu a:hover {
			background: #242424;
		}

		.new:before {
			content: '';
			background: url(../images/ribbon-new-menu.svg) no-repeat center;
			position: absolute;
			width: 55px;
			height: 29px;
			-webkit-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
			right: -33px;
			top: 43%;
			pointer-events: none;
		}

.news-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

	.news-item {
		width: 19%;
		box-sizing: border-box;
		height: 170px;
		margin: 0 0 12px 0;
		overflow: hidden;
	}

		.news-item-image {
			height: 143px;
			background-size: 100% 100%;
			background-position: center center;
			margin: 0 0 3px 0;
			position: relative;
			transition:all 0.5s cubic-bezier(.68,0,.43,.92);
			/*transition: transform .5s cubic-bezier(.68,0,.43,.92),-webkit-transform .5s cubic-bezier(.68,0,.43,.92);*/
		}

			.news-item:hover .news-item-image {
				/*transform: scale(1.15);*/
				background-size: 115% 115%;
			}

			.news-item-over {
				background: rgba(0,0,0,.4);
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				display: none;
				justify-content: center;
				align-items: center;
				flex-direction: column;
				transition:all 0.3s ease;
			}

			.news-item:hover .news-item-over {
				display: flex;
			}

				.news-item-play {
					background: #dc1f00;
					padding: 7px 34px;
					font-size: 16px;
					text-align: center;
					white-space: nowrap;
					border-radius: 4px;
					color: #fff;
					font-weight: 500;
					margin: 0 0 5px 0;
				}

					.news-item-play:hover {
						background: #c30700;
					}

				.news-item-demo {
					color: #fff;
					font-size: 16px;
				}

					.news-item-demo:hover {
						text-decoration: underline;
					}

		.news-item-title {
			font-size: 16px;
			color: #fff;
			position: relative;

		}

			.news-item-title i, .games__item-title i {
				width: 30px;
				height: 30px;
				background: url(../images/r.png) left top no-repeat;
				display: block;
				position: absolute;
				right: -10px;
				top: 1px;
				background-size: auto 16px;
				cursor: pointer;
			}

			.games__item-title i {
				top: 3px;
			}

				.news-item-title i:hover, .games__item-title i:hover {
					background: url(../images/r.png) -53px top no-repeat;
					background-size: auto 16px;
				}

.games__item-favorite {
	display: none !important;
}

.games__item-title {
	overflow: hidden;
}
			blockquote, figure {
    margin: 0;
}

.button {
    color: #fff;
    outline: 0;
    padding: 7px 24px;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    border: 0;
    border-radius: 4px;
    line-height: 22px;
    position: relative;
    overflow: hidden;
    font-family: "Roboto-Medium",sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 4;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.button_red {
    background-color: #dc1f00;
}


		.games__list,.v-sport-mobile.multiply-games{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-direction:normal}.v-sport-mobile.multiply-games{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.v-sport-mobile.multiply-games iframe{position:static;-webkit-box-flex:1;-ms-flex:1;flex:1}body.gamepage_no-loggin .gamepage__aside{overflow-x:visible}.games__list{margin:0;padding:0;text-indent:0;list-style:none;list-style-position:outside;-webkit-box-orient:horizontal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.games__list-item{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-flex-preferred-size:20%;flex-basis:20%;max-width:20%;padding-right:10px;margin-bottom:10px}.games__list-item:nth-child(5n){padding-right:0}.games__item{position:relative}.games__item:focus{outline:0}.games__item-content,.games__item-pic{position:relative;overflow:hidden}.games__item-title{display:block;color:#fff}.games__item-image{display:block;width:100%;height:143px;overflow:hidden;position:relative;border-radius:4px}.games__item-image img{width:100%;height:100%;-webkit-transition:-webkit-transform .5s cubic-bezier(.68,0,.43,.92);transition:transform .5s cubic-bezier(.68,0,.43,.92);transition:transform .5s cubic-bezier(.68,0,.43,.92),-webkit-transform .5s cubic-bezier(.68,0,.43,.92)}.games__item-title{position:relative;text-overflow:ellipsis;overflow-x:hidden;padding:.25em 19px .25em 0;white-space:nowrap}.games__item-control{position:absolute;top:0;left:0;background-color:rgba(0,0,0,.4);width:100%;height:100%;display:none}.games__item-control-wrapper,.games__item-favorite span{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.games__item-control-wrapper{text-align:center;width:100%}.games__item-control .button,.games__item-control-link{display:block;color:#fff;text-align:center;margin:auto;min-width:65%}.games__item-control-link{-webkit-transition:color .1s ease-out;transition:color .1s ease-out;margin:.5em auto auto;text-decoration:none}.games__item-control-link:hover{text-decoration:underline;color:#f2f2f2}.games__min-bet-label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:86px;height:29px;background:url(../img/assets/gamesList/min-bet-label.png) no-repeat center;background-size:cover;position:absolute;top:5px;right:0;font-family:Roboto,sans-serif;font-size:10px;font-weight:700;color:#000}.games__min-bet-label-text{margin:0 6px 0 auto;text-align:center;text-shadow:-1px 1px 0 #fff}.games__item:hover .games__item-control{display:block}.games__item:hover .games__item-image img{-webkit-transform:scale(1.15);transform:scale(1.15)}.games__list-item.has-tournament .games__item:hover .games__item-control{z-index:1}.games__item-favorite{position:absolute;width:20px;height:20px;right:0;top:50%;margin-top:-10px;cursor:pointer;overflow:visible}.games__item-favorite span{width:50px;height:50px;background-image:url(../images/sprite_star.png);background-position:left;background-repeat:no-repeat;background-size:2900%}.games__item-favorite:focus span,.games__item-favorite:hover span{background-position:3.571428571428571%}.games__item-favorite.active span{background-position:right}.games .button.button_gray{display:block;width:100%;background-color:#dc1f00}.games .button.button_gray:hover{background-color:#c30700}.games .button.button_gray::after,.games__list-item:hover .games__new-label{display:none}.r-free::before,.r-hot::before,.r-new::before{pointer-events:none;content:'';position:absolute;left:-5px;top:3px;height:30px;width:100%;z-index:1;background-position:left;background-repeat:no-repeat}.r-free::before{background-image:url(../images/min-svg/ribbon-freespins.svg)}.r-new::before{background-image:url(../images/min-svg/ribbon-new.svg)}.r-hot::before{background-image:url(../images/min-svg/ribbon-hot.svg)}.games__new-label{position:absolute;z-index:1;left:-5px;top:26px;height:30px;width:100%;background:url(../images/min-svg/ribbon-new.svg) left no-repeat}@media only screen and (max-width:1024px){.games__list-item{-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.games__list-item:nth-child(5n){padding-right:10px}.games__list-item:nth-child(4n){padding-right:0}.games__item-title{white-space:nowrap;overflow-x:hidden;text-overflow:ellipsis;width:100%;display:block;max-width:calc(100% - 19px)}}@media only screen and (max-width:1023px){.games__item:hover .games__item-control{display:none}.games__item:hover .games__item-image img{-webkit-transform:none;transform:none}.games__item:focus-within{outline:0}.games__item:focus-within .games__item-control{display:block}.games__item:focus-within .games__item-image img{-webkit-transform:scale(1.15);transform:scale(1.15)}}@media only screen and (max-width:576px){.games__item-title{margin-top:5px}.games__list-item{-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.games__list-item:nth-child(4n){padding-right:10px}.games__list-item:nth-child(2n){padding-right:0}.games__list-item:nth-child(even) .games__item-favorite{right:5px}}@media only screen and (max-width:340px){.games__item-image{height:120px}}.games__list-item.has-tournament::after{content:'';display:block;background-size:contain;width:59px;height:92px;position:absolute;left:1rem;top:0;pointer-events:none}

.r-free::before, .r-hot::before, .r-new::before {
    pointer-events: none;
    content: '';
    position: absolute;
    left: -5px;
    top: 3px;
    height: 30px;
    width: 100%;
    z-index: 1;
    background-position: left;
    background-repeat: no-repeat;
}

.r-new::before {
    background-image: url(../images/ribbon-new.svg);
}

.mline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #424242;
	padding: 0 70px;
	margin: 0 0 10px 0;
	border-radius: 4px;
}

			.mline a {
				height: 34px;
				line-height: 34px;
				color: #a9a9a9;
				position: relative;
				font-size: 20px;
			}

			a.mline-active {
				font-weight: bold;
				color: #fff;
				padding: 0 0 0 15px;
			}

				a.mline-active:after {
					content: '';
					width: 10px;
					height: 10px;
					border-radius: 100%;
					background: #24ba9d;
					position: absolute;
					left: 0;
					top: 50%;
					margin: -5px;
				}

				.mline a:hover {
					color: #fff;
				}

				.slider-item{
					display: block;
					background-repeat: no-repeat;
				}
				.swiper-wrapper{
					height: 100%;
				}
.slider-wrap {
			padding: 0 0 5px 0;
			margin: 0 0 5px 0;
	overflow: hidden;
		}

			.slider-block {
				position: relative;
				margin: 0 -20px 0 -280px;
			}
			.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

				.rslider-nav {
					position: absolute;
					z-index: 2;
					left: 0;
					bottom: 10px;
					display: flex;
					justify-content: center;
					width: 100%;
				}

				.sld1 {
					height: 220px;
				}

					.slider-item {
						background-size: cover;
						flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
						height: 220px;
						background-size: cover;
					}

					.swiper-pagination-bullet {
						width: 14px;
						height: 14px;
						background: none;
						border: 2px solid #24ba9d;
						opacity: 1;
						border-radius: 50%;
						margin: 3px 4px;
						outline: none;
						box-sizing: border-box;
					}

					.swiper-pagination-bullet-active {
						border-color: #24ba9d;
						background: #24ba9d;
					}

					.slider-right {
						position: absolute;
						right: 20px;
						top: 0px;
						width: 240px;
						height: 360px;
						background: #003266;
						border-radius: 15px;
						z-index: 22;
					}

						.slider-right-title {
							height: 60px;
							color: #24ba9d;
							font-size: 16px;
							font-weight: 500;
							text-transform: uppercase;
							display: flex;
							align-items: center;
							padding: 0 10px;
						}

							.slider-right-title > span:first-child {
								display: flex;
								flex-direction: column;
								justify-content: center;
								align-items: center;
								width: 60px;
								height: 40px;

								border-radius: 20px;
								background: #ffba00;
								margin-right: 11px;
								box-sizing: border-box;
							}

							.slider-right-title svg {
								width: 18px;
								height: 20px;
								fill: #000;
							}

						.sld2 {
							height: 300px;
						}

						.slider-right-item {
							height: 40px;
							display: flex;
							justify-content: space-between;
							padding: 0 10px;
							margin-bottom: 10px;
							position: relative;
							box-sizing: border-box;
						}

							.slider-right-image {
								width: 60px;

								border-radius: 5px;
								background-size: cover;
							}

							.slider-right-r {
								width: calc(100% - 70px);
								display: flex;
								justify-content: space-between;
								flex-wrap: wrap;
								padding: 2px 0 0 0;
							}

								.slider-right-item-title {
									white-space: nowrap;
									overflow: hidden;
									text-overflow: ellipsis;
									text-transform: uppercase;
									font-size: 16px;
									color: #fff;
									width: 100%;
								}

								.slider-right-nik {
									color: #24ba9d;
									white-space: nowrap;
									overflow: hidden;
									text-overflow: ellipsis;
								}

								.slider-right-price {
									background: #ffba00;
									border-radius: 10px;
									padding: 0 10px;
									color: #000;
								}

								.slfkt {
									position: absolute;
									left: 0;
									top: 0;
									width: 100%;
									height: 100%;
									opacity: 0;
									background-color: rgba(10,56,103,.8);
									transition: .4s;
									display: flex;
									justify-content: center;
									align-items: center;
								}

								.slfkt > span {
									max-width: 90%;
									height: 40px;
									box-shadow: 0 10px 30px rgb(250 65 0 / 40%);
									background-color: #fa4d00;
									background-image: linear-gradient(0deg,#fa4d00 0,#fa5e00);
									line-height: 40px;
									border-radius: 20px;
									align-items: center;
									justify-content: center;
									padding-left: 20px;
									padding-right: 20px;
									white-space: nowrap;
									text-transform: uppercase;
									overflow: hidden;
									text-overflow: ellipsis;
									font-size: 18px;
									color: #fff;
								}

									.slfkt svg {
										width: 20px;
										height: 20px;
										fill: #fc9a66;
										margin-right: 10px;
									}

								.slider-right-item:hover .slfkt {
									opacity: 1;
								}

.footer {
	margin: 20px -10px 0 -10px;
	width: calc(100% + 20px);
	padding: 10px;
	box-sizing: border-box;
	background: #424242;
}

	.footer-cols {
		display: flex;
		justify-content: space-between;
		padding: 0 40px 20px 0;
		margin: 0 0 20px 0;
		border-bottom: 1px solid #777;
	}

		.footer-col {

		}

			.footer-col-title {
				font-weight: bold;
				margin: 0 0 10px 0;
				color: #fff;
				font-size: 16px;
			}

			.footer-col a {
				font-size: 12px;
				color: #fff;
				margin: 0 0 3px 0;
				display: block;
			}

				.footer-col a:hover {
					text-decoration: underline;
				}

		.svg-partners__circle {
			fill: #24ba9d;
		}

	.footer-mid {
		display: flex;
		justify-content: space-between;
		padding: 0 20px 20px 0;
		margin: 0 0 20px 0;
		border-bottom: 1px solid #777;
	}

		.footer-mid-col {
			font-size: 11px;
			line-height: 16px;
			color: #a9a9a9;
		}

			.footer-mid-col:nth-child(1){
				width: 34%;
			}

			.footer-mid-col:nth-child(2){
				width: 32%;
			}

			.footer-mid-col:nth-child(3){
				width: 18%;
			}

				.ful {
					margin: 0;
					padding: 0;
				}

					.ful li {
						margin: 0;
						padding: 0;
						position: relative;
						list-style-type: none;
					}

						.ful li:before {
							content: '';
							background: url(../images/checked.svg) left top no-repeat;
							width: 12px;
							height: 8px;
							background-size: 100% auto;
							position: absolute;
							left: -20px;
							top: 3px;
							display: block;
						}

.footer-pr {
	text-align: center;
}

	.footer-pr img {
		max-width: 100%;
	}

.footer-pr2 {
	text-align: center;
	padding: 30px 10px;
	background: #242424;
	margin: 0 -10px 0 -10px;
	width: calc(100% + 20px);
}

	.footer-pr2 img {
		max-width: 100%;
	}

.footer-text {
	text-align: center;
    color: #a9a9a9;
	padding: 10px 10px;
	font-size: 10px;
}

	.footer-text a {

	}

		.footer-text a:hover {

		}

.burger, .mob-panel {
	display: none;
}

@media (max-width: 1450px) {

	.logo {
		width: 100px;
	}

}


@media (max-width: 1300px) {

	.head-line-bottom {
		display: none;
	}

	.head-line {
		height: 46px;
		border-bottom: 1px #656565 solid;
	}

	.head-line-top {
		border: 0;
	}

	.head-line-wrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

		.logo {
			background: url(../images/pinup2.svg) left center no-repeat;
			width: 80px;
			height: 46px;
			background-size: 100% auto;
			position: static;
		}

			.logo img {
				display: none;
			}

	.head-input {
		display: none;
	}

	.head-lang {
		display: none;
	}

	.mob-panel .head-lang {
		display: flex;
		position: absolute;
		right: 0;
		top: -1px;
		background: rgb(66, 66, 66);
	}

	.head-lang-hidden a {
		padding-left: 5px;
	}

	.head-enter, .head-reg {
		padding-left: 10px;
		padding-right: 10px;
	}

	.main-wrap {
		width: 100%;
		box-sizing: border-box;
	}

	.main-block {

	}

	.footer, .footer-pr2 {
		margin: 0;
		width: 100%;
		box-sizing: border-box;
	}

	.burger {
		width: 36px;
		height: 36px;
		background-color: inherit;
		border: 2px solid #dc1f00;
		border-radius: 4px;
		padding: 4px 2px;
		cursor: pointer;
		margin: 0 8px 0 0;
		z-index: 878889;
		display: block;
	}

	.header .burger {
		display: inline-block;
		visibility: visible;
		position: absolute;
		left: 4px;
		top: 50%;
		width: 35px;
		height: 35px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.burger__item {
		display: block;
		background-color: #a9a9a9;
		height: 4px;
		width: 100%;
		-webkit-transition: all .3s linear;
		transition: all .3s linear;
	}

	.mob-panel {
		position: fixed;
		left: 0;
		top: 47px;
		width: 100%;
		height: calc(100% - 47px);
		z-index: 55555;
		background: #eaeaea;
		display: block;
		text-align: left;
		display: none;
	}

	.slider-line {
		display: none;
	}

	body {
		padding-top: 46px;
	}

	.head-line-top {
		width: auto;
		flex: 1;
		margin: 0;
	}



	.burger__item:first-child{-webkit-transform:translateY(2px) rotate(135deg);transform:translateY(2px) rotate(135deg)}.burger_active .burger__item:nth-child(2){-webkit-transform:translateY(0) rotate(90deg);transform:translateY(0) rotate(90deg);display:none}.burger_active .burger__item:last-child{-webkit-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg)}.burger:focus,.burger__item:focus{outline:0}.burger__item{display:block;background-color:#a9a9a9;height:4px;width:100%;-webkit-transition:all .3s linear;transition:all .3s linear}.burger__item:first-child{-webkit-transform:translateY(-3px);transform:translateY(-3px)}.burger__item:nth-child(2){-webkit-transform:translateY(0);transform:translateY(0)}.burger__item:last-child{-webkit-transform:translateY(3px);transform:translateY(3px)};



}

@media screen and (max-width: 1200px){
	.slider-right {
		display: none;
	}

	.slider-block {
		margin: 0 -20px;
	}
}


@media (max-width: 870px) {

	.main-wrap {
		display: block;
	}

	.left-col {
		display: none;
	}

	.right-col {
		width: auto;
	}

	.slider-item-text {
		display: none;
	}

	.footer-pr {
		display: none;
	}

	.footer-cols {
		display: none;
	}

	.footer-mid {
		display: block;
		padding: 20px 0 0 0;
	}

	.footer-mid-col {
		width: auto !important;
		margin: 0 0 20px 0;
		text-align: center;
	}

	.footer-mid-col:nth-child(3) {
		display: none;
	}

	.footer-pr2 {
		display: none;
	}

}
@media screen and (max-width: 730px){
	.slider-item {
		height: 260px;
	}
	.slider-wrap {
		border: 0;
		padding: 0;
	}
}


@media (max-width: 700px) {

	.mline {
		display: none;
	}

}

@media screen and (max-width: 550px){
	.slider-item {
		height: 180px;
	}

	.sld1 {
		height: 200px;
	}

	.rslider-nav {
		display: none;
	}

	.slider-block {
		margin-left: -20%;
	}
}

@media (max-width: 420px) {

	.slider-item, .sld1  {
		height: 160px;
	}

	.slider-block {
		margin-left: -16%;
	}

}


.burger_active .burger__item:first-child{-webkit-transform:translateY(2px) rotate(135deg);transform:translateY(2px) rotate(135deg)}.burger_active .burger__item:nth-child(2){-webkit-transform:translateY(0) rotate(90deg);transform:translateY(0) rotate(90deg);display:none}.burger_active .burger__item:last-child{-webkit-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg)}.burger:focus,.burger__item:focus{outline:0}.burger__item{display:block;background-color:#a9a9a9;height:4px;width:100%;-webkit-transition:all .3s linear;transition:all .3s linear}.burger__item:first-child{-webkit-transform:translateY(-3px);transform:translateY(-3px)}.burger__item:nth-child(2){-webkit-transform:translateY(0);transform:translateY(0)}.burger__item:last-child{-webkit-transform:translateY(3px);transform:translateY(3px)}

.sidebar__list{margin:0;padding:0;text-indent:0;list-style:none;width:calc(100vw - 70px);max-width:553px;height:100%}.sidebar .new-in-sidebar a:after{height:28px;width:55px;background:url(../images/ribbon-new-menu.svg) no-repeat center;right:-5.2px;top:45%}.sidebar .wow-label a:after{height:28px;width:55px;background:url(../images/wow-label.svg) no-repeat center;right:-5.2px;top:45%}.sidebar__item{display:block}.sidebar__item--casino a::before,.sidebar__item--exit a::before,.sidebar__item--fav a::before,.sidebar__item--info a::before,.sidebar__item--live a::before,.sidebar__item--live-dillers a::before,.sidebar__item--lottery a::before,.sidebar__item--privilegies a::before,.sidebar__item--profile a::before,.sidebar__item--promo a::before,.sidebar__item--promo-red a::before,.sidebar__item--results a::before,.sidebar__item--sport a::before,.sidebar__item--v-sport a::before{content:"";display:inline-block;width:27px;height:27px;position:relative;top:50%;vertical-align:middle;margin-bottom:5px;margin-right:10px}.sidebar__item--tournament a::before{content:"";display:inline-block;width:27px;height:27px;top:50%;vertical-align:middle;margin-bottom:5px;margin-right:10px}.sidebar__item--android a::before,.sidebar__item--apple a::before,.sidebar__item--aviator a::before,.sidebar__item--e-sports a::before,.sidebar__item--fight-club a::before,.sidebar__item--news a::before,.sidebar__item--poker-bet a::before,.sidebar__item--promo-black a::before,.sidebar__item--superLive a::before,.sidebar__item--tv-games a::before{content:"";display:inline-block;width:27px;height:27px;position:relative;top:50%;vertical-align:middle;margin-bottom:5px;margin-right:10px}.sidebar__item--casino a::before{background:url(../images/casino-icon.svg) no-repeat center}.sidebar__item--fav .sidebar__link.sidebar__link--common::before,.sidebar__item--fav a::before{background:url(../images/featured-games.svg) no-repeat center}.sidebar__item--live a::before{background:url(../images/live.svg) no-repeat center}.sidebar__item--sport a::before{background:url(../images/ball.svg) no-repeat center}.sidebar__item--profile a::before{background:url(../images/profile.svg) no-repeat center}.sidebar__item--promo a::before{background:url(../images/promo.svg) no-repeat center}.sidebar__item--info a::before{background:url(../images/dopinfo.svg) no-repeat center}.sidebar__item--results a::before{background:url(../images/result.svg) no-repeat center}.sidebar__item--exit a::before{background:url(../images/exit.svg) no-repeat center}.sidebar__item--lottery a::before{background:url(../images/ticket.svg) no-repeat center}.sidebar__item--privilegies a::before{background:url(../images/pincoin.svg) no-repeat center}.sidebar__item--promo-red a::before{background:url(../images/promo-red.svg) no-repeat center}.sidebar__item--promo-black a::before{background:url(../images/promo.svg) no-repeat center}.sidebar__item--live-dillers a::before{background:url(../images/live-dillers.svg) no-repeat center}.sidebar__item--v-sport .sidebar__link.sidebar__link--top::before,.sidebar__item--v-sport a::before{background:url(../images/v-sport.svg) no-repeat center}.sidebar__item--tv-games a::before{background:url(../images/tv-games.svg) no-repeat center}.sidebar__item--android a::before{background:url(../images/android.svg) no-repeat center}.sidebar__item--news a::before{background:url(../images/news.svg) no-repeat center}.sidebar__item--apple a::before{background:url(../images/apple-logo.svg) no-repeat center}.sidebar__item--e-sports a::before{background:url(../images/e-sports.svg) no-repeat center}.sidebar__item--superLive a::before{background:url(../images/superlive.svg) no-repeat center}.sidebar__item--poker-bet a::before{background:url(../images/sport-poker.svg) no-repeat center;background-size:contain}.sidebar__item--aviator a::before{background:url(../images/aviator-plane.svg) no-repeat center}.sidebar__item--tournament,.sidebar__item--tournament a{display:-webkit-box;display:-ms-flexbox;display:flex}.sidebar__item--tournament a{width:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sidebar__item--tournament a::before{position:static;background:url(../images/tournament.svg) no-repeat center}.sidebar__item--tournament .sidebar_tournamets__span{max-width:calc(100% - 44px);overflow-x:hidden;text-overflow:ellipsis;display:block;overflow-y:hidden;margin-right:5px;position:relative;top:-2px}.sidebar__item--tournament a:hover:after,.touch-promo-header.open svg path{-webkit-animation:none;animation:none}.sidebar__item--tournament a:after{height:28px;width:55px;background:url(../images/aside_tournament.svg) no-repeat center;right:-5.2px;top:45%}.sidebar__item--tournament .tournament-timer{color:#dc1f00;font-size:14px;font-weight:700;position:absolute;right:54px}.sidebar__link{margin-top:-1px;text-decoration:none;color:#000;font-size:16px;white-space:nowrap;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 10px;line-height:41px;position:relative}.sidebar__link .lottery__tickets-counter{display:inline-block;background-color:#dc1f00;color:#fff;width:27px;height:27px;border-radius:50%;text-align:center;vertical-align:middle;font-size:13px;line-height:27px;position:relative;left:6px;top:-1px}.sidebar__link,.sidebar__link--top{background-color:#eaeaea}.sidebar__link .red__text{color:#dc1f00}.sidebar__link::after,.userbar .tickets-counter a.tickets-counter__logo{content:'';position:absolute;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.page--sidebar{overflow:hidden;position:fixed;width:100%}.page--sidebar .cashbox-bonuses{z-index:1!important}.page--sidebar .shadow__overlay{position:fixed;content:'';display:block;width:100%;height:100%;top:0;left:0;z-index:655;background-color:rgba(0,0,0,.7)}.sidebar__link--common .mobile-text,.slider__item .button svg{display:none}.sidebar__item--live-dillers .sidebar__link.sidebar__link--top::before{background:url(../images/live-dillers.svg) no-repeat center}.sidebar__item--tournament .sidebar__link.sidebar__link--top::before{background:url(../images/tournament.svg) no-repeat center}

.lines {
    width: 100%;
    border-radius: 8px;
    overflow: scroll;
    padding-left: 10px;
	padding-right: 10px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .lines,
  .lines table,
  .lines th,
  .lines td,
  .lines tr {
    border: none !important;
  }
  .lines table {
    width: calc(100% - 20px);
    background: white;
    color: black;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .lines table th {
    background: #54585b !important;
    vertical-align: middle;
    text-align: center;
    color: white;
  }
  .lines table td {
    vertical-align: middle;
    text-align: center;
    padding: 5px 12px;
    position: relative;
  }
  .lines table td:first-child,
  .lines table th:first-child {
    vertical-align: middle;
    text-align: left;
    color: white !important;
  }
  .lines table th{
	  max-height: 40px !important;
	  height: 40px !important;
	  padding-left: 8px !important;
	  padding-right: 8px !important;
  }
  .lines table th:first-child{
	  padding: 0px 5px 0px 40px !important;
	  position: relative;

  }
  .lines table th:last-child{

  }
  .lines table td:first-child span:first-child {
    color: #24ba9d;
    font-size: 11px;
	white-space: nowrap;
  }
  .lines table td:first-child span:last-child {
    color: #9ea7b2;
    font-size: 11px;
  }
  .lines table td:first-child::before {
    position: absolute;
    content: 'live';
    text-transform: uppercase;
    color: white;
    background: #24ba9d;
    transform: rotate(-90deg);
    font-size: 10px;
    line-height: 10px;
    padding: 1px 6px;
    left: -17px;
    margin-top: 15px;

  }
  .lines table td:nth-child(3) {
    color: #24ba9d !important;
  }
.lines table th:first-child {
    vertical-align: center;
  }
  .lines table th:first-child:before {
    content: '';
    position: absolute;
    left: 8px;
	top: 10px;
    display: inline-flex;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFF' d='M12 1c6.1 0 11 4.9 11 11s-4.9 11-11 11S1 18.1 1 12 5.9 1 12 1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%232A2D30' d='M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0zm7.1 15.6l1.2 2c-1 1.5-2.5 2.7-4.2 3.5l-.8-1.4h-4.9l-1.1 1.9c-2.4-.7-4.4-2.3-5.7-4.3L5 14.8l-2.5-4.3h-.4c.3-1.7.9-3.2 2-4.6h2.4l1.9-3.2C9.5 2.3 10.7 2 12 2c.9 0 1.7.1 2.5.3l2.1 3.6H20c1.2 1.5 1.9 3.4 2 5.4h-.4l-2.5 4.3zm-9.6-8L7 11.9l2.5 4.3h4.9l2.5-4.3-2.5-4.3H9.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    background-size: 100% 100%;
  }

  .football-zone{
	  height: 20px;
	  width: 20px;
	  background-repeat: no-repeat;
	  background-size: 100% 100%;
  }
  .open-table{
	  height: 20px;
	  width: 20px;
	  background-repeat: no-repeat;
	  background-size: 100% 100%;
  }
  .lines table td:nth-child(2){
      min-width: 15vw;
      max-width: 300px;
      width: 15vw;
      box-sizing: border-box;
  }
  .line-mobile__header{
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      background: #54585b;
      padding: 5px;
      color: white;
      font-weight: bold;
  }
  .ball{
      display: inline-flex;
      background-repeat: no-repeat;
      height: 20px;
      width: 20px;
      background-size: 100% 100%;
  }
  .ball.football{
      background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFF' d='M12 1c6.1 0 11 4.9 11 11s-4.9 11-11 11S1 18.1 1 12 5.9 1 12 1z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%232A2D30' d='M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0zm7.1 15.6l1.2 2c-1 1.5-2.5 2.7-4.2 3.5l-.8-1.4h-4.9l-1.1 1.9c-2.4-.7-4.4-2.3-5.7-4.3L5 14.8l-2.5-4.3h-.4c.3-1.7.9-3.2 2-4.6h2.4l1.9-3.2C9.5 2.3 10.7 2 12 2c.9 0 1.7.1 2.5.3l2.1 3.6H20c1.2 1.5 1.9 3.4 2 5.4h-.4l-2.5 4.3zm-9.6-8L7 11.9l2.5 4.3h4.9l2.5-4.3-2.5-4.3H9.5z'/%3E%3C/svg%3E");
  }
  .stadium{
      display: inline-flex;
      background-repeat: no-repeat;
      height: 26px;
      width: 26px;
      background-size: 100% 100%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='fill: %239e9e9e; width: 26px; heigth: 26px;'%3E%3Ctitle%3Esoccer-field%3C/title%3E%3Cpath d='M4,4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4H4M4,6H11V8.13C9.24,8.59 8,10.18 8,12C8,13.82 9.24,15.41 11,15.87V18H4V16H7V8H4V6M13,6H20V8H17V16H20V18H13V15.87C14.76,15.41 16,13.82 16,12C16,10.18 14.76,8.59 13,8.13V6M4,10H5V14H4V10M19,10H20V14H19V10M13,10.27C13.62,10.63 14,11.29 14,12C14,12.71 13.62,13.37 13,13.73V10.27M11,10.27V13.73C10.38,13.37 10,12.71 10,12C10,11.29 10.38,10.63 11,10.27Z'%3E%3C/path%3E%3C/svg%3E");
  }
  .lines{
       background: transparent;
  }
  .line-mobile__matches{
      padding: 5px;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  .line-mobile__teams{
      display: flex;
      justify-content: space-between;
      font-weight: bold;
  }
  .line-mobile__match{
      position: relative;
      padding-left: 16px;
  }
  .line-mobile__match:before {
    position: absolute;
    content: 'live';
    text-transform: uppercase;
    color: white;
    background: #24ba9d;
    transform: rotate(-90deg);
    font-size: 10px;
    line-height: 10px;
    padding: 1px 6px;
    left: -20px;
    margin-top: 12px;
    border-radius: 3px;
  }
  .line-mobile__match span:first-child{
      color: #24ba9d !important;
      font-size: 11px;
  }
  .line-mobile__teams__names{
      color: black !important;
  }
  .line-mobile__match span:last-child{
      color: #9ea7b2 !important;

      font-size: 11px;
  }
  .line-mobile__value{
      color: #24ba9d !important;
  }
  .line-mobile__teams__start{
      display: flex;
      gap: 12px
  }
  .line-mobile__coefs{
      display: flex;
      gap: 1px;
      border-radius: 8px;
      overflow: scroll;
      font-size: 14px;
  }
  .line-mobile__coef{
      background: #24ba9d;
      text-align: center;
      min-width: 50px;
      width: 11.11%;
      padding: 2px 10px;
      box-sizing: border-box;
      color: white;
  }
  .line-mobile__coef:first-child{
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
  }
  .line-mobile__coef:last-child{
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
  }
  .line-mobile__coef.title{
      background: white;
  }
  .line-mobile__coef span:last-child{
      color: white;
  }
  .line-mobile__coef span:first-child{
      color: white;
  }
  * {
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none; /* Для Internet Explorer и Edge */
}

/* Скрыть только вертикальный скроллбар */
* {
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none; /* Для Internet Explorer и Edge */

}

/* Скрыть только горизонтальный скроллбар */
* {
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none; /* Для Internet Explorer и Edge */

}
.lines-desk{
          display: table;
      }
      .line-mobile{
          display: none;
      }
  @media screen and (max-width: 960px){
      .lines{
          background: white;
          padding: 0;
          overflow: visible;
      }
      .lines-desk{
          display: none;
      }
      .line-mobile{
          display: block;
          border-radius: 8px;
          border: 2px solid white;
      }
      .line-mobile__header{
          border-top-left-radius: 8px;
          border-top-right-radius: 8px;
      }
  }

.right-col ul li {
	position: relative;
	padding: 0px 0 20px 20px;

	list-style-type: none;
	font-weight: bold;
}

.right-col ul li:before {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #24ba9d;
  content: "";
  left: 0;
  transition: .3s ease-in-out;
  top: 5px;
}

.right-col ul li:after {
  position: absolute;
  border-left: 1px dotted #24ba9d;
  width: 1px;
  top: 22px;
  content: "";
  left: 3px;
  height: calc(100% - 30px);
}

.right-col ul li:last-child {
	padding-bottom: 0;
}

.right-col ul li:last-child:after {
	display: none;
}



.right-col ol {
	margin: 0 0 30px 0;
	padding: 0;
	counter-reset: listitem;
}

.right-col ol li {
	position: relative;
	padding: 0px 0 20px 20px;
	list-style-type: none;
	font-weight: bold;
}

.right-col ol li:before {
  position: absolute;
  border-radius: 50%;
  counter-increment: listitem;
			 content: counters(listitem, '') '';
  left: 0;
  transition: .3s ease-in-out;
  top: 0px;
  color: #24ba9d;

}

.right-col ol li:after {
  position: absolute;
  border-left: 1px dotted #24ba9d;
  width: 1px;
  top: 22px;
  content: "";
  left: 3px;
  height: calc(100% - 30px);
}

.right-col ol li:last-child {
	padding-bottom: 0;
}

.right-col ol li:last-child:after {
	display: none;
}
.games__list-item:before{
    display: none;
}
.games__list-item::after{
    display: none !important;
}
.button-link-wrapper{
	display: flex;
	justify-content: center;
	margin-top: 24px;
	margin-bottom: 24px;
}
.button-link {
	display: flex;
	width: fit-content;
	padding: 12px 24px;
	color: white !important;
	text-decoration: none !important;
	text-transform: uppercase;
	border-radius: 4px;
	background: #dc1f00;
	margin-right: 20px;
	font-weight: bold;

}
.mtext img {
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.head-line-bottom a{
    height: 34px;
    line-height: 34px;
    margin: 0 25px;
    display: flex;
    align-items: center;
    color: rgb(169, 169, 169);
    font-size: 17px;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}
.vnth svg {
    fill: #e63f6d;
}
.breadcrumbs{
	list-style-type: none;
	display: flex;
	flex-direction: row;
	margin-bottom: 24px;
	padding-left: 12px;
}
.breadcrumbs a{
	color: #24ba9d;
	font-weight: normal;
	font-size: 16px;
}
.breadcrumbs a:hover{
	opacity: 0.7;
}
.head-line-menu-active{
    font-weight: bold;
    color: #fff;
}
.head-line-menu-active:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    display: block;
    background: #24ba9d;
    margin: 0 10px 0 0;
}
.plinco{
    height: 30px;
    width: auto;
    object-fit: contain;
	margin-bottom: 12px;
  }
.breadcrumbs li{
	padding: 0 !important;
}
.breadcrumbs li:before{
	display: none;
}
.breadcrumbs li:after{
	position: static !important;
	border: none !important;
	width: unset !important;
	top: unset !important;
	left: unset !important;
	height: unset !important;
}
.breadcrumbs li:last-child:after{
	content: '' !important;
}
.breadcrumbs li:not(:last-child):after{
	content: " / " !important;
}
details h3{
	display: inline !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #fff !important;
}
details h3:before{
	display: none !important;
}
details h3:after{
	display: none !important;
}
.text-content-block-right {
    grid-template-columns: 50% auto;
    display: grid;
    column-gap: 24px;
    grid-template-areas: 'content image';
  }
  .text-content-block-left {
    grid-template-columns: auto 50%;
    display: grid;
    column-gap: 24px;
    grid-template-areas: 'image content';
  }
  .text-content-block-left ol,
  .text-content-block-left ul,
  .text-content-block-right ul,
  .text-content-block-right ol {
    margin-left: 16px;
  }
  .text-content-block-right img,
  .text-content-block-left img {
    width: 500px;
    min-width: 500px;
    max-width: 500px;
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    border-radius: 8px;
    object-fit: cover;
  }
  .text-content-block-right .content,
  .text-content-block-left .content  {
    grid-area: content;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .text-content-block-right .image,
  .text-content-block-left .image {
    grid-area: image;
  }
  @media screen and (max-width: 1300px) {
    .text-content-block-left img,
    .text-content-block-right img {
      width: 300px;
      min-width: 300px;
      max-width: 300px;
      height: 300px;
      min-height: 300px;
      max-height: 300px;
    }
  }
  @media screen and (max-width: 768px) {
    .text-content-block-left img,
    .text-content-block-right img {
      width: 100%;
      min-width: unset;
      max-width: unset;
      height: auto;
      min-height: unset;
      max-height: unset;
    }
    .text-content-block-left,
    .text-content-block-right {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
  }