#moodley-cookie-popup {
	position: fixed;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	bottom: 0;
	width: 100%;
	z-index: 2147483647;
	padding: 15px;
	box-sizing: border-box;
	background: #fff;
	transform: translateY(200%);
	transition: transform 1s ease-in-out;
}

#moodley-cookie-popup.top {
	top: 0;
	bottom: initial;
	transform: translateY(-200%);
}

#moodley-cookie-popup.bottom {
	top: initial;
	bottom: 0;
	transform: translateY(200%);
}

#moodley-cookie-popup.show-popup {
	transform: translateY(0%);
}

#moodley-cookie-popup .mcp-text {
	padding: 0px 0px 15px 0px;
	color: #000;
	font-size: 0.8rem;
	margin: 0px;
}

#moodley-cookie-popup .mcp-button {
	padding: 10px 15px;
	color: #fff;
	background: #000;
	border: 0;
	margin: 0px;
}

@media screen and (min-width: 768px) {
	#moodley-cookie-popup {
		justify-content: center;
		-ms-align-items: center;
		align-items: center;
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;
	}

	#moodley-cookie-popup .mcp-text {
		padding: 0;
	}
	#moodley-cookie-popup .mcp-button {
		margin: 0px 0px 0px 10px;
	}
}