@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html,body {
  height: 100%;
  margin: 0;
}

body {
	background-color: #000;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

#container {
	height: 100%;
	display: grid;
	grid-template-rows: auto auto 1fr;
}

#logodiv {
	display: flex;
	align-items: center;	
}

#logo {
	
}

#userinfo {
	color: #fff;
}

#textlogo {
	margin-left: 20px;
	font: italic 32pt 'Bebas Neue', cursive;
}

.productName {
	display: flex;
	align-items: center;
}

.productInfo {
	display: flex;
	margin-bottom: 20px;
}

.productInfo div {
	margin-right: 20px;
}

#content {
	background-color: #fff;
	color: #000;
	padding: 10px;
	margin: 0 10px 50px;
}

#navtop {
	background: rgb(11,108,173);
	background: linear-gradient(180deg, rgba(11,108,173,1) 0%, rgba(20,78,140,1) 100%);
	border-top: 1px solid #4B83E2;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	padding: 10px 10px 0;
	display: flex;
}

.navbutn {
	background-color: #0295DA;
	padding: 10px;
	color: #fff;
	margin-right: 15px;
}
.navbutn a {
	color: #fff;
	text-decoration: none;	
}

.navbutn:hover {
	background-color: #52b6da;
}

.navbutn-sel {
	background-color: #fff;
	padding: 10px;
	color: #0295DA;
	margin-right: 15px;
}
.navbutn-sel a {
    color: #0295DA;
}
.navbutn-sel:hover {
	background-color: #fff;
}

.deleteButn {
	padding: 7px 15px;
	margin-right: 2px;
	margin-left: 2px;
	background: #da1e28;
	color: #fff;
	font-size: 12pt;
	cursor: default;
	-webkit-border-radius: 5px;
  	-moz-border-radius: 5px;
  	border-radius: 5px;
	border-style: none;
	text-decoration: none;
}

.deleteButn:hover {
	background: #9a2831;
}

.deleteButnDisabled {
	padding: 7px 15px;
	margin-right: 2px;
	margin-left: 2px;
	background: rgba(218,30,40,0.7396919);
	color: rgba(255,255,255,0.6522232);
	font-size: 12pt;
	cursor: default;
	-webkit-border-radius: 5px;
  	-moz-border-radius: 5px;
  	border-radius: 5px;
	border-style: none;
	text-decoration: none;
}

.cancelButn {
	padding: 7px 15px;
	margin-right: 2px;
	margin-left: 2px;
	color: #333;
	font-size: 12pt;
	cursor: default;
	-webkit-border-radius: 5px;
  	-moz-border-radius: 5px;
  	border-radius: 5px;
	border-style: none;
	text-decoration: none;
	background-color: #ddd;
}

.cancelButn:hover {
	background: #b1cbda;
}

.button {
	padding: 7px 15px;
	margin-right: 2px;
	margin-left: 2px;
	background: #0295DA;
	color: #fff;
	font-size: 12pt;
	cursor: default;
	-webkit-border-radius: 5px;
  	-moz-border-radius: 5px;
  	border-radius: 5px;
	border-style: none;
	text-decoration: none;
}

.button:hover {
	background: rgb(11,108,173);
}

button:disabled, button[disabled], .button:disabled:hover {
    background: #aaa;
}

.button-checked {
	padding: 7px 15px;
    padding-left: 25px;
	margin-right: 2px;
	margin-left: 2px;
	color: #044a04;
    background: #6bce78 url(/img/minicons/check.png);
    background-repeat: no-repeat;
    background-position: left;
	font-size: 12pt;
	cursor: default;
	-webkit-border-radius: 5px;
  	-moz-border-radius: 5px;
  	border-radius: 5px;
	border-style: none;
	text-decoration: none;
}

.textfield {
	font: 12pt "Lucida Grande", Lucida, Verdana, sans-serif;
	padding: 4px;
	display:block;
	border-radius: 5px;
	border: 1px solid #aaa;
	margin-top: 5px;
	margin-bottom: 5px;
}

.file_container, .info_container {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 20px;
}

.info_container {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;
}

td.body_html {
	width: 500px;
}

.pending_files {
	background-color: #ffbe87;
}

.files {
	padding: 0;
}

.files th {
	background-color: #D0D0D0;
	font-size: 11pt;
	padding: 10px;
	border-bottom: 1px solid #aaa;
	border-right: 1px solid #aaa;
}

.files .left {
	border-left: 1px solid #ddd;	
}

.files td {
	padding: 10px 20px;
	border-right: 1px solid #ddd;	
	border-bottom: 1px solid #ddd;
	background-color: #fff;
}

.small {
	font-size: small;
}

.keyinfo {
	margin-top: 10px;
}

.descbox {
	background-color: #eee;
	padding: 6px;
	border: 1px solid #aaa;
	border-radius: 5px;
	margin: 10px;
}

.pad2 {
    padding: 2px;
}
.pad4 {
    padding: 4px;
}
.pad6 {
    padding: 6px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.card {
    display:table;
    background: #eeeeee;
	border: 1px solid #aaaaaa;	
	border-radius: 8px;
	padding: 15px;
}

.thumbnail {
    max-width: 200px;
    max-height: 200px;
}

.hidden {
    display: none;
}