* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
}

html { 
	background: #fff;
  color: #222;
  font-family: Verdana, sans-serif;
}

a {
	text-decoration: none;
	color: #000;
}

h1, h2, h3, h4, h5, h6 {
  margin: .5em 0;
	color: #00B3D4;
}

.field {
	display: block;
	margin: .7em 0;
}

.inlinefield {
	display: inline-block;
	margin-right: 0.7em;
}

[dir=rtl] .inlinefield {
	margin-right: 0;
	margin-left: 0.7em;
}

.inlinefield input {
	font-size: 0.9em;
}

.container {
	border: 1px solid black;
	border-radius: 3px;
	padding: 25px;
	overflow: hidden;
}

.container.ib {
	padding: 20px 50px;
}

.container .container {
	padding: 10px;
}

.flex-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.mid-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header.mid-container {	
	overflow: hidden;
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
}

footer {
	font-size: 0.8em;
}

footer a {
	color: #01426A;
}


.logo {
	height: 70px;
	vertical-align: middle;
}

.button {
  border: 1px solid #01426A;
	border-radius: 2em;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  padding: 14px 30px 16px;
  display: inline-block;  
  transition-property: border, color, background-color, opacity;
  transition-duration: .2s;
  letter-spacing: .02em;	
  text-decoration: none;
  color: #00B3D4;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 10px;
}

[dir=rtl] .button {
	margin-right: 0;
	margin-left: 10px;
}

.fr .button {
	margin-right: 0;
	margin-left: 10px;
}

[dir=rtl] .fr .button {
	margin-left: 0;
	margin-right: 10px;
}

.button:hover, .button.active {	
	color: #00436d;
	background-color: #cce7ff;
}

.button.primary {
	background-color: #00B3D4;
  color: #eee;
  border: none;
}

.button.primary:hover, .button.primary.active {
	border: none;
	color: #fff;
	background-color: #2cdbfb
}

.button:active {
	opacity: 0.7;
}

.button:disabled {
	color: #ccc;
	border-color: #aaa;
}

.button.small {
  padding: 10px 25px;
  font-size: 15px;
}

.button.smaller {
	padding: 7px 15px;
	font-size: 12px;
}


.header-icon img {
	height: 18px;
}

.header-logo {
	
}

.header-extra {
	
	margin-top: 20px;
	display: block;
}

.headertext {
	display: block;
	font-size: 1.8em;
	color: #01426A;
	margin-top: 20px;
}

.product {
	display: inline-block;
	border: 1px solid #00B3D4;
	text-align: center;
	border-radius: 5px;
	padding: 15px;
	margin: 10px 15px;
	max-width: 350px;
	font-size: 0.85em;
}

.product-img {
	height: 130px;
}

.product-img img {
	max-width: 100%;
  height: 100%;
}

.product-name {
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 8px;
}


@media (min-width: 45em) {
	header.mid-container {
		display: flex;
	}

	.header-logo {
		flex: 1;
		text-align: start;
	}


	.header-extra {
		flex: 1;
		text-align: end;
	}

	.headertext {
		flex: 3;
		display: inline;
		position: relative;
		top: 32px;
		margin-top: 0;
	}
}

table {
	border-spacing: 0;
}

.narrow {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
}
.narrower {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.narrowest {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
}

.fileinput {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

#alert {
	position: fixed;
	top: -70px;
	left: 0;
	right: 0;
	transition: all .8s ease-in-out;
	text-align: center;
}

#alert.visible {
	display: block;
	top: 15px;
}

#alert .content {
	display: inline-block;
	background: #00ce37;
	border-radius: 15px;
	padding: 10px 15px;
	color: #444;
}

#alert .content.error {
	background: #ec0000;
	color: #fff;
}

.fl {	float: left; }
[dir=rtl] .fl { float: right; }
.fr { float: right; }
[dir=rtl] .fr { float: left; }
.oh { overflow: hidden; }
.ib, .inlineblock { display: inline-block; }
.center { text-align: center; }
.textstart { text-align: left; text-align: start; }
[dir=rtl] .textstart { text-align: right; }
.margintop { margin-top: 1em; }
.marginbottom { margin-bottom: 1em; }
.marginright { margin-right: 1em; }
[dir=rtl] .marginright { margin-left: 1em; }
.marginleft { margin-left: 1em; }
[dir=rtl] .marginleft { margin-right: 1em; }
.hidden { display: none; }
.invisible { visibility: hidden; }
.hideonload { display: none; }
.dataloaded .hideonload { display: block; }
.dataloaded span.hideonload, .dataloaded a.hideonload { display: inline; }

