@import url("../fonts/itc-conduit-lt-ce/itc-conduit-lt-ce-font-face.css");

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

html, body {
	background: #f8f8f8;
	color: #000;
	font-size: 16px;
	font-family: "ITC Conduit LT CE", "Roboto", Helvetica Neue, Helvetica, Arial, sans-serif;
	font-weight: normal;
	overflow-anchor: none; /** @see https://drafts.csswg.org/css-scroll-anchoring/ */
}

input, textarea, button, select {
	-webkit-appearance: none;
	border-radius: 0;
}

input[readonly] {
	cursor: default;
}

body.menu-open {
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: lighter;
}

label {
	user-select: none;
}

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

ul {
	list-style: none;
}

.dark {
	background-color: #050e15;
	color: #fff;
}

.brown {
	background-color: #190f0e;
	color: #fff;
}

.white {
	background-color: #fff;
	color: #000;
}

.dark a {
	color: #fff;
}

.turqoise {
	background-color: #0099a9;
	color: #fff;
}

.danger {
	color: #fff;
	background-color: #e14504;
}

.text-turqoise, .dark .text-turqoise {
	color: #0099a9;
}

.text-white {
	color: #fff;
}

.text-danger {
	color: #e14504;
}
.text-bold {
	font-weight: bold;
}
.text-light {
	font-weight: lighter;
}

.uppercase {
	text-transform: uppercase;
}

.text-align-left {
	text-align: left;
}

.text-align-right {
	text-align: right;
}

.text-align-center {
	text-align: center;
}

.container {
	max-width: 1422px;
	margin: 0 auto;
	padding: 0 30px;
}

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

.row.justified > * {
	flex-basis: 100%;
}

.row.justified.quarter  > * {
	flex-basis: 25%;
}

.row.stretched {
	justify-content: space-between;
}

.button {
	padding: .4em .7em;
	border-radius: .2em;
	outline: none;
	border: 0;
	font-family: "ITC Conduit LT CE", "Roboto", Helvetica Neue, Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	display: inline-block;
}

.button[disabled] {
	opacity: .6;
}

span.badge {
	position: absolute;
	top: -.8em;
	right: -.9em;
	width: 1.7em;
	height: 1.7em;
	border-radius: .85em;
	font-style: normal;
	font-size: .8em;
	text-align: center;
	display: block;
	line-height: 1.8em;
	letter-spacing: 0;
	box-shadow: 0 0 3px #000;
}

.text-right {
	text-align: right;
}

.button.large {
	display: block;
	width: 100%;
	padding: 1em;
	font-size: 1.1em;
	letter-spacing: .1em;
}

.button.large.inline {
	display: inline-block;
	width: auto;
}

.button.contour {
	border: 1px solid #fff;
}

.button.text-turqoise {
	color: #0099a9;
	border-color: #0099a9;
	background: transparent;
}

.button.text-danger {
	color: #e14504;
	border-color: #e14504;
	background: transparent;
}

div.toggle {
	display: inline-block;
	width: 56px;
	height: 30px;
	border: 1px solid #aaa;
	border-radius: 15px;
	position: relative;
	cursor: pointer;
}

div.toggle.on {
	border-color: #0099a9;
}

div.toggle > span {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #aaa;
	position: absolute;
	top: 4px;
	left: 4px;
	transition: left .2s, background-color .2s;
}

div.toggle.on > span {
	background-color: #0099a9;
	left: 30px;
}

div.toggle > input {
	display: none;
}

div.toggle-container > span {
	display: inline-block;
	position: relative;
	bottom: .5em;
	margin-left: .6em;
}

.mb-13 {
	margin-bottom: 1.3em;
}

.mt-2 {
	margin-top: 2em;
}

.mt-13 {
	margin-top: 1.3em;
}

.pb-1 {
	padding-bottom: 1em;
}

.ml-2 {
	margin-left: 2em;
}

.margin-auto {
	margin: 0 auto;
}

p.flash {
	padding: 1em;
	font-weight: lighter;
	margin-bottom: 1em;
}

.no-padding-y {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.no-padding-x {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.scroll-horizontal::-webkit-scrollbar {
	width: 10px;
}

.scroll-horizontal::-webkit-scrollbar-track {
	border-top: 1px solid #ddd;
}

.scroll-horizontal::-webkit-scrollbar-thumb {
	border-top: 1px solid #0099a9;
}

body > div#menu {
	position: fixed;
	padding: 3.65em 0 1.9em 0;
	right: 0;
	left: 0;
	bottom: 200%;
	height: 100%;
	opacity: 0;
	transition: opacity .25s;
	z-index: 100;
	overflow-x: auto;
}

body.menu-open > div#menu {
	bottom: 0;
	opacity: 1;
}

body > div#menu > div.container > div.row#navigation {
	max-width: 900px;
	margin: 3em auto 0 auto;
}

body > div#menu > div.container > div.row#navigation > ul {
	font-size: 1.5em;
}

body > div#menu > div.container > div.row#navigation > ul > li {
	margin-bottom: 1em;
}

body > div#menu > div.container > div.row#navigation > div:last-of-type > a {
	width: 280px;
	margin-bottom: 2em;
}

body > div#menu > div.container > div#customer-care {
	max-width: 900px;
	margin: 3em auto;
	font-size: 1.5em;
}

body > div#menu > div.container > div#customer-care > p {
	display: inline-block;
	cursor: default;
}

body > div#menu > div.container > div#customer-care > a {
	display: inline-block;
	font-size: .8em;
	padding: 0 0 0 4em;
}

body > div#menu > div.container > div#customer-care > a > i.icon.icon-phone {
	margin-right: .8em;
	position: relative;
	top: 4px;
}

body > div#menu > div.container > div#customer-care > a > i.icon.icon-email {
	margin-right: .8em;
	position: relative;
	top: 3px;
}

body > div#menu > div.container > div#follow {
	max-width: 900px;
	margin: 0 auto 1.5em auto;
	font-size: 1.5em;
}

body > div#menu > div.container > div#follow > p {
	display: inline-block;
	margin-right: .4em;
	cursor: default;
}

body > div#menu > div.container > div#follow > a {
	position: relative;
	top: 5px;
	margin-left: 1.3em;
}
table#request-table > thead > tr, table#invoice-table > thead > tr { height:90px;}

@media (max-width: 830px) {

	body > div#menu > div.container > div.row#navigation {
		display: block;
	}

	body > div#menu > div.container > div#customer-care {
		margin-top: 0;
	}

	body > div#menu > div.container > div#customer-care > a {
		display: block;
		padding-left: 0;
		margin: 1em 0 0 0;
		font-size: 1.1em;
	}

}

