/*==============================================================================
Project:     Multilanguage Responsive Christmas Card
Version:     1.0.3
Last change: December 22, 2020
Description: Christmas website intro, interactive Christmas Card.
Author:      Webdesign Trade
Author URI:  http://wt.ax
================================================================================
================================================================================
================================================================================
================================================================================
================================================================================
==============================================================================*/
/* GENERAL SYLES =============================================================*/
html,
body{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
}
body {
	background: #fff;
	margin: 0;
	padding: 0;
}
a,
a:hover,
a:visited {
	text-decoration: none;
}
/* LOADER ====================================================================*/
.loading{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 40002;
	background: #fff;
}
.loading img{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250px;
	height: 250px;
	margin-top: -125px;
	margin-left: -125px;
	-webkit-animation: pulse 5s infinite ease-in-out;
	-moz-animation: pulse 5s infinite ease-in-out;
	-o-animation: pulse 5s infinite ease-in-out;
	animation: pulse 5s infinite ease-in-out;
}
@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.8) rotate(-360deg);
		-moz-transform: scale(0.8) rotate(-360deg);
		-o-transform: scale(0.8) rotate(-360deg);
		transform: scale(0.8) rotate(-360deg);
	}
	50% {
		-webkit-transform: scale(1.3) rotate(-180deg);
		-moz-transform: scale(1.3) rotate(-180deg);
		-o-transform: scale(1.3) rotate(-180deg);
		transform: scale(1.3) rotate(-180deg);
	}
	100% {
		-webkit-transform: scale(0.8) rotate(0deg);
		-moz-transform: scale(0.8) rotate(0deg);
		-o-transform: scale(0.8) rotate(0deg);
		transform: scale(0.8) rotate(0deg);
	}
}
@-moz-keyframes pulse {
	0% {
		-webkit-transform: scale(0.8) rotate(-360deg);
		-moz-transform: scale(0.8) rotate(-360deg);
		-o-transform: scale(0.8) rotate(-360deg);
		transform: scale(0.8) rotate(-360deg);
	}
	50% {
		-webkit-transform: scale(1.3) rotate(-180deg);
		-moz-transform: scale(1.3) rotate(-180deg);
		-o-transform: scale(1.3) rotate(-180deg);
		transform: scale(1.3) rotate(-180deg);
	}
	100% {
		-webkit-transform: scale(0.8) rotate(0deg);
		-moz-transform: scale(0.8) rotate(0deg);
		-o-transform: scale(0.8) rotate(0deg);
		transform: scale(0.8) rotate(0deg);
	}
}
@-o-keyframes pulse {
	0% {
		-webkit-transform: scale(0.8) rotate(-360deg);
		-moz-transform: scale(0.8) rotate(-360deg);
		-o-transform: scale(0.8) rotate(-360deg);
		transform: scale(0.8) rotate(-360deg);
	}
	50% {
		-webkit-transform: scale(1.3) rotate(-180deg);
		-moz-transform: scale(1.3) rotate(-180deg);
		-o-transform: scale(1.3) rotate(-180deg);
		transform: scale(1.3) rotate(-180deg);
	}
	100% {
		-webkit-transform: scale(0.8) rotate(0deg);
		-moz-transform: scale(0.8) rotate(0deg);
		-o-transform: scale(0.8) rotate(0deg);
		transform: scale(0.8) rotate(0deg);
	}
}
@keyframes pulse {
	0% {
		-webkit-transform: scale(0.8) rotate(-360deg);
		-moz-transform: scale(0.8) rotate(-360deg);
		-o-transform: scale(0.8) rotate(-360deg);
		transform: scale(0.8) rotate(-360deg);
	}
	50% {
		-webkit-transform: scale(1.3) rotate(-180deg);
		-moz-transform: scale(1.3) rotate(-180deg);
		-o-transform: scale(1.3) rotate(-180deg);
		transform: scale(1.3) rotate(-180deg);
	}
	100% {
		-webkit-transform: scale(0.8) rotate(0deg);
		-moz-transform: scale(0.8) rotate(0deg);
		-o-transform: scale(0.8) rotate(0deg);
		transform: scale(0.8) rotate(0deg);
	}
}
.loading-text{
	position: absolute;
	bottom: 3px;
	right: 10px;
	font-size: 50px;
	font-family: 'Courgette', cursive;
	color: #800000;
}
/* BACKGROUNDS ===============================================================*/
.background2{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -150%;
	z-index: -5;
	background: url(../images/backgrounds/green.png)  repeat scroll left top;
}
.background3{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -150%;
	z-index: -5;
	background: url(../images/backgrounds/red.png)  repeat scroll left top;
}
.background4{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -150%;
	z-index: -5;
	background: url(../images/backgrounds/blue.png)  repeat scroll left top;
}
/* BEFORE INTRO ==============================================================*/
.before-intro {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 40001;
	background-color: #fff;
}

