@import url('https://fonts.googleapis.com/css?family=Fira+Sans');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Raleway');

:root {
	--color1: #f5f5f5; /* Whitish */
	--color2: #18333C; /* Dark Blue */
	--color3: #CBDCE1; /* Grey */
	--color4: #4CAF50; /* Green - Save Button */
	--color5: #d10918; /* Red */
	--color6: #fff7a3;
	--link: #4a9dbc;
	--linkHover: #000000;
	--button: #4A9DBC;
	--deleteHover: #B91515;
	--headerColor: #3d4449;
	--textColor: #888;
}

/* Standard Setup */

html, body, header, footer, div, nav, ul, ol, li, a, fieldset, menu, hgroup, h1, h2, h3, h4, h5 {
	padding: 0;
	margin: 0;
	border: 0;
}

body {
	background-color: #FFFFFF;
	background-image: radial-gradient(farthest-side at 60% 55%, #FFF, #f5f5f5);
	font: 14px "Raleway", Verdana, sans-serif;
	color: var(--textColor);
	-webkit-text-size-adjust: none;
	box-sizing: border-box;
}

h1, h2, h3, h4 {
	margin-bottom: 1em;
	color: var(--headerColor);;
}

h1 { 
	font-weight: bold;
	color: var(--color2);
	font-family:  'Open Sans', sans-serif; 
	font-size: 2em;
}

h1 span.subtitle {
	font-weight: normal;
}

h2 { font-size: 1.75em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.2em; }

hr {
	border: 0;
	border-bottom: solid 1px rgba(210, 215, 217, 0.75);
	margin: 2em;
}


a, a:visited {
	color: var(--link);
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
}

a:hover {
	color: var(--linkHover);
	filter: opacity(.7);
}

p {
	margin: 0 0 2em 0;
	line-height: 1.5em;
}

.template {
	display: none !important;
}

.ghost {
	opacity: .5;
	border:2px dashed #c0c0c0;
	padding: 5px;
}

.offline {
	opacity: .3;
}

input.good { border-color: #4CAF50 !important; }
input.bad { border-color: #d10918 !important; }
input.new { border-color: #4a9dbc !important; }

span.help {
	display: inline-block;
	position: relative;
	width: 1em;
	height: 1em;
	background-image: url('/images/interface/help-blue.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1em;
	cursor: help;
}

span.help div.help-item {
	position: absolute;
	top: 0.5em;
	left: 0.5em;
	z-index: 999;
	width: 15.5em;
	min-height: 1em;
	background-color: var(--color1);
	border: 1px solid black;
	border-radius: 5px;
	padding: 0.5em;
}

input.error, textarea.error {
	border-color: var(--deleteHover) !important;
	box-shadow: 0px 0px 5px var(--deleteHover) !important;
}
input[type='checkbox'].error{
	outline: 1px solid var(--deleteHover) !important;
}

label.error {
	position: absolute;
	z-index: 1;
	bottom: -0.5em;
	font-size: 0.75em;
	color: var(--deleteHover);
	left: 1em;
	pointer-events: none;
	width: 5em !important;
}

label span.notice_required {
	font-size: 0.75em;
	color: var(--deleteHover);
	position: relative;
	top: -0.3em;
}

input[type='button']:hover, input[type='submit']:hover {
	filter: opacity(.7);
	cursor: pointer;
}

div.helperBlock {
	display: flex;
	justify-content: center;
	font-style: italic;
	font-size: 0.85em;
	padding: 2em;
	margin: 2em auto 2em auto;
	width: calc(100% - 4em);
	background-color: var(--color1);
}

div.helperBlock img {
	width: 1em;
	height: 1em;
}

div.helperBlock p.message {
	margin: 0 0 0 1em;
	line-height: 1em;
}

span.notice {
	display: inline-block;
	min-width: 100px;
	max-width: 400px;
	padding: 5px 10px;
	border-top: 1px solid #000;
	border-left: 3px solid var(--color4);
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	background-color: var(--color2);
	text-align: left;
	color: #fff;
	position: fixed;
	right: 10%;
	top: 15px;
	border-radius: 5px;
	z-index: 999;
}

span.tag {
	border-radius: 0.8em;
	padding: 0.4em;
	color: #000;

}

/* Header Style */


body:not(#body_home) header.block {
	background-size: cover;
	background-position: center;
	/*background-image: url('/images/blend.png');*/
	background: #189BC5;
	background: -webkit-radial-gradient(circle farthest-corner at bottom right, rgba(24, 155, 197, 1) 0%, #18333c 100%);
	background: -moz-radial-gradient(circle farthest-corner at bottom right, rgba(24, 155, 197, 1) 0%, #18333c 100%);
	background: radial-gradient(circle farthest-corner at bottom right, rgba(24, 155, 197, 1) 0%, #18333c 100%);
}



@media screen and (max-width: 61.9em) {
	header#desktopHeader { display: none; }
	
	header#mobileHeader {
		width: 100%;
		background-color: var(--color2);
		position: relative;
		top: 0;
		display: grid;
		grid-template-columns: 8.75em 1fr 2.5em 1em;
		align-items: center;
	}
	
	header#mobileHeader {
		height: 5rem;
		grid-template-rows: 5rem;
		grid-template-areas: "image . menu nav";
	}

	header#mobileHeader div.header-image {
		grid-area: image;
		padding-left: 0.75em;
	}

	header#mobileHeader div.header-image img {
		max-height: 2.8rem;
	}

	header#mobileHeader div.header-button {
		grid-area: menu;
	}

	header#mobileHeader div.header-button i {
		width: 100%;
		height: 100%;
		display: block;
		border: none;
		font-size: 2em;
		cursor: pointer;
		color: #FFF;
	}

	header#mobileHeader nav.main {
		grid-area: nav;
		display: block;
		position: fixed;
		top: 0;
		left: -300px;
		background-color: var(--color2);
		height: 100%;
		width: 300px;
		z-index: 100;
		overflow-x: hidden;
		
	}

	header#mobileHeader nav.main > ul {
		width: 100%;
		list-style: none;
	}

	header#mobileHeader nav.main > ul > li {
		display: block;
		margin: 0.5em 0.75em;
		padding: 0.5em;
		width: calc(100% - 1.5em);
	}

	header#mobileHeader nav.main > ul > li.selected > a {
		color: #000;
		background-color: var(--color3);
	}

	header#mobileHeader nav.main > ul > li > a, header nav.main > ul > li > a:visited {
		display: block;
		color: #ffffff;
		height: 100%;
		width: calc(100% - 1.5em);
		padding: 0.75em;
		text-decoration: none;
	}

	header#mobileHeader nav.main > ul > li a:hover {
		color: #d10918;
	}
	/*
	section#mainWrapper[data-block-attr='hasSubMenu'] { margin-top: 8em; }
	section#mainWrapper:not([data-block-attr='hasSubMenu']) { margin-top: 6em; }
	*/
	
	section#mainWrapper {
		width: 100%;
		margin-bottom: 18em;
		position: relative;
	}

	section.mainBlock {
		width: calc(100% - 1em);
		margin: auto;
		/* background-color: #fff;*/
		min-height: 100px;
		border-radius: 3px;
	}
	
	nav#mobile-submenu {
		display: block;
		width: calc(100% - 1em);
		margin: 1em 0 1em 1em;
	}

	nav#mobile-submenu > ul {
		list-style: none;
	}
	
	nav#mobile-submenu > ul > li {
		padding: 0.5em;
	}

	nav#mobile-submenu > ul li a {
		display: block;
	}
	
	nav#mobile-submenu ul li.selected > a {
		color: #FFF;
	}
	
}


