/*---------------------- MAIN ----------------------*/

*, ::after, ::before {
    box-sizing: border-box;
}
* {
    margin: 0;
}

body {
    background-color: #F4F5F6;
    color: #333333;
    padding: 0;
    overflow-y: scroll;
}

body, td, th, input, textarea, select, button {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    line-height: 18px;
}

.header, .menuBar, .mainForm {
    width: 990px;
    margin: 0 auto;
}

a, a:visited {
	color: #0278ae;
	text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

b, .bold {
	font-weight: 500;
}
.ui-widget b {
    font-weight: bold;
}

hr {
    border: none;
    border-bottom: 1px solid #D9D9D9;
    height: 1px;
    width: 100%;
}

.mainForm {
    margin: 20px auto;
    padding: 20px 16px;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
}

.header {
    overflow: auto;
    margin: 12px auto 22px auto;
    position: relative;
}

.headerLogo {
	overflow: hidden;
	margin-top: 10px;
}

.logo {
    float: left;
}

.statusMenu {
    float: right;
    line-height: 20px;
	overflow: auto;
	display: flex;
}

.statusMenuItem {
    padding: 0 12px;
	border-right: 1px solid rgba(29, 112, 147, 0.3);
}
.statusMenuItem .icon {
	margin-right: 8px;
}

.statusMenuItem, .statusMenuItem a {
    display: flex;
    justify-content: center;
    align-items: center;
	color: #0278ae;
	text-decoration: none;
}
.statusMenuItem a:hover {
	text-decoration: underline;
}
.statusMenuItem-logout {
	border-right: none;
}
 
.textBox {
    float: right;
    border-radius: 5px;
    width: 340px;
    margin: 3px 0px 0px 0px;
    font-size: 11.5px;
}

ul {
    margin: 0;
    padding: 4px 16px 0;
}

.informationBox {
    border-radius: 4px;
    clear: both;
    overflow: auto;
    color: #333333;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    background-color: #f9fbfc;
}

.icon {
	height: 100%;
	width: 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;	
}
.icon svg {
	width: 100%;
	height: 100%;
}


/*---------------------- DIALOGS ----------------------*/
.no-close .ui-dialog-titlebar-close {
	display: none;
}
.ui-dialog-content {
    line-height: 1.5em;
}
.ui-dialog-pre {
    white-space: pre;
}
.ui-button-icon-only .ui-icon {
    margin-left: -9px;
}

/*---------------------- MENU BAR ----------------------*/
.menu {   
    float: left;
    font-size: 15px;
	line-height: 18px;    
}

.menu:first-child {
    border-left: 0px;
    margin-left: 0px;
}

.menu:hover {
    background-color: #f39523;
}

.menuLink, .menuLink:hover, .menuLink:visited {
    color: white;
    display: flex;
    padding: 0 18px;
    height: 46px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
}

.menu .icon {
	height: 100%;
	width: 18px;
	margin-right: 8px;
}

.menuLinkWithIcon, .menuLinkWithIcon:hover {
    background-repeat: no-repeat;
    background-position: 8px 5px;
    padding-left: 35px;
}

.menuBarFull {
	background: #0278ae;
	border: 1px solid #0278ae;
	clear: both;
	overflow: hidden;
	position: sticky;
	top: 0;
	z-index: 9999;
}

.menuBarFull-ADMIN .menuLink {
	padding: 0 12px;
	font-size: 15px;
}

/*---------------------- HEADINGS ----------------------*/

.heading {
    color: #0278ae;
    border-bottom: 1px solid #D9D9D9;
    clear: both;
    font-weight: 500;
    font-size: 16px;
    margin: 20px 0 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: flex-end;
}

.headingLite {
    color: #0278ae;
    clear: both;
    margin-top: 18px;
    margin-bottom: 5px;
    padding-bottom: 4px;
    font-size: 15px;
}

.mainForm > .headingLite:first-of-type {
	margin-top: 0;
}

.mainHeading {
    margin-top: 0px;
    font-size: 24px;
    font-weight: normal;    
    margin: 0px 0 12px;
    padding-bottom: 12px;
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
}

.subHeading {
    font-size: 20px;
    margin-top: 35px;
}
.section {
    overflow: auto;
}

/*---------------------- HOME PAGE ----------------------*/

.currentReleaseContainer {
    display: flex;
    flex-direction: column;
    line-height: 1.5em;
    overflow: auto;
}
.currentReleaseContainer .releaseContent {
    flex-grow: 1;
}
.currentReleaseContainer .releaseActions {
    flex-grow: 1;
    width: 100%;
    display: flex;
}
.currentReleaseContainer .releaseActions .releaseLinks {
    flex-grow: 1;
}
.currentReleaseContainer .releaseActions .buttonContainer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.currentReleaseContainer .releaseActions .buttonContainer button {
    padding: 12px 30px;
    font-size: 16px;
}

/*---------------------- DATA TABLES ----------------------*/
.dataTable {
	margin: 0px;
	padding: 0px;
	width: 100%;
    border: 1px solid #d1d1d1;
}
.previousReleases {
    margin-top: 15px;
}

.dataTable table {
    border-collapse: collapse;
    border-spacing: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}
.dataTable tr:not(:last-of-type) {
    border-bottom: 1px solid #d1d1d1;
}
.dataTable tr:hover td {
	cursor: pointer;
}
.noRowClick tr:hover td {
    cursor: default;
}

.dataTable tr:nth-child(odd) {
	background-color: #F9FBFC; 
}

.dataTable tr:nth-child(even) {
	background-color: #ffffff;
}
.dataTable tr:hover {
    background-color: #fefee2;
}

.dataTable td {
	vertical-align: middle;
    line-height: 18px;
    height: 42px;
    padding: 6px 12px;
}

.dataTable tr:first-child td {
	background-color: #edf6fc;
	font-weight: 500;
	cursor: auto;
}
.dataTable .icon {
	display: flex;
	margin: auto;
	color: #333;
	height: 100%;
	width: 20px;
}
.dataTable .icon-green {
	color: #4CAF50;
}

/*---------------------- FORM ----------------------*/

.searchFilters {
    overflow: auto;
    margin-bottom: 20px;
}

.formBox {
    width: 100%;
    display: table;
}

.formRow {
    display: table-row;
}

.fieldName, .fieldNameCentered {
    width: 20%;
    white-space: nowrap;
    padding-right: 25px;
}
.fieldName, .fieldNameCentered, .fieldText {
    display: table-cell;
    vertical-align: top;
	padding-top: 15px;
	padding-bottom: 10px;
}
.fieldNameCentered {
    padding-top: 0;
    padding-bottom: 0;
    vertical-align: middle;       
}

.formRowError .fieldName {
	color: red;
} 

.fieldInput {
    width: 340px;
    display: table-cell;
	line-height: 34px;
	vertical-align: bottom;
}

.actionBar {
    margin: 22px 0;
    overflow: auto;
    clear: both;
}
.actionBar-bottom {
    margin-bottom: 0;
}
.actionBar > .leftActions {
    float: left;
    overflow: auto;
}
.actionBar > .leftActions > * {
    margin-right: 10px;
 }
.actionBar > .rightActions {
    float: right;
    overflow: auto;
}
.actionBar > .rightActions > * {
    margin-left: 10px;
 }

/*---------------------- INPUT FIELDS ----------------------*/
.textInput, .dateInput, select, textarea {
    border-radius: 2px;
    border: 1px solid #cccccc;
    color: #4c4c4c;
    background-color: #ffffff;
    padding: 8px;
    margin: 8px 0px;
    height: 32px;
}

.textInput:focus, .dateInput:focus, select:focus, textarea:focus {
    border: 1px solid #0278ae;
    outline: none;
}

.textInput, select, textarea {
    width: 100%;
}

.textInput.withInfo, select.withInfo, textarea.withInfo {
    width: 95%;
}

textarea {
    height: 10em;
}

.dateInput, input[type=password], input[type=number], .smallInput {
    width: 200px;
}

.formRowError .textInput, .formRowError .dateInput, .formRowError select, .formRowError .checkInput {
	border-color: red;
}

.textInputsmall {
    width: 160px;
    float: right;
}

.fieldURL {
    font-size: 12px;
    font-style: italic;
    margin-right: 10px;
    float: left;
    line-height: 24px;
}

input[type="radio"] {
    margin: 0px;
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: 3px;
}
.required {
	color: red;
	font-size: 14px;
}

select {
    padding: 6px 4px;
}

.checkInput {
    margin: 2px 6px 0px 0px;
}

.fieldText span,
.fieldInput span {
    margin-left: 10px;
}

.fieldInput .info-icon {
    transform: translateY(5px);
    cursor: pointer;
    color: #0278ae;
}

.fieldInput span:first-child {
    margin-left: 0px;
}

.fieldText > label,
.fieldInput > label {
	margin: 0px 10px 0px 0px;
}

.rangeSeparator {
	margin: 0 4px !important;
}

.checkboxes > span {
	display: block;
	margin-left: 0px;
	margin-top: 5px;
}
.checkboxes > span:first-child {
	margin-top: 0px;
}

.fieldInput > span > input {
    margin-left: 0px;
}

/*---------------------- CAPTCHA ----------------------*/

.captchaInput {
    display: block;
    width: 100%;
    bottom:0px;
    padding: 0px 5px;
    border: 1px solid #BFBFBF;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 1px 1px 3px #EEEEEE inset;
    color: #444;
    height: 25px;
}

.captchaRight {
    float: left;
    height: 60px;
    width: 130px;
}

.captchaText {
    height: 20px;
    display: block;
    font-size: 12px;
}

.captcha {
    float: left;
    margin: 10px 10px 0 0;
}

/*---------------------- BUTTONS ----------------------*/

button {
    cursor: pointer;
    white-space: nowrap;
    border: none;
    border-radius: 2px;
    color: #fff;
    line-height: 14px;
    background-color: #f39523;
    height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 4px 24px;
    font-weight: 500;
    outline: none;
}

button:hover {
	background-color: #0278ae;
	outline: none;
}

button:disabled {
	background: #c5bbbb !important;
	border: none;
	cursor: default;
}

.buttonTermsOfService {
    float: right;
    padding: 3px 4px;
    font-size: 14px;
}

/*---------------------- POPUP ----------------------*/

.termsOfServicePopup {
    position: absolute;
    top: 10%; /* maybe better to center with javascript */
    left: 25%;
    width: 50%;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    box-shadow: 0px 3px 8px 0 #777777;
    padding: 25px;
    display: block;
}

.termsOfServiceText {
    width: 100%;
    margin-bottom: 10px;
}

.glassOverlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.8;
}

