a .fas {
	margin-right: 5px;
}

@media(min-width: 768px) {
	.img-logo {
		margin-left: -80px;
	}
}

/* Custom Select */
.select-custom {
	display: inline-block;
	position: relative;
	border-bottom: 1px dashed #ccc;
}

.select-custom:after {
	display: block;
	position: absolute;
	color: #6c757d;
	top: 1px;
	right: 5px;
	font-size: 80%;
    font-weight:900;
    font-family: "Font Awesome 5 Free";
	content: "\f078";
}

.select-custom select.form-control {
	padding-right: 25px;
	border: none;
	box-shadow: none;
	background: transparent;
	background-image: none;
	-webkit-appearance: none;
	color: #6c757d; /* placeholder color */
}

.select-custom select:after {
	display: block;
	content: "v";
}

.select-custom select:focus {
}

/* Main */

.main {
	padding: 30px 0;
	min-height: calc(100vh - 56px - 104px);
}

.btn-toolbar {
	margin-top: 30px;
	margin-bottom: 30px;
}

.btn-toolbar-label {
	font-weight: bold;
	margin-right: 15px;
	line-height: 38px;
}

@media(max-width: 767px) {
	.btn-toolbar-label {
		display: block;
	}
	
	.btn-toolbar .btn {
		display: block;
		margin-bottom: 5px;
		min-width: 100%;
	}
}

.btn-toolbar .btn {
	margin-right: 5px;
}

.btn-toolbar .btn:last-child {
	margin-right: 0;
}

hr.divider {
	margin: 30px 0;
}

.text-light a {
	color: rgba(255,255,255,.5);
	text-decoration: underline;
}

.text-light a:hover {
	color: rgba(255,255,255,.75);
	text-decoration: none;
}

footer {
	padding: 30px 0;
}

footer p {
	margin-bottom: .5em;
	font-size: 80%;
}

footer p:last-child {
	margin-bottom: 0;
}

/* Form */

.form-inline-questionnaire p {
	line-height: 40px;
}

.form-inline-questionnaire label,
.form-inline-questionnaire .form-control {
	display: inline;
	width: auto;
}

label.required {
	font-weight: 600;
	color: #007bff;
}

.form-inline-questionnaire .form-control {
	border: 0;
	border-radius: 0;
	border-bottom: 1px dashed #ccc;
}

.form-control-fake {
	display: inline-block;
	width: auto;
	display: none;
}

.width-dynamic {
	min-width: 220px;
	transition: width .2s ease-in-out;
}

.severity label p:last-child {
	margin-bottom: 0;
}

.severity dl {
	text-align: center;
}

.severity input {
    margin: 5px auto;
}

.severity {
    color: rgba(51,51,51,.5);
    padding: 5px 10px 10px;
    border: 1px solid rgba(51,51,51,.1);
    border-radius: 4px;
    background-color: rgba(51,51,51,.05);
}

.severity a {
    color: rgba(0, 123, 255,.5);
}

.severity.checked a {
    color: rgb(0, 123, 255);
}

.severity i {
    color: rgba(51,51,51,.25);
	margin: 15px 0;
	font-size: 4rem;
}

.severity.checked {
    color: #555;
	background: #fff;
}

.severity1.checked {
	border-color: red;
	box-shadow: 0 1px 5px rgba(255,0,0,.8);
}

.severity1.checked dt,
.severity1.checked i {
	color: red;
}

.severity2.checked {
	border-color: orange;
	box-shadow: 0 1px 5px rgba(255,165,0,.8);
}

.severity2.checked dt,
.severity2.checked i {
	color: orange;
}

.severity3.checked {
	border-color: green;
	box-shadow: 0 1px 5px rgba(0,128,0,.8);
}

.severity3.checked dt,
.severity3.checked i {
	color: green;
}

@media(max-width: 767px) {
    .severity {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

.card + .card,
.row + .card {
	margin-top: 30px;
}

.card .card-body .alert {
    margin: -1.25rem -1.25rem 1rem;
    border: 0;
    border-radius: 0;
}

.card-header i {
    color: rgba(0, 123, 255,.8);
}

/* Dropzone Customs 
   - Hide the progress bar since we're not using autoProcessQueue
   - Color the error 'X' red so its way more obvious there is an issue with the file and it won't be uploaded
*/
.dz-progress {
    display: none;
}

.dz-error-mark svg g path {
	fill: #ff0000 !important;
}

.table-status {
    margin-bottom: 0;
}

.table-status tbody tr th {
    font-weight: normal;
}

.table-status tbody tr:first-child th,
.table-status tbody tr:first-child td {
    border-top: 0;
}

.number {
    font-size: 4rem;
}

.table-history {
    margin-bottom: 0;
}

.table-history tbody tr th {
    font-weight: normal;
    font-size: .875rem;
    color: rgba(51,51,51,.8);
}

.table-history tbody tr td p:last-child {
    margin-bottom: 0;
}