/* Stylesheet for website. */

* {
    margin: 0;
    border: 0;
    padding: 0;
}

html {
    background-color: darkgrey;
    height: 100%;
}

body {
    position: absolute;
    width: 90%;
    min-height: 100%;
    margin: 0% 5% 0% 5%;
    background-color: #7DA3A1;
    font-family: Helvetica;
    font-size: 100%;
}

div#page {
	height: 100vh;
}

div#banner {
    height: 7%;
    text-align: center;
    vertical-align: middle;
    background-color: #324851;
    color: white;
}

div#site {
    background-color: #7DA3A1;
    height: 85%;
}

div#login {
    text-align: center;
    padding: 50px;
}

div#menu {
    float: left;
    width: 15%;
    min-height: 100%;
    background-color: #86AC41;
}

div#workspace {
    float: right;
    width: 85%;
    height: 100%;
    background-color: #7DA3A1;
}

div#client_search_results {
	height: 65%;
	overflow-y: auto;
}

.bordered {
    border: 2px solid black;
    border-radius: 20px;
}

.padded {
    padding: 10px;
}

.optional {
	background-color: lightyellow;
}

.printBox {
    border-bottom: 1px solid black;
}

div.fullHeight {
	height: 100%;
}

div.halfHeight {
    height: 50%;
}

input {
	font-size: 100%;
    border-radius: 4px;
}

input.login {
    border-radius: 4px;
    width: 250px;
    background-color: #34675C;
    color: white;
}

input:focus, select:focus, textarea:focus {
    background-color: lightcyan;
}

input.error {
    border: 2px solid red;
}

input.check {
	width: 40px;
    text-align: centre;
    vertical-align: middle;
}

input.checkActive {
    width: 20px;
    text-align: centre;
    vertical-align: middle;
}

input.agencies {
    width: 200px;
}

.dependents {
    width: 50px;
}

select {
	font-size: 100%;
}

.narrowest {
	width: 10%;
}
.narrower {
	width: 20%;
}
.narrow {
	width: 25%;
}
.half {
	width: 50%;
}
.wide {
	width: 70%;
}
.wider {
	width: 85%;
}
.widest {
	width: 100%;
}

.left {
	text-align: left;
}
.centered {
	text-align: center;
}
.right {
	text-align: right;
}

table {
	border-spacing: 0px;
}

table.banded tr:nth-child(2n) {
	background: lightblue;
}
table.banded tr:nth-child(2n + 3) {
    background: lightyellow;
}
table.banded td:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
table.banded td:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

div#help {
}

div#admin_agencies {
    
}

ul {
    list-style-type: none;
    margin: 5px;
    padding-bottom: 10px;
    -webkit-padding-start: 0px;
    -moz-padding-start: 0px;
}

li {
}

li button {
    margin: 2px; 
    width: 100%;
}

button {
    background-color: #34675C;
    color: white;
    margin: 5px; 
    padding: 2px;
    border-radius: 4px;
    font-size: 100%;
}
button:disabled {
    background-color: #774B3C;
    color: black;
}

table button {
    width: 100px;
    background-color: #34675C;
    color: white;
    margin: 5px; 
    padding: 2px;
    border-radius: 4px;
    font-size: 100%; 
}

button:hover {
    background-color: #3D651B;
    color: white;
    transition-duration: 0.2s;
}

input.login:hover {
    background-color: #3D651B;
    color: white;
}

li.menu_header {
    font-weight: bold;
    font-size: 120%
}

th, td {
    height: 25px;
    text-align: left;
    vertical-align: middle;
}

hr {
    height: 0em;
    margin: 1em 0em 1em 0em;
    border: 2px #bfbfbf solid;
}

hr.print {
    height: 0em;
    margin: 0.2em 0em 0.2em 0em;
    border: 1px #bfbfbf solid;
}

td.hr {
    border-bottom: 2px #bfbfbf solid;
}

td.spacer {
    width: 50px;
}

h1 {
	font-size: 366%;
}

h2 {
	font-size: 195%;
}

h3 {
	font-size: 156%;
}

h4 {
	font-size: 125%;
}

h5 {
	font-size: 100%;
}

#TOAST {
    visibility: hidden;
    min-width: 200px;
    margin-left: -100px;
    background-color: black;
    color: green;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    position: fixed;
    left: 50%;
    bottom: 50px;
}

#TOAST.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 3s;
    animation: fadein 0.5s, fadeout 0.5s 3s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1; }
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1; }
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1; }
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1; }
    to {bottom: 0; opacity: 0;}
}