@media screen and (min-width: 62em) {
	
	header#mobileHeader { display: none; }
	nav#mobile-submenu { display: none; }
	
	header#desktopHeader {
		padding-top: 0.5rem;
		width: 100%;
		min-height: 5.2rem;
		display: grid;
		background-color: var(--color2);
		position: fixed;
		top: 0;
		z-index: 10;
		
		grid-template-areas: "logo menu login";
		grid-template-rows: 5.2rem;
		grid-template-columns: 20em auto minmax(20em, 35em);
	}

	header#desktopHeader div.header {
		grid-area: logo;
		padding-left: 3em;
		margin-bottom: 0.5em;
	}

	header#desktopHeader div.header img {
		height: 100%;
	}

	header#desktopHeader nav.main {
		grid-area: menu;
		height: 100%;
		position: relative;
	}

	header#desktopHeader nav.main ul {
		display: flex;
		justify-content: center;
		align-items: center;
		list-style: none;
		height: 100%;
	}

	header#desktopHeader nav.main ul li {
		padding: 0 0.5em;
	}

	header#desktopHeader nav.main ul li a, header nav.main ul li a:visited {
		color: #ffffff;
		height: 100%;
		width: 100%;
		text-decoration: none;
		display: inline-block;
		line-height: 1.5rem;
		text-align: center;
		padding: 0 0.5em;
		border-bottom: 0.2em solid transparent;
	}

	header#desktopHeader nav.main ul li.selected a {
		border-bottom: 0.2em solid var(--color5);
	}

	header#desktopHeader form {
		display: block;
		grid-area: login;
		align-content: flex-end;
		padding-right: 2em;
	}

	header#desktopHeader section.formGroup {
		
	}

	header#desktopHeader fieldset {
		margin-right: 200px !important;
		margin-top: 25px !important;
	}

	header#desktopHeader input[type='submit'] {
		background-color: var(--color2);
		color: #fff;
		border-color: var(--color2) !important;
	}

	section#mainWrapper {
		width: 100%;
		position: relative;
	}
	
	section#mainWrapper[data-block-attr='hasSubMenu'] { margin-top: 7.7rem; }
	section#mainWrapper:not([data-block-attr='hasSubMenu']) { margin-top: 7.5rem; }
	
	section.mainBlock {
		width: calc(100% - 4em);
		margin: 0 auto;
		min-height: 11.5em;
	}
	
	nav#submenu {
		grid-area: submenu;
		background-color: var(--color3);
	}

	nav#submenu > ul {
		height: 100%;
		display: flex;
		list-style: none;
		justify-content: flex-end;
		align-items: center;
		padding-right: 1.5em;
	}

	nav#submenu > ul > li {
		display: inline-block;
		text-align: center;
	}

	nav#submenu > ul > li ~ li {
		margin-left: 1.5em;
	}

	nav#submenu ul li.selected > a {
		color: #000;
	}
	
	li.dropdown {
		position: relative;
		display: inline-block;
		background-image: url('/images/interface/down-arrow-blue.svg');
		background-size: 1em;
		background-repeat: no-repeat;
		background-position: right center;
		padding-right: 1.25em;
		cursor: pointer;
		
	}

	li.dropdown[data-menuOpen='true'] {
		background-color: var(--color3);
	}

	li.dropdown ul {
		display: none;
		position: absolute;
		z-index: 5;
		list-style: none;
		background-color: #FFF;
		border: 1px solid var(--color3);
		min-width: 10em;
		text-align: left;
		top: 1.5em;
		right: 0;
		padding: 0.5em 0;
	}
	
	li.dropdown ul li {
		display: block;
		border: 0.5em solid transparent;
	}

	li.dropdown ul li a {
		padding: 0.5em 0.5em 0.5em 0.5em;
		text-align: left !important;
	}

	li.dropdown ul li a:hover {
		background-color: var(--color6);
		border-radius: 10px;
	}


}

