/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200&display=swap');
@font-face {
	font-family: "cocogoose";
	src: url("Cocogoose-Pro-Semilight.woff2") format("woff2"),
		 url("Cocogoose-Pro-Semilight.woff") format("woff");
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
}

body {
	background: none;
}

#stage {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	font-family: "cocogoose";
}

.container {
	position: absolute;
	height: 268px;
	top: 0;
	width: 300px;
	left: calc(50% - 150px);
	overflow: hidden;
	background-color: #F4F6F6;
}

.cards {
	position: absolute;
	top: 10px;
	left: 12px;
	width: calc(100% - 24px);
	height: 224px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card {
	position: relative;
	width: 100%;
	height: 70px;
	box-shadow: 0px 3px 3px rgba(83, 83, 83, 0.15);
	display: flex;
	cursor: pointer;
	border-radius: 5px;
	transition: transform .2s ease-in-out;
	overflow: hidden;
	background-color: #fff;
}

.cardTop {
	position: relative;
	width: 50%;
	height: 100%;
}

.cardfill {
	display: none;
}

.cardfillSmall {
	position: absolute;
	top: 0;
	height: 100%;
	right: 0;
}

.copy {
	position: absolute;
	color: #05BAED;
	top: 24px;
	font-size: 12px;
	line-height: 1;
	text-align: center;
}

.copy1 {
	width: 80px;
	left: calc(50% - 40px);
}

.copy2 {
	width: 90%;
	left: 0;
	color: #fff;
}

.copy3 {
	width: 100%;
}

.questionmark {
	position: absolute;
	width: 15px;
	top: calc(50% - 7.5px);
	left: calc(50% - 60px);
}


.streepje {
	position: absolute;
	width: 25px;
	height: 3px;
	top: 55px;
	left: calc(50% - 12.5px);
	background-color: #FF9921;
}

.cardBottom {
	width: 50%;
	height: 100%;	
	display: flex;
	justify-content: center;
	align-items: center;
}

.card:hover .cta {
	box-shadow: inset 0px 4px 4px rgba(92, 100, 102, 0.25);
}

.card:hover {
	transform: scale(1.02);
}

.cta {
	height: 27px;
	width: 110px;
	font-size: 10px;
	color: #fff;
	background-color: #FF9921;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: box-shadow .2s ease-in-out;
}
.cta span {
	padding-top: 2px;
}

.logo {
	position: absolute;
	bottom: 7px;
	width: 70px;
	right: 12px;
}

.balloon {
	display: none;
}


@media (min-width: 370px) {

	.container {
		width: 370px;
		left: calc(50% - 185px);
	}

	.cta {
		width: 130px;
		height: 30px;
		font-size: 11px;
	}

	.copy {
		font-size: 13px;
		top: 22px;
	}

}

@media (min-width:600px) {
	.container {
		width: 600px;
		height: 305px;
		left: calc(50% - 300px);
	}

	.cards {
		top: 29px;
		width: calc(100% - 26px);
		left: 13px;
		height: 232px;
		flex-direction: row;
	}

	.card {
		width: 187px;
		height: 100%;
		flex-direction: column;
	}

	.cardTop {
		width: 100%;
		height: calc(100% - 68px);
	}

	.streepje {
		top: 155px;
	}

	.copy1, .copy2, .copy3 {
		width: 100%;
		padding: 0 13px;
		left: 0;
		font-size: 20px;
	}

	.copy1 {
		top: 102px;
	}

	.questionmark {
		top: 61px;
		left: calc(50% - 14px);
		width: 28px;
	}

	.copy2 {
		top: 87px;
	}

	.copy3 {
		top: 81px;
	}

	.cardBottom {
		width: 100%;
		height: 68px;
	}

	.cardfill {
		display: block;
		position: absolute;
		width: 100%;
		bottom: 0;
		left: 0;
	}

	.cardfillSmall {
		display: none;
	}

	.logo {
		width: 122px;
		bottom: 9px;
		right: 13px;
	}

	.balloon {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 101px;
	}

	.balloonIMG {
		position: absolute;
		width: 100;
		top: 0;
		left: 0;
	}

	.balloonTekst {
		position: absolute;
		color: #fff;
		font-size: 11px;
		text-align: center;
		top: 42px;
		width: 100%;
		padding: 0 5px;
	}
}