/*==============================================================================
Project:     Christmas Card Unleash - Multilanguage Responsive HTML Game
Version:     1.06
Last change: December 22, 2020
Description: Christmas website intro, memory game and 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;
	color: #00AE68;
}
a.button {
	display: inline-block;
	position: relative;
	padding: 0;
	min-width: 140px;
	padding-left: 20px;
	padding-right: 20px;
	font-weight: 600;
	text-align: center;
	line-height: 45px;
	color: #185a48;
	border-radius: 5px;
	-webkit-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
	text-transform: uppercase;
}
.btnBlueGreen {
	background: #ffc000;
}
/* 3D */
.btnBlueGreen.btnPush {
	box-shadow: 0px 5px 0px 0px #007144;
}
.btnPush:hover {
	margin-top: 5px;
	margin-bottom: 5px;
	background: #fff;
	color: #007144;
}
.btnBlueGreen.btnPush:hover {
	box-shadow: 0px 0px 0px 0px #007144;
}

iframe {
	display: none;
}
/* LOADER ====================================================================*/
.loading{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 30000;
	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 ===============================================================*/
.background{
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: #ffb900;
}
.background img{
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
}
.background2{
	position: absolute;
	top: 0;
	left: -150%;
	z-index: -5;
	width: 100%;
	height: 100%;
	background: url(../images/backgrounds/ending4.jpg) no-repeat center bottom fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.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;
	top: 0;
	left: -150%;
	z-index: -5;
	width: 100%;
	height: 100%;
	background: url(../images/backgrounds/ending5.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.background5{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -150%;
	z-index: -3;
	background: url(../images/backgrounds/danger.jpg)  repeat scroll left top;
}
.background6{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -150%;
	z-index: -5;
	display: none;
	background: #ffb900;
}
/* BEFORE INTRO ==============================================================*/
.before-intro {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 29999;
	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;
}

.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: 5px;
	left: 5px;
	z-index: 1000;
	display: none;
}
.header-logo img{
	border-radius: 12px;
}
/* INTRO TOP WHITE OVERLAY ===================================================*/
.top-white-verlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../images/white-overlay.png);
}
/* LANGUAGES =================================================================*/
.languages{
	position: absolute;
	top: -5000px;
	right: 5px;
	background: #800000;
	padding: 5px 6px 5px 6px;
	border-radius: 22px;
	z-index: 1001;
	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: #185a48;
}
.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;
}
/* START SCREEN ==============================================================*/
.cover-top{
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: url(../images/backgrounds/stars-and-dots.png) repeat scroll left top;
	z-index: 510;
	opacity: 1;
}
.cover-image{
	position: absolute;
	bottom: -900px;
	width: 100%;
	height: 70%;
	text-align: center;
}
.cover-image img{
	border: 0;
	bottom: 0;
	height: 100%;
	vertical-align: bottom;
}
.cover-bottom{
	position: absolute;
	display: none;
	bottom: 0;
	left: 0;
	background: #185a48;
	width: 100%;
	height: 50%;
	z-index: 511;
	text-align: center;
}
.ribbon{
	position: absolute;
	display: none;
	top: 50%;
	left: 0;
	width: 100%;
	height: 120px;
	margin-top: -60px;
	background: #800000;
	z-index: 515;
	text-align: center;
	box-shadow: 0 9px 30px 0px rgba(0,0,0,0.5), 0 -9px 30px 0px rgba(0,0,0,0.3);
}
.ribbon-content{
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	padding: 12px;
}
.mission-title{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	padding-top: 3px;
}
.mission-title:before{
	content: "-";
	display: inline-block;
	padding-right: 3px;
}
.mission-title:after{
	content: "-";
	display: inline-block;
	padding-left: 3px;
}
.mission-name{
	font-weight: bold;
	font-size: 50px;
	color: #ffc000;
	padding-top: 2px;
	font-family: 'Courgette', cursive;
}
.short-message{
	padding-top: 3px;
	font-size: 13px;
}
.play-button{
	margin-top: 85%;
	display: inline-block;
	height: 75px;
}
.skip{
	text-transform: uppercase;
}
.skip a{
	color: #fff;
	font-size: 13px;
}
.skip a:hover{
	color: #ffc000;
}
.optionalFooterText{
	position: absolute;
	bottom: 6px;
	right: 8px;
	color: #fff;
	font-size: 14px;
}
/* INTRO BEFORE GAME =========================================================*/
.intro,
.intro-background,
.c-card-mobile{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}
.intro-background{
	background: #000;
	z-index: 490;
}
.intro-content,
.flip{
	position: relative;
	left: 0;
	width: 250px;
	height: 100%;
	left: 50%;
	margin-left: -125px;
	z-index: 500;
	display: table;
}
.aligner,
.mobile-aligner{
	display: table-cell;
	vertical-align: middle;
}
.centralized{
	position: relative;
	border-radius: 6px;
	background: #ffffff;
	width: 100%;
	height: auto;
	text-align: center;
}
.logo-intro{
	text-align: center;
}
.intro .logo{
	border-radius: 5px;
	margin-bottom: 5px;
}
.intro .centralized > div {
	color: #000;
	font-size: 14px;
	display: block;
	width: 220px;
	text-align: center;
	padding: 15px;
	padding-top: 15px;
}
.intro span strong{
	text-transform: uppercase;
	padding-top: 10px;
}
.intro strong{
	font-size: 15px;
	color: #d9ad27;
}
.intro strong.danger{
	font-size: 20px;
	display: block;
	padding-top: 4px;
	padding-bottom: 10px;
}
.intro b{
	color: #760202;
	white-space: nowrap;
}
.separator{
	display: block;
	height: 10px;
}
/* GAME ======================================================================*/
#picbox {
	position: absolute;
	margin: 0px auto;
	width: 100%;
	height: 100%;
	top: -5000px;
}
.time{
	position: absolute;
	top:4px;
	width: auto;
	text-align: right;
	right: 45px;
	color: #fff;
	font-size: 35px;
	font-weight: bold;
	z-index: 5;
}
.emergenceBackground{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,0,0,0)	;
}
.emergenceBackground.animate{
	-webkit-animation: emergence 0.5s infinite;
	-moz-animation: emergence 0.5s infinite;
	-o-animation: emergence 0.5s infinite;
	animation: emergence 0.5s infinite;
}
@-webkit-keyframes emergence {
	from { background-color: rgba(255,0,0,0.1); }
	50% { background-color: rgba(255,0,0,0.3); }
	to { background-color: rgba(255,0,0,0.1); }
}
@-moz-keyframes emergence {
	from { background-color: rgba(255,0,0,0.1); }
	50% { background-color: rgba(255,0,0,0.3); }
	to { background-color: rgba(255,0,0,0.1); }
}
@-o-keyframes emergence {
	from { background-color: rgba(255,0,0,0.1); }
	50% { background-color: rgba(255,0,0,0.3); }
	to { background-color: rgba(255,0,0,0.1); }
}
@keyframes emergence {
	from { background-color: rgba(255,0,0,0.1); }
	50% { background-color: rgba(255,0,0,0.3); }
	to { background-color: rgba(255,0,0,0.1); }
}
.siren{
	position: absolute;
	top: 6px;
	right: 6px;
	background: #000;
	width: 36px;
	height: 36px;
	z-index: 5;
	background-color: #F00;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 12px;
	-webkit-animation: blinkRed 0.5s infinite;
	-moz-animation: blinkRed 0.5s infinite;
	-o-animation: blinkRed 0.5s infinite;
	animation: blinkRed 0.5s infinite;
}
@-webkit-keyframes blinkRed {
	from { background-color: #F00; }
	50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
	to { background-color: #F00; }
}
@-moz-keyframes blinkRed {
	from { background-color: #F00; }
	50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
	to { background-color: #F00; }
}
@-o-keyframes blinkRed {
	from { background-color: #F00; }
	50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
	to { background-color: #F00; }
}
@keyframes blinkRed {
	from { background-color: #F00; }
	50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
	to { background-color: #F00; }
}
#boxcard {
	z-index: 1;
	width: 100%;
	height: 100%;
	text-align: left;
}
#boxcard .item{
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 16%;
	height: 16%;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 2px 2px 2px rgba(0,0,0,.4);
	background: #ffc000;
	z-index: 2;
}
#boxcard .item div{
	width: 100%;
	height: 100%;
	text-align: center;
	border-radius: 50%;
}
#boxcard .item img {
	border-radius: 50%;
	z-index: 3;
	height: 70%;
	margin-top: 15%;
}
#boxcard .item .image {
	display: none;
}
.question-preload{
	display: none;
}
#boxcard .item .question {
	position: absolute;
	left: 50%;
}
#boxbuttons {
	text-align: center;
	margin: 20px;
	display: none;
}
#boxbuttons .button {
	text-transform: uppercase;
	background: #EE872A;
	padding: 5px 10px;
	margin: 5px;
	border-radius: 10px;
	cursor: pointer;
}
#boxbuttons .button:hover {
	background: #999;
}
a.button2,
a.button2:hover,
a.button2:visited {
	text-decoration: none;
	color: #fff;
}
.button2 {
	display: inline-block;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	min-width:170px;
	padding: 22px 33px;
	font-family: 'Lobster', cursive;
	font-size: 22px;
	line-height: 12px;
	text-decoration: none;
	color: #FFF;
	text-shadow: 0 1px 2px rgba(0,0,0,0.75);
	background: #5e0d0c;
	outline: none;
	border-radius: 15px;
	border: 1px solid #4c0300;
	box-shadow:
		inset 1px 1px 0px rgba(255,255,255,0.25), /* highlight */
		inset 0 0 6px #a23227, /* inner glow */
		inset 0 80px 80px -40px #ac3223, /* gradient */
		1px 1px 3px rgba(0,0,0,0.75); /* shadow */
	position: relative;
	overflow: visible; /* IE9 & 10 */
	-webkit-transition: 500ms linear;
	-moz-transition: 500ms linear;
	-o-transition: 500ms linear;
	transition: 500ms linear;
}
.button2:before {
	content: '';
	display: block;
	position: absolute;
	top: -7px;
	left: -3px;
	right: 0;
	height: 23px;
	background: url(../images/cld1.png) no-repeat 0 0,
		url(../images/cld2.png) no-repeat 50% 0,
		url(../images/cld3.png) no-repeat 100% 0;
}
.button2:hover {
	background: #a61715;
	text-shadow: 0 1px 2px rgba(0,0,0,0.75), 0 0 40px #FFF;
	box-shadow:
		inset 1px 1px 0px rgba(255,255,255,0.25), /* highlight */
		inset 0 0 6px #da3b2c, /* inner glow */
		inset 0 80px 80px -40px #dd4330, /* gradient */
		1px 1px 3px rgba(0,0,0,0.75); /* shadow */
	margin-top: 5px;
}
.button2:focus {
	outline: none; /*FF*/
}
.button2:active {
	box-shadow:
		inset 1px 1px 0px rgba(255,255,255,0.25), /* highlight */
		inset 0 0 6px #da3b2c, /* inner glow */
		inset 0 80px 80px -40px #dd4330, /* gradient */
		0px 1px 0px rgba(255,255,255,0.25); /* shadow */
	-webkit-transition: 50ms linear;
	-moz-transition: 50ms linear;
	-o-transition: 50ms linear;
	transition: 50ms linear;
}
/* ENDING 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{
	color: #fff;
}
.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;
	border: 2px solid #fff;
	background: rgba(0,0,0,0.2);
	color: #fff;
	padding: 10px 12px 10px 12px;
	border-radius: 20px;
}
.report-text span.tp,
.report-text span.bt{
	font-size: 60px;
	color: #fff;
	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: #fff;
	font-size: 14px;
	padding-top: 10px;
}
.byChild{
	padding-top: 5px;
	font-style: italic;
	font-size: 14px;
	color: #fff;
}
.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;
}
/* ENDING TRANSITION =========================================================*/
.transition{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	background: #f6fcff;
	z-index: 7000;
}
.transition-display{
	left: 0%;
}
.congrats img{
	display: inline-block;
	width: 0;
}
.congrats div{
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 1200px;
}
/* ENDING 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: -150%;
	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;
	  }
}
/* ENDING 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;
}
/* ENDING 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;
}
/* ENDING 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;
}
/* ENDING 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;
}
/* ENDING CARD - MOBILE ======================================================*/
.c-card-mobile{
	display: block;
	z-index: -100000;
	top: -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 15px 0 rgba(0,0,0,0.25),
		inset -7px -7px 15px 0 rgba(0,0,0,0.25);
}
.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;
}
/* ENDING 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: 700px) {
	.siren{
		top: 4px;
		right: 4px;
		width: 30px;
		height: 30px;
	}
	.time{
		top: 2px;
		right: 38px;
		font-size: 28px;
	}
}
@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;
	}
	.siren{
		top: 2px;
		right: 2px;
		width: 22px;
		height: 22px;
	}
	.time{
		top: 3px;
		right: 28px;
		font-size: 18px;
	}
	.optionalFooterText{
		display: none;
	}
	.skip{
		position: absolute;
		bottom: 4px;
		right: 6px;
	}
	.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;
	}
}
@media only screen and (max-width: 340px) {
	.mission-title{
		font-size: 14px;
	}
}
@media only screen and (max-height: 340px) {
	.intro strong.danger,
	.intro span strong.tapHerePhrase{
		display: none;
	}
	.separator{
		height: 0px;
	}
}