section.mainBlock.mini {
	width: 25em;
}

section.mainBlock.small {
	width: 32em;
}

section.mainBlock.medium {
	width: 50em;
}

section.mainBlock.large {
	width: 75em;
}

@media (max-width: 59.9rem) {
	section.mainBlock > section {
		padding: 1em 0;
		width: 100%;
	}
}

@media (min-width: 60rem) {
	section.mainBlock > section {
		padding: 1em 1em;
		width: calc(100% - 2em);
	}
}

section.mainBlock > section.nopad {
	padding: 0;
}

section.cover {
	width: calc(100% - 4em);
	height: 16em;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

section.mainBlock section.dashboard {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 0.5em;
}

section.mainBlock section.dashboard > section {
	background-color: #FFFFFF;
	border-radius: 5px;
	padding: 0.5em;
	width: auto;
	margin: 0;
}

/* BreadCrums */
nav.breadcrumbs {
	display: block;
	width: calc(100% - 1.5em);
	font-size: 0.8em;
	padding: 0.8em 0.5em 0.8em 2em;
}

nav.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav.breadcrumbs li:not(:first-of-type)::before {
    display: inline-block;
    content: "/";
    padding: 0 0.5em;
}


/* Pages */
header.pageHeader {
	display: grid;
	width: 100%;
	min-height: 3.75em;
	/* grid-template-columns: auto auto max-content; */
	grid-template-areas: "title actions" "scroll scroll";
	grid-gap: 1em;
	align-items: center;
}

header.pageHeader h2 {
	grid-area: title;
	margin: 0 !important;
}

section.mainBlock div.linkBlock {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

section.mainBlock div.linkBlock div {
	width: 10em;
	height: 9.25em;
	border: 1px solid #000;
}

section.mainBlock div.linkBlock div ~ div {
	margin-left: 1em;
}

section.mainBlock div.linkBlock div a {
	width: 100%;
	height: 100%;
	display: block;
}




/* Article and Category Homepage */

ul.splitList {
	width: 100%;
	display: flex;
	list-style: none;
	justify-content: center;
	align-items: stretch;
}

ul.splitList.wrap {
	flex-wrap: wrap;
}

ul.splitList:not(.triple):not(.quad) > li {
	flex: 1 0 48%;
}

ul.splitList.triple > li {
	flex: 1 0 33%;
}

ul.splitList.quad > li {
	flex: 1 0 25%;
}

@media (max-width: 61.9rem) {
	ul.splitList > li {
		flex: 1 0 50% !important;
	}
}

ul.splitList.feature {
	position: absolute;
	top: -2em;
	justify-content: space-around;
	width: calc(100% - 4em);
}

ul.splitList.feature li {
	background-color: var(--color2);
	text-align: center;
	height: 7.5em;
	flex: 0 0 10em;
}

ul.splitList.feature li a {
	width: inherit;
	height: inherit;
	display: inline-block;
}

ul.splitList.feature li a:hover {
	color: #FFF;
}

ul.splitList.feature li a img {
	display: block;
	width: 2.5em;
	margin: 1em auto;
}

ul.splitList.feature ~ header {
	margin-top: 7.5em;
}

ul.splitList li a {
	display: block;
	width: calc(100% - 1em);
	height: calc(100% - 1em);
	margin: 0.5em;
}

/* Articles */
div.blockWrapper {
	display: flex;
	width: 100%;
}

div.imageWrapper {
	display: block;
	width: calc(100% - 3em);
	margin: 0 1.5em 1em 1.5em;
}

div.imageWrapper img {
	top: 0.25em;
	width: 100%;
	height: 100%;
	border-radius: 5px;
}

img.image-left {
	float: left;
}

img.image-right {
	float: right;
}

/* Details - Normal Page Output */

section.detail {
	display: block;
	min-height: 5em;
	margin: auto;
	margin-bottom: 1.5em;
	position: relative;
}

section.detail * ~ header {
	margin-top: 2.5em;
}

section.detail aside {
	width: 12.5em;
	border-right: 2px solid var(--color1);
	vertical-align: top;
	
}

section.detail aside ~ div {
	padding-left: 2.5em;
}

section.detail menu.actions {
	display: flex;
	grid-area: actions;
	justify-self: end;
}

section menu.actions > a, section menu.actions > a:visited {
	background-color: var(--button);
	border-radius: 10px;
	padding: 0.5em .75em;
	color: #ffffff;
	display: inline-block;
	margin: 0.5em;
}

section menu.actions > a[class^='icon'] {
	padding-left: 0.5em;
}

@media (max-width: 59.9rem) {
	
	section menu.actions a {
		width: 1em;
		height: 1em;
		padding: 0.5em !important;
		color: transparent !important;
	}
	
}

section.detail div.calendarScroll {
	display: flex;
	grid-area: scroll;
	justify-self: end;
	height: 2em;
}


/* Articles and Company Listing */
section.boxedList {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
	grid-gap: 1em;
	padding: 2em;
}

@media (max-width: 59.9rem) {
	section.boxedList {
		grid-template-columns: 1fr 1fr;
		grid-gap: 0.5em;
		padding: 0.5em;
	}
}

section.boxedList div {
	display: block;
}

section.boxedList a {
	display: block;
	width: 100%;
	height: 100%;
}

section.boxedList div figure {
	display: block;
	overflow: hidden;
	border-radius: 5px;
	height: 20em;
	width: 100%;
	margin: 0;
}

@media (max-width: 61.9em) {
	section.boxedList div figure { height: 10em; }
}

@media (min-width: 62em) {
	section.boxedList div figure { height: 20em; }
}

section.boxedList div figure div.otherArticleImage {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform 0.2s ease;
}

section.boxedList div:hover figure div {
	transform: scale(1.075);
}

section.boxedList div hgroup {
	margin-top: 1em;
	color: var(--textColor);
	text-align: center;
}

section.boxedList div hgroup p {
	font-weight: normal;
}

section.boxedList div:hover hgroup h3 {
	text-decoration: underline;
}

/* Tables */

table.list {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	font-size: 0.8em;
}

table.list.small {
	font-size: 8pt;
}

table.list tbody {
	width: 100%;
}

table.list th {
	border-bottom: 0.2em solid var(--color1);
}

table.tablesorter th:hover {
	cursor: pointer;
	text-decoration: underline;
}

table.tablesorter th.tablesorter-headerAsc {
	background-image: url('/images/interface/up-arrow-black.svg');
	background-repeat: no-repeat;
	background-size: 1em;
	background-position: calc(100% - 1em) 50%;
	background-color: var(--color3);
}

table.tablesorter th.tablesorter-headerDesc {
	background-image: url('/images/interface/down-arrow-black.svg');
	background-repeat: no-repeat;
	background-size: 1em;
	background-position: calc(100% - 1em) 50%;
	background-color: var(--color3);
}

table.list td, table.list th {
	padding: 0.4em 0.8em;
	/*word-wrap: break-word;*/
}

table.accounting tr:not(.total):not(.subtotal) td:not(.vertical):hover {
	background: linear-gradient(rgba(0,0,0, 0.1),rgba(0,0,0, 0.1));
}

table.list tbody tr:not(.subtotal):not(.total):hover {
	background-color: var(--color6);
}

table.list tr.clickable:hover {
	cursor: pointer;
}

table.list td.cost, table.list td.number, table.list td.right, table.list td:last-of-type {
	text-align: right;
}

table.list td.cost {
	padding-left: 0.5em;
}

table.list td.cost::before {
	content: '$ ';
	opacity: .3;
}

table.list td.center {
	text-align: center;
}

table.list tr.subtotal {
	border-top: 1px solid black;
	font-weight: bold;
}

table.list tr.total {
	border-top: 2px solid black;
	border-right: 2px solid black;
	font-weight: bold;
}

table td.vertical {
	background-color: var(--color3);
}

table td.vertical span {
	display: inline-block;
	transform: rotate(270deg);	
}

@media screen and (min-width: 62em) {
	td.optcol, th.optcol {
		display: default;
	}
}

@media screen and (max-width: 61.9em) {
	td.optcol, th.optcol {
		display: none;
	}
}

@media screen and (min-width: 32em) {
	td.optcol2, th.optcol2 {
		display: default;
	}
}

@media screen and (max-width: 31.9em) {
	td.optcol2, th.optcol2 {
		display: none;
	}
}


/* Actions on tables */
div.actions {
	position: relative;
	display: inline-block;
	background-image: url('/images/interface/dropdown.svg');
	background-size: 2em;
	background-repeat: no-repeat;
	background-position: center;
	width: 3.75em;
	height: 2em;
	
}

div.actions:hover {
	background-color: var(--color3);
}

div.actions ul {
	display: none;
	position: absolute;
	z-index: 5;
	list-style: none;
	padding: 1em;
	background-color: #FFF;
	border: 1px solid var(--color3);
	min-width: 8em;
	text-align: left;
	top: 2em;
	left: 0;
}

div.actions ul li ~ li {
	margin-top: 5px;
}

div.actions ul li a {
	display: block;
	width: calc(100% - 15px);
	padding: 0.5em 0.5em 0.5em 1em;
}

div.actions ul li a:hover {
	background-color: var(--color6);
	border-radius: 10px;
}

/* Content Splits */

div.contentSplit {
	display: grid;
	grid-gap: 1em;
}

@media (max-width:39.9em) {
	div.contentSplit {
		grid-template-columns: 1fr;
	}
}


@media (min-width:40em) {
	div.contentSplit {
		grid-template-columns: 75% auto;
	}
}

div.adMargin {
	margin: 1em;
	display: block;
	width: calc(100% - 2em);
}

/* Mobile App List */
ul.appList {
	display: grid;
	margin: auto;
	width: 100%;
	grid-template-columns: minmax(6.25em, 12.5em) minmax(6.25em, 12.5em);
	grid-gap: 5px;
	justify-content: center;
}

ul.appList li {
	background-color: var(--color2);
	color: #FFFFFF;
	list-style: none;
	height: 6.25em;
}

ul.appList li a {
	display: block;
	width: 100%;
	height: 100%;
	color: #FFFFFF;
	position: relative;
}

ul.appList li a:hover {
	color: var(--color3);
}

ul.appList li a span {
	display: block;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0.5em;
}

/* Overscan */

div#overscan {
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 20;
	position: fixed;
	top: 0;
	left: 0;
}

section#viewBlock {
	display: block;
	background-color: #FFFFFF;
	border-radius: 10px;
	margin: 3em auto;
	z-index: 50;
	padding: 1em;
	position: relative;
}

