@charset "UTF-8";

:root {
	
	/* colors */
	--content-footer-bg: var(--blue-washed);
	--content-page-bg-color: var(--blue-gray-light);
	--legal-text-container-bg: var(--white);
	--legal-text-container-box-shadow-color: var(--background-blue-gray);
	
	/* urls */
	--content-footer-bg-img: url('../img/home-search-bg.jpg');
}

/*-----------------------------------------
|              CONTENT-FOOTER              |
 -----------------------------------------*/

main .content-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	
	width: 100%;
	height: 350px;
	
	background: var(--content-footer-bg);
	background-image: var(--content-footer-bg-img);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	
	box-sizing: border-box;
}

/*-----------------------------------------
|              CONTENT-PAGE                |
 -----------------------------------------*/

main .content-page {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;

	background-color: var(--content-page-bg-color);
	padding: 1em;
}


/*-----------------------------------------
|           LEGAL-TEXT-CONTAINER           |
 -----------------------------------------*/

.legal-text-container {
    box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-flow: column;
	justify-content: center;

	background-color: var(--legal-text-container-bg);
	border: 1px solid var(--black);
	box-shadow: 0px 2px 18px var(--legal-text-container-box-shadow-color);

	margin: 1em;
	padding: 1em;
}

.legal-text-container p {
	margin: 0;
    margin-bottom: .5em;
}


/*-----------------------------------------
|         LEGAL-NOTICE & PRIVACY           |
 -----------------------------------------*/

.privacy .legal-text-container > h1,
.legal-notice .legal-text-container h1 {
	text-transform: uppercase;
	font-size: 16px;
}

.privacy .content-page h2,
.legal-notice .legal-text-container h2 {
	font-size: 14px;
}

.privacy .legal-text-container h3,
.legal-notice .legal-text-container h3 {
	font-size: 13px;
}

.privacy .legal-text-container dl,
.privacy .legal-text-container dt,
.privacy .legal-text-container dd,
.privacy .legal-text-container p,
.privacy .legal-text-container li,
.legal-notice .legal-text-container dl,
.legal-notice .legal-text-container dt,
.legal-notice .legal-text-container dd,
.legal-notice .legal-text-container p {
	font-size: 12px;
}

/*-----------------------------------------
|                 PRIVACY                  |
 -----------------------------------------*/

.privacy table.keeprules {
	border-spacing: 0;
	border-collapse: collapse;
	border: 1px solid black;
	margin: 1em auto;
	width: 100%;
	min-width: 300px;
	max-width: 1000px;
}

.privacy table.keeprules tr {
	padding: 0;
}

.privacy table.keeprules td {
	padding: 2px;
	border: 1px solid black;
}

.privacy table.keeprules td.datatype {
	width: 434px;
}

.privacy table.keeprules td.keeplength {
	width: 265px;
}

.privacy table.keeprules td.operation {
	width: 302px;
}

.privacy table.keeprules p {
	margin: 0;
	padding: 0;
}

/*-----------------------------------------
|              MEDIA QUERIES               |
 -----------------------------------------*/

@media only screen and (max-device-width: 720px), screen and (max-width: 720px) {
	main .content-page {
		padding: 0;
	}
}

@media only screen and (max-device-width: 550px), screen and (max-width: 550px) {

	.privacy .legal-text-container p
	.legal-notice .legal-text-container p {
		text-align: justify;
	}
}

@media only screen and (max-device-width: 400px), screen and (max-width: 450px) {
	.legal-text-container {
		margin: .5em;
	}
}