ul.breadcrumb {
	max-width: 1422px;
	margin: 1em auto 0 auto;
	padding: 0 30px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

ul.breadcrumb > li > a {
	text-transform: uppercase;
	font-size: .9em;
	letter-spacing: 2px;
	font-weight: bolder;
}

ul.breadcrumb > li:first-of-type > a > i {
	margin-right: .5em;
}

ul.breadcrumb > li:last-of-type > a > i {
	margin-left: .5em;
}

@media (max-width: 989px) {

	.hidden-mobile-menu {
		display: none;
	}

	
}

@media (min-width: 990px) {

	.hidden-desktop-menu {
		display: none;
	}

}

@media (max-width: 1199px) {

	.hidden-mobile {
		display: none;
	}

}

@media (min-width: 1200px) {

	.hidden-desktop {
		display: none;
	}

}

i.corona {
	display: block;
	position: absolute;
	width: 8em;
	height: 8em;
	border-radius: 4em;
	background-color: transparent;
	box-shadow: #0099a9 0 0 14em;
}

form div.input {
	margin-bottom: 1em;
}

form div.input > label, form div.input > input, form div.input > select, form div.input > textarea {
	display: block;
}

form div.input > label {
	margin-bottom: .2em;
}

form div.input > input, form div.input > select, div.input > textarea {
	background: #fff;
	border: 1px solid #aaa;
	color: #000;
	padding: 1.1em 1.2em;
	font-family: "ITC Conduit LT CE", "Roboto", Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 1em;
	width: 100%;
	outline: none;
	border-radius: .2em;
}

form div.input > input:focus, form div.input > select:focus {
	color: #0099a9;
	border: 1px solid #0099a9;
}

form div.file {
	margin: 1em 0 1.6em 0;
	padding: 1.4em;
	background-color: #fff;
	border: 1px dashed #ddd;
	max-width: 700px;
	display: flex;
}

form div.file > input {
	display: none;
}

form div.file > button.button {
	display: inline-block;
	flex-basis: 250px;
	flex-shrink: 0;
}

form div.file > span {
	color: #aaa;
	font-size: 1.1em;
	font-weight: lighter;
	margin-left: 1.6em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 3.2em;
}

@media (max-width: 750px) {
	.remove-invoiceitem, #add-invoiceitem {
		height: 28px!important;font-size: 0.5em!important;
	}
	div#invoiceitemrows div.row div.input:first-of-type {
		max-width:60px;
	}
	div#invoiceitemrows div.row div:nth-of-type(3) {
		max-width:45px;
	}

	div.container.no-padding-y {
		padding-left: 10px!important;
		padding-right: 10px!important;
	}

	table.table > thead > tr > th {
		padding: 0.7em 0px !important;
		font-size: 1.2em!important;
	}

	table#invoice-table > thead > tr > th:nth-child(1),
	table#invoice-table > tbody > tr > td:nth-child(1){
		display: none;
	}

	table#invoice-table > thead > tr > th span.withoufilter {
		position:absolute;
		top: 14px;
	}
	div.submenu a.button.large {
		padding: 3px 7px;
		font-size: 0.9em;
	}
	
	div.submenu a.button.large.addinvoice {
		display:table;
		margin: 0 auto;
		margin-bottom: 8px;
	}

	select#buildingfilter { 
		max-width:130px!important;
		margin: 0px 5px;
	}

	input#subjectfilter { 
		max-width:120px!important;
		margin: 0px 5px;
	}

	form div.file {
		display: block;
		padding-bottom: 0;
	}

	form div.file > span {
		margin-left: 0;
		display: block;
	}

}

form div.checkbox {
	margin-bottom: 1em;
}

form div.checkbox > label {
	position: relative;
	padding-left: 1.8em;
}

form div.checkbox > label > input {
	border: 1px solid #ccc;
	color: #ccc;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.2em;
	width: 1em;
	height: 1em;
	outline: none;
	border-radius: 3px;
}

form div.checkbox > label > input:checked {
	background-color: #0099a9;
	box-shadow: inset -3px -3px #fff, inset 3px 3px #fff;
}

body > div#menu,
body > div#header {
	padding: 3.25em 0 1.9em 0;
	flex: 0 1 auto;
	font-weight: lighter;
	font-size: .9em;
}

body > div#menu > div.container > h1,
body > div#header > div.container > h1 {
	margin-top: .52em;
	font-size: 4em;
	letter-spacing: 2px;
}

body > div#menu > div.container > div.row,
body > div#header > div.container > div.row {
	text-transform: uppercase;
}

body > div#menu > div.container > h1 + div:last-of-type,
body > div#header > div.container > h1 + div:last-of-type {
	text-transform: none;
}

body > div#menu > div.container > div.row > ul.row > li,
body > div#header > div.container > div.row > ul.row > li {
	letter-spacing: 2px;
	margin: 0 1em;
}

body > div#menu > div.container > div.row > ul:first-of-type > li:first-of-type,
body > div#header > div.container > div.row > ul:first-of-type > li:first-of-type {
	position: relative;
}

body > div#menu > div.container > div.row > ul > li:first-of-type,
body > div#header > div.container > div.row > ul > li:first-of-type {
	margin-left: 0;
}

body > div#menu > div.container > div.row > ul > li:last-of-type,
body > div#header > div.container > div.row > ul > li:last-of-type {
	margin-right: 0;
}

body > div#header > div.container > div.row > ul:first-of-type > li:first-of-type > i.corona {
	top: -14em;
	left: 0;
}

body > div#menu > div.container > div.row > ul:first-of-type > li:first-of-type > a,
body > div#header > div.container > div.row > ul:first-of-type > li:first-of-type > a {
	padding-left: 0;
}

body > div#menu > div.container > div.row > ul.row:first-of-type > li:first-of-type > a.button,
body > div#header > div.container > div.row > ul.row:first-of-type > li:first-of-type > a.button {
	position: relative;
	padding-left: 3.45em;
}

body > div#header > div.container > div.row > ul.row:first-of-type > li:first-of-type > a.button:hover > i.icon.icon-menu > i {
	width: 100%;
}

body > div#menu > div.container > div.row > ul > li.dropdown,
body > div#header > div.container > div.row > ul > li.dropdown {
	color: #000;
	position: relative;
	z-index: 10;
}

body > div#menu > div.container > div.row > ul > li.dropdown > ul,
body > div#header > div.container > div.row > ul > li.dropdown > ul {
	display: none;
	position: absolute;
	background-color: #fff;
	border-radius: 5px;
	width: 180px;
	left: 50%;
	margin-left: -90px;
	margin-top: 1em;
	padding: .7em 1em;
	box-shadow: 0 0 3px #000;
}

body > div#header > div.container > div.row > ul > li.dropdown.wide > ul {
	width: 300px;
	margin-left: -150px;
}

body > div#menu > div.container > div.row > ul > li.dropdown > ul.visible,
body > div#header > div.container > div.row > ul > li.dropdown > ul.visible {
	display: block;
}

body > div#menu > div.container > div.row > ul > li.dropdown > ul > li,
body > div#header > div.container > div.row > ul > li.dropdown > ul > li {
	text-transform: none;
	font-size: 1.2em;
	letter-spacing: 0;
	padding: .4em 0;
	border-bottom: 1px solid #eee;
}

