html {
	background: rgb(116,6,121);
}
body,html {
	width:100%;
	height:100%;
	 background-color: #790767;
	color:#FFFFFF;
	 margin:0; padding:0;
	font-family: 'Unilever Shilling';
	font-size: 15px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

	/*background-image: url('../img/back.png');*/

	background: rgb(116,6,121);
	background: linear-gradient(18deg, rgba(116,6,121,1) 0%, rgba(121,6,102,1) 100%);


	overflow-x: hidden;
}
small {
	line-height: 10px !important;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	WIDTH: 100%;
}

h1 {
	font-family: 'Tusker Grotesk';
	font-size: 80px;
	text-transform: uppercase;
}
* {
	box-sizing: border-box;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img {
	max-width: 100%;
	height: auto;
}
video {
	max-width: 100%;
	height: auto;
}
.wrapper {
	width: 100vw;
	height: 100%;
}



.logo {
	width: 100px;
}
.logoHolder {
	position: fixed;
	background-color: rgba(121,7,103,0.8);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	width: 100%;
	padding: 10px;
	z-index: 10;
}


.slide {
	width: 100vw;
	height: 100dvh;
	min-height: 0;
	position: absolute;
	z-index: 1;
	display: flex;
	padding: 20px;

	opacity: 0;
	transition: all 0.3s;
	transform:translate3d(10vw,0,0);

	overflow-y: scroll;


	flex-direction: column; /* Stacks content vertically (optional if that's the intent) */
	align-items: center; /* Centers items horizontally */
	justify-content: center; /* Centers items vertically */

	text-align: center;

}
.slide.out {
	opacity: 0;
	transform:translate3d(-10vw,0,0);
	z-index: 0;
}
.slide.active {
	opacity: 1;
	transform:translate3d(0,0,0);
	z-index: 2;
}


.buttonHolder {
	position: absolute;
	left:0; bottom:20px;
	width: 100%;
	padding:0 20px;
}


.btn {
	border-radius: 10px;
}
.btn-template {
	background-color: rgba(121,7,103,1);
	background-color: #FFFFFF;
	color:#790767;
}






.question .title {
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 40px;
}



.answer {
	border:2px solid #C3A5CE;
	padding: 15px;
	border-radius: 10px;
	margin: 10px 0;

	transition: all 0.2s;

	background-color: rgba(121,7,103,0.7);
}
.answer.active {
	background-color: #C3A5CE;
}
.answer .answerTitle {
	font-weight: 700;
	font-size: 20px;
	margin-top: -4px;
}
.answer .answerSubtitle {

}

.resultImageHolder {
	width: 65%;
	transform:rotate(5deg);

}
.resultImageHolder img {
	border-radius: 5px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.4);
}

@keyframes floatCard {
	0% {
		transform: translateY(0) rotate(5deg);
	}
	50% {
		transform: translateY(-10px) rotate(5deg);
	}
	100% {
		transform: translateY(0) rotate(5deg);
	}
}

.resultImageHolder {
	animation: floatCard 4s ease-in-out infinite;
}