div#viewTopAction {
	display: block;
	position: absolute;
	right: -1em;
	top: -1em;
	z-index: 175;
}

div#viewTopAction input {
	height: 2em;
	width: 2em;
	border: 2px solid #FFFFFF;
	color: #FFFFFF;
	background-color: #000000;
	border-radius: 50%;
}

div#viewTopAction input:hover {
	filter: none;
	background-color: #c0c0c0;
}

div#viewTopAction #viewCloseMobile {
	display: none;
}

@media (max-width: 59.9rem) {
	
	section#viewBlock {
		margin: 0 !important;
		height: calc(100% - 2em) !important;
		width: calc(100% - 2em) !important;
		border-radius: 0;
	}
	
	div#viewTopAction {
		top: 0.5em;
		right: initial;
		left: 0.5em;
		width: 3em;
		height: 3em;
	}
	
	div#viewTopAction #viewCloseMobile {
		display: block;
		color: #000;
		cursor: pointer;
		transition: all 0.2s;
		text-align: center;
		padding: 1em;
		font-size: 1.2em;
	}
	
	div#viewTopAction #viewCloseMobile:hover {
		color: #18333c;
	}
	
	
	div#viewTopAction input#viewClose {
		display: none;
	}
	
	div#overscan header.boxHeader {
		text-align: right;
	}
	
}