body > div#menu > div.container > div.row > ul > li.dropdown > ul > li:last-of-type,
body > div#header > div.container > div.row > ul > li.dropdown > ul > li:last-of-type {
	border-bottom: 0;
}

body > div#menu > div.container > div.row > ul > li.dropdown > ul > li > a,
body > div#header > div.container > div.row > ul > li.dropdown > ul > li > a {
	color: #000;
}

body > div#menu > div.container > div.row > ul > li.dropdown > ul > li > a:hover,
body > div#header > div.container > div.row > ul > li.dropdown > ul > li > a:hover {
	color: #0099a9;
}

body > div#menu > div.container > div.row > ul.row:first-of-type > li:first-of-type > a.button > i.icon,
body > div#header > div.container > div.row > ul.row:first-of-type > li:first-of-type > a.button > i.icon {
	position: absolute;
	top: 3px;
	left: 0;
}

body > div#menu > div.container > div.row > ul.row:last-of-type > li:last-of-type,
body > div#header > div.container > div.row > ul.row:last-of-type > li:last-of-type {
	margin-left: 1.4em;
}

body > div#header a.header-icon > i {
	position: relative;
	top: 5px;
}

body > div#content {
	min-height: calc(100vh - 597px);
}

body.error > div#content {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
	padding: 2em;
}

body > div#content > div.container, body > div#content > div > div.container {
	padding: 4em 30px;
}

body > div#content > div.container > h2, body > div#content > div > div.container > h2 {
	font-size: 2em;
}

body > div#content > div#sign-in {
	max-width: 760px;
}

body > div#content > div#sign-in > div.row {
	align-items: center;
}

body > div#content > div#sign-in > div.row > div {
	margin: 1em;
}

body > div#content > div#sign-in > div.row > div#first-time {
	border: 1px solid #aaa;
	border-radius: .2em;
	padding: 2em 1.6em;
	margin-top: 2em;
}

body > div#content > div#sign-in > div.row > div > h2 {
	font-size: 2.2em;
	margin-bottom: .5em;
}

body > div#content > div#sign-in > div.row > div#first-time > h3 {
	font-weight: bold;
	font-size: 2em;
	border-bottom: 1px solid #ccc;
	padding-bottom: .6em;
	margin-bottom: .8em;
}

body > div#content > div#sign-in > div.row > div#first-time > ul > li {
	position: relative;
	padding-left: 2.3em;
	line-height: 1.4em;
	margin-bottom: 1em;
	font-size: 1.1em;
}

body > div#content > div#sign-in > div.row > div#first-time > ul > li:last-of-type {
	margin-bottom: 0;
}

body > div#content > div#sign-in > div.row > div#first-time > ul > li > i {
	position: absolute;
	top: 5px;
	left: 0;
}

@media (max-width: 750px) {

	body > div#content > div#sign-in {
		padding-top: 1em;
		padding-bottom: 2em;
	}

	body > div#content > div#sign-in > div.row {
		display: block;
	}

	body > div#content > div#sign-in > div.row > div#first-time {
		margin-top: 2em;
	}

}

body > div#content > div#sign-up > div {
	margin: 0 auto;
	max-width: 420px;
}

body > div#content > div#sign-up > div > h2 {
	font-size: 2.2em;
	margin-bottom: .5em;
}

body > div#content > div#sign-up > div > form > div.row > div.checkbox > label > a {
	color: #0099a9;
}

div.container-table {
	position: relative;
}

div.container-table > span {
	position: absolute;
	font-size: 1.1em;
	height: 5.2em;
	top: 0;
	left: 0;
	right: 0;
	background-color: #f8f8f8;
}

div.container-table > div.container {
	position: relative;
}

div.container-table > div.container > a {
	margin: 30px auto;
	max-width: 280px;
}

table.table {
	width: 100%;
	font-size: 1.1em;
	border-collapse: collapse;
}

table.table > tbody > tr > td,
table.table > thead > tr > th {
	padding: .6em .3em;
}

table.table > thead > tr > th {
	background-color: #f8f8f8;
	font-size: 1.4em;
	font-weight: lighter;
	padding: 1.3em 0;
}

table.table > tbody > tr > td > a.button {
	font-size: .9em;
	letter-spacing: 2px;
	padding: 1.2em 0;
	font-weight: normal;
}

table.table > tbody > tr > td {
	border-bottom: 2px solid #eee;
}

table.table > tbody > tr:last-of-type > td {
	border-bottom: 0;
}

body > div#footer {
	padding: 3em 0 3em 0;
}

body > div#footer > div.container > div.row > div > h4 {
	font-size: 2em;
	margin-bottom: .8em;
}

body > div#footer > div.container > div.row > div > p {
	font-size: 1.1em;
	line-height: 1.8em;
	margin-bottom: 2em;
	font-weight: lighter;
}

body > div#footer > div.container > div.row > div > ul {
	font-size: 1.1em;
	line-height: 1.8em;
	font-weight: lighter;
}

body > div#footer > div.container > div#bottom-line {
	font-size: .9em;
	color: #818a8e;
}

body > div#footer > div.container > div#bottom-line > ul {
	flex-grow: 1;
	justify-content: flex-end;
}

body > div#footer > div.container > div#bottom-line > ul > li {
	margin-right: 3em;
}

body > div#footer > div.container > div#bottom-line > ul > li:last-of-type {
	margin-right: 0;
}

body > div#footer > div.container > div#bottom-line > ul > li > a {
	color: #818a8e;
}

body > div#footer > div.container > div.row > div:first-of-type > div:first-of-type {
	position: relative;
	padding: .5em 0 0 100px;
	height: 100px;
}

body > div#footer > div.container > div.row > div:first-of-type > div:first-of-type > img {
	position: absolute;
	top: -10px;
	left: 0;
	width: 80px;
	height: 80px;
	border-radius: 40px;
}

body > div#footer > div.container > div.row > div:first-of-type > div:first-of-type > div#hours > span {
	display: inline-block;
	width: 50px;
}

body > div#footer > div.container > div.row > div:first-of-type > a {
	display: block;
	font-weight: lighter;
	font-size: 1.1em;
	margin: 0 0 1.2em 0;
	padding-left: 2.2em;
	position: relative;
}

body > div#footer > div.container > div.row > div:first-of-type > a > i {
	position: absolute;
	top: 0;
	left: 0;
}

body > div#footer > div.container > div.row > div:first-of-type > div:last-of-type {
	display: flex;
	width: 100%;
	margin: 3em 0 3em 0;
	flex-wrap: wrap;
	justify-content: space-between;
}

body > div#footer > div.container > div.row > div:first-of-type > div:last-of-type > div > a {
	display: inline-block;
	width: 3em;
	height: 3em;
	line-height: 2.9em;
	text-align: center;
}

body > div#footer > div.container > div.row > div:first-of-type > div:last-of-type > div:first-of-type > a {
	border-radius: 1.5em;
	font-weight: lighter;
}

