/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html, body {
		-webkit-touch-callout: none; /* iOS Safari */
		-webkit-user-select: none; /* Safari */
		-khtml-user-select: none; /* Konqueror HTML */
		-moz-user-select: none; /* Old versions of Firefox */
			-ms-user-select: none; /* Internet Explorer/Edge */
				user-select: none; /* Non-prefixed version, currently*/
		line-height:1.5;    
		text-rendering: optimizeLegibility;
}


::-webkit-scrollbar {
	width:4px;
	height:4px;
}
 
::-webkit-scrollbar-track {
}
 
::-webkit-scrollbar-thumb {
	border-radius: 4px;
  	background-color:#bbb;
}

::-webkit-scrollbar-thumb:hover {
background-color:#a6a6a6;
}

body{
		font-size:16px;
		background: #eee;
		font-family: 'Roboto', sans-serif;
		font-weight:400;
		position:absolute;
		width:100%;
		height:100%;
		color: #192123;
}

a {
	color: #222;
	text-decoration: none;
}

textarea, input, select, option {
	font-family:'Roboto', sans-serif;
	font-weight: 400;
}

select {
    background: none;
    border-radius: 0px !important;
    outline: none;
    font-size: 0.875rem;
    padding: 0.25rem;
}

select[multiple]:focus option:checked {
	background: var(--blue) linear-gradient(0deg, var(--blue) 0%, var(--blue) 100%);
}

option[multiple]:checked{
	background: var(--app_bg) linear-gradient(0deg, var(--app_bg) 0%, var(--app_bg) 100%);
}

select[multiple] option {
	margin: 2px 4px 2px 4px;
	padding: 2px;
	padding-left: 0.25rem;
}

input[type=date], input[type=text]{
	border:1px solid #aaa;
    background: none;
    border-radius: 0px !important;
    outline: none;
    font-size: 0.875rem;
    padding: 0.20rem;
}


textarea{
	background: transparent;
	font-size:0.875rem;
}

input[type=submit]{
	display: block;
	padding: 0.5rem 1.5rem;
	cursor:pointer;
	color:#fff;
	line-height:3;
	font-size:0.75rem;
	border:none !important;
	outline:none;
	transition:100ms;
}

button {
	display: block;
	padding: 0.5rem 1.5rem;
	cursor:pointer;
	color:#fff;
	line-height:3;
	font-size:0.75rem;
	outline:none;
	transition:100ms;
}

img {
		image-rendering: crisp-edges;
}

i {
	/* For Opera and <= IE9, we need to add unselectable="on" attribute onto each element */
  /* Check this site for more details: http://help.dottoro.com/lhwdpnva.php */
  -moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
  -webkit-user-select: none;
  -ms-user-select: none; /* From IE10 only */
  user-select: none; /* Not valid CSS yet, as of July 2012 */

  -webkit-user-drag: none; /* Prevents dragging of images/divs etc */
  user-drag: none;
}


ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
