/* Login-Panel */
#login-panel #alert, #login-panel #noscript-alert {
	margin-bottom: 2rem;    
}

#login-panel .action-button {
	min-width: 100px;
}

#login-panel .logo-image {
	max-width: 100px;
	margin: 20px 20px 30px 20px;
	display:none;
}

.default #login-panel .logo-image.default {
	display:inline;
	max-width: 180px;
}

/* Dashboard */
.container.panel .logo-image {
	max-width: 100px;
	margin: 0 20px 30px 0;    
	display:none;
}
.default .container.panel .logo-image.default {
	margin: 0 20px 40px 0;
	display: inline;
	max-width: none;
}

/* All tables */
.table-responsive table tr.selected {
	background-color: #434857;
}
.table-responsive td.spinner {
	height:120px;
	text-align: center;
	vertical-align: middle;
	padding:0;
}

.table-responsive td.spinner div {
	width:100%;
	height:100%;
	position:relative;  
}

.table-responsive .spinner span {
	position:absolute;
	left:50%;
	top:50%;
	display:block;
	margin:-30px;
	height:60px;
	width:60px;
	-webkit-animation:rotate 1.8s infinite linear;
	animation:rotate 1.8s infinite linear;
	border:6px solid #434857;
	border-right-color:transparent;
	border-radius:50%
}

/* Domain Results table */
#domain-results .table {
	table-layout: fixed;
}
#domain-results .table th:first-child {
	width:1.5rem;
}

#domain-results .table th, #domain-results .table td {
	padding: 0.5rem;
	overflow: hidden;
}

#domain-results table th:last-child {
	width:10%;
}

#domain-results table tr th:nth-child(4),
#domain-results table tr td:nth-child(4) {
	width:20%;
}

#domain-results table tr td:last-child {
	text-align: center;   
}

/*email breaches table*/
#email-breaches table {
	table-layout: fixed; 
}

#email-breaches .table th:first-child {
	width:1rem;
}
#email-breaches .table th:last-child {
	width:5rem;
}
#email-breaches .table th:nth-child(2) {
	width:30%;
}
#email-breaches .table td {
	overflow:hidden;
}
#email-breaches .table th:last-child {
	width:10rem;
}

#apikey-results {
	table-layout: fixed; 
}
#apikey-results .table th:first-child {
	width:1rem;
}
#apikey-results .table th:nth-child(2) {
	width:30%;
}

#notification-results {
	table-layout: fixed; 
}
#notification-results .table th:first-child {
	width:6rem;
}

#sites-results {
	table-layout: fixed; 
}
#sites-results .table th:first-child {
	width:6rem;
}

#audit-detail-exec-summary-table {
	width: 100%;  
	border: 1px solid #434857;
}
#audit-detail-exec-summary-table thead th {
	border-bottom: 2px solid #434857;
	height:2rem;
}
#audit-detail-exec-summary-table thead th,
#audit-detail-exec-summary-table tbody td {
	border-top: 1px solid #434857;
	height:2rem;
	text-align:center;
}
#audit-detail-exec-summary-table thead th:first-child,
#audit-detail-exec-summary-table tbody td:first-child {
	padding-left:16px;
	text-align:left;
}

/* Risk colors */
span.risk,
button.risk {
	display: inline-block;
	padding: 0.125rem 0.5rem;
}
span.risk.critical,
button.risk.critical {
	color: rgba(153, 102, 255, 1);
	background-color: rgba(153, 102, 255, 0.2);
}
span.risk.high,
button.risk.high {
	color: rgba(255, 99, 132, 1);
	background-color: rgba(255, 99, 132, 0.2);
}
span.risk.medium,
button.risk.medium {
	color:rgba(255, 159, 64, 1);
	background-color:rgba(255, 159, 64, 0.2);
}
span.risk.none,
button.risk.none {
	color:rgba(75, 192, 192, 1);
	background-color:rgba(75, 192, 192, 0.2);
}

/* User account Panel */
#change-password-form input[type=password] {
	width:250px;
}

/* Alerts */
.alert-custom {
	color: #eee;
	background-color: #434857;
	padding: 0.5rem 1rem;
}
.alert-custom span a {
	color:#eee;
}

.alert-custom-high {
	background-color: rgba(255, 99, 132, 0.2);
	border:none;
	padding: 0.5rem 1rem;
}
.alert-custom-high span.icon {
	color: rgba(255, 99, 132, 1);
}
.alert-custom-high a,
.alert-custom-high a:hover {
	color:rgba(255, 255, 255, 0.9);
}

.alert-custom-none {
	background-color:rgba(54, 162, 235, 0.2);
	border:none;
	padding: 0.5rem 1rem;
}
.alert-custom-none span.icon {
	color:rgba(54, 162, 235, 1);
}
.alert-custom-none a,
.alert-custom-none a:hover {
	color:rgba(255, 255, 255, 0.9);
}

/* Input Token */
.vue-input-tag-wrapper {
	color: #fff;
	background-color: #434857;
	background-clip: padding-box;
	border: 1px solid #434857;
	border-radius: 0.25rem;
	-webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

	overflow: hidden;
	padding-left: 4px;
	padding-top: 4px;
	cursor: text;
	text-align: left;
	-webkit-appearance: textfield;
	display: flex;
	flex-wrap: wrap;
}
.vue-input-tag-wrapper.vue-input-tag-wrapper--active {
	color: #495057;
	background-color: #fff;
	border-color: #71cced;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(25, 151, 198, 0.25);
}
.vue-input-tag-wrapper .input-tag {
	border-radius: 2px;
	display: inline-block;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 4px;
	margin-right: 5px;
	padding: 3px;
}
.vue-input-tag-wrapper.vue-input-tag-wrapper--active .input-tag {
	background-color: #f4f4f4;
	border: 1px solid #ccc;
	color: #434857;
}
.vue-input-tag-wrapper .input-tag.highlight {
	border: 1px solid #1E8AD2;
	background-color:#EAFFFF;
	color: #1E8AD2;
}
.vue-input-tag-wrapper .input-tag .remove {
	font-weight: bold;
	color: #767B8A;
	border: none;
	background-color: transparent;
	padding: 0.125rem;
}
.vue-input-tag-wrapper .input-tag.highlight .remove {
	color: #1E8AD2;
}
.vue-input-tag-wrapper .input-tag .remove:hover {
	text-decoration: none;
}
.vue-input-tag-wrapper .input-tag .remove::before {
	content: " x";
}
.vue-input-tag-wrapper .new-tag {
	background: transparent;
	border: 0;
	font-weight: 400;
	margin-bottom: 6px;
	margin-top: 1px;
	outline: none;
	padding: 4px;
	padding-left: 0;
	flex-grow: 1;
}
.vue-input-tag-wrapper.read-only {
	cursor: default;
}

/*Buttons that should appear as hyperlinks*/
.linkButton {
	display:inline;
	border:none;
	background:none;
	color:#cfd2da;
	text-decoration: none;
	padding:0;
	margin:0 0.5em 0 0;
}
.linkButton:hover {
	text-decoration: underline dashed;
	cursor: pointer;
}

span.passwordLink,
span.sourceLink {
	display:inline-block;
	margin:0 0.5em 0 0;
}

