/**
 * Overlay
 */
#bubbleyes-overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: 10000;
}

/**
 * Overlay content
 */
.bubbleyes-overlay-content {
	position: relative;
	margin: 100px auto 0;
	width: 50%;
	min-width: 320px;
	padding: 30px;
	background-color: #fff;
}
.bubbleyes-overlay-content h3 {
	margin-top: 0;
}
.bubbleyes-overlay-close {
	position: absolute;
	top: 0;
	right: 5px;
	font-size: 2em;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #777;
}
.bubbleyes-overlay-close:hover {
	color: #000;
}

/**
 * Progress bar
 */
.bubbleyes-progress {
	margin-bottom: 3px;
	height: 24px;
	background-color: #eee;
}
.bubbleyes-progress-bar {
	width: 0%;
	height: 100%;
	background-color: #0074a2;
	transition: width .2s ease-out;
}

/**
 * Errors
 */
.bubbleyes-errors {
	margin-top: 15px;
	padding: 5px 10px;
	border-left: 5px solid #dd3d36;
}
.bubbleyes-errors:empty {
	display: none;
}