.before-intro-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.before-intro-inner .header-logo {
	position: relative;
	top: auto;
	left: auto;
}

.rounded-play-button {
	margin-top: 30px;
}

.rounded-play-button img {
	position: relative;
	width: 60px;
	height: 60px;
	left: 50%;
	margin-left: -30px;
	cursor: pointer;
	opacity: 0.7;
}

.rounded-play-button img:hover {
	opacity: 1;
}
/* LOGO ======================================================================*/
.header-logo{
	position: absolute;
	max-width: 350px;
	max-height: 180px;
	top: 35px;
	left: 5px;
	z-index: 40000;
	display: none;
}
.header-logo img{
	border-radius: 12px;
}
/* LANGUAGES =================================================================*/
.languages{
	position: absolute;
	top: -5000px;
	right: 5px;
	background: #800000;
	padding: 5px 6px 5px 6px;
	border-radius: 22px;
	z-index: 30000;
	max-width: 91%;
	border: 2px solid #ffc000;
	text-align: center;
	font-size: 0;
}
.languages br{
	display: none;
}
.languages.openedLang{
	padding: 6px;
}
.languages.openedLang br{
	display: block;
}
.languages.openedLang:hover{
	background: #1e5849;
}
.languages img{
	position: relative;
	display: inline-block;
	cursor: pointer;
	white-space: nowrap;
	font-size: 0;
}
.languages img.current{
	border-radius: 50%;
	box-shadow: 0 3px 15px 0px rgba(255,255,0,1), 0 -3px 15px 0px rgba(255,255,0,1);
}
.languages.openedLang img{
	margin: 2px;
}
.languages img.notCurrent{
	display: none;
}
.plus-lng{
	display: inline-block;
	position: relative;
	color: #ffc000;
	font-size: 30px;
	padding-left: 9px;
	padding-right: 4px;
	top: -1px;
	height: 28px;
	width: 26px;
	overflow: hidden;
	cursor: pointer;
}
.plus-lng:hover{
	color: #fff;
}
.openedLang .plus-lng{
	display: none;
}
/* REPORTS (TESTMONIALS) =====================================================*/
.reports{
	position: absolute;
	bottom: -500px;
	left: 0;
	width: 100%;
	height: 130px;
	z-index: -5;
	overflow: hidden;
}
.reports-container{
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	width: auto;
	left: 0;
	height: 100%;
}
.reports .childx{
	-webkit-transition: all 500ms;
	-moz-transition: all 500ms;
	-o-transition: all 500ms;
	transition: all 500ms;
	position: relative;
	display: inline-block;
	white-space: nowrap;
	font-size: 15px;
	text-align: center;
	margin: 0;
	bottom: -15px;
	height: 100%;
	cursor: pointer;
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	overflow: hidden;
}
.reports .childx.active,
.reports .childx:hover{
	bottom: 0;
}
.reports .childx.active{
	cursor: default;
	box-shadow: inset 0 9px 20px 0px rgba(255,255,255,0.4), inset 0 -9px 20px 0px rgba(255,255,255,0.4);
}
.reports-leftnav,
.reports-rightnav{
	position: absolute;
	bottom: 0px;
	width: 40px;
	height: 40px;
	background: #ffc000;
	color: #007144;
	z-index: 10;
	cursor: pointer;
	border-radius: 50%;
	text-align: center;
}
.reports-leftnav{
	left: 0px;
}
.reports-rightnav{
	right: 0px;
}
.reports-leftnav:hover,
.reports-rightnav:hover{
	color: #fff;
	background: #800000;
}
.reports-leftnav.inactive,
.reports-rightnav.inactive,
.reports-leftnav.inactive:hover,
.reports-rightnav.inactive:hover{
	cursor: default;
	background: #ccc;
	color: #888;
}
.reports-leftnav:before{
	font-family: 'FontAwesome';
	content: "\f053";
	font-size: 20px;
	position: relative;
	top: 11px;
	left: -1px;
}
.reports-rightnav:before{
	font-family: 'FontAwesome';
	content: "\f054";
	font-size: 20px;
	position: relative;
	top: 11px;
	right: -1px;
}
.reports-phrase-display,
.transition-display{
	position: absolute;
	top: 0;
	left: -100%;
	width:100%;
	height: 100%;
	z-index: 3099;
}
.reports-centralizer,
.transition-centralizer{
	display: table;
	height: 100%;
	width: 80%;
	margin-left: 10%;
	line-height: 100%;
	text-align: center;
}
.the-report,
.the-content{
	position: relative;
	display: table-cell;
	vertical-align: middle;
	top: -20px;
	color: #fff;
	font-size: 16px;
	line-height:normal;
}
.the-report .thanks,
.congrats{
	position: relative;
	padding-bottom: 10px;
	color: #ffc000;
	font-size: 40px;
	font-family: 'Courgette', cursive;
}
.the-report .thanks{
	left: 25px;
}
.congrats{
	color: #800000;
}
.report-text{
	position: relative;
	padding-top: 15px;
	font-family: 'Courgette', cursive;
	font-size: 18px;
	line-height: 30px;
	background: rgba(0,0,0,0.2);
	padding: 10px 12px 10px 12px;
	border-radius: 20px;
}
.report-text span.tp,
.report-text span.bt{
	font-size: 60px;
	display: inline-block;
	line-height: normal;
	height: 35px;
	width: 50px;
	height: 28px;
	position: relative;
	margin-top: -10px;
	overflow: hidden;
}
.report-text span.tp{
	position: absolute;
	top: -20px;
	left: -30px;
}
.report-text span.bt{
	position: absolute;
	bottom: -23px;
	right: -22px;
}
.subtitle{
	font-weight: bold;
	color: #ffc000;
	font-size: 14px;
	padding-top: 10px;
}
.byChild{
	padding-top: 5px;
	font-style: italic;
	font-size: 14px;
	color: #ffc000;
}
.rep-close{
	position: relative;
	float: right;
	top: 26px;
	right: -20px;
	padding-top: 4px;
	width: 30px;
	height: 26px;
	overflow: hidden;
	text-align:center;
	background: #fff;
	color: #888;
	font-size: 22px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}
