html, body{
	font-family:'Trebuchet MS';
	margin:0px;
	padding:0px;
}

a{
	text-decoration:none;
}

.header{
	width:100%;
	height:80px;
	background-color:#007bff;
	text-align:center;
	line-height:80px;
	color:rgba(255,255,255,.75);
}

.footer{
	width:100%;
	bottom:0px;
	height:50px;
	margin-top:100px;
}
.footerinner{
	width:80%;
	margin-left:auto;
	margin-right:auto;
	border-top:1px solid #999999;
	color:#0056b3;
	padding-top:10px;
}

.panel{
	width:100%;
	padding-top:140px;
	text-align:center;
	font-size:16pt;
	line-height:80px;
}

.frame{
	font-size:16pt;
	line-height:20px;
	width:400px;
	margin-left:auto;
	margin-right:auto;
	border:1px solid #dddddd;
	border-radius:4px;
	padding-top:40px;
	padding-bottom:40px;
	text-align:center;
}

.inpTxt{
    display: block;
    width: 80%;
    margin-left:30px;
    height: calc(1.5em + .75rem);
    padding: .175rem .55rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.inpTxt:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0px 0px 0px 0.2rem rgba(0,123,255,0.25);
}

#loginpanel{
	width:500px;
	margin-left:auto;
	margin-right:auto;
	padding-top:100px;
}

#supportpanel{
	width:800px;
	margin-left:auto;
	margin-right:auto;
	padding-top:100px;
}

#regpanel{
	width:500px;
	margin-left:auto;
	margin-right:auto;
	padding-top:100px;
	text-align:center;
}

.button{
	border:1px solid #28a745;
	border-radius:8px;	
	color:#28a745;
	height:30px;
	line-height:30px;
	font-size:12pt;
	cursor:pointer;
}
.button:hover{
	background-color:#28a745;
	color:#ffffff;
}

.button1 {
	border-radius:4px;
	display:inline-block;
	color:#ffffff;
	margin-right:20px;
	font-family:'Roboto condensed', 'Trebuchet MS';
	font-size:12pt;
	font-weight:normal;
	font-style:normal;
	height:30px;
	line-height:28px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
	padding:0 20px;
}
.green {
	background-color:#5cb85c;
	border:1px solid #4cae4c;
}
.green:hover {
	background-color:#449d44;
	border:1px solid #398439;
}
.blue {
	background-color:#337ab7;
	border:1px solid #2e6da4;
}
.blue:hover {
	background-color:#286090;
	border:1px solid #204d74;
}
.red {
	background-color:#b85c5c;
	border:1px solid #ae4c4c;
}
.red:hover {
	background-color:#9d4444;
	border:1px solid #843939;
}

.selected{
	background-color:#28a745;
	color:#ffffff;
}

.link{
	color:#0056b3;
	margin-right:20px;
	text-decoration:none;
}
.link:hover{
	text-decoration:underline;
}

.modal{
	border:1px solid #888888;
	border-radius:4px;
	width:700px;
	height:180px;
	background-color:#ffffff;
	top:200px;
	position:absolute;
	left:0;
	right:0;
	margin-left:auto;
	margin-right:auto;
	display:none;
	z-Index:1000;
	-webkit-box-shadow: 7px 8px 16px -1px rgba(0,0,0,0.81); 
	box-shadow: 7px 8px 16px -1px rgba(0,0,0,0.81);
}

.dropzone {
	background: white;
	border-radius: 5px;
	border: 2px dashed rgb(0, 135, 247) !important;
	border-image: none;
	max-width: 800px;
	min-height:200px;
	margin-left: auto;
	margin-right: auto;
	margin-top:30px;
}

.orders-list th, .users-list th{
	font-weight:bold;
	text-align:left;
	background-color:#e9ecef;
	padding:6px 4px;
	border-left:1px solid #dee2e6;
	border-top:1px solid #dee2e6;
	border-bottom:1px solid #dee2e6;
}

.orders-list td, .users-list td{
	font-weight:normal;
	text-align:left;
	padding:6px 4px;
	border-left:1px solid #dee2e6;
	border-bottom:1px solid #dee2e6;
}

.orders-list tr:hover, .users-list tr:hover{
	background-color:#e9ecef;
}

.search-list th{
	font-weight:bold;
	text-align:left;
	background-color:#e9ecef;
	padding:8px 10px;
	border-left:1px solid #dee2e6;
	border-top:1px solid #dee2e6;
	border-bottom:1px solid #dee2e6;
	width:180px;
}

.search-list td{
	font-weight:normal;
	text-align:left;
	padding:6px 4px;
	border-left:1px solid #dee2e6;
	border-bottom:1px solid #dee2e6;
}

.tooltip{
	position:relative;
	display:inline-block;
}

.tooltip .tooltiptext{
	visibility:hidden;
	background-color: black;
	color:#fff;
	text-align:left;
	padding:10px;
	border-radius:6px;
	line-height:26px;
	position:absolute;
	z-index:1;
}

.tooltip:hover .tooltiptext{
	visibility:visible;
}
