html, body {
	background-color: #fafafa;
	color: #556475;
    font-size: 16px;
/*    height: 100%;
    width: 100%;
*/
}



a , div , table {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



a ,
a:link ,
a:visited ,
a:hover ,
a:active {
    color: inherit;
}



.isa_info ,
.isa_success ,
.isa_warning ,
.isa_error {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 0.9em;
	margin: 10px;
	padding: 12px;
}

.isa_info {
    background-color: #BDE5F8;
	border: 1px solid #00529B;
    color: #00529B;
}

.isa_success {
    background-color: #DFF2BF;
	border: 1px solid #4F8A10;
    color: #4F8A10;
}

.isa_warning {
    background-color: #FEEFB3;
	border: 1px solid #9F6000;
    color: #9F6000;
}

.isa_error {
    background-color: #FFD2D2;
	border: 1px solid #D8000C;
    color: #D8000C;
}

.isa_info i ,
.isa_success i ,
.isa_warning i ,
.isa_error i {
    margin: 5px;
    font-size: 1em;
    vertical-align: middle;
}
/*
<div class="isa_info"><i class="fa fa-info-circle"></i>msg</div>
<div class="isa_success"><i class="fa fa-check-circle"></i>msg</div>
<div class="isa_warning"><i class="fa fa-exclamation-circle"></i>msg</div>
<div class="isa_error"><i class="fa fa-times-circle"></i>msg</div>
*/



div#menu {
	background-color: #556475;
    background-image: -moz-linear-gradient(top left 90deg, #101a2b 0%, #556475 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#101a2b), to(#556475));
    background-image: linear-gradient(top left 90deg, #101a2b 0%, #556475 100%);
	color: #f7fbfc;
	height: 50px;
	position: absolute;
	    right: 0;
	    top: 0;
	width: 100%;
	z-index: 10;
}

div#menu a {
	border-left: 1px solid #9bb0c0;
	border-right: 1px solid #556475;
	display: inline-block;
	height: 50px;
	float: left;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	width: 200px;
}

div#menu a:hover ,
div#menu a:focus {
    background-image: -moz-linear-gradient(top left 90deg, #556475 0%, #101a2b 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#556475), to(#101a2b));
    background-image: linear-gradient(top left 90deg, #556475 0%, #101a2b 100%);
}

div#menu a i {
	font-size: 150%;
	vertical-align: middle;
}

div#menu i#menuExclamation {
	display: none;
}

div#menu a:nth-child(2),
div#menu a:nth-child(n+4) {
    display: none;
}

div#menu.responsive a {
	border-bottom: 1px solid #9bb0c0;
	border-top: 1px solid #556475;
	display: block;
	float: none;
	width: 100%;
}

div#menu.responsive a.bars {
	position: absolute;
		right: 0;
		top: 0;
	width: 70px;
}
div#menu a.bars {
	display: block;
	float: right;
	height: 50px;
	width: 70px;
}

div#menu.responsive {
    display: block;
    height: auto;
    width: 100%;
}

div#menu.responsive a.bars {
    height: 50px;
    position: absolute;
        right: 0;
        top: 0;
        width: 70px;
}



div#content {
	background-color: #f7fbfc;
	border: 1px solid #d3e0e9;
	margin: 50px 10px;
	padding: 10px 15px;
}



fieldset {
	border: 0;
	margin-bottom: 50px;
	min-width: 0;
}



fieldset > div {
	height: 80px;
	float: left;
	padding: 15px 20px;
	width: 25%;
}

fieldset > div label {
	font-variant: small-caps;
	font-weight: bold;
	margin-bottom: -10px;
	width: 100%;
}



legend {
	border-bottom: 1px solid #e5e5e5;
	font-size: 21px;
	margin-bottom: 20px;
	text-transform: uppercase;
	width: 100%;
}



h1 {
	font-size: 30px;
	margin-bottom: 20px;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}



form.login {
	background-color: #d3e0e9;
	border: 1px solid #101a2b;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);
	color: #101a2b;
	font-family: sans-serif;
	font-size: 14px;
	height: 270px;
	margin-left: -150px;
	margin-top: -140px;
	position: absolute;
		left: 50%;
		top: 50%;
	width: 300px;
}

form.login.error {
	height: 330px;
	margin-top: -165px;
}



button ,
input ,
textarea ,
select,
a.buttonLink {
	background-color: #f7fbfc;
	border: 1px solid #9bb0c0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
    -moz-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e5e7e8;
    -webkit-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e5e7e8;
    box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e5e7e8;
	color: black;/*#556475;*/
	font-family: Helvetica, sans-serif;
	font-size: 18px;
	height: 35px;
	margin: 12px auto 10px auto;
	outline: none;
	padding-left: 10px;
    -moz-transition: -moz-box-shadow .5s ease;
    -o-transition: box-shadow .5s ease;
    -webkit-transition: -webkit-box-shadow .5s ease;
    transition: box-shadow .5s ease;
    width: 100%;
}