.opened .rep-close {
	position: absolute;
	float: none;
	margin: 0;
	top: 10px;
	right: 10px;
	cursor: pointer;
	z-index: 4;
}
.rep-close:hover{
	background: #ffc000;
	color: #800000;
}
/* CARD - DESKTOP ============================================================*/
.c-card {
	position: absolute;
	z-index: -5;
	background: #fff;
	width: 350px;
	height: 430px;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 900ms;
	-moz-transition: all 900ms;
	-o-transition: all 900ms;
	transition: all 900ms;
	top: -70%;
	margin-top: -235px;
	left: 50%;
	margin-left: -175px;
	box-shadow: 0 0 41px rgba(0, 0, 0, 0.8);
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);
	text-align: center;
	overflow: hidden;
}
.c-card img,
.front img{
	margin-top: -35px;
	display: inline-block;
	position: relative;
	-webkit-transition: all 900ms;
	-moz-transition: all 900ms;
	-o-transition: all 900ms;
	transition: all 900ms;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
.notReadingCard img{
	-webkit-animation: moving 3s infinite ease-in-out;
	-moz-animation: moving 3s infinite ease-in-out;
	-o-animation: moving 3s infinite ease-in-out;
	animation: moving 3s infinite ease-in-out;
}
@-webkit-keyframes moving {
	0% {
		margin-top: -35px;
	}
	50% {
		margin-top: 15px;
	}
	100% {
		margin-top: -35px;
	}
}
@-moz-keyframes moving {
	0% {
		margin-top: -35px;
	}
	50% {
		margin-top: 15px;
	}
	100% {
		margin-top: -35px;
	}
}
@-o-keyframes moving {
	0% {
		margin-top: -35px;
	}
	50% {
		margin-top: 15px;
	}
	100% {
		margin-top: -35px;
	}
}
@keyframes moving {
	0% {
		margin-top: -35px;
	}
	50% {
		margin-top: 15px;
	}
	100% {
		margin-top: -35px;
	}
}
.c-card:hover{
	-webkit-transform: scale(0.75) rotate(5deg);
	-moz-transform: scale(0.75) rotate(5deg);
	-o-transform: scale(0.75) rotate(5deg);
	transform: scale(0.75) rotate(5deg);
}
.c-card:hover img{
	top: -2%;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.front-message,
.mobile-front-message{
	position: absolute;
	bottom: 5px;
	right: 8px;
	z-index: 10;
	font-size: 18px;
	color: #800000;
	font-family: 'Courgette', cursive;
}
.front-message{
	border-top-right-radius: 0px;
}
.modal {
	-webkit-transition: all 900ms;
	-moz-transition: all 900ms;
	-o-transition: all 900ms;
	transition: all 900ms;
	position: absolute;
	z-index: -5;
	width: 700px;
	height: 430px;
	position: absolute;
	top: -150%;
	margin-top: -235px;
	left: 50%;
	margin-left: -350px;
	display: none;
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);
}
.cardZoom{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.shadow {
	box-shadow: 0 0 41px rgba(0, 0, 0, 0.8);
}
.wrapper {
	background: rgba(50, 49, 79, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.front, .back, .opened {
	height: 100%;
	position: absolute;
	box-sizing: border-box;
}
.front {
	width: 350px;
	text-align: center;
	padding-top: 5px;
	cursor: pointer;
	z-index: 5;
	backface-visibility: hidden;
	transform-origin: 0% 50%;
	box-shadow: 0 0 41px rgba(0, 0, 0, 0.8);
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	text-align: center;
	overflow: hidden;
}
.back, .opened {
	width: 700px;
	clip: rect(auto, auto, auto, 350px);
	overflow: hidden;
}
.back {
	background: #f2f2f2;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	z-index: 4;
}
.back h1{
	max-width: 310px;
	margin: 0;
	font-family: 'Courgette', cursive;
	color: #800000;
}
.back p{
	font-family: 'Courgette', cursive;
}
.back p.merryBy{
	color: #800000;
	font-size: 18px;
}
.back .content {
	padding: 35px 25px;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.opened .content{
	height: 100%;
	width: 350px;
	position: relative;
	left: 50%;
	overflow: hidden;
	background-image: -webkit-radial-gradient(circle, #007144, #012c1b);
	background-image: -moz-radial-gradient(circle, #007144, #012c1b);
	background-image: -o-radial-gradient(circle, #007144, #012c1b);
	background-image: radial-gradient(circle, #007144, #012c1b);
}
.back .content p,
.opened .content p {
	position: relative;
	display: block;
	width: 300px;
	overflow: hidden;
}
.opened .content .opened-content {
	position: relative;
	left: 0;
	height: 100%;
}
.opened {
	background: #f2f2f2;
}
.front-open {
	-webkit-animation: front 1.1s forwards ease-in-out;
	-moz-animation: front 1.1s forwards ease-in-out;
	-o-animation: front 1.1s forwards ease-in-out;
	animation: front 1.1s forwards ease-in-out;
}
.back-open {
	-webkit-animation: back 1.1s forwards ease-in-out;
	-moz-animation: back 1.1s forwards ease-in-out;
	-o-animation: back 1.1s forwards ease-in-out;
	animation: back 1.1s forwards ease-in-out;
}
.opened-open {
	-webkit-animation: opened 1.1s forwards ease-in-out;
	-moz-animation: opened 1.1s forwards ease-in-out;
	-o-animation: opened 1.1s forwards ease-in-out;
	animation: opened 1.1s forwards ease-in-out;
}
.front-close {
	-webkit-animation: front 1.1s forwards reverse ease-in-out;
	-moz-animation: front 1.1s forwards reverse ease-in-out;
	-o-animation: front 1.1s forwards reverse ease-in-out;
	animation: front 1.1s forwards reverse ease-in-out;
}
.back-close {
	-webkit-animation: back 1.1s forwards reverse ease-in-out;
	-moz-animation: back 1.1s forwards reverse ease-in-out;
	-o-animation: back 1.1s forwards reverse ease-in-out;
	animation: back 1.1s forwards reverse ease-in-out;
}
.opened-close {
	-webkit-animation: opened 1.1s forwards reverse ease-in-out;
	-moz-animation: opened 1.1s forwards reverse ease-in-out;
	-o-animation: opened 1.1s forwards reverse ease-in-out;
	animation: opened 1.1s forwards reverse ease-in-out;
}
@keyframes
front {  0% {
		 -webkit-transform: rotateY(0deg);
		 -moz-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
		 transform: rotateY(0deg);
		 left: 175px;
	 }
	 100% {
		 -webkit-transform: rotateY(-180deg);
		 -moz-transform: rotateY(-180deg);
		 -o-transform: rotateY(-180deg);
		 transform: rotateY(-180deg);
		 left: 350px;
	 }
}
@keyframes
back {  0% {
		-webkit-transform: rotateY(0deg);
		-moz-transform: rotateY(0deg);
		-o-transform: rotateY(0deg);
		transform: rotateY(0deg);
		left: -175px;
		background: #4d4d4d;
	}
	100% {
		-webkit-transform: rotateY(-180deg);
		-moz-transform: rotateY(-180deg);
		-o-transform: rotateY(-180deg);
		transform: rotateY(-180deg);
		left: 0;
		background: #f2f2f2;
	}
}
@keyframes
opened {  0% {
		  left: -175px;
		  background: #a6a6a6;
	  }
	  100% {
		  left: 0;
		  background: #f2f2f2;
	  }
}
/* CHRISTMAS TREE ============================================================*/
.tree {
	margin: 55px 0 0 30px;
	position: relative;
	display: inline-block;
	height: 340px;
}
.c-card-mobile .tree {
	position: relative;
	margin: 0;
	width: 100%;
	left: 50%;
	margin-left: -150px;
}
.tree-mobile{
	position: absolute;
	height: 340px;
	top: 0;
	margin-top: 0;
	left: 0;
}
.the-tree.rotate{
	-webkit-transform-origin: 150px 0%;
	-moz-transform-origin: 150px 0%;
	-o-transform-origin: 150px 0%;
	transform-origin: 150px 0%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.tree figure{
	display: none;
}
.tree .rotate figure {
	display: block;
	position: absolute;
	margin: 0;
	padding: 0;
	opacity: 0.6;
	-webkit-transform-origin: 100% 0%;
	-moz-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}
.the-tree.rotate{
	-webkit-animation: rotate 5s linear infinite;
	-moz-animation: rotate 5s linear infinite;
	-o-animation: rotate 5s linear infinite;
	animation: rotate 5s linear infinite;
}
.tree .rotate figure.f1 {
	-webkit-transform: rotate3d(0, 1, 0, 0deg);
	-moz-transform: rotate3d(0, 1, 0, 0deg);
	-o-transform: rotate3d(0, 1, 0, 0deg);
	transform: rotate3d(0, 1, 0, 0deg);
}
.tree .rotate figure.f2 {
	-webkit-transform: rotate3d(0, 1, 0, 45deg);
	-moz-transform: rotate3d(0, 1, 0, 45deg);
	-o-transform: rotate3d(0, 1, 0, 45deg);
	transform: rotate3d(0, 1, 0, 45deg);
}
.tree .rotate figure.f3 {
	-webkit-transform: rotate3d(0, 1, 0, 90deg);
	-moz-transform: rotate3d(0, 1, 0, 90deg);
	-o-transform: rotate3d(0, 1, 0, 90deg);
	transform: rotate3d(0, 1, 0, 90deg);
}
.tree .rotate figure.f4 {
	-webkit-transform: rotate3d(0, 1, 0, 135deg);
	-moz-transform: rotate3d(0, 1, 0, 135deg);
	-o-transform: rotate3d(0, 1, 0, 135deg);
	transform: rotate3d(0, 1, 0, 135deg);
}
.tree .rotate figure.f5 {
	-webkit-transform: rotate3d(0, 1, 0, 180deg);
	-moz-transform: rotate3d(0, 1, 0, 180deg);
	-o-transform: rotate3d(0, 1, 0, 180deg);
	transform: rotate3d(0, 1, 0, 180deg);
}
.tree .rotate figure.f6 {
	-webkit-transform: rotate3d(0, 1, 0, 225deg);
	-moz-transform: rotate3d(0, 1, 0, 225deg);
	-o-transform: rotate3d(0, 1, 0, 225deg);
	transform: rotate3d(0, 1, 0, 225deg);
}
.tree .rotate figure.f7 {
	-webkit-transform: rotate3d(0, 1, 0, 270deg);
	-moz-transform: rotate3d(0, 1, 0, 270deg);
	-o-transform: rotate3d(0, 1, 0, 270deg);
	transform: rotate3d(0, 1, 0, 270deg);
}
.tree .rotate figure.f8 {
	-webkit-transform: rotate3d(0, 1, 0, 315deg);
	-moz-transform: rotate3d(0, 1, 0, 315deg);
	-o-transform: rotate3d(0, 1, 0, 315deg);
	transform: rotate3d(0, 1, 0, 315deg);
}
.tree .rotate figure span {
	display: block;
	width: 0;
	height: 0;
}
.tree .rotate figure .i1 {
	margin: 0 0 0 90px;
	border-bottom: 120px solid #46c500;
	border-left: 60px solid transparent;
}
.tree .rotate figure .i2 {
	margin: -40px 0 0 50px;
	border-bottom: 140px solid #4eda00;
	border-left: 100px solid transparent;
}
.tree .rotate figure .i3 {
	margin: -60px 0 0 0;
	border-bottom: 180px solid #55ee00;
	border-left: 150px solid transparent;
}
@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		-moz-transform: rotate3d(0, 1, 0, 0deg);
		-o-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}
	100% {
		-webkit-transform: rotate3d(0, 1, 0, 360deg);
		-moz-transform: rotate3d(0, 1, 0, 360deg);
		-o-transform: rotate3d(0, 1, 0, 360deg);
		transform: rotate3d(0, 1, 0, 360deg);
	}
}
@-moz-keyframes rotate {
	0% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		-moz-transform: rotate3d(0, 1, 0, 0deg);
		-o-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}
	100% {
		-webkit-transform: rotate3d(0, 1, 0, 360deg);
		-moz-transform: rotate3d(0, 1, 0, 360deg);
		-o-transform: rotate3d(0, 1, 0, 360deg);
		transform: rotate3d(0, 1, 0, 360deg);
	}
}
@keyframes rotate {
	0% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		-moz-transform: rotate3d(0, 1, 0, 0deg);
		-o-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}
	100% {
		-webkit-transform: rotate3d(0, 1, 0, 360deg);
		-moz-transform: rotate3d(0, 1, 0, 360deg);
		-o-transform: rotate3d(0, 1, 0, 360deg);
		transform: rotate3d(0, 1, 0, 360deg);
	}
}
.tree-ornaments{
	position: absolute;
	left: -32px;
	top: -53px;
}
/* TREE LIGHTS ===============================================================*/
.tree-lights{
	position: absolute;
	z-index: 2;
	top: 55px;
}
.tree-lights .container {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 0;
	margin: 0;
}
.tree-lights .container canvas {
	display: block;
	margin: auto;
}
img.r, img.g, img.b {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
/* TREE STAR =================================================================*/
.tree-star{
	position: absolute;
	left: 170px;
	z-index: 3;
	top: 38px;
	color: #ffff00;
	font-size: 26px;
}
.tree-star .bright,
.tree-star .bright2{
	position: absolute;
	left: -7px;
	z-index: 3;
	top: -6px;
	color: #fff;
	font-size: 46px;
	-webkit-animation: fa-spin 5s infinite linear;
	-moz-animation: fa-spin 5s infinite linear;
	-o-animation: fa-spin 5s infinite linear;
	animation: fa-spin 5s infinite linear;
}
.tree-star .bright2{
	left: -14px;
	top: -13px;
	font-size: 60px;
	-webkit-animation: fa-spin 9s infinite linear;
	-moz-animation: fa-spin 9s infinite linear;
	-o-animation: fa-spin 9s infinite linear;
	animation: fa-spin 9s infinite linear;
}
/* NETWORKS ==================================================================*/
.network{
	position: absolute;
	background: #fff;
	color: #46c500;
	font-size: 20px;
	border-radius: 50%;
	z-index: 3;
	text-align: center;
	width: 32px;
	height: 26px;
	padding-top: 6px;
	left: 165px;
}
.pulsing{
	-webkit-animation: pulsing 1s infinite ease-in-out;
	-moz-animation: pulsing 1s infinite ease-in-out;
	-o-animation: pulsing 1s infinite ease-in-out;
	animation: pulsing 1s infinite ease-in-out;
}
@-webkit-keyframes pulsing {
	0% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	50% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@-moz-keyframes pulsing {
	0% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	50% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@-o-keyframes pulsing {
	0% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	50% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@keyframes pulsing {
	0% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	50% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
.pulsing2{
	-webkit-animation: pulsing2 1s infinite ease-in-out;
	-moz-animation: pulsing2 1s infinite ease-in-out;
	-o-animation: pulsing2 1s infinite ease-in-out;
	animation: pulsing2 1s infinite ease-in-out;
}
@-webkit-keyframes pulsing2 {
	0% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	50% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@-moz-keyframes pulsing2 {
	0% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	50% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@-o-keyframes pulsing2 {
	0% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	50% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@keyframes pulsing2 {
	0% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	50% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
}
.facebook{
	top: 118px;
}
.twitter{
	top: 218px;
}
.googleplus{
	top: 312px;
}
.facebook:hover{
	background: #3b5998;
	color: #fff;
}
.twitter:hover{
	background: #1da0f2;
	color: #fff;
}
.googleplus:hover{
	background: #dc4a38;
	color: #fff;
}
/* CARD - MOBILE =============================================================*/
.c-card-mobile{
	display: block;
	z-index: -100000;
	top: -100%;
	position: relative;
	left: 0;
	height: 100%;
}
.flip{
	width: 60%;
	height: 60%;
	left: 20%;
	top: 20%;
	margin-left: 0;
	position: absolute;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	cursor: pointer;
	-webkit-transition: all 2000ms;
	-moz-transition: all 2000ms;
	-o-transition: all 2000ms;
	transition: all 2000ms;
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);
}
.flip.cardZoom{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.flip.notReadingCard:hover{
	-webkit-transform: scale(0.75) rotate(5deg);
	-moz-transform: scale(0.75) rotate(5deg);
	-o-transform: scale(0.75) rotate(5deg);
	transform: scale(0.75) rotate(5deg);
}
.flip.notReadingCard:hover img{
	top: -2%;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.fr{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	height: 100%;
	z-index : 3;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 1s -webkit-transform;
	-moz-transition: 1s -moz-transform;
	-o-transition: 1s -o-transform;
	transition: 1s transform;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	border-radius: 20px;
	text-align: center;
	font-family: 'Courgette', cursive;
	font-size: 18px;
	box-shadow: 0 0 41px rgba(0, 0, 0, 0.8);
	overflow: hidden;
}
.merryPhrase{
	color: #800000;
	font-size: 26px;
	margin-bottom: 10px;
}
.front-message,
.mobile-front-message{
	font-size: 22px;
	right: 0;
	top: 0;
	bottom: auto;
	font-family: 'Courgette', cursive;
	padding: 10px 12px 10px 12px;
	background: #ffffff;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 20px;
	box-shadow: -1px 1px 1px 1px rgba(0,0,0,0.15);
}
.cover-mobile,
.cover-shadow,
.cover-mobile-shadow{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
	border-radius: 20px;
	z-index: 5;
}
.c-card,
.front,
.cover-mobile{
	background: url(../images/backgrounds/stripes.gif);
}
.cover-shadow,
.cover-mobile-shadow{
	background: none;
	width: 92%;
	height: 92%;
	margin: 4%;
	border-radius: 17px;
	display: block;
	box-shadow: inset 7px 7px 20px 10px rgba(0,0,0,0.45),
		inset -7px -7px 20px 10px rgba(0,0,0,0.45);
}
.cover-shadow{
	border-radius: 0px;
}
.bk{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-transition: 1s -webkit-transform;
	-moz-transition: 1s -moz-transform;
	-o-transition: 1s -o-transform;
	transition: 1s transform;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	border-radius: 20px;
	text-align: center;
	font-family: 'Courgette', cursive;
	font-size: 18px;
	box-shadow: 0 0 41px rgba(0, 0, 0, 0.8);
	overflow: hidden;
}
.bk.withTree{
	background-color: none;
	background-image: -webkit-radial-gradient(circle, #007144, #012c1b);
	background-image: -moz-radial-gradient(circle, #007144, #012c1b);
	background-image: -o-radial-gradient(circle, #007144, #012c1b);
	background-image: radial-gradient(circle, #007144, #012c1b);
}
.flip.toggle .fr{
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.flip.toggle .bk{
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
}
.cover-helper,
.c-card-mobile-content,
.cover-mobile-image{
	position: relative;
	width: 92%;
	height: 92%;
	margin: 4%;
	display: table;
}
.cover-helper,
.cover-card-image,
.cover-mobile-image{
	display: block;
	background: #fff;
	border-radius: 17px;
	overflow: hidden;
}
.cover-helper{
	border-radius: 0px;
}
.cover-card-image{
	width: 100%;
	height: 100%;
}
.cover-card-image img,
.cover-mobile-image img{
	top: -10%;
	width: 100%;
	-webkit-transition: all 900ms;
	-moz-transition: all 900ms;
	-o-transition: all 900ms;
	transition: all 900ms;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
.c-card-mobile-centralizer{
	display: table-cell;
	vertical-align: middle;
}
.c-card-mobile-centralized{
	position: relative;
	width: 90%;
	margin-left: 5%;
	height: auto;
	text-align: center;
}
/* 3D SNOW ===================================================================*/
#theSnow{
	z-index: 3080;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* 360º HOVER ANIMATION ======================================================*/
.languages img:not(.current),
.item div .question,
.rep-close,
.before-intro .rounded-play-button img {
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	transition-property: transform;
}
.languages img:hover,
.item div:hover .question,
.rep-close:hover,
.before-intro .rounded-play-button img:hover{
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
}
/* SHADOW AND ZOOM EFFECTS ===================================================*/
.item {
	will-change: transform;
	-webkit-backface-visibility: hidden;
	-webkit-transform: scale(1.0);
	-moz-transform: scale(1.0);
	-o-transform: scale(1.0);
	transform: scale(1.0);
	font-smoothing: antialiased !important;
	-webkit-font-smoothing: subpixel-antialiased;
}
.item:hover {
	box-shadow: 0px 0px 100px #000000;
	z-index: 35;
	-webkit-transition: all 200ms ease-in;
	-webkit-transform: perspective(1px) scale(1.1);
	-moz-transition: all 200ms ease-in;
	-moz-transform: perspective(1px) scale(1.1);
	-o-transition: all 200ms ease-in;
	-o-transform: scale(1.1);
	transition: all 200ms ease-in;
	transform: perspective(1px) scale(1.1);
}
/* RESPONSIVE ================================================================*/

@media only screen and (max-width: 500px) {
	.loading img{
		position: absolute;
		width: 150px;
		height: 150px;
		margin-top: -75px;
		margin-left: -75px;
	}
	.loading-text{
		font-size: 30px;
	}
	.header-logo img,
	.intro .logo{
		max-height: 50px;
	}
	.flip{
		width: 90%;
		height: 90%;
		left: 5%;
		top: 5%;
	}
	.the-report{
		top: -45px;
	}
	.the-report .thanks, .congrats {
		font-size: 22px;
		padding-bottom: 6px;
	}
	.report-text{
		font-size: 15px;
		line-height: 22px;
	}
	.report-text span.tp,
	.report-text span.bt{
		display: none;
	}
	.the-report .rep-close{
		top: 3px;
	}
	.subtitle{
		padding-top: 6px;
	}
	.byChild{
		padding-top: 2px;
	}
}
@media only screen and (max-width: 380px) {
	.report-text{
		font-size: 14px;
		line-height: 18px;
		padding: 6px 8px 6px 8px;
	}
	.reports{
		height:100px;
	}
	.reports-centralizer{
		width: 90%;
		margin-left: 5%;
	}
	.the-report .rep-close{
		right: -10px;
	}
	.subtitle{
		padding-top: 3px;
	}
}