@media (min-width: 60rem) {
	section#viewBlock {
		max-height: 80%;
	}
}

section#viewBlock #viewContent {
	height: calc(100% - 4.2em);
	min-height: 5em;
	overflow-y: auto;
	overflow-x: hidden;
}

section#viewBlock header.boxHeader {
	display: block;
	width: 100%;
	color: #000;
	height: 2em;
	font-size: 1.5em;
}

div#viewBottomAction {
	width: 100%;
	height: 2.2em;
	padding: 1em 0 ;
	display: flex;
	justify-content: center;
}

div#viewBottomAction input {
	height: 2em;
	border-radius: 5px;
	border: 0;
	padding: 0 1.2em;
	background-color: #18333c;
	color: #FFFFFF;
	transition: all 0.2s
}

div#viewBottomAction input ~ input {
	margin-left: 1em;
}

div#viewBottomAction input:not(:last-of-type) {
	background-color: #eeecee;
	color: #000;
}


div#viewBottomAction input#viewSave {
	background-color: var(--color4);
	color: #ffffff;
}

div#viewBottomAction input#viewemove {
	background-color: var(--color3);
	color: #000000;
}

div#viewBottomAction input#viewemove:hover {
	background-color: var(--deleteHover) !important;
}

/* Footer Style */
body > footer {
	width: 100%;
	clear: both;
	margin: 2em 0;
	display: block;
	text-align: center;
	font-size: 0.8em;
	color: #c0c0c0;
}
