/* Main CSS : rastrear-telefono.es  */
/* Coding by Younes MISSIRIA */

@import url('/styles/form.css');

.consent-banner {
	position: fixed;
	width: 100%;
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	margin: 0px;
	left: 0px;
	bottom: 0px;
	padding: 4px;
	z-index: 7777777;
}

.consent-banner .consent-container::before {
	content: '';
	display: block;
	background-color: #333;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0.7;
	z-index: 7777;
}

.consent-banner .wrapper {
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	padding: 10px 15px 15px 20px;
	position: fixed;
	z-index: 7777;
}

.consent-banner .title {
	display: block;
	color: #000;
	padding-top: 30px;
	padding-bottom: 20px;
}

.consent-banner .subtitle {
	color: #3981e0;
}

.consent-banner .btn-primary {
	border-radius: 0;
	border-width: 0;
	padding: 15px 25px;
	margin: 20px 0;
}

.consent-banner .btn-link {
	font-size: 12px;
	text-decoration: underline;
	color: #666 !important;
}

.consent-banner .btn-link:hover {
	text-decoration: none;
}

@media screen and (min-width: 640px) {
	.consent-banner .wrapper {
		min-width: 640px;
	}
}

@media screen and (max-width: 640px) {
	.consent-banner .wrapper {
		max-width: 640px;
		transform: translate(0%, 0%);
		top: auto;
		bottom: 0;
		right: 0;
		left: 0;
	}
	.consent-banner .btn-link {
		font-size: 11px;
		position: absolute;
		top: 0;
		right: 0;
	}
}
