.features-wrapper {
	margin-top: 30px;
}
.close-popup,
.cursor-text {
	cursor: pointer;
	position: absolute;
}
.cursor-text,
.pop-up-window,
.spin-result-wrapper,
.spin-wrapper,
.wheel-wrapper {
	text-align: center;
}
.spin-wrapper {
	padding: 20px 10px;
	box-sizing: border-box;
	position: relative;
	border-radius: 16px;

	border: 2px solid #a28b7b;
}
.spin-wrapper p {
	text-align: center !important;
	font-size: 18px;
	line-height: 1.3em;
	text-indent: 0;
	padding: 0;
	margin-bottom: 40px;
}
.spin-wrapper .spin-title {
	font-size: 22px;
	line-height: 28px;
	font-weight: 700;

	margin-bottom: 15px;
}
.wheel {
	width: 506px !important;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.wheel-cursor {
	position: absolute;
	width: 35% !important;
	height: 35%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.cursor-text {
	font-style: normal;
	font-weight: 800;
	font-size: 17px;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	color: #262626;
	z-index: 2;
	display: inline-block;
	width: 63px !important;
	height: 63px;
	line-height: 63px;
	border-radius: 50%;
	vertical-align: middle;
	top: 53px;
	left: 57px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: #fff;
	background: linear-gradient(180deg, #ffe68c 0%, #e9b80d 100%);
	animation-name: scale;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes scale {
	0% {
		transform: scale(100%);
	}
	100% {
		transform: scale(110%);
	}
}
@keyframes scale2 {
	0% {
		transform: translate(-50%, -50%) scale(100%);
	}
	100% {
		transform: translate(-50%, -50%) scale(110%);
	}
}
.wheel-img {
	-webkit-transition: 4s;
	-o-transition: 4s;
	transition: 4s;
}
.close-popup {
	width: 30px;
	height: 30px;
	background-size: 100%;
	top: 10px;

	right: 10px;
}
.cursor-text:active {
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px inset;
	box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px inset;
}
.spin-result-wrapper {
	display: none;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	top: 0;
	z-index: 2;
	left: 0;
	height: 100%;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.6);
}
.pop-up-layer {
	position: fixed !important;
	top: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background-color: rgba(0, 0, 0, 0.7) !important;
	z-index: 99 !important;
}
.pop-up-layer-show {
	display: block;
}
.pop-up-window {
	position: relative;
	max-width: 400px;
	right: 0;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto !important;
	background: #fff;
	padding: 70px 10px 20px !important;
	border-radius: 10px;
	animation: 0.7s ease 0s normal none 1 running pop-up-appear;
	background-position: center;
	background-size: cover;
}
.pop-up-window::after,
.pop-up-window::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.pop-up-window::before {
	width: 110px;
	height: 110px;
	top: -55px;
	background: linear-gradient(180deg, #2aa6eb 21.15%, #006aa5 100%);
	border-radius: 50%;
	animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-before;
}
.pop-up-window::after {
	width: 84px;
	height: 67px;
	top: -32px;
	-moz-border-top-colors: none;
	-moz-border-right-colors: none;
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	border-image: none;
	animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}
.spin-wrapper::after,
.spin-wrapper::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.spin-wrapper::after {
	display: block;
	width: 65px;
	height: 56px;
	top: -38px;
	-moz-border-top-colors: none;
	-moz-border-right-colors: none;
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	border-image: none;
	animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}
@keyframes pop-up-appear {
	0% {
		transform: translateY(-2000px);
	}
	30% {
		transform: translateY(100px);
	}
	100% {
		transform: translateY(-50%);
	}
}
@keyframes pop-up-appear-before {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes pop-up-appear-after {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.pop-up-heading {
	font-size: 40px !important;
	margin-bottom: 20px !important;
}
p.pop-up-text {
	margin: 20px auto 25px !important;
	font-size: 24px !important;
	line-height: 30px !important;
	text-align: center !important;
	text-indent: 0;
	color: #414141 !important;
	font-weight: 400;
}
.pop-up-button,
.pop-up-button:hover {
	color: #fff !important;
	text-decoration: none !important;
}
.pop-up-button {
	text-transform: uppercase !important;
	padding: 10px 20% !important;
	font-size: 20px !important;
	border-radius: 5px !important;
	background-color: #2aa6eb !important;
	border: none !important;
	cursor: pointer !important;
	outline: 0 !important;
}
.cursor-wheel {
	position: absolute;
	bottom: 38px;
	left: 38px;
}
.wheel img {
	max-width: 100%;
}
.super-rotation {
	-webkit-animation-name: super-rotation;
	animation-name: super-rotation;
	-webkit-animation-duration: 7s;
	animation-duration: 7s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
@-webkit-keyframes super-rotation {
	70% {
		-webkit-transform: rotate(1783deg);
		transform: rotate(1783deg);
	}
	100% {
		-webkit-transform: rotate(1774deg);
		transform: rotate(1774deg);
	}
}
@keyframes super-rotation {
	70% {
		-webkit-transform: rotate(1440deg);
		transform: rotate(1440deg);
	}
	100% {
		-webkit-transform: rotate(1442deg);
		transform: rotate(1442deg);
	}
}
.rotate-min {
	animation-name: rotation-min;
	animation-duration: 200s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes rotation-min {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.time_pxains span {
	font-size: 1.1em;
	color: red;
	font-weight: 700;
}
.time_pxains_title {
	padding-top: 15px;
	text-align: center;
	font-size: 22px;
}
.order_block {
	display: none;
	padding: 0 10px;
}
.priceГ‘ВЃ br {
	display: none;
}
@media all and (max-width: 1000px) {
	.page-wrap {
		padding: 0 5px;
	}
	.article {
		padding: 15px 5px;
		width: 100%;
		box-sizing: border-box;
	}
	.article__text img {
		display: block;
		margin-bottom: 10px;
	}
}
.loading2 {
	position: absolute;
	top: -1px;
	left: -1px;
	width: 506px;
	height: 506px;
	border-radius: 100%;
}
.loading2 > div {
	background-color: #fff;
	height: 14px;
	position: absolute;
	width: 14px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-webkit-animation-name: loading2;
	-webkit-animation-duration: 1.04s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: linear;
	-moz-animation-name: loading2;
	-moz-animation-duration: 1.04s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: linear;
	-o-animation-name: loading2;
	-o-animation-duration: 1.04s;
	-o-animation-iteration-count: infinite;
	-o-animation-direction: linear;
}
.loading2 > div:nth-child(1) {
	left: 246px;
	top: 5px;
	-webkit-animation-delay: 0.39s;
	-moz-animation-delay: 0.39s;
	-o-animation-delay: 0.39s;
}
.loading2 > div:nth-child(2) {
	left: 328px;
	top: 20px;
	-webkit-animation-delay: 0.52s;
	-moz-animation-delay: 0.52s;
	-o-animation-delay: 0.52s;
}
.loading2 > div:nth-child(3) {
	left: 400px;
	top: 61px;
	-webkit-animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.loading2 > div:nth-child(4) {
	left: 455px;
	top: 131px;
	-webkit-animation-delay: 0.78s;
	-moz-animation-delay: 0.78s;
	-o-animation-delay: 0.78s;
}
.loading2 > div:nth-child(5) {
	left: 482px;
	top: 208px;
	-webkit-animation-delay: 0.91s;
	-moz-animation-delay: 0.91s;
	-o-animation-delay: 0.91s;
}
.loading2 > div:nth-child(6) {
	top: 285px;
	left: 482px;
	-webkit-animation-delay: 1.04s;
	-moz-animation-delay: 1.04s;
	-o-animation-delay: 1.04s;
}
.loading2 > div:nth-child(7) {
	top: 362px;
	left: 452px;
	-webkit-animation-delay: 1.17s;
	-moz-animation-delay: 1.17s;
	-o-animation-delay: 1.17s;
}
.loading2 > div:nth-child(8) {
	top: 426px;
	left: 400px;
	-webkit-animation-delay: 1.3s;
	-moz-animation-delay: 1.3s;
	-o-animation-delay: 1.3s;
}
.loading2 > div:nth-child(9) {
	top: 472px;
	left: 323px;
	-webkit-animation-delay: 0.39s;
	-moz-animation-delay: 0.39s;
	-o-animation-delay: 0.39s;
}
.loading2 > div:nth-child(10) {
	top: 487px;
	left: 248px;
	-webkit-animation-delay: 0.52s;
	-moz-animation-delay: 0.52s;
	-o-animation-delay: 0.52s;
}
.loading2 > div:nth-child(11) {
	top: 471px;
	left: 157px;
	-webkit-animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.loading2 > div:nth-child(12) {
	top: 426px;
	left: 87px;
	-webkit-animation-delay: 0.78s;
	-moz-animation-delay: 0.78s;
	-o-animation-delay: 0.78s;
}
.loading2 > div:nth-child(13) {
	top: 362px;
	left: 35px;
	-webkit-animation-delay: 0.91s;
	-moz-animation-delay: 0.91s;
	-o-animation-delay: 0.91s;
}
.loading2 > div:nth-child(14) {
	top: 287px;
	left: 9px;
	-webkit-animation-delay: 1.04s;
	-moz-animation-delay: 1.04s;
	-o-animation-delay: 1.04s;
}
.loading2 > div:nth-child(15) {
	top: 200px;
	left: 9px;
	-webkit-animation-delay: 1.17s;
	-moz-animation-delay: 1.17s;
	-o-animation-delay: 1.17s;
}
.loading2 > div:nth-child(16) {
	top: 125px;
	left: 35px;
	-webkit-animation-delay: 1.3s;
	-moz-animation-delay: 1.3s;
	-o-animation-delay: 1.3s;
}
.loading2 > div:nth-child(17) {
	top: 60px;
	left: 89px;
	-webkit-animation-delay: 1.17s;
	-moz-animation-delay: 1.17s;
	-o-animation-delay: 1.17s;
}
.loading2 > div:nth-child(18) {
	top: 20px;
	left: 163px;
	-webkit-animation-delay: 1.3s;
	-moz-animation-delay: 1.3s;
	-o-animation-delay: 1.3s;
}
@-webkit-keyframes loading2 {
	0% {
		background-color: #2c3a86;
		opacity: 0;
	}
	100% {
		background-color: #ffffff;
		opacity: 1;
	}
}
@-moz-keyframes loading2 {
	0% {
		background-color: #2c3a86;
		opacity: 0;
	}
	100% {
		background-color: #ffffff;
		opacity: 1;
	}
}
@-o-keyframes loading2 {
	0% {
		background-color: #2c3a86;
		opacity: 0;
	}
	100% {
		background-color: #ffffff;
		opacity: 1;
	}
}
@media all and (max-width: 767px) {
	.wheel {
		width: 100% !important;
	}
	.pop-up-heading {
		font-size: 33px !important;
	}
	.pop-up-text {
		margin-bottom: 15px !important;
	}
	.cursor-text {
		width: 48% !important;
		height: 48% !important;
		top: calc(50% + 3px);
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 15px;
		line-height: 39px;
		display: flex;
		justify-content: center;
		align-items: center;
		animation-name: scale2;
	}
	.cursor-wheel {
		width: 70%;
		bottom: 10%;
		left: 50%;
		transform: translate(-50%, 0);
	}
	.close-popup {
		position: absolute;
		width: 30px;
		height: 30px;
		background-size: 100%;
		top: 10px;
		border-radius: 50%;
		-webkit-box-shadow: 0 0 10px #fff;
		box-shadow: 0 0 10px #fff;
		right: 10px;
		cursor: pointer;
	}
	.loading2 {
		width: 100%;
		height: 100%;
	}
	.loading2 > div {
		width: 7px;
		height: 7px;
	}
	.loading2 > div:nth-child(1) {
		top: 2%;
		left: 50%;
	}
	.loading2 > div:nth-child(2) {
		top: 5%;
		left: 66%;
	}
	.loading2 > div:nth-child(3) {
		left: 81%;
		top: 14%;
	}
	.loading2 > div:nth-child(4) {
		left: 91%;
		top: 26%;
	}
	.loading2 > div:nth-child(5) {
		left: 97%;
		top: 46%;
	}
	.loading2 > div:nth-child(6) {
		top: 62%;
		left: 95%;
	}
	.loading2 > div:nth-child(7) {
		top: 77%;
		left: 87%;
	}
	.loading2 > div:nth-child(8) {
		top: 87%;
		left: 77%;
	}
	.loading2 > div:nth-child(9) {
		top: 93%;
		left: 66%;
	}
	.loading2 > div:nth-child(10) {
		top: 96%;
		left: 50%;
	}
	.loading2 > div:nth-child(11) {
		top: 93%;
		left: 33%;
	}
	.loading2 > div:nth-child(12) {
		top: 84%;
		left: 18%;
	}
	.loading2 > div:nth-child(13) {
		top: 72%;
		left: 8%;
	}
	.loading2 > div:nth-child(14) {
		top: 58%;
		left: 3%;
	}
	.loading2 > div:nth-child(15) {
		top: 40%;
		left: 3%;
	}
	.loading2 > div:nth-child(16) {
		top: 25%;
		left: 9%;
	}
	.loading2 > div:nth-child(17) {
		top: 13%;
		left: 20%;
	}
	.loading2 > div:nth-child(18) {
		top: 5%;
		left: 34%;
	}
}
@media (max-width: 767px) {
	.wheel-wrapper {
		max-width: 506px;
		margin: 0 auto;
	}
	.cursor-text {
		width: 48% !important;
		height: 48% !important;
		top: calc(50% + 3px);
	}
}
@media (max-width: 480px) {
	.cursor-text {
		width: 48% !important;
		height: 48% !important;
		top: calc(50% + 3px);
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 12px;
		line-height: 39px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.loading2 > div {
		width: 4px;
		height: 4px;
	}
}
@media (max-width: 359px) {
	.cursor-text {
		font-size: 10px;
	}
}
.main_form {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-size: 100% 100%;
	padding: 30px 20px;
	text-align: center;
	max-width: 650px;
	margin: 0 auto;
	font-size: 18px;
	margin-bottom: 30px;
}
.main_form h2 {
	font-size: 32px;
	line-height: 1.2;
	color: #000;
	font-weight: bold;
	margin-top: 25px;
	margin-bottom: 15px;
	text-align: center;
	font-style: normal;
}
.sertif {
	color: #00f;
	font-size: 14px;
	font-style: italic;
}
.blue-border {
	margin: 15px 20px 15px 20px;
	border: 2px solid #0299ff;
	padding: 10px !important;
	text-align: center !important;
	max-width: 700px;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.35;
}
.main_form p {
	padding: 0 0 30px;
	text-align: left;
}
.main_form .price {
	margin-top: 0;
	margin-bottom: 10px;
	text-align: center;
	padding-bottom: 0;
}
.price_red {
	font-weight: bold;
	color: red;
}
.main_form label {
	margin-top: 10px;
	font-size: 16px;
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}
.main_form input,
.main_form select {
	font-size: 18px;
	padding: 15px;
	border-radius: 3px;
	border: 2px solid #e9d7dc;
	max-width: 340px;
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}
.main_form button {
	padding: 20px;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
	border-radius: 5px;
	background-color: #d90303;
	background-position: 1.35em 0.94em;
	background-size: 1em;
	background-repeat: no-repeat;
	transition: all 0.15s ease-in-out;
	border: none;
	cursor: pointer;
	font-size: 20px;
	margin-top: 20px;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 40px;
	max-width: 340px;
}
.main_form button {
	animation: glowing 2000ms infinite both;
}
.timelimit,
.additional {
	font-size: 12px;
	text-align: center;
	padding: 0 20px;
}
.timelimit b {
	display: inline-block;
	background-size: 10px;
	margin-top: -2px;
	padding-left: 14px;
	color: red;
	vertical-align: middle;
	font-size: 15px;
}

@media (max-width: 992px) {
	.main_form {
		padding: 30px 15px;
	}
	.main_form label {
		font-size: 14px;
	}
	.main_form input,
	.main_form select {
		width: 100%;
		font-size: 16px;
	}
	.order_block {
		padding-left: 0;
		padding-right: 0;
	}
}
.order-info {
	text-align: center;
}
.order-info__title {
	font-size: 24px;
	color: red;
	text-align: center;
}
.order-info__date {
	text-decoration: underline;
}
.order-info__count {
	display: inline-block;
	background: red;
	padding: 20px;
	margin: 12px auto;
	width: auto;
	color: #fff;
	text-shadow: 0 -1px 0 #000, 0 -1px 0 #000, 0 1px 0 #000, 0 1px 0 #000, -1px 0 0 #000, 1px 0 0 #000, -1px 0 0 #000,
		1px 0 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000,
		-1px 1px 0 #000, 1px 1px 0 #000;
	font-size: 44px;
	border-radius: 5px;
	text-align: center;
}
.order-block__header {
	text-indent: 0;
	text-align: center;
	color: #000;
	text-align: center !important;
	margin: 15px;
	line-height: 25px;
	font-weight: bold;
	font-size: 22px;
	line-height: 1.5;
}

.order-block__title {
	font-size: 25px;
	line-height: 1.4;
	margin-bottom: 15px;
}

.order-block__subtitle {
	display: block;
	text-align: center;
}

.danger-text {
	color: red;
	font-weight: bold;
}

.timer {
	margin-bottom: 15px;
}

#time {
	color: red;
	font-weight: 700;
	font-size: 1.5rem;
}

.order_block {
	/* display: none; */
	text-align: center !important;
}

.order_block h3 {
	font: bold 18px;
	background: transparent;
}

.order_block form {
	margin: 0 auto;
}

@media (max-width: 320px) {
	.order_block form {
		width: auto;
	}

	.submit-roulette {
		font-size: 24px !important;
	}

	.priceГѓЖ’Гўв‚¬ЛњГѓвЂљГ‚ВЃ {
		right: 43% !important;
	}
}

.time_remains {
	font-size: 1.1em;
	color: red;
	font-weight: bold;
}

.spin-result-wrapper {
	display: none;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	top: 0;
	z-index: 999;
	left: 0;
	height: 100%;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.6);
	text-align: center;
}

.pop-up-window {
	position: relative;
	max-width: 400px;
	right: 0;
	left: 0;
	top: 40%;
	margin: 0 auto;
	background: #fff none repeat scroll 0% 0%;
	text-align: center;
	padding: 10px;
	padding-top: 70px;
	padding-bottom: 20px;
	border-radius: 10px;
	animation: 0.7s ease 0s normal none 1 running pop-up-appear;
}

.close-popup {
	position: absolute;
	width: 30px;
	height: 30px;
	background-size: 100%;
	top: -40px;

	right: -40px;
	cursor: pointer;
}

.pop-up-heading {
	font-size: 40px;
	margin-bottom: 20px;
}

.pop-up-text {
	margin-bottom: 25px;
	font-size: 24px;
	line-height: 30px;
	text-align: center !important;
}

.pop-up-button {
	text-transform: uppercase;
	text-decoration: none !important;
	padding: 10px 20%;
	font-size: 20px;

	background-color: #71c341;
	color: #fff !important;
	border: medium none;
	cursor: pointer;
	outline: medium none;
}

.cursor-text:active {
	-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px inset;
	box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px inset;
}

.pop-up-layer {
	position: fixed !important;
	top: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background-color: rgba(0, 0, 0, 0.7) !important;
	z-index: 99 !important;
}

.pop-up-layer-show {
	display: block;
}

.pop-up-window {
	position: relative;
	max-width: 400px;
	right: 0;
	left: 0;
	top: 40%;
	margin: 0 auto;
	background: #fff none repeat scroll 0% 0%;
	text-align: center;
	padding: 10px;
	padding-top: 70px;
	padding-bottom: 20px;
	border-radius: 10px;
	animation: 0.7s ease 0s normal none 1 running pop-up-appear;
}

.pop-up-window::before {
	content: '';
	position: absolute;
	width: 110px;
	height: 110px;
	top: -55px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-color: #71c341;
	border-radius: 50%;
	animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-before;
}

.pop-up-window::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 20px;
	top: -20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-width: medium medium 4px 4px;
	border-style: none none solid solid;
	border-color: currentcolor currentcolor #fff #fff;
	-moz-border-top-colors: none;
	-moz-border-right-colors: none;
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	border-image: none;
	transform: rotate(-45deg);
	transition: opacity 1s ease 0s;
	animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}

.text_small {
	font-size: 0.5em !important;
	font-weight: normal !important;
}

@keyframes pop-up-appear {
	0% {
		transfsorm: translateY(-2000px);
	}

	30% {
		transform: translateY(100px);
	}

	100% {
		transform: translateY(0px);
	}
}

@keyframes pop-up-appear-before {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes pop-up-appear-after {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.pop-up-button:hover {
	color: #fff !important;
	text-decoration: none !important;
}

@media all and (max-width: 520px) {
	.cursor-text {
		line-height: 54px !important;
		font-size: 12px !important;
	}

	.desktop {
		display: none;
	}

	.c-app-nav > li > a {
		margin-left: 15px;
	}
}

@media all and (max-width: 350px) {
	.cursor-text {
		line-height: 42px !important;
	}
}

.priceГѓЖ’Гўв‚¬ЛњГѓвЂљГ‚ВЃ {
	position: absolute;
	right: 13%;
	bottom: 0;
	color: #000;
	box-shadow: rgba(0, 0, 0, 0.8) 0 3px 30px;
	width: 165px;
	height: 98px;
	text-align: center !important;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.3;
	transform: rotateZ(-7deg);
	margin: -0 auto 0;
	background: linear-gradient(to right, rgb(238, 165, 19) 0%, rgb(253, 237, 19) 100%);
	border-width: 2px;
	border-style: solid;
	border-color: #fff;
	border-image: initial;
	border-radius: 19%;
}

span.discountГѓЖ’Гўв‚¬ЛњГѓвЂљГ‚ВЃ {
	display: block;
	margin-top: 9px;
	font-size: 18px;
}

.price_main {
	border-bottom: 2px solid #d31812;
	font-size: 24px;
	line-height: 0;
	margin: 0 auto;
}

.prod_img_wrapper {
	text-align: center;
	max-width: 500px;
	margin: 15px auto;
	position: relative;
}

.prod_img_wrapper img {
	width: 81%;
}

#luckyshop_form label {
	font-weight: 400;
	font-size: 18px;
	text-align: left;
	color: black !important;
}

.input-roulette,
.country {
	padding: 10px;
	display: block;
	margin: 10px auto;
	border: 2px solid gray;
	border-radius: 5px;
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	box-sizing: border-box;
}

.submit-roulette {
	box-shadow: 0 1px 0 0 #f5978e inset;
	background: #f24537;
	border-radius: 3px;
	border: 1px solid #d02718;
	display: inline-block;
	max-width: 100%;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	padding: 10px 5px;
	text-decoration: none;
	text-shadow: 0 1px 0 #810e05;
	margin-top: 10px;
	transition: 0.2s;
	line-height: 30px;
	font-size: 26px;
	font-weight: 600;
}

.submit-roulette:hover {
	background: #c62d1f;
}

.submit-roulette:active {
	position: relative;
	top: 1px;
}

@media all and (max-width: 767px) {
	.close-popup {
		right: 0;
	}

	.prod_img_wrapper img {
		width: 100%;
	}
}

.priceГѓвЂГ‚ВЃ {
	position: absolute;
	right: 13%;
	bottom: 0;
	color: #000;
	box-shadow: rgba(0, 0, 0, 0.8) 0 3px 30px;
	width: 165px;
	height: 98px;
	text-align: center !important;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.3;
	transform: rotateZ(-7deg);
	margin: -0 auto 0;
	background: linear-gradient(to right, rgb(238, 165, 19) 0%, rgb(253, 237, 19) 100%);
	border-width: 2px;
	border-style: solid;
	border-color: #fff;
	border-image: initial;
	border-radius: 19%;
}

span.discountГѓвЂГ‚ВЃ {
	display: block;
	margin-top: 9px;
	font-size: 18px;
}

.price_main {
	border-bottom: 2px solid #d31812;
	font-size: 24px;
	line-height: 0;
	margin: 0 auto;
}

.prod_img_wrapper {
	text-align: center;
	max-width: 500px;
	margin: 15px auto;
	position: relative;
}

.prod_img_wrapper img {
	width: 81%;
}

#luckyshop_form label {
	font-weight: 400;
	font-size: 18px;
	text-align: left;
}

.input-roulette,
.country {
	padding: 10px;
	display: block;
	margin: 10px auto;
	border: 2px solid gray;
	border-radius: 5px;
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	box-sizing: border-box;
}

.submit-roulette {
	box-shadow: 0 1px 0 0 #f5978e inset;
	background: #f24537;
	border-radius: 3px;
	border: 1px solid #d02718;
	display: inline-block;
	max-width: 100%;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	padding: 10px 5px;
	text-decoration: none;
	text-shadow: 0 1px 0 #810e05;
	margin-top: 10px;
	transition: 0.2s;
	line-height: 30px;
	font-size: 26px;
	font-weight: 600;
}

.submit-roulette:hover {
	background: #c62d1f;
}

.submit-roulette:active {
	position: relative;
	top: 1px;
}

@media all and (max-width: 767px) {
	.close-popup {
		right: 0;
	}

	.prod_img_wrapper img {
		width: 100%;
	}
}

.alert {
	position: fixed;
	top: 85px;
	right: 10px;
	padding: 10px 20px;
	max-width: 90%;
	background: #f7f7f7;
	box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: opacity 0.3s;
	opacity: 0;
	pointer-events: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 400;
	font-size: 16px;
	line-height: 135%;
	background-color: #fff;
}

.alert--show {
	top: 85px;
	opacity: 1;
	z-index: 1000;
	pointer-events: auto;
}

.alert__img {
	max-height: 50px;
	padding: 0;
	display: inline-block;
	margin-right: 5px;
}
.hed-im {
	width: 100% !important;
	max-width: 300px;
}
@media (max-width: 780px) {
	.hed-im {
		width: 100% !important;
	}
}

@media (max-width: 480px) {
	.ima-to {
		padding: 0 20px !important;
	}
}
input::placeholder {
	border: none !important;
}

.countdown-block {
	text-align: center;
	background: #ed1b24;
	color: #fff;
	padding-bottom: 10px;
	box-shadow: 0 0 black;
}

.countdown-block h3 {
	font-weight: 800;
	font-size: 28px;
	padding-top: 5px;
	margin: 0;
	line-height: 1;
	padding-bottom: 10px;
}

.countdown-container {
	max-width: 320px;
	background: #595959;
	text-align: center;
	margin: 0 auto;
}

.countdown-container h3 {
	margin: 0 auto;
	margin-top: -10px;
	background: #ed1b24;
	width: 90%;
	text-transform: uppercase;
	font-weight: 700;
}

.countdown {
	display: flex;
	color: white;
	justify-content: center;
	align-items: center;
	font-weight: 300;
	font-size: 39px;
	line-height: 1;
}

.countdown-item {
	color: #fff;
	width: 80px;
	font-weight: bold;
	text-align: center;
}

.countdown-divider {
	color: #fff;
	width: 1rem;
}

.countdown-text {
	margin: 0 auto;
	margin-bottom: -8px;
	background: #ed1b24;
	width: 90%;
	color: #87caf7;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
}

.countdown-text span {
	/*width: 4rem;
   margin-right: 2rem;*/
	text-align: center;
	width: 33%;
}

.best-form {
	padding: 1rem;
	color: #fff;
	background-color: #fa0;
	background-size: cover;
}

form {
	max-width: 320px;
	margin: 0 auto;
}

.product {
	/* max-width: 320px; */
	margin: 0 auto;
	display: flex;
}

.product .left {
	width: 50%;
	margin-bottom: 20px;
}

.product .right {
	width: 50%;
	color: black;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.wrapper-form img {
	max-width: 266px;
}
.product .price-old {
	line-height: 1;
}
select {
	background-image: url(../img/down-arrow2-svgrepo-com.svg);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 15px;
}
.product .price-old span {
	display: inline-block;
	padding: 0 1rem;
	font-size: 25px;
	color: #000;
	position: relative;
	text-decoration: line-through;
}

/* .product .price-old span:before {
       position: absolute;
       content: "";
       left: 0;
       top: 45%;
       right: 0;
       border-top: 5px solid #ed1b24;
       transform: rotate(-10deg);
   } */

.product .discount-text {
	margin-top: 1rem;
	color: #000;
	font-size: 18px;
}

.product .price {
	color: #ff0000;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -2px;
	line-height: 1;
}

.product .price span {
	font-weight: 300;
	font-size: 30px;
	margin-left: 5px;
}

.country-input,
.name-input,
.phone-input {
	color: #000;
	background: #fff;
	border: 0;
	width: 100%;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 19px;
	margin-bottom: 10px;
	display: flex;
	transition: all 0.15s ease-in-out;
}

.name-input label,
.phone-input label,
select {
	align-self: center;
	padding-left: 15px;
	width: 60px;
	font-weight: 700;
	-webkit-appearance: none;
}

.name-input input,
.phone-input input,
select {
	flex: 1 1 auto;
	border: 0;
	padding: 7;
	color: grey;
	box-sizing: border-box;
	min-width: 0;
	padding: 10px 15px;
	padding-left: 10;
	border-radius: 6px;
	font-weight: 400;
}

input::placeholder {
	color: grey !important;
}

.button-submit-text {
	color: #fffefe;
	flex: 1 1 auto;
	font-weight: 900;
}

.button-submit-arrow {
	width: 0;
	height: 0;
	border-top: 0.6rem solid transparent;
	border-bottom: 0.6rem solid transparent;
	border-left: 1rem solid #fff;
	margin-right: 1rem;
}

#only-mob {
	display: none;
}

@media screen and (max-width: 759px) {
	.product {
		display: block;
	}

	.product .left,
	.product .right {
		width: 100%;
	}

	#not-on-mob {
		display: none;
	}

	#only-mob {
		display: block;
		text-align: center;
	}
}

.btnbtn {
	animation: shadow-pulse2 1s infinite;
}

@keyframes shadow-pulse2 {
	0% {
		box-shadow: 0 0 0 0px rgba(0, 128, 0, 0.9);
		/*box-shadow: 0 0 0 0px rgba(255, 160, 122, 0.9);*/
	}

	100% {
		box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
	}
}

.btnbtn {
	text-decoration: none;
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
	color: rgb(255, 255, 255) !important;
	background-color: none;
	background-image: linear-gradient(to top, #002f99, #870000);
	/*background: linear-gradient(rgba(255, 255, 0, 0.9), rgba(255, 0, 0, 0.9));*/
	display: inline-block;
	padding: 14px 14px;
	margin: 7px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.42857;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 30px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	animation: shadow-pulse2 1s infinite;
	font-weight: 700;
	white-space: normal;
}

.pulse {
	background-color: rgba(0, 113, 227, 1);
	/*blue*/
	animation: shadow-pulse 1s infinite;
}

@keyframes shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgba(0, 113, 227, 0.9);
	}

	100% {
		box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
	}
}

@keyframes shadow-pulse-big {
	0% {
		box-shadow: 0 0 0 0px rgba(0, 113, 227, 0.9);
	}

	100% {
		box-shadow: 0 0 0 70px rgba(0, 0, 0, 0);
	}
}

.timer-in-button {
	margin: 12px;
	display: block;
	white-space: nowrap;
}

.timer-in-button span {
	margin: 0 7px;
	background: white;
	color: red;
	padding: 5px;
	border-radius: 3px;
}

.prod-pulse {
	margin-bottom: 15px;
	border-radius: 20px;
	animation: prod-shadow-pulse 1s infinite;
}

@keyframes prod-shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.9);
	}

	100% {
		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}
}

@keyframes prod-shadow-pulse2 {
	0% {
		background: linear-gradient(rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 25%);
	}

	11% {
		background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 0) 50%);
	}

	23% {
		background: linear-gradient(rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 75%);
	}

	34% {
		background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 100%);
	}

	45% {
		background: linear-gradient(rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.8) 100%);
	}

	55% {
		background: linear-gradient(rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.8) 100%);
	}

	66% {
		background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 100%);
	}

	77% {
		background: linear-gradient(rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 75%);
	}

	89% {
		background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 0) 50%);
	}

	100% {
		background: linear-gradient(rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 25%);
	}
}

