.christmas_popup_marker {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	cursor: pointer;
	position: fixed;
	background-image: url(../images/1.png);
	background-size: cover;
	right: 30px;
	top: 50%;
	z-index: 100000;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	
	-webkit-animation-name: marker;
	-webkit-animation-duration: 14s;
	-webkit-animation-iteration-count: infinite;
	
	animation-name: marker;
	animation-duration: 14s;
	animation-iteration-count: infinite;
	
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
@-webkit-keyframes marker {
	0% {
		background-image: url(../images/1.png);
	}
	14% {
		background-image: url(../images/2.png);
	}
	28% {
		background-image: url(../images/3.png);
	}
	43% {
		background-image: url(../images/4.png);
	}
	68% {
		background-image: url(../images/5.png);
	}
	85% {
		background-image: url(../images/6.png);
	}
	100% {
		background: url(../images/7.png);
	}
}
@keyframes marker {
	0% {
		background-image: url(../images/1.png);
	}
	14% {
		background-image: url(../images/2.png);
	}
	28% {
		background-image: url(../images/3.png);
	}
	43% {
		background-image: url(../images/4.png);
	}
	68% {
		background-image: url(../images/5.png);
	}
	85% {
		background-image: url(../images/6.png);
	}
	100% {
		background-image: url(../images/7.png);
	}
}
.christmas_popup {
	background-image: url(../images/image.png);
	background-size: cover;
	width: 377px;
	height: 377px;
	padding: 117px 88px;
	box-sizing: border-box;
	position: fixed;
	right: 30px;
	top: 50%;
	z-index: 100000;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: none;
}
.christmas_popup h3 {
	font-size: 40px;
	line-height: 46px;
	font-family: Galano;
	color: #fff !important;
	position: relative;
	letter-spacing: 0;
	text-transform: none;
	margin-bottom: 0.3em;
	margin-top: 0;
	margin-right: -40px;
}
.christmas_popup p {
	font-size: 16px;
	line-height: 23px;
	letter-spacing: 0;
	font-family: 'Inter UI', sans-serif;
	color: #fff !important;
	margin-bottom: 1.1em;
}
.christmas_popup a {
	display: inline-block;
	font-size: 16px;
	line-height: 18px;
	padding: 1.15em 2.2em;
	font-family: 'Inter UI', sans-serif;
	color: #fff !important;
	background-color: #0D0D0D;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.christmas_popup a:hover {
	color: #0D0D0D !important;
	background-color: #fff;
}
.christmas_popup .prices {
	position: absolute;
	right: 3px;
	bottom: 35px;
	text-align: center;
}
.christmas_popup .prices .del,
.christmas_popup .prices .current {
	border-radius: 50%;
}
.christmas_popup .prices .del {
	font-size: 27px;
	line-height: 59px;
	font-family: Galano;
	height: 59px;
	width: 59px;
	display: block;
	position: relative;
	color: #000;
	background-color: #fff;
}
.christmas_popup .prices .del .currency {
	font-size: 10px;
	line-height: 48px;
	vertical-align: top;
}
.christmas_popup .prices .del:after {
	content: '';
	width: 3px;
	height: 45px;
	display: block;
	position: absolute;
	top: 10%;
	left: 45%;
	background-color: #E93314;
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
}
.christmas_popup .prices .current {
	font-size: 44px;
	line-height: 93px;
	font-family: Galano;
	height: 93px;
	width: 93px;
	display: block;
	margin: -37px 0 0 22px;
	position: relative;
	color: #fff;
	background-color: #E93314;
}
.christmas_popup .prices .current .currency {
	font-size: 15px;
	line-height: 75px;
	vertical-align: top;
}
.christmas_popup .close {
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	border-radius: 50%;
	cursor: pointer;
	text-align: center;
	position: absolute;
	right: 2px;
	top: 0;
	background-image: url('../images/close.png');
	background-size: cover;
}
@media (max-width: 1440px) {
	.christmas_popup {
		width: 300px;
		height: 300px;
		right: 0;
		padding: 90px 0px 0px 60px;
	}
	.christmas_popup h3 {
		font-size: 25px;
		line-height: 36px;
	}
	.christmas_popup a {
		font-size: 14px;
		padding: 1em 2em;
	}
}
@media (max-width: 767px) {
	.christmas_popup,
	.christmas_popup_marker {
		display: none;
	}
}