/* Theme Basics */

/* Base Config
-------------------------------------------------------------------*/
:root {
	--baseBackground: #fff;
	--highlightBackground: #144b8d;
	--standardFont: 'Roboto', sans-serif;
	--textColor: #212121;
}

*{
 	box-sizing: border-box;
 	padding: 0;
	margin: 0;
 }

/* Font import
-------------------------------------------------------------------*/

/* Material Icons */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
    url(../fonts/MaterialIcons-Regular.woff) format('woff'),
    url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}


/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v18-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Roboto Light'), local('Roboto-Light'),
       url('../fonts/roboto-v18-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-300italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/roboto-v18-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local('Roboto Light Italic'), local('Roboto-LightItalic'),
       url('../fonts/roboto-v18-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-300italic.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
       url('../fonts/roboto-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v18-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Roboto Medium'), local('Roboto-Medium'),
       url('../fonts/roboto-v18-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-500italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/roboto-v18-latin-500italic.eot'); /* IE9 Compat Modes */
  src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'),
       url('../fonts/roboto-v18-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v18-latin-500italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v18-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-500italic.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* Layout Basics
-------------------------------------------------------------------*/

.case_wrapper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
  	white-space: nowrap;
	direction: ltr;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: 'liga';
}

/* Rules for sizing the icon. */
	.material-icons.md-18 { font-size: 18px; }
	.material-icons.md-24 { font-size: 24px; }
	.material-icons.md-36 { font-size: 36px; }
	.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
	.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
	.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
	.material-icons.md-light { color: rgba(255, 255, 255, 1); }
	.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

/* Rules for using icons as colorful icon. */
	.material-icons.icon_green {color: rgba(10, 84, 58, 1);}


/* Typo Basics
-------------------------------------------------------------------*/

h1, h2, h3, h4, h5 {
	font-family: var(--standardFont);
	font-weight: 500;
	color: var(--textColor);
	line-height: 1.0;
}



@media screen and (min-width:1000px) {


}

/* Grids Mobile
-------------------------------------------------------------------*/

.grid_100 {
	float: left;
	width: 100%;
}

.grid_80 {
	float: left;
	width: 100%;
}

.grid_right_75 {
	float: right;
	width: 100%;
}

.grid_75 {
	float: left;
	width: 100%;
}

.grid_right_70 {
	float: right;
	width: 100%;
}

.grid_70 {
	float: left;
	width: 100%;
}

.grid_right_66 {
	float: right;
	width: 100%;
}

.grid_66 {
	float: left;
	width: 100%;
}

.grid_50 {
	float: left;
	width: 100%;
}

.grid_40 {
	float: left;
	width: 100%;
}


.grid_33 {
	float: left;
	width: 100%;
}

.grid_right_33 {
	float: right;
	width: 100%;
}

.grid_30 {
	float: left;
	width: 100%;
}

.grid_right_30 {
	float: right;
	width: 100%;
}


.grid_25 {
	float: left;
	width: 100%;
}

.grid_20 {
	float: left;
	width: 100%;
}

.grid_10 {
	float: left;
	width: 100%;
}

/* Grids Desktop
-------------------------------------------------------------------*/

@media screen and (min-width:1000px) {
.grid_100 {
	width: 100%;
}

.grid_80 {
	width: 80%;
}

.grid_75 {
	width: 75%;
}

.grid_right_75 {
	width: 75%;
}

.grid_70 {
	width: 70%;
}

.grid_right_70 {
	width: 70%;
}

.grid_66 {
	width: 66.66666%;
}

.grid_right_66 {
	width: 66.66666%;
}

.grid_60 {
	width: 60%;
}

.grid_50 {
	width: 50%;
}

.grid_40 {
	width: 40%;
}

.grid_33 {
	width: 33.33333%;
}

.grid_right_33 {
	width: 33.33333%;
}

.grid_30 {
	width: 30%;
}

.grid_right_30 {
	width: 30%;
}

.grid_25 {
	width: 25%;
}

.grid_20 {
	width: 20%;
}
	
.grid_10 {
	width: 10%;
}
}