body > div#footer > div.container > div.row > div:first-of-type > div:last-of-type > div:first-of-type > a.active {
	border: 1px solid #0099a9;
}

body > div#footer > div.container > div.row > div:first-of-type > div:last-of-type > div:last-of-type {
	text-align: right;
}

@media (max-width: 1340px) {

	body > div#footer > div.container > div.row {
		flex-wrap: wrap;
	}

	body > div#footer > div.container > div.row > * {
		flex: 0 50%
	}

	body > div#footer > div.container > div#bottom-line {
		display: block;
	}

	body > div#footer > div.container > div#bottom-line > ul {
		justify-content: center;
		margin-top: 2em;
	}

}

div#homepage-heading > div {
	margin-left: -2em;
	margin-right: -2em;
	padding-top: .6em;
	min-width: 1400px;
}

@media (max-width: 1400px) {

	div#homepage-heading {
		overflow-x: scroll;
	}

}

div#homepage-heading > div > div {
	margin: 2em;
	padding: 1.7em 2.2em;
	height: 24em;
	position: relative;
	flex-basis: 450px;
}

div#homepage-heading > div > div > div.bottom {
	position: absolute;
	bottom: 2em;
	left: 2em;
	right: 2em;
}

div#homepage-heading > div > div > span.separator {
	display: block;
	position: absolute;
	right: -2em;
	top: 1em;
	bottom: 1em;
	background-color: #1d242b;
	width: 2px;
}

div#homepage-heading > div > div > h3 {
	font-size: 1.7em;
	margin-bottom: .6em;
	font-weight: lighter;
}

div#homepage-heading > div > div > table {
	font-size: 1.2em;
	width: 100%;
	margin: 2.2em 0 0 0;
}

div#homepage-heading > div > div > table > tbody > tr > td,
div#homepage-heading > div > div > table > tbody > tr > th {
	font-weight: lighter;
	padding: .6em 0;
}

div#homepage-heading > div > div > table > tbody > tr > td {
	text-align: right;
}

div#homepage-heading > div > div > table > tbody > tr > th {
	text-align: left;
}

div#homepage-heading > div > div > table > tbody > tr > td > i.icon.icon-warning {
	width: 18px;
	height: 18px;
	position: relative;
	top: 3px;
	margin-right: .6em;
}

div#billing-heading {
	margin-top: 3em;
}

@media (max-width: 1080px) {

	div#billing-heading {
		display: block;
	}

}

div#billing-heading > table {
	font-size: 2.2em;
}

div#billing-heading > table > tbody > tr > td,
div#billing-heading > table > tbody > tr > th {
	font-weight: lighter;
	padding: 0 2em .4em 0;
}

div#billing-heading > table > tbody > tr > th {
	text-align: left;
}

div#billing-heading > form > div.input > select {
	width: 400px;
	font-size: 1.4em;
	font-weight: lighter;
}

body > div#content > div.container#billing-detail > h2 {
	border-bottom: 2px solid #ddd;
	padding-bottom: .7em;
	margin-bottom: 1.2em;
}

body > div#content > div.container#billing-detail {
	padding-top: 3em;
	max-width: 1222px;
}

div.container#billing-detail > div.row > table {
	font-size: 1.1em;
}

div.container#billing-detail > div.row > table > tbody > tr > th,
div.container#billing-detail > div.row > table > tbody > tr > td {
	font-weight: normal;
	padding: 0 0 .9em 0;
}

div.container#billing-detail > div.row > div > table {
	font-size: 1.2em;
}

div.container#billing-detail > div.row > div > table > tbody > tr > th,
div.container#billing-detail > div.row > div > table > tbody > tr > td {
	font-weight: normal;
	padding: 0 0 .9em 0;
}

div.container#billing-detail > div.row:first-of-type {
	border-bottom: 2px solid #ddd;
	padding-bottom: 1.4em;
	margin-bottom: 2em;
}

div.container#billing-detail #qr {
	position: relative;
}

div.container#billing-detail #qr > img {
	width: 150px;
	height: 150px;
	position: relative;
	top: -10px;
}

div.container#billing-detail #qr > p {
	position: absolute;
	left: 0;
	right: 0;
	top: 130px;
}

div.container#billing-detail > div.row > table:last-of-type {
	margin-left: 3em;
}

@media (max-width: 1000px) {

	div.container#billing-detail > div.row {
		display: block;
		position: relative;
	}

	div.container#billing-detail > div.row > table {
		width: 100%;
	}

	div.container#billing-detail > div.row > table > tbody > tr > td {
		text-align: left;
	}

	div.container#billing-detail > div.row > table:last-of-type {
		margin-left: 0;
	}

	div.container#billing-detail #qr {
		position: absolute;
		top: 50%;
		left: 25em;
		margin-top: -75px;
	}

}

div.container#contracts {
	font-size: 1.1em;
}

div.container#contracts > div.row {
	margin-bottom: 1.6em;
	padding-bottom: 1.6em;
	border-bottom: 2px solid #ddd;
}

div.container#contracts > div.row:last-of-type {
	border-bottom: 0;
}

div.container#contracts > div.row > div:first-of-type {
	width: 300px;
	height: 200px;
	flex-basis: 300px;
	flex-shrink: 0;
	flex-grow: 0;
	background-size: cover;
	border-radius: 4px;
	background-color: #ddd;
}

div.container#contracts > div.row > div:last-of-type > div {
	padding-left: 2.7em;
}

div.container#contracts > div.row > div:last-of-type > div > table {
	flex-shrink: 0;
	flex-grow: 0;
	table-layout: auto;
}

div.container#contracts > div.row > div:last-of-type > div > table > tbody > tr > td,
div.container#contracts > div.row > div:last-of-type > div > table > tbody > tr > th {
	padding: 0 0 1em 0;
	vertical-align: top;
}

div.container#contracts > div.row > div:last-of-type > div > table > tbody > tr:last-of-type > td,
div.container#contracts > div.row > div:last-of-type > div > table > tbody > tr:last-of-type > th {
	padding-bottom: 0;
}

div.container#contracts > div.row > div:last-of-type > div > table > tbody > tr > th {
	font-weight: normal;
	text-align: left;
	padding-right: 3em;
}

div.container#contracts > div.row > div:last-of-type > div > ul {
	margin-top: .15em;
}

div.container#contracts > div.row > div:last-of-type > div > ul > li {
	margin-bottom: .5em;
}

div.container#contracts > div.row > div:last-of-type > div > ul > li > a {
	color: #0099a9;
}

div.container#contracts > div.row > div:last-of-type > h4 {
	margin: 2em 0 2em 3.1em;
	font-size: .9em;
	text-transform: uppercase;
	color: #0099a9;
	font-weight: normal;
	letter-spacing: 1px;
}

div.container#contracts > div.row > div:last-of-type > ul {
	display: flex;
	margin-left: 3em;
	flex-wrap: wrap;
}