button ,
input:hover ,
textarea:hover ,
select:hover,
a.buttonLink {
    border-color: 1px solid #f7fbfc;
    -moz-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #e5e7e8;
    -webkit-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #e5e7e8;
    box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #e5e7e8;
}

button ,
input:focus ,
textarea:focus ,
select:focus,
a.buttonLink {
    -moz-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
    -webkit-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
    box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
}

button ,
input[type=button] ,
input[type=submit],
a.buttonLink {
	background-color: #101a2b;
    background-image: -moz-linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#acd6ef), to(#6ec2e8));
    background-image: linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
	color: #f7fbfc;
	cursor: pointer;
	display: block;
	font-weight: bold;
	padding: 2px 20px;
	width: auto;
}

button:hover ,
input[type=submit]:hover ,
input[type=button]:hover,
a.buttonLink:hover {
    background-image: -moz-linear-gradient(top left 90deg, #b6e2ff 0%, #6ec2e8 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#b6e2ff), to(#6ec2e8));
    background-image: linear-gradient(top left 90deg, #b6e2ff 0%, #6ec2e8 100%);
}

button:active ,
input[type=submit]:active ,
input[type=button]:active,
a.buttonLink:active {
    background-image: -moz-linear-gradient(top left 90deg, #6ec2e8 0%, #b6e2ff 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#6ec2e8), to(#b6e2ff));
    background-image: linear-gradient(top left 90deg, #6ec2e8 0%, #b6e2ff 100%);
}

button,
a.buttonLink {
	display: inline-block;
	margin: 10px;
}

a.buttonLink {
	margin: 20px;
	padding-top: 7px;
	text-decoration: none;
}

input[type=file] {
	background-color: initial;
	border: initial;
	-moz-border-radius: initial;
	-webkit-border-radius: initial;
	border-radius: initial;
    -moz-box-shadow: initial;
    -webkit-box-shadow: initial;
    box-shadow: initial;
	color: initial;
	font-family: initial;
	margin: initial;
	margin-top: 15px;
	outline: initial;
	padding-left: initial;
    -moz-transition: initial;
    -o-transition: initial;
    -webkit-transition: initial;
    transition: initial;
}

input[type=checkbox] ,
input[type=radio] {
	background-color: initial;
	border: initial;
	-moz-border-radius: initial;
	-webkit-border-radius: initial;
	border-radius: initial;
    -moz-box-shadow: initial;
    -webkit-box-shadow: initial;
    box-shadow: initial;
	color: initial;
	font-family: initial;
	font-size: initial;
	height: initial;
	margin: 10px 20px 10px auto;
	outline: initial;
	padding: initial
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	-webkit-transform: scale(2);
	transform: scale(2);
    -moz-transition: initial;
    -o-transition: initial;
    -webkit-transition: initial;
    transition: initial;
	vertical-align: middle;
	width: initial;
}

input:disabled ,
textarea:disabled ,
input:read-only ,
textarea:read-only {
	background-color: #ddd;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #d3e0e9;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #d3e0e9;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #d3e0e9;
}
:-moz-placeholder { /* Firefox 18- */
  color: #d3e0e9;
}
/* COLOR SCHEME https://coolors.co/101a2b-556475-9bb0c0-d3e0e9-f7fbfc */



div.news ,
div.errands {
	padding: 15px 18px;
}

div.news:hover ,
div.errands:hover {
	cursor: pointer;
}

div.news div.top ,
div.errands div.top {
	border-bottom: 1px solid #9bb0c0;
}

div.news div.title ,
div.errands div.title {
	float: left;
	font-size: 150%;
}

div.news div.date ,
div.errands div.date {
	float: right;
	font-size: 80%;
}

div.news div.text ,
div.errands div.text {
	padding: 15px 18px;
	width: 100%;
}

div.news div.text pre ,
div.errands div.text pre {
	font-family: inherit;
	white-space: pre-wrap;
}

div.news div.writer ,
div.errands div.writer {
	color: #9bb0c0;
	font-size: 80%;
	text-align: right;
	width: 100%;
}



div#shortcut {
	height: auto;
	width: 100%;
}

div#shortcut button {
	height: 100%;
	margin-right: 40px;
	padding: 10px 14px;
}



img#stopType {
	width: 100%;
		max-width: 260px;
}



div.news ,
div.errands ,
fieldset#delete > div ,
fieldset#search > div {
	border: 1px solid #ddd;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
    -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
	height: initial;
	margin-bottom: 10px;
	width: 100%;
}

div.news:nth-child( even ) ,
div.errands:nth-child( even ) ,
fieldset#delete > div:nth-child( even ) ,
fieldset#search > div:nth-child( even ) {
	background-color: #ddd;
}

