/*======================================================Media===========================================================*/
/***************************************************** Small screens ****************************************************/
/* Define mobile styles */
@media only screen {

}

/*                                            #######   #####   #######                                                 */
/*                                                 ##  #    ##  #######                                                 */
/*                                                 ##       ##  ##   ##                                                 */
/*                                                 ##      ##   ##   ##                                                 */
/*                                            #######    ##     ##   ##                                                 */
/*                                                 ##   ##      ##   ##                                                 */
/*                                                 ##  ##       ##   ##                                                 */
/*                                                 ##  ##    #  #######                                                 */
/*                                            #######  ######   #######                                                 */
/* max-width 640px, mobile-only styles, use when QAing mobile issues */
@media only screen and (max-width: 40em) {
	.simplemodal-data			{width:100vw; height:100vh; overflow:auto; }
	.simplemodal-data__block	{display:table; width:100%; height:100%; }
	.simplemodal-data__content	{display:table-cell; width:100%; height:100%; vertical-align:middle; }

}




/**************************************************** Medium screens ****************************************************/
/* min-width 641px, medium screens */
@media only screen and (min-width: 40.0625rem) {

}


/*                                            #######  ##   ##  #######                                                  */
/*                                            ##       ##   ##  #######                                                  */
/*                                            ##       ##   ##  ##   ##                                                  */
/*                                            ##       ##   ##  ##   ##                                                  */
/*                                            #######  #######  ##   ##                                                  */
/*                                            ##   ##       ##  ##   ##                                                  */
/*                                            ##   ##       ##  ##   ##                                                  */
/*                                            ##   ##       ##  #######                                                  */
/*                                            #######       ##  #######                                                  */
/* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
@media only screen and (min-width: 40.0625rem) and (max-width: 64em) {

}


/*********************************************** Small and Medium screens ***********************************************/
/* max-width 1024px, mobile-only styles, use when QAing mobile issues */
@media only screen and (max-width: 64em) {

}



/***************************************************** Large screens ****************************************************/
/* min-width 1025px, large screens */
@media only screen and (min-width: 64.0625rem) {

}

/* min-width 1025px and max-width 1360px, use when QAing large screen-only issues */
@media only screen and (min-width: 64.0625rem) and (max-width: 85em) {

}



/**************************************************** XLarge screens ****************************************************/
 /* min-width 1361px, xlarge screens */
@media only screen and (min-width: 85.0625rem) {

}