div.container#contracts > div.row > div:last-of-type > ul > li {
	flex-basis: 50%;
	display: block;
	margin: 0 0 1em 0;
	padding: 0 1.6em 0 1.6em;
	position: relative;
}

div.container#contracts > div.row > div:last-of-type > ul > li > i {
	position: absolute;
	top: 1px;
	left: 0;
}

@media (max-width: 1280px) {

	div.container#contracts > div.row > div:last-of-type > div {
		display: block;
	}

	div.container#contracts > div.row > div:last-of-type > div > ul {
		margin-left: .1em;
		margin-top: 1em;
	}

	div.container#contracts > div.row > div:last-of-type > ul {
		display: block;
	}

}

@media (max-width: 900px) {

	div.container#contracts > div.row > div:first-of-type {
		width: 150px;
		height: 100px;
		flex-basis: 150px;
	}

}

@media (max-width: 750px) {

	div.container#contracts > div.row > div:first-of-type {
		display: none;
	}

}

div#contact-heading {
	font-size: 1.2em;
	position: relative;
	z-index: 30;
}

div#contact-heading > div.row {
	margin: 1.6em -2.5em -4.5em -2.5em;
	border-radius: 4px;
}

div#contact-heading > div.row > div {
	padding: 2.7em 2.5em 3.5em 2.5em;
}

div#contact-heading > div.row > div:first-of-type {
	border-radius: 4px;
	flex-basis: 43%;
}

div#contact-heading > div.row > div:last-of-type {
	padding-left: 6em;
	flex-basis: 57%;
}

div#contact-heading > div.row > div > h2 {
	font-size: 1.8em;
	margin-bottom: .6em;
}

div#contact-heading > div.row > div:first-of-type > div > h2 {
	font-size: 1.8em;
	margin-bottom: .6em;
	border-top: 1px solid #52adb7;
	margin-top: .6em;
	padding-top: 1em;
}

div#contact-heading > div.row > div:last-of-type > h2 {
	border-bottom: 1px solid #ccc;
	padding-bottom: .6em;
}

div#contact-heading > div.row > div:first-of-type > div.row#contact-customer-care > div:first-of-type {
	position: relative;
	padding: .5em 0 0 100px;
	height: 100px;
}

div#contact-heading > div.row > div:first-of-type > div.row#contact-customer-care > div:first-of-type > div#hours-customer-care {
	padding: 1em 0 0 0;
}

div#contact-heading > div.row > div:first-of-type > div.row#contact-customer-care > div:first-of-type > div#hours-customer-care > span {
	display: inline-block;
	width: 50px;
}

div#contact-heading > div.row > div:first-of-type > div.row#contact-customer-care > div:first-of-type > img {
	position: absolute;
	left: 0;
	width: 80px;
	height: 80px;
	border-radius: 40px;
}

div#contact-heading > div.row > div:first-of-type > div.row#contact-customer-care > div:last-of-type {
	padding-top: .6em;
}

div#contact-heading > div.row > div:first-of-type > div.row#contact-customer-care > div:last-of-type > a {
	display: block;
	color: #fff;
	padding: .4em 0 .4em 1.3em;
	position: relative;
}

div#contact-heading > div.row > div:first-of-type > div.row#contact-customer-care > div:last-of-type > a > i.icon {
	position: absolute;
	left: 0;
	bottom: 10px;
}

@media (max-width: 680px) {

	div#contact-heading > div.row > div:first-of-type > div.row#contact-customer-care {
		display: block;
	}

}

div#contact-heading > div.row > div:first-of-type > div#contact-follow {
	position: relative;
}

div#contact-heading > div.row > div:first-of-type > div#contact-follow > div {
	position: absolute;
	right: 0;
	bottom: 0;
}

div#contact-heading > div.row > div:first-of-type > div#contact-follow > div > a {
	margin-left: 2em;
}

div#contact-heading > div.row > div:first-of-type > div > p {
	line-height: 1.7em;
	font-size: 1.1em;
}

div#contact-heading > div.row > div:last-of-type > p {
	font-size: 1.1em;
}

div#contact-heading > div.row > div:last-of-type > a {
	display: block;
	color: #000;
	margin: 1.3em 0 2.6em 0;
	font-size: 1.1em;
	position: relative;
	padding-left: 1.6em;
}

div#contact-heading > div.row > div:last-of-type > a > i.icon-phone {
	position: absolute;
	left: 0;
	width: 17px;
	height: 17px;
	top: 2px;
}

div#contact-heading > div.row > div:last-of-type > ul {
	font-size: 1.1em;
}

div#contact-heading > div.row > div:last-of-type > ul > li {
	margin: 0 0 1em 0;
	position: relative;
	padding-left: 2em;
}

div#contact-heading > div.row > div:last-of-type > ul > li > i.icon-check {
	position: absolute;
	left: 0;
	top: -2px;
}

@media (max-width: 1400px) {

	div#contact-heading > div.row {
		display: block;
	}

	div#contact-heading > div.row > div:last-of-type {
		padding-left: 2.5em;
	}

}

div#request-heading > div.row > form > div.input > select {
	max-width: 400px;
	font-size: 1.4em;
	font-weight: lighter;
}

@media (max-width: 1000px) {

	div#request-heading > div.row {
		display: block;
	}

	div#request-heading > div.row > form {
		margin-top: 2em;
	}

}

div#request-detail-heading > div.container {
	margin: 2em auto 0 auto;
}

div#request-detail-heading > div.container > p.flash {
	font-size: 1.2em;
}

div#request-detail-heading > div.container > div:first-of-type {
	margin-top: 3em;
}

div#request-detail-heading > div.container > div > div.row {
	margin-bottom: 4em;
}

div#request-detail-heading > div.container > div > div.row > div:nth-child(even) {
	width: 100px;
}

div#request-detail-heading > div.container > div > div.row > div:nth-child(odd) {
	position: relative;
}

div#request-detail-heading > div.container > div > div.row > div:nth-child(odd) > span:first-of-type {
	display: block;
	text-align: center;
	font-size: 1.3em;
	margin-bottom: 1.6em;
}

div#request-detail-heading > div.container > div > div.row > div:nth-child(odd) > span:last-of-type {
	display: block;
	text-align: center;
	font-size: 1.2em;
	margin-top: 1em;
	color: #666;
}

div#request-detail-heading > div.container > div > div.row > div:nth-child(odd) > a {
	position: absolute;
	width: 180px;
	left: 50%;
	margin-left: -90px;
	bottom: -30px;
}

div#request-detail-heading > div.container > div > div.row > div:nth-child(odd) > div {
	border: 2px solid #666;
	width: 90px;
	height: 90px;
	border-radius: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

div#request-detail-heading > div.container > div > div.row > div.complete:nth-child(odd) > div {
	background-color: #03303a;
	border: none;
}

div#request-detail-heading > div.container > div > div.row > div.complete:nth-child(odd) > span:first-of-type {
	color: #0099a9;
}

div#request-detail-heading > div.container > div > div.row > div.active:nth-child(odd) > div {
	background-color: transparent;
	border: 2px solid #e14504;
}

