@charset "UTF-8";

:root {
	--main-width: 600px;
}

html, body {
	height: 100%;
	width: 100%;	
	margin: auto;
	padding: 0;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;	
}

footer {
	position: absolute;
	width: 100%;
    height: 2.5rem;	
	bottom: 1rem;
	right: 1rem;	
	background-image: url("../images/powered_by.gif");
	background-position: right bottom;
	background-repeat: no-repeat;
}

.hidden {
	display: none;
}

a, a:link, a:visited, a:hover, a:active {
	color: #0000ff; 
	text-decoration: none; 
	outline: none;
	cursor: pointer;
}

i#loading-icon {
	color: #303f9f;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 6.25rem;
	margin-top: -50px;
	margin-left: -50px;
	z-index: 100000000;
}

.row {
	display: flex;
}

.column2 {
	flex: 50%;
}

.ripple-effect {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

button {
    cursor: pointer;
    padding: 12px 16px;
    margin: 8px 16px;
    background: #0082BA;
    border: 1px solid #00608A;
    border-radius: 3px;
    box-shadow: 1px 1px 2px rgba(0,0,0, .85);
    color: white;
    font-weight: 600;
}

button:hover, button:focus {
    outline: none;
    background-color: #00608A;
    box-shadow: 1px 1px 1px rgba(0,0,0, .85);
}

button:disabled {
    opacity: 0.50; 
    cursor: not-allowed;
}

button.link {
    cursor: pointer;
    padding: 12px 16px;
    margin: 8px 16px;
    background: none !important;
    border: none;
    box-shadow: none;
    color: #0082BA;
    font-weight: 600;
}

button.white-bg {
    cursor: pointer;
    padding: 12px 16px;
    margin: 8px 16px;
    background: white;
    border: 1px solid #0082BA;
    border-radius: 3px;
    box-shadow: 1px 1px 2px rgba(0,0,0, .85);
    color: #0082BA;
    font-weight: 600;
}

button.white-bg:hover, button.white-bg:focus {
    outline: none;
    color: white;
    background-color: #00608A;
    box-shadow: 1px 1px 1px rgba(0,0,0, .85);
}

input[type="text"], input[type="email"], input[type="password"] {
	font-size: 100%;
	border-radius: 4px;
	border: 1px solid #c0c0c0;
	height: 2.0em;
	padding: 4px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
	outline: none;
	border: 1px solid #2d9fd9;
}

.fixed_75 {
	width: 75px !important;
}

.fixed_90 {
	width: 90px !important;
}

.fixed_150 {
    width: 150px !important;
}

.fixed_200 {
    width: 200px !important;
}

.fixed_250 {
    width: 250px !important;
}

.dropdown {
	position: absolute;
	right: 1rem;
	top: 1rem;
}

.dropdown .dropdown_content {
	width: 15rem;
	position: absolute;
	right: 0;
	background-color: #f7f7f7;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 100000;
	visibility: hidden;
	opacity: 0;
	transition: 0.35s ease-out;
}

.dropdown_content a {
	color: black;
	padding: 0.75rem 1rem;
	display: block;
	text-decoration: none;
	transition: 0.35s ease-out;
}

.dropdown_content a:hover {
	background-color: #eaeaea;
}

.dropdown:focus .dropdown_content {
	outline: none;
	transform: translateY(2px);
	visibility: visible;
	opacity: 1;
}

.dropdown .db2 {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0; opacity: 0;
	cursor: pointer;
	z-index: 10;
	display: none;
}

.dropdown:focus .db2 {
	display: inline-block;
}

.dropdown .db2:focus .dropdown_content {
	outline: none;
	visibility: hidden;
	opacity: 0;
}

img.more {
	width: 1.25em;
    height: 1.25em;	
}

.back {
	position: absolute;
	left: 1rem;
	top: 1rem;
}

.back a, .back a:link, .back a:visited, .back a:hover, .back a:active {
	color: black;
}

form .errmsg_row {
	text-align: center;
}

form .errmsg_row {
	display: none;
}

form .errmsg_row, .errmsg_txt_red {
	color: red;	
}

.errmsg_txt_green {
	color: green;	
}

.installer_info {
	margin-top: 5px;
}