body, html {
	position: relative;
	margin: 0;
	padding: 0;
	height: 100%;
	background: transparent;
	font-family: Helvetica, Sans-Serif;
	font-size: 13px;
}

input, select  {
	font-size: 16px !important;
}

/**
 * Some usefull classes
 */

.pull-right {
	text-align: right;
}

/** 
 * Form 
 */

#regForm .row {
	position: relative;
}

#regForm .row .icon {
	text-align: center;
	padding: 0; 
	margin: 0;
}

#regForm .row label.error { 
	position: absolute; 
	top: 3px;
	right: 10px;
	display: block;
	width: auto;
	height: 20px;
	margin: 0; 
	padding: 5px;
	font-size: 12px;
	color: #DC3545; 
}

/**
 * Customize Bootstrap
 */

.container {
	background:transparent;
	width: 100%;
	max-width: 700px;
	height: 270px;
	overflow: hidden;
}

.breadcrumb {
	padding: 10px;
	background: #F5F5F5;
	border: 1px solid #CECECE;
	border-radius: 5px;
	font-size: 15px;
	text-transform: uppercase;
}

.breadcrumb .breadcrumb-item {
	width: 33%;
	text-align: center; 
} 
/**
 * Effects
 */
 
.bouncing {
  animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
	0% { transform: scale( 1.75 ); }
	20% { transform: scale( 1 ); }
	40% { transform: scale( 1.75 ); }
	60% { transform: scale( 1 ); }
	80% { transform: scale( 1.75 ); }
	100% { transform: scale( 1.75 ); }
} 

.bouncingBtn {
  animation: heartbeatBtn 1s infinite;
}

@keyframes heartbeatBtn {
	0% { transform: scale( 0.9 ); }
	20% { transform: scale( 1 ); }
	40% { transform: scale( 0.9 ); }
	60% { transform: scale( 1 ); }
	80% { transform: scale( 0.9 ); }
	100% { transform: scale( 0.9 ); }
} 

@media (max-width: 576px) {
	
	.breadcrumb {
		padding: 5px;
	}
	
}

@media only screen and (max-width: 500px) {
	.breadcrumb {
		padding: 5px;
		font-size: 11px;
		text-transform: none;
	}
}