[v-cloak] {
  display: none;
}
.fa-sign-out-alt {
  color: black;
}
.blacklink {
  color: black;
}
.alert-info {
    opacity: 1;
    animation: fade 2s ease-in;
}
@keyframes fade {
  0%,100% { opacity: 0 }
  100% { opacity: 1 }
}



hr {
  -moz-border-bottom-colors: none;
  -moz-border-image: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #EEEEEE -moz-use-text-color #E0E0E0;
  border-style: solid none;
  border-width: 1px 0;
  margin: 18px 0;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 100px auto;
    align-items: center;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.navbar-pc .brand-area img {
	width: 300px;
	height: auto;	
}

/* classe per sostituire TH */
.boldupper {
	font-weight: bold;
	text-transform: uppercase;
}

/* classe per box di conferma */
.check {
	background-image: url('../im/check.svg');
	background-repeat: no-repeat;
	background-size: 100px;
	background-position: 3em 3em;
	padding: 3em;
}

/* Modifico il comportamento dell'errore */
label.is-invalid ~ .invalid-feedback { display: block }