
.audit-form {
	display: flex;
}

.audit-form-label {
	display: flex;
	flex: 1;
}

.audit-form-input {
	padding: .75rem;
    font-size: 1.35rem;
    border: 1px solid #ccc;
    border-radius: 0;
	flex: 1;
}

.audit-software {
	padding: 10px 0;
	line-height: 1.5rem;
}

.audit-software-item {
	font-weight: 600;
	padding-right: 4px;
}

.audit-form-btn {
	background: #4F30C5;
	color: white;
	border: 0;
	font-size: 1rem;
	padding: 0 20px;
	text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

.audit-vuln {
	display: flex;
	padding: 4px 0;
	align-items: center;
}

.audit-vuln .spot {
	width: 20px;
	line-height: 20px;
	font-size: 1rem;
}

.spot.critical {
	color: #EA005E;
}

.spot.moderate {
	color: #FDA809;
}

.spot.low {
	color: #888;
}

.audit-vuln-type {
	flex: 3;
	line-height: 1.5rem;
	font-weight: 500;
	font-size: 1rem;
}

.audit-vuln-cve {
	width: 40%;
	line-height: 1.5rem;
	font-weight: 400;
	font-size: 1rem;
}

.audit-vuln-cve a { 
	color: #6245d3; 
}

.audit-vuln-date {
	color: #888;
	flex: 1;
}

.audit-group-heading {
	font-size: 1.5rem;
	line-height: 1.8rem;
	font-weight: 800;
	margin-bottom: 15px;
}

.audit-requesting {
	padding: 5px 0;
}

.audit-error {
	padding: 4rem 0;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.8rem;
	color: #666;
}

.audit-results-summary {
	padding: 20px 0;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 700;
	border-bottom: 2px solid #000;

	display: flex;
	justify-content: space-between;
	align-items: center;
}

.audit-results-summary-sh a {
  margin-left: .5rem;
  width: 40px;
  text-align: center;
  display: inline-block;
}

.audit-results-summary-sh img {
  width: 24px;
  height: 24px;
}

@media (max-width: 400px) {
	.audit-results-summary {
		display: block;
		
	}

	.audit-results-summary-sh {
		margin-top: 10px;
	}
}

@media (max-width: 600px) {
	.audit-vuln {
		flex-wrap: wrap;
	}

	.audit-vuln-date {
		width: 100%;
		flex: none;
	}
}