
.btn-disabled-look {
  opacity: 0.45;
  cursor: not-allowed !important;
}

/* Remove hover transform + shadow */
.btn-disabled-look:hover,
.btn-disabled-look:focus,
.btn-disabled-look:active {
    transform: none !important;
    -webkit-transform: none !important;
    box-shadow: none !important;
}

button#eventStartBtn.no-hover-effect:hover,
button#eventStartBtn.no-hover-effect:focus {
    transform: none !important;
	-webkit-transform: none !important;
}

.glow-blue:focus {
    box-shadow: 0 0 8px 2px rgba(0, 123, 255, 0.9);
    transition: box-shadow 0.3s ease-in-out;
	outline: none;
}

.glow-blue {
    box-shadow: 0 0 8px 2px rgba(0, 123, 255, 0.9);
    transition: box-shadow 0.3s ease-in-out;
}

.glow-red:focus {
    box-shadow: 0 0 8px 2px rgba(255, 24, 20, 0.9);
    transition: box-shadow 0.3s ease-in-out;
	outline: none;
}

.glow-red {
    box-shadow: 0 0 8px 2px rgba(255, 24, 20, 0.9);
    transition: box-shadow 0.3s ease-in-out;
}