div.news:hover ,
div.errands:hover ,
fieldset#delete > div:hover ,
fieldset#search > div:hover {
	background-color: #ccc;
}

fieldset#delete > div div ,
fieldset#search > div div {
	float: left;
	margin-right: 20px;
}

fieldset#delete input ,
fieldset#search input {
	display: block;
	height: 35px;
	margin: 12px auto 10px auto;
	padding: 2px 20px;
	width: auto;
}

fieldset#search a {
	text-decoration: none;
}



table#routeStops {
	width: 100%;
}

table#routeStops tr:nth-child( odd ) {
	background-color: #d3e0e9;
}

table#routeStops td {
	padding: 10px;
}



a.setup ,
a.setup:link ,
a.setup:visited ,
a.setup:hover ,
a.setup:active {
	background-color: #d3e0e9;
	border: 1px solid #9bb0c0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: block;
	height: 40px;
	line-height: 40px;
	margin: 5px auto;
	text-align: center;
	text-decoration: none;
	width: 100%;
		max-width: 400px;
}

a.setup:hover {
	background-color: #9bb0c0;
	border-color: #d3e0e9;
	color: #ffffff;
}



div.municipality {
	background: #f7fbfc;
	background: -moz-linear-gradient(top, #f7fbfc 0%, #d3e0e9 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #f7fbfc), color-stop(100%, #d3e0e9));
	background: -webkit-linear-gradient(top, #f7fbfc 0%, #d3e0e9 100%);
	background: -o-linear-gradient(top, #f7fbfc 0%, #d3e0e9 100%);
	background: -ms-linear-gradient(top, #f7fbfc 0%, #d3e0e9 100%);
	background: linear-gradient(to bottom, #f7fbfc 0%, #d3e0e9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7fbfc', endColorstr='#d3e0e9', GradientType=0 );
	border: 1px solid #9bb0c0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	float: left;
	margin: 10px 10px 10px 0;
	padding: 10px;
	text-align: center;
	width: 100%;
		max-width: 400px;
}

div.municipality:hover {
	background: #d3e0e9;
	background: -moz-linear-gradient(top, #d3e0e9 0%, #f7fbfc 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #d3e0e9), color-stop(100%, #f7fbfc));
	background: -webkit-linear-gradient(top, #d3e0e9 0%, #f7fbfc 100%);
	background: -o-linear-gradient(top, #d3e0e9 0%, #f7fbfc 100%);
	background: -ms-linear-gradient(top, #d3e0e9 0%, #f7fbfc 100%);
	background: linear-gradient(to bottom, #d3e0e9 0%, #f7fbfc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d3e0e9', endColorstr='#f7fbfc', GradientType=0 );
	cursor: pointer;
}

div.municipality img {
	max-height: 50px;
	max-width: 100%;
	vertical-align: middle;
}



ul.help > ul li {
	margin-bottom: 20px;
}



div#contact a {
	background: -moz-linear-gradient(top, #f7fbfc 0%, #d3e0e9 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #f7fbfc), color-stop(100%, #d3e0e9));
	background: -webkit-linear-gradient(top, #f7fbfc 0%, #d3e0e9 100%);
	background: -o-linear-gradient(top, #f7fbfc 0%, #d3e0e9 100%);
	background: -ms-linear-gradient(top, #f7fbfc 0%, #d3e0e9 100%);
	background: linear-gradient(to bottom, #f7fbfc 0%, #d3e0e9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7fbfc', endColorstr='#d3e0e9', GradientType=0 );
	border: 1px solid #9bb0c0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: black;
	cursor: pointer;
	display: inline-block;
	margin: 10px;
	padding: 15px 18px;
	text-decoration: none;
}

div#contact a:hover {
	background: #d3e0e9;
	background: -moz-linear-gradient(top, #d3e0e9 0%, #f7fbfc 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #d3e0e9), color-stop(100%, #f7fbfc));
	background: -webkit-linear-gradient(top, #d3e0e9 0%, #f7fbfc 100%);
	background: -o-linear-gradient(top, #d3e0e9 0%, #f7fbfc 100%);
	background: -ms-linear-gradient(top, #d3e0e9 0%, #f7fbfc 100%);
	background: linear-gradient(to bottom, #d3e0e9 0%, #f7fbfc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d3e0e9', endColorstr='#f7fbfc', GradientType=0 );
}



/* COLOR SCHEME https://coolors.co/101a2b-556475-9bb0c0-d3e0e9-f7fbfc */



@media ( max-width: 870px ) {
	
	
	
	fieldset > div {
		width: 50%;
	}
	
	
	
}



@media ( max-width: 470px ) {
	
	
	
	fieldset > div {
		width: 100%;
	}
	
	
	
	table#routeStops {
		font-size: 4vw;
	}
	
	table#routeStops td {
		padding: 2vw;
	}
	
	
	
	fieldset#search > div {
		font-size: 3vw;
	}
	
	
	
}