div#request-detail-heading > div.container > div > div.row > div.active:nth-child(odd) > span:first-of-type {
	color: #e14504;
}

div#request-detail-heading > div.container > div > div.row > div.pending:nth-child(odd) > div {
	opacity: .5;
}

div#request-detail-heading > div.container > div > div.row > div:nth-child(odd) > div > i.icon.icon-check {
	position: absolute;
	top: -3px;
	right: -3px;
}

div#request-detail-heading > div.container > table {
	font-size: 1.2em;
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0 2em 0;
}

div#request-detail-heading > div.container > table > thead > tr > th {
	font-weight: lighter;
	text-align: left;
}

div#request-detail-heading > div.container > table > tbody > tr > td,
div#request-detail-heading > div.container > table > thead > tr > th {
	padding: 1em 0;
}

div#request-detail-heading > div.container > table > tbody > tr > td {
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}

@media (max-width: 1200px) {

	div#request-detail-heading > div.container {
		max-width: 100%;
	}

	div#request-detail-heading > div.container > div {
		overflow-x: scroll;
		width: auto;
		display: block;
	}

	div#request-detail-heading > div.container > div > div.row {
		width:100%;
	}

}

table#request-comments > tbody > tr > td {
	vertical-align: top;
	padding-top: 2em;
	padding-bottom: 2em;
}

table#request-comments > tbody > tr > td p {
	margin-bottom: .7em;
	white-space: pre-wrap;
}

table#request-comments > tbody > tr > td > a.attachment, div.attachments a.attachment {
	color: #0099a9;
	display: inline-block;
	margin-right: 1em;
}

table#request-comments > tbody > tr > td > a.attachment > i.icon.icon-attachment, div.attachments a.attachment i.icon.icon-attachment{
	margin-right: .2em;
}

table#request-comments > tbody > tr > td ul {
	margin-bottom: .7em;
	margin-left: 1.1em;
	list-style: circle;
}

@media (max-width: 1199px) {

	div#request-detail-heading > div.container > table.hidden-desktop > tbody > tr > td,
	div#request-detail-heading > div.container > table.hidden-desktop > tbody > tr > th {
		border-top: 0;
		border-bottom: 1px solid #666;
	}

	div#request-detail-heading > div.container > table.hidden-desktop > tbody > tr > th {
		text-align: left;
	}

	table#request-comments > thead {
		display: none;
	}

	table#request-comments,
	table#request-comments > tbody,
	table#request-comments > tbody > tr,
	table#request-comments > tbody > tr > td {
		display: block;
		width: 100%;
		border: 0;
	}

	table#request-comments > tbody > tr > td {
		padding-top: .7em;
		padding-bottom: 0;
	}

	table#request-comments > tbody > tr > td:first-of-type > div {
		display: inline-block;
		margin-right: 1em;
		color: #666;
	}

	table#request-comments > tbody > tr > td.form {
		padding-top: 0;
		padding-bottom: 1em;
	}

	table#request-comments > table,
	table#request-comments > tbody {
		background: #f8f8f8;
		padding: 2em 0;
	}

	table#request-comments > tbody > tr {
		background: #fff;
		margin-bottom: 1em;
		padding: 1em 1.4em;
	}

	div#request-comments-container > div.container {
		background: #f8f8f8;
	}

	div#request-comments-container > span {
		display: none;
	}

}

@media (max-width: 1400px) {

	div.articles {
		overflow-x: scroll;
	}

	div.articles > div.row {
		min-width: 1400px;
		margin-bottom: 30px;
	}

}

table#request-table > tbody > tr > td > small {
	display: block;
	font-size: .7em;
}

@media (max-width: 1340px) {

	table#request-table > thead > tr > th:nth-child(1),
	table#request-table > tbody > tr > td:nth-child(1),
	table#request-table > tbody > tr > td:nth-child(2)/*,
	table#request-table > thead > tr > th:nth-child(3),
	table#request-table > tbody > tr > td:nth-child(4)*/ {
		display: none;
	}

	table#request-table > tbody > tr > td > a {
		min-width: 100px;
	}

	.filtercolumn {
		top:50px;
	}
}

table#users-table > tbody > tr > td {
	padding: 1em 0;
}

table#users-table > tbody > tr.user:not(.me) > td {
	padding-top: 1.4em;
}

table#users-table > tbody > tr.user:not(.me) > td {
	border-bottom: 0;
}

table#users-table > tbody > tr.permissions > td {
	padding-bottom: 1.4em;
}

table#users-table > tbody > tr.permissions > td > div.row > div {
	margin-right: 3em;
}

table#users-table > tbody > tr.permissions > td > div.row > div > span {
	display: inline-block;
	position: relative;
	bottom: .5em;
	margin-right: 1em;
}

div#account-heading > ul {
	text-align: right;
	margin: 5em 0 .3em 0;
}

div#account-heading > ul > li {
	display: inline-block;
	text-align: center;
}

div#account-heading > ul > li > a {
	text-transform: uppercase;
	font-size: 1.1em;
	letter-spacing: 2px;
	padding: 2em;
}

@media (max-width: 1000px) {

	div#account-heading > ul {
		margin-top: 3em;
	}

	div#account-heading > ul > li {
		display: block;
	}

	div#account-heading > ul > li > a {
		display: block;
		padding: .5em;
	}

}

form#frm-notificationsForm > table {
	font-size: 1.1em;
	margin-bottom: 3em;
}

form#frm-notificationsForm > table > thead > tr > th,
form#frm-notificationsForm > table > tbody > tr > td {
	font-weight: normal;
	padding: 1em;
}

div.articles > div.row > div > article,
div.articles > div.row > article {
	padding: 1.8em 1.8em 1.4em 1.8em;
	margin-right: 1.8em;
	position: relative;
}

div.articles > div.row#facebook > div > article,
div.articles > div.row#news > article {
	padding: calc(1.6em + 250px) 1.8em 1.4em 1.8em;
}

div.articles > div.row > article:last-of-type {
	margin-right: 0;
}

div.articles > div.row > div > article > img,
div.articles > div.row > article > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 3px;
}

div.articles > div.row > div > article > div.image,
div.articles > div.row > article > div.image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 240px;
	background-size: cover;
	background-color: #ddd;
	border-radius: 3px;
}

div.articles > div.row > article > h3 {
	font-weight: lighter;
	height: 2.3em;
	overflow: hidden;
	margin-bottom: 1.3em;
}

div.articles > div.row > div > article > div,
div.articles > div.row > article > div {
	font-weight: lighter;
	font-size: 1em;
	line-height: 1.4em;
	height: 7em;
	overflow: hidden;
}

div.articles > div.row > div > article > hr,
div.articles > div.row > article > hr {
	background: #f8f8f8;
	height: 1px;
	border: 0;
	margin: 1em -1.8em 1.3em -1.8em;
}