/*---------------------- NOTIFICATIONS ----------------------*/
.notification {
    display: flex;
    border-radius: 4px;
    clear: both;
    overflow: auto;
    color: #333333;
    margin-bottom: 20px;
}
.notification .notificationIcon {
    margin: 15px 0 12px 12px;
    display: flex;
    justify-content: center;
    align-items: start;
}
.notification .notificationIcon .icon {
    width: 32px;
    height: 32px;
}
.notification .notificationText {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.notification .notificationText ul {
    margin: 0px;
    padding-left: 18px;
}
.notification .notificationButton {
    margin: 12px;
    margin-left: 0;
}

.notification-information {
	background-color: #F0FEF0;
    border: 1px solid #4caf50;
}
.notification-information .icon {
	color: #388e3c;
}

.notification-warning {
	background-color: #FFF8EC;
    border: 1px solid #E3bA3F;
}
.notification-warning .icon {
	color: #fec007;
}

.notification-error {
	background-color: #FDF1EE;
    border: 1px solid #EC6E6E;
}
.notification-error .icon {
	color: #f44336;
}

/*---------------------- SPINNER ----------------------*/

.confirmSpinner {
    margin-top: 60px;
    text-align: center; 
}

.spinnerBoxes {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}
.spinnerBox {
    float: left;
    height: 5px;
    margin-right: 2px;
    width: 18px;
    background-color: #8193B6;
}
.spinnerBox-highlight {
    background-color: #FF6600;
}

/*-------------------- PAGINATION --------------------------*/

.pagination {
    display: flex;
    margin-top: 10px;
}
.paginationControl, .paginationText {
	display: flex;
	margin: 0 4px;
}
.paginationControl .icon {
	display: flex;
}
.paginationControl-disabled {
    opacity: 0.4;
    cursor: default;
}
.paginationText {
	margin: 0 10px;
}
.paginationControl:last-of-type {
	margin-right: 0;
}
.paginationResults, .paginationNavigation {
    display: flex;
    flex-grow: 1;
    align-items: center;
    white-space: nowrap;
}
.paginationResults {
    justify-content: flex-start;
}
.paginationNavigation {
    justify-content: flex-end;
}
.paginationNavigationControls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.paginationNavigationControls .pageInput {
    width: 60px;
}

/*---------------------- LOGIN/USER FORM ----------------------*/

.loginTitle {
    font-weight: 500;
    margin-bottom: 1em;
    font-size: 15px;
}

.loginForm > .fieldName {
    padding-top: 0px;
    padding-bottom: 0px;
}

.loginForm > .fieldInput {
    display: block;
    margin-top: 3px;
    margin-bottom: 7px;
    max-width: 140px;
}

.loginForm #username {
    width: 200px;
}

/*---------------------- TOTP ----------------------*/

.totp-text {
	margin: 20px;
	text-align: center;
}

.totp-input {
    max-width: 300px;
    margin: 20px auto 0 auto;
    display: block;
}

#qrcode {
	margin: auto;
	display: block;
	width: 256px;
}

/*---------------------- MISCELANEOUS ----------------------*/

.noBottomMargin {
    margin-bottom: 0 !important; 
}
.noBottomBorder {
	border-bottom: none !important;
}
.withBottomMargin {
    margin-bottom: 40px !important; 
}
.center {
    text-align: center;
}

.bottomMessage {
	display: block;
	margin-top: 15px;
}
.none {
	display: none;
}
.lineThrough {
	text-decoration: line-through
}