/**
 * @description		media query styles for mobile version
 * @project			Frage trifft Antwort
 * @site			www.frage-trifft-antwort.de
*/

/* ==|== Mediaelement.js media queries ======================================================
   Media Queries forMediaelement.js styles
   These override the primary ('mobile first') styles
   ========================================================================== */

/*@media only screen    {*/
/*@media only print    {*/
@media only screen and (max-width:599px),
only screen and (max-width:1023px) and (orientation:landscape) {
	/* images + video */
	.media-player  {
		height: 100%;
		width: 100% !important;
	}
}

/* style adjustments for very small viewports go here (older phones) :: portrait mode */
@media only screen and (max-width:479px)
	and (orientation:portrait) {
	.touch .media-player {
		width: 290px;
		height: 163px;
	}
}

/* style adjustments for viewports 600px and over go here :: tablet portrait mode :: ipad 1 */
@media only screen and (min-width:600px) and (orientation:portrait) {

/* video player viewport - basic sizes :: start */
	.singleview .media-player {
		width: 330px !important;
		height:185px;
	}
	.touch .singleview .media-player {
		width: 330px !important;
		height: 238px  !important;
	}
	/* video player viewport - basic sizes :: end */
}
/* end style adjustments for viewports 600px and over :: tablet portrait mode :: ipad 1 */

/* style adjustments for tablet viewports 1024px and over go here :: tablet landscape mode :: ipad 1 */
@media only screen and (min-width:1024px) and (orientation:landscape) {
	.touch .singleview .media-player {
		width: 432px;
		height: 303px;
	}
}
.is-spe .ftaquiz .results h4 {
	padding-top:1em;
}
/* video player interface - common :: end */

/*@media only screen {*/

@media only screen and (orientation:portrait) {
	.touch .singleview .media-player {
		width: 330px !important;
		height:246px;
	}
}
/* video player viewport - basic sizes for landscape & portrait :: end */