div.articles > div.row#facebook > div > article > hr,
div.articles > div.row#news > article > hr {
	background: #ccc;
}

div.articles > div.row > article > a {
	font-weight: lighter;
	letter-spacing: 2px;
	font-size: .95em;
}

div.articles > div.row#facebook > div > article > a,
div.articles > div.row#news > article > a {
	font-weight: normal;
}

div.articles > div.row#facebook > div > article,
div.articles > div.row#news > article {
	border-bottom: 1px solid #ccc;
}

div.articles > div.row#facebook > div > article > div,
div.articles > div.row#news > article > div {
	font-weight: normal;
}

div.articles > div.row#facebook > div > article {
	background-color: #fff;
	margin-bottom: 2em;
	border-bottom: none;
}

div.articles > div.row#facebook > div > article > div:last-of-type {
	height: auto;
}

div.articles > div.row#facebook > div:nth-child(4) > article {
	margin-right: 0;
}

article.container {
	max-width: 1000px;
	font-size: 1.1em;
	line-height: 1.6em;
	padding: 3em 2em;
}

article.container p {
	margin-bottom: 1em;
}

article > span.date {
	display: block;
	text-align: right;
	font-size: 1.1em;
	color: #696969;
	font-weight: lighter;
}

div.container#new {
	margin-top: 1.5em;
}

div.container#new > div.row > div#new-header {
	position: relative;
}

div.container#new > div.row > div#new-header > h1 {
	font-size: 3.3em;
	justify-self: start;
}

div.container#new > div.row > div#new-header > span {
	position: absolute;
	bottom: 1em;
	font-size: 1.1em;
	color: #aaa;
	font-weight: lighter;
}

div.container#new > div.row > div:first-of-type {
	width: 120px;
}

div.container#new > div.row > div:nth-child(2) {
	border-bottom: 1px solid #ddd;
	margin-right: 3em;
}

div.container#new > div.row > div:last-of-type {
	height: 320px;
	width: 40%;
	background-size: cover;
}

@media (max-width: 1200px) {

	div.container#new > div.row > div:first-of-type {
		display: none;
	}

	div.container#new > div.row > div > h1 {
		font-size: 2em;
	}

	div.container#new > div.row > div:last-of-type {
		width: 700px;
		height: 240px;
	}

}

div.container#account-switch > h2 {
	margin-bottom: 1em;
}

div.container#account-switch > ul {
	max-width: 600px;
}

div.container#account-switch > ul > li {
	margin-bottom: 1em;
	padding: 1em;
	font-size: 1.2em;
}

div.container#account-switch > ul > li.turqoise > a {
	color: #fff;
}

div.container#account-switch > ul > li > a > p:first-of-type {
	font-weight: bold;
}

div.container#account-switch > ul > li > a > p:last-of-type {
	font-size: .8em;
}

div.container#account-switch > ul > li > a > p > small {
	float: right;
	font-weight: lighter;
}

form#frm-labelForm-form {
	margin: 0 auto;
	max-width: 900px;
}

form#frm-labelForm-form > h3 {
	font-size: 2.2em;
	margin-bottom: .6em;
}

form#frm-labelForm-form > div.row > div:first-of-type {
	margin-right: 1em;
}

form#frm-labelForm-form > div.row > div:last-of-type {
	margin-left: 1em;
}

@media (max-width: 760px) {

	form#frm-labelForm-form > div.row {
		display: block;
	}

	form#frm-labelForm-form > div.row > div:first-of-type {
		margin-right: 0;
	}

	form#frm-labelForm-form > div.row > div:last-of-type {
		margin-left: 0;
	}

}

form#frm-labelForm-form > div#persons {
	max-width: calc(50% - 1em);
	margin-top: 2em;
	margin-bottom: 2em;
}

form#frm-labelForm-form > div#persons > div {
	margin-bottom: 2em;
	position: relative;
}

form#frm-labelForm-form > div#persons > div.hidden {
	display: none;
}

form#frm-labelForm-form > div#persons > div > h3 {
	font-size: 1.6em;
	margin-bottom: .8em;
}

form#frm-labelForm-form > div#persons > div > button {
	position: absolute;
	right: 0;
	top: -.5em;
	width: auto;

}

form#frm-labelForm-form > div#persons > div.visible > button.remove-person {
	display: none;
}

form#frm-labelForm-form > p#hint {
	font-size: 1.1em;
	margin-top: 2.6em;
	padding-top: 1.8em;
	border-top: 1px solid #aaa;
}

div.modal-container {
	z-index: 120;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .7);
	display: none;
	overflow-x: auto;
}

div.modal-container.visible {
	display: block;
}

div.modal-container > .modal {
	background-color: #fff;
	max-width: 900px;
	width: 100%;
	padding: 3em;
	margin: 5em auto 3em auto;
	position: relative;
}

div.modal-container > .modal > h2 {
	font-size: 2em;
	margin-bottom: .6em;
}

@media (max-width: 990px) {

	div.modal-container > .modal {
		max-width: calc(100vw - 4em);
		margin-top: 2em;
	}

	div.modal-container > .modal > h2 {
		font-size: 1.5em;
		margin-bottom: .3em;
	}
	
	div.modal-container > .modal {
		padding: 2em;
	}
	div#request-detail-heading > div.container > div.hidden-mobile {
		display:none;
	}
	div#header > div.container > h1 {
		font-size: 2em!important;
		letter-spacing: 2px;
	}
	
	div#request-detail-heading .container {
		margin-top: 0px!important;
		padding: 0px!important;
	}
	form div.input > input, form div.input > select, div.input > textarea {
		padding:0.3em 0.6em;
	}
}

div.modal-container > .modal > button.modal-close {
	position: absolute;
	top: 1em;
	right: 1em;
	outline: none;
	-webkit-appearance: none;
	border: 0;
	border-radius: 0;
	width: 30px;
	height: 30px;
	background: none;
}

div.modal-container > .modal > button.modal-close > span {
	width: 32px;
	height: 2px;
	background-color: #000;
	border-radius: 2px;
	position: absolute;
	left: -2px;
	top: 13px;
}

div.modal-container > .modal > button.modal-close > span:first-of-type {
	transform: rotate(45deg);
}

div.modal-container > .modal > button.modal-close > span:last-of-type {
	transform: rotate(-45deg);
}

div#rate-form {
	margin-top: 2em;
}

div#rate-form > div > div.scale > img {
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: inline-block;
	margin: 1em;
}

div#rate-form > div > div.scale.selected > img {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	opacity: .4;
}

div#rate-form > div > div.scale.selected > img.selected {
	-webkit-filter: none;
	filter: none;
	opacity: 1;
}

body.modal-active {
	overflow: hidden;
}

i.icon {
	display: inline-block;
}

i.icon.icon-logo {
	width: 141px;
	height: 41px;
	background-image: url(../icons/Logo.svg);
	background-size: cover;
	position: relative;
	top: -7px;
	right: 2px;
}

i.icon.icon-menu {
	width: 31px;
	height: 21px;
	position: relative;
}

