@charset "UTF-8";
/* CSS Document */

body {
	height: 100%;
	width: 100%;
}

/*visibilities according to the platform*/
.ShowOnMobile {
	display: none;
}

.ShowOnDesktop {
	display: inherit;
}


/* MEDIA QUERIES **************************************************************************************************************** */

/* Large desktop */
@media (min-width: 960px) {

	/*visibilities according to the platform*/
	.ShowOnMobile {
		display: none;
		opacity: 0;
	}

	.ShowOnDesktop {
		display: inherit;
		opacity: 1;
	}
}

@media (min-width: 960px) and (max-width:1200px) {}

/* Portrait tablet to landscape and desktop */
@media (min-width: 640px) and (max-width: 960px) {

	/*visibilities according to the platform*/
	.ShowOnMobile {
		display: inherit;
		opacity: 1;
	}

	.ShowOnDesktop {
		display: none;
		opacity: 0;
	}
}

/* Landscape phone to portrait tablet */
@media (max-width: 640px) {


	/*visibilities according to the platform*/
	.ShowOnMobile {
		display: inherit;
		opacity: 1;
	}

	.ShowOnDesktop {
		display: none;
		opacity: 0;
	}

}

/* Portrait phones and down */
@media (max-width: 480px) {

	/*visibilities according to the platform*/
	.ShowOnMobile {
		display: inherit;
		opacity: 1;
	}

	.ShowOnDesktop {
		display: none;
		opacity: 0;
	}
}

/* Landscape phones */
@media (min-height:200px) and (max-height:500px) and (max-width:960px) {}