@keyframes prod-shadow-pulse3 {
	0% {
		box-shadow: 5px 0px 2px white;
	}

	15% {
		box-shadow: 5px 5px 2px white;
	}

	30% {
		box-shadow: 0px 5px 2px white;
	}

	45% {
		box-shadow: -5px 5px 2px white;
	}

	55% {
		box-shadow: -5px 0px 2px white;
	}

	70% {
		box-shadow: -5px -5px 2px white;
	}

	85% {
		box-shadow: 0px -5px 2px white;
	}

	100% {
		box-shadow: 5px -5px 2px white;
	}
}

.countdown-container h3 {
	font-size: 1rem;
}

.countdown-text {
	font-size: 0.8rem;
}

.product .price-old span {
	font-size: 25px;
}

.product .price {
	font-size: 30px;
}

.best-form {
	background: linear-gradient(#a1a1a1, #ebebeb);
}

.countdown-block,
.countdown-container,
.countdown-container h3,
.countdown-text {
	text-align: center;
	background: #717171;
}

@media (max-width: 600px) {
}

.button-submit {
	background-image: linear-gradient(to top, #002f99, #870000);
}

.button__text:after {
	content: '*';
	display: inline-block;
	font-size: 75%;
	vertical-align: top;
}
@media (min-width: 992px) {
	.spin-wrapper .spin-title {
		font-size: 36px;
		margin-bottom: 30px;
	}
	.spin-wrapper {
		border-width: 3px;
		padding: 40px 20px;
	}
	form .btn {
		font-size: 25px;
		padding: 13px 20px;
	}
}
