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;
	/*
	font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
	letter-spacing: -0.015em;
	*/
	font-family: Segoe UI, Frutiger, Dejavu Sans, Helvetica Neue, Arial, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

header
{
	margin: 20px;
}

#mainview
{
	font-size: 18px;
}

#mainviewhistory
{
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 20px;
}

#mainoptions
{
	font-size: 18px;
	margin-top: 40px;
	margin-bottom: 20px;
}

strong
{
	font-weight: bold;
}


/* ICONS */

.icon
{
  display: block;
  text-indent: -9999px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-center
{
	margin: auto;
}

.icon-menu
{
  background-image: url('menu.svg');
  width: 24px;
  height: 24px;
  background-size: 24px;
}

.icon-back
{
  background-image: url('back.svg');
  width: 24px;
  height: 24px;
  background-size: 24px;
}

.icon-home
{
  background-image: url('home.svg');
  width: 24px;
  height: 24px;
  background-size: 24px;
}

.icon-search
{
  background-image: url('search.svg');
  width: 24px;
  height: 24px;
  background-size: 24px;
}

.icon-plus
{
  background-image: url('plus.svg');
  width: 24px;
  height: 24px;
  background-size: 24px;
}

/* GENERAL USE */

.container
{
	width: 90vw;
	max-width: 600px;
	margin: auto;
	margin-bottom: 20px;
}

.flex-horizontal
{
	display: flex;
	flex-direction: row;
}

.flex-vertical
{
	display: flex;
	flex-direction: column;
	margin: auto;
}

.flex-center
{
	justify-content: center;
}

.flex-left
{
	justify-content: flex-start;
}

.flex-right
{
	justify-content: flex-end;
}

.flex-stretch
{
	width: 100%;
	justify-content: space-between;
}

.flex-middle
{
	justify-content: space-around;
}

.full-width
{
	margin: auto;
	width: 100%;
}

.pointer
{
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.client-fbg
{
	border: 1px #47c2ff solid;
	background: rgba(71,194,255, 0.8);
}
.client-tbg
{
	border: 1px #47c2ff solid;
	background: rgba(71,194,255, 0.2);
	transition: background 0.2s;
}
.client-tbg:hover
{
	background: rgba(71,194,255, 0.05);
}

.pet-fbg
{
	border: 1px #ffc247 solid;
	background: rgba(255,194,71, 0.8);
}
.pet-tbg
{
	border: 1px #ffc247 solid;
	background: rgba(255,194,71, 0.2);
	transition: background 0.2s;
}
.pet-tbg:hover
{
	background: rgba(255,194,71, 0.05);
}

.record-fbg
{
	border: 1px #47c247 solid;
	background: rgba(71,194,71, 0.8);
}
.record-tbg
{
	border: 1px #47c247 solid;
	background: rgba(71,194,71, 0.2);
	transition: background 0.2s;
}
.record-tbg:hover
{
	background: rgba(71,194,71, 0.05);
}

.disable-fbg
{
	border: 1px #b3b3b3 solid;
	background: rgba(179,179,179, 0.9);
}
.disable-tbg
{
	border: 1px #b3b3b3 solid;
	background: rgba(179,179,179, 0.3);
	transition: background 0.1s;
}

.disable-tbg:hover
{
	background: rgba(179,179,179, 0.6);
}


/* HOME PAGE */

#button-home
{
	/*
	display: none;
	width: 40px;
	height: 40px;
	padding: auto;
	font-size: 2em;
	*/
}

.button
{
	display: inline-block;
	padding: 20px;
	text-align: center;
}

.button-pet
{

}

.button-record
{

}

.button-disable
{
	cursor: not-allowed !important;
}

.menu
{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu-vertical
{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: auto;
	width: 100%;
}

.menu .button
{
	font-size: 2em;
	margin: 20px;
	width: 220px;
	letter-spacing: 1px;
}

/* CLIENTS PAGES */

.field
{
	padding: 10px 0px;
}

.field-text
{
	flex: 2;
	line-height: 20px;
	height: 20px;
}

.field-input
{
	flex: 4;
	line-height: 20px;
	height: 20px;
	padding: 0px 10px;
}

.field-button
{
	flex: 1;
	line-height: 20px;
	height: 20px;
	padding: 0px 10px;
}

.field-button-full
{
	line-height: 24px;
	height: 24px;
	padding: 10px;
	width: 100%;
}

.field-button-full-pet
{

}

.search-cards
{
	width: 100%;
}

.search-card
{
	padding: 10px 10px;
	margin: 10px 0px;
	line-height: 1.4em;
}

.search-client
{
}

.search-pet
{

}

.search-record
{

}
