/* Support for glyphicon-spin css class */
.fa-spin-custom, .glyphicon-spin {
	-webkit-animation: spin 1000ms infinite linear;
	animation: spin 1000ms infinite linear;
}
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.shadow-box {
	border-radius: 15px;
	box-shadow: 0px 0px 23px -1px rgba(0,0,0,0.13);
	padding: 20px;
}

.btn:active, .btn.active, .btn:focus, .btn.focus, .btn:active:focus, .btn:focus.active {
	outline: none;
}

html, body, div#root, div.root-container, #app {
	padding: 0;
	margin: 0;
	min-height: 100%;
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	font-family: 'Varela Round', sans-serif;
	height: 100%;
}

#app {
	// font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	min-height: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex: 1 0 100%;
}

.blinking-cursor {
	font-weight: 100;
	font-size: 30px;
	color: #2E3D48;
	-webkit-animation: 1s blink step-end infinite;
	-moz-animation: 1s blink step-end infinite;
	-ms-animation: 1s blink step-end infinite;
	-o-animation: 1s blink step-end infinite;
	animation: 1s blink step-end infinite;
}

.hidden {
	display: none;
}

@keyframes "blink" {
	from, to {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

@-moz-keyframes blink {
	from, to {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

@-webkit-keyframes "blink" {
	from, to {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

@-ms-keyframes "blink" {
	from, to {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

@-o-keyframes "blink" {
	from, to {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