i.icon.icon-menu > i {
	position: absolute;
	display: block;
	background-color: #fff;
	width: 100%;
	height: 1px;
	top: 10px;
	transition: width .25s;
}

i.icon.icon-menu > i:first-of-type {
	top: 0;
	width: 85%;
}

i.icon.icon-menu > i:last-of-type {
	top: auto;
	bottom: 0;
	width: 70%;
}

i.icon.icon-close {
	width: 31px;
	height: 31px;
	position: relative;
}

i.icon.icon-close > i {
	top: 10px;
}

i.icon.icon-close > i:first-of-type {
	position: absolute;
	display: block;
	background-color: #fff;
	width: 100%;
	height: 1px;
	transform: rotate(45deg);
}

i.icon.icon-close > i:last-of-type {
	position: absolute;
	display: block;
	background-color: #fff;
	width: 100%;
	height: 1px;
	transform: rotate(-45deg);
}

i.icon.icon-check {
	width: 24px;
	height: 24px;
	background-image: url(../icons/Check_Full.svg);
	background-size: cover;
}

i.icon.icon-check-o {
	width: 8px;
	height: 16px;
	border: 2px solid #0099a9;
	border-left: 0;
	border-top: 0;
	transform: rotate(43deg);
}

i.icon.icon-warning {
	width: 22px;
	height: 22px;
	background-image: url(../icons/Warning.svg);
	background-size: cover;
	margin-left: .5em;
	position: relative;
	top: 4px;
}

i.icon.icon-phone {
	width: 24px;
	height: 23px;
	background-image: url(../icons/Contact/Icon_Phone_1.svg);
	background-size: cover;
}

i.icon.icon-email {
	width: 24px;
	height: 17px;
	background-image: url(../icons/Contact/Icon_Mail_1.svg);
	background-size: cover;
}

i.icon.icon-phone-w {
	width: 17px;
	height: 16px;
	background-image: url(../icons/Contact/Icon_Phone_1-w.svg);
	background-size: cover;
}

i.icon.icon-email-w {
	width: 17px;
	height: 12px;
	background-image: url(../icons/Contact/Icon_Mail_1-w.svg);
	background-size: cover;
}

i.icon.icon-facebook {
	width: 12px;
	height: 24px;
	background-image: url(../icons/Social/Icon_Facebook.svg);
	background-size: cover;
}

i.icon.icon-instagram {
	width: 24px;
	height: 24px;
	background-image: url(../icons/Social/Icon_Instagram.svg);
	background-size: cover;
}

i.icon.icon-linkedin {
	width: 24px;
	height: 24px;
	background-image: url(../icons/Social/Icon_LinkedIn.svg);
	background-size: cover;
	position: relative;
	top: -2px;
}

i.icon.icon-facebook-w {
	width: 12px;
	height: 24px;
	background-image: url(../icons/Social/Icon_Facebook-w.svg);
	background-size: cover;
}

i.icon.icon-instagram-w {
	width: 24px;
	height: 24px;
	background-image: url(../icons/Social/Icon_Instagram-w.svg);
	background-size: cover;
}

i.icon.icon-linkedin-w {
	width: 24px;
	height: 24px;
	background-image: url(../icons/Social/Icon_LinkedIn-w.svg);
	background-size: cover;
	position: relative;
	top: -2px;
}

i.icon.icon-user-o {
	width: 18px;
	height: .8em;
	position: relative;
	margin-right: .5em;
}

i.icon.icon-user-o > i {
	width: 18px;
	height: 19px;
	background-image: url(../icons/Global/Icon_Main_Menu_1.svg);
	background-size: cover;
	position: absolute;
	display: block;
	top: -2px;
	left: 0;
}

i.icon.icon-phone-o {
	width: 18px;
	height: .8em;
	position: relative;
	margin-right: .5em;
}

i.icon.icon-phone-o > i {
	width: 18px;
	height: 18px;
	background-image: url(../icons/Global/Icon_Main_Menu_2.svg);
	background-size: cover;
	position: absolute;
	display: block;
	top: -2px;
	left: 0;
}

i.icon.icon-bell-o {
	width: 17px;
	height: .8em;
	position: relative;
	margin-right: .5em;
}

i.icon.icon-bell-o > i {
	width: 17px;
	height: 17px;
	background-image: url(../icons/Global/Icon_Main_Menu_3.svg);
	background-size: cover;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}

i.icon.icon-arrow-down {
	width: 17px;
	height: .8em;
	position: relative;
	margin-left: .5em;
}

i.icon.icon-arrow-down > i {
	width: 10px;
	height: 10px;
	position: absolute;
	top: 0;
	left: 0;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}

i.icon.icon-arrow-left {
	border-top: 2px solid #444;
	border-left: 2px solid #444;
	border-radius: 1px;
	width: 10px;
	height: 10px;
	transform: rotate(-45deg);
}

i.icon.icon-arrow-right {
	border-top: 2px solid #444;
	border-right: 2px solid #444;
	border-radius: 1px;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
}

i.icon.icon-status-created {
	width: 36px;
	height: 33px;
	background-image: url(../icons/Global/Icon_Progress_1.svg);
	background-size: cover;
}

i.icon.icon-status-acknowledged {
	width: 36px;
	height: 40px;
	background-image: url(../icons/Global/Icon_Progress_2.svg);
	background-size: cover;
}

i.icon.icon-status-progress {
	width: 36px;
	height: 36px;
	background-image: url(../icons/Global/Icon_Progress_4.svg);
	background-size: cover;
}

i.icon.icon-status-feedback {
	width: 36px;
	height: 39px;
	background-image: url(../icons/Global/Icon_Progress_3.svg);
	background-size: cover;
}

i.icon.icon-status-accepted {
	width: 36px;
	height: 39px;
	background-image: url(../icons/Global/Icon_Progress_5.svg);
	background-size: cover;
}

i.icon.icon-status-closed {
	width: 34px;
	height: 26px;
	background-image: url(../icons/Global/Icon_Progress_7.svg);
	background-size: cover;
}

i.icon.icon-attachment {
	width: 16px;
	height: 17px;
	background-image: url(../icons/Attachment.svg);
	background-size: cover;
	top: 3px;
	position: relative;
}
span.alert {padding:5px;margin:10px 0px;display: inline-block;border: 1px solid transparent;border-radius: 3px;}
span.alert.alert-info {
	background-color: #E0F7FA;
	border-color: #00BCD4;
	color: #00545c;
}
span.alert.alert-success {
	background-color: #E8F5E9;
	border-color: #4CAF50;
	color: #205823;
}
span.alert.alert-danger {
	background-color: #FBE9E7;
	border-color: #FF5722;
	color: #9c1f1f;
}
@media (prefers-reduced-motion) {

	div.toggle > span {
		transition: left .0s, background-color .0s;
	}

	body > div#menu {
		transition: opacity .0s;
	}

	i.icon.icon-menu > i {
		transition: width .05s;
	}

}