/* CSS Document */

.container {
	position: relative;
}


.error {
	border: 3px solid red !important;
}

.main-home {
	padding: 0px !important;
}

.card {
	margin: 20px;
	height: 100px;
}

#home_hero {
	position: relative;
}

.hero-text {
	display:flex;
	align-items: center;
}


#trivia-content{
	text-align: center;
	padding: 20px;
}

#trivia_hero {
	position: relative;
	max-height: 500px;
	overflow: hidden;
}

#image_extender {
	background-image: linear-gradient(to right,#D98C0C 0%,#E8A12B 37%,#E8A22D 56%,#D28300 100%);
	height: 100px;
}

#image_guide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

#image_guide img {
	width: 100%;
}

#hero_overlay {
	position: relative;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	min-height: 300px;
	padding: 20px 0px;
}

#hero_overlay_text {
	padding: 15px;
}

#hero_overlay_text h2, #hero_overlay_text p {
	color: white;
}

#trivia-content p{
	font-size: 20px;
}

#trivia-content .highlight {
/*	background-color: #289;*/
	background-color: #0083af;
	color: white;
	font-weight: 500;
}

#trivia-content input[type=radio] {
	opacity:0;
}

#trivia-question-content {
	padding: 20px;
}

#trivia-question-content[class*='correct'] h3, #trivia-question-content[class*='correct'] p, #trivia-question-content[class*='correct'] label {
	color: white;
}

#trivia-question-content.correct {
	background-color: green;
}

#trivia-question-content.incorrect{
	background-color: red;
}

input[id^='trivia'] {
	padding: 10px 15px;
    border-radius: 20px;
	border: 0px;
}

#winner_submit {
	border: 0px;
	padding: 10px 20px;
	border-radius: 5px;
}

#trivia-submit {
	background-color: #fd9c00;
	color: white;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}


/* bubble */

.bubble {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid #88CCEE;
	border-radius: 100%;
}

.float{
	opacity: 0 !important;
	bottom: 100% !important;
	transition: 3s ease-in;
}

.bubble-reflection {
	width: 75%;
	height: 75%;
	border-radius: 100%;
	border: 2px solid #88DDFF;
	border-left: transparent;
	border-bottom: transparent;
	border-right: transparent;
}

/* bubble end */

/*#region Members menu*/
.members_menu {
    margin: 0;
    padding: 0;
	list-style: none;
}
.members_menu > li > a {
	display: contents;
}
/*#endregion*/