@charset "utf-8";
/* CSS Document */
/* Boom Boom Cup Classics styles*/


@media screen and (min-height: 501px) and (orientation:landscape)  {
  body, button, html, input, select, textarea {
      font-size: calc(1vh + 14px);
  }
}

@media screen and (min-width: 501px) and (orientation:portrait) {
	body, button, html, input, select, textarea {
    	font-size: calc(1vw + 14px);
    }
}

@media screen and (max-width: 500px), (max-height: 500px) {
	body, button, html, input, select, textarea {
    	font-size: 15px;
    }
}

body, button, html, input, select, textarea {
	font-family: 'Karla', Arial, "sans-serif";
}

.btn, .btn-inline {
	background-color: #2d3c8f;
	border-radius: 50px;
	padding: 15px;
}

.error-msg, .success-msg {
	border-radius: 10px;
	color: #fff;
	margin-bottom: 20px;
	padding: 10px 20px;
	text-align: center;
}

.error-msg {
	background-color: crimson;
	border: solid 3px darkred;
}

.expandOpenToMenu {
	animation-name: expandOpenToMenu;
	-webkit-animation-name: expandOpenToMenu;	

	animation-duration: 4s;	
	-webkit-animation-duration: 4s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	transform-origin: center;
	visibility: visible !important;	
}

@keyframes expandOpenToMenu {
	0% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(1);
	}
	10% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(3);
	}
	60% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(3);
	}
	100% {
		transform: scale(1);
	}			
}

@-webkit-keyframes expandOpenToMenu {
	0% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(1);
	}
	10% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(3);
	}
	60% {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%) scale(3);
	}
	100% {
		transform: scale(1);
	}			
}

.fade {
  	animation-name: fade;
	animation-duration: 2s;
	-webkit-animation-name: fade;
	-webkit-animation-duration: 2s;
}

@-webkit-keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: .4} 
	to {opacity: 1}
}

.footer-bottom-wrapper {
	background-color: #000;
	font-size: 75%;
	padding: 10px;
	text-align: center;
	width: 100%;
}

.footer-column-wrapper {
	display: inline-block;
	padding: 0px 10px;
	vertical-align: top;
}

.footer-img {
	height: 150px;
}

.footer-title {
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	margin-top: 15px;
	padding: 8px 10px;
}

.footer-txt {
	color: #bbb;
	padding: 5px 10px;
	text-decoration: none;
}

.footer-txt a {
	color: #bbb;
	text-decoration: underline;
}

.footer-txt a:hover {
	color: #fff;
}

.footer-wrapper {
	background-color: #2b2e30;
	display: flex;
	flex-wrap: nowrap;
	font-size: 75%;
	justify-content: center;
	padding: 40px;
}

.form-input {
	width: 100%;
}

.form-input-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0px;
	min-width: 200px;
}

#game-stats-img {
	background-image: url("../images/default-bgrnd.JPG");
}

#header-bar {
	align-items: center;
	background-image: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,0));
	display: flex;
	flex-wrap: nowrap;
	height: 90px;
	justify-content: space-between;
	overflow: hidden;
	width: 100%;
}

.header-logo {
	cursor: pointer;
	left: 20px;
	max-height: 100px;
	position: absolute;
	top: 3px;
	/*top: 68px;*/
	z-index: 5;
}

.header-logo-wrapper {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-wrap: nowrap;
	margin-left: 20px;
}

.header-menu {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-wrap: nowrap;
	z-index: 5;
}

.header-text {
	color: #fff;
	font-family: Lobster, Arial;
	font-size: 20px;
	margin-left: 110px;
	text-shadow: 0px 0px 5px rgba(0,0,0,.8);
	width: 130px;
	z-index: 5;
}

#header-wrapper {
	position: absolute;
    width: 100%;
	z-index: 3;
}

.img-bgrnd-contain {
	background-size: contain !important;
}

.img-bgrnd-top {
	background-position: top !important;
}

.img-slide {
	min-height: 100vh;
}

.legacy-bgrnd {
	background-color: #00416f;
	padding: 60px 40px;
}

.menu {
    background-color: #2d4c8f;
	box-shadow: -6px 6px 5px 1px rgba(0,0,0,0.3);
	overflow-x: hidden;
    overflow-y: auto;
	padding-top: 90px;
	position: absolute;
	right: 0;
	top: 0;
	transition: .6s;
	-webkit-transition: .6s;
	visibility: hidden;
	width: 320px;
}

.menu.active {
	visibility: visible;
	width: 320px;
}

.menu-bar1, .menu-bar2, .menu-bar3 {
    background-color: #fff;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,.8);
	height: 3px;
	margin: 6px 0;
    transition: 0.4s;
	-webkit-transition: 0.4s;
	width: 35px;
}

.menu-bar1.active {
	box-shadow: none;
	-webkit-transform: translate(0px, 9px) rotate(45deg);
	transform: translate(0px, 9px)  rotate(45deg);
}
 	
.menu-bar2.active {
    opacity: 0;
}

.menu-bar3.active {
	box-shadow: none;
	-webkit-transform: translate(0px, -9px) rotate(-45deg);
	transform: translate(0px, -9px) rotate(-45deg);
}

.menu-button-container {
	margin-right: 20px;
}

.menu-item-wrapper {
	padding: 10px 30px;
}

.menu-item-wrapper, .menu-sub-item-wrapper {
	align-items: center;
	background-color: transparent;
	color: #fff;
	cursor: pointer;
    display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
    text-decoration: none;
}

.menu-item-wrapper:hover, .menu-sub-item-wrapper:hover  {
	background-color: #22337f;
}

.menu-sub-item-wrapper {
	font-size: 16px;
	padding: 10px 40px;
}

.menu-sub-wrapper {
	display: none;
}

.menu-sub-wrapper.active {
	display: block;
}

.menu-txt {
	color: #fff;
	font-size: 18px;
    font-weight: bold;
	margin-right: 8px;
	text-shadow: 0px 0px 5px rgba(0,0,0,.8);
}

.para {
	color: #333;
}

.popup-close {
	background-color: #111;
	border: solid 2px #fff;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 24px;
	font-weight: bold;
	height: 30px;
	left: calc(100% - 18px);
	position: absolute;
	text-align: center;
	top: -12px;
	width: 30px;
}

.popup-close:hover {
	background-color: #393939;
}

.popup-close-wrapper {
	position: relative;
}

.popup-contents {
	max-height: 90vh;
	overflow-y: auto;
}

.popup-contents-container {
	align-contents: top;
	display: flex;
	flex-wrap: nowrap;
	max-height: 90vh;
	overflow: auto;
	padding: 30px 15px;
}

.popup-contents-container > * {
	flex: 0 1 auto;
	padding: 10px;
	width: 100%;
}

.popup-img {
	height: 200px;
	width: 200px;
}

.popup-text {
	color: #5c5c5c;
	font-size: 80%;
	line-height: 1.5;
	text-align: justify;
}

.popup-title {
	font-size: 120%;
	margin-bottom: 20px;
	text-align: left;
}

.popup-window {
	background-color: white;
	border-radius: 8px;
	box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, .6);
	margin: auto;
	position: relative;
	top: 50%;
	transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	width: 80%;
}

.popup-wrapper {
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	display: none;
	height: 100%;
	left: 0;
	overflow: auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.slide-button {
	background-color: #888;
	border-radius: 50%;
	cursor: pointer;
	height: 12px;
	margin: 0px 5px;
	width: 12px;
}

.slide-button.active {
	background-color: #2d3c8f;
}

.slide-controls {
	bottom: 20px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	position: absolute;
	text-align: center;
	width: 100%;
}

.slides {
	display: none;
}

.slides.active {
	display: block;
}

.slideshow-container {
	margin: auto;
	position: relative;
	width: 100%;
}

.sub-title {
	font-size: 135%;
}

.success-msg {
	background-color: darkseagreen;
	border: solid 3px darkgreen;
}

.tile-overlay {
	background-color: #fff;
	border: solid 1px #fff;
	/*box-shadow: 0px 0px 8px 2px rgba(0,0,0,.3);*/
	color: #fff;
	cursor: default;
	flex: 1;
	max-width: 25%;
	min-width: 400px;
	overflow: hidden;
	position: relative;
	text-shadow: 1px 1px 3px #111;
}

.tile-overlay:hover .tile-overlay-img {
	transform: scale(1.05);
}

.tile-overlay:hover .tile-overlay-overlay, .tile-overlay:active .tile-overlay-overlay {
	opacity: 0.92;
	visibility: visible;
}

.tile-overlay:hover .tile-overlay-content, .tile-overlay:active .tile-overlay-content {
	opacity: 0;
}

.tile-overlay-banner {
	background-color: #2d3c8f;
	box-shadow: 2px 2px 8px 1px rgba(0,0,0,.2);
	opacity: 0.9;
	padding: 10px 20px;
	position: absolute;
	transition: 0.5s;
	width: 100%;
}

.tile-overlay-content {
	bottom: 20px;
	position: absolute;
	transition: 0.5s;
}

.tile-overlay-date {
	font-size: 90%;
	line-height: 1.4;
}

.tile-overlay-date, .tile-overlay-title {
	font-family: Poppins, Arial, "sans-serif";
	font-weight: bold;
	opacity: 1;
	text-align: left;
	width: 100%;
}

.tile-overlay-fgrnd {
	background-color: #000;
	height: 100%;
	opacity: .2;
	padding: 25px;
	position: absolute;
	top: 0;
	width: 100%;
}

.tile-overlay-img {
	height: 350px;
	padding: 25px;
	width: 100%;
}

.tile-overlay-link {
	cursor: pointer;
	font-size: 80%;
	line-height: 1.5;
	text-align: left;
}

.tile-overlay-overlay {
	background-color: #2d3c8f;
	color: #fff;
	height: 100%;
	opacity: 0;
	padding: 20px 25px;
	position: absolute;
	top: 0;
	transition: visibility 0s, opacity 0.5s;
	visibility: hidden;
}

.tile-overlay-section {
	align-items: center;
	background-color: #676767;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/*padding: 15px;*/
}

.tile-overlay-text {
	font-size: 80%;
	line-height: 1.5;
	margin: 20px 0px;
	text-align: left;
	width: 100%;
}

.tile-overlay-title {
	font-size: 115%;
}

.tile-popup {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 2px rgba(0,0,0,0.2);
	cursor: pointer;
	height: 100%;
	overflow: hidden;
	transition: 0.5s;
}

.tile-popup:hover {
	transform: scale(1.05);
}

.tile-popup-base {
	padding: 20px;
}

.tile-popup-container {
	flex: 0 0 33%;
	margin: 10px 0px;
	padding: 0px 10px;
}

.tile-popup-img {
	height: auto;
	width: 100%;
}

.tile-popup-link {
	color: #777;
	font-size: 80%;
	margin-top: 10px;
	text-decoration: underline;
}

.tile-popup-subtitle {
	font-size: 100%;
}

.tile-popup-title {
	font-size: 120%;
}

.tile-popup-wrapper {
	align-items: top;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.timer-tbl {
	margin: 0px auto;
	text-align: center;
}

.timer-tbl-clock {
	background-image: linear-gradient(to bottom, #3366cc, #004d99);
	border-radius: 15px;
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,.2);
	color: #fff;
	font-size: 70px;
	height: 125px;
	width: 100px;
}

.timer-tbl-divider {
	font-size: 60px;
}

.timer-tbl-header {
	
}

.timer-tbl-wrapper {
	margin-top: 10px;
	text-align: center;
	width: 100%;
}

.title {
	font-family: 'Raleway', Arial, "sans-serif";
	font-size: 170%;
}

.top-bar {
	align-items: center;
	background-color: #2d3c8f;
	display: flex;
	flex-wrap: nowrap;
	height: 65px;
	justify-content: center;
	padding: 5px;
	width: 100%;
	z-index: 2;
}

.top-bar > * {
	padding-left: 10px;
	padding-right: 10px;
}

.top-btn {
	background-color: #FF9900;
	border-radius: 20px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	width: 120px;
}

.top-image {
	height: 55px;
}

.top-text {
	color: white;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

.video-container {
    overflow: hidden;
	position: relative;
	width: 100%;
}

@media screen and (max-width: 920px) and (max-height: 500px), screen and (max-height: 920px) and (max-width: 500px) {
	
	.footer-column-wrapper {
		text-align: center;
		width: 100%;
	}
	
	.footer-img {
		height: 80px;
		width: 80px;
	}
	
	.footer-txt {
		padding: 3px 0px;
	}
	
	.footer-wrapper {
		display: block;
		padding: 20px;
	}
	
	#header-bar {
		height: 55px;
	}
	
	.header-logo {
		left: 15px;
		max-height: 60px;
	}

	.header-logo-wrapper {
		margin: 2px 0px 0px 10px;
	}
	
	.header-text {
		font-size: 15px;
		margin-left: 70px;
		width: 100px;
	}
	
	.legacy-bgrnd {
		padding: 40px 20px;
	}
	
	.menu {
		padding-top: 70px;
	}
	
	.menu.active {
		width: 100%;
	}
	
	.menu-bar1.active {
		-webkit-transform: translate(0px, 0px) rotate(45deg);
		transform: translate(0px, 6.25px)  rotate(45deg);
	}

	.menu-bar3.active {
		-webkit-transform: translate(0px, 0px) rotate(-45deg);
		transform: translate(0px, -6.25px) rotate(-45deg);
	}

	.menu-bar1, .menu-bar2, .menu-bar3 {
		height: 2.5px;
		margin: 4px 0;
		width: 25px;
	}

	.menu-button-container {
		margin-right: 15px;
	}
	
	.menu-item-wrapper {
		padding: 8px 15px;
	}
	
	.menu-sub-item-wrapper {
		font-size: 14px;
		padding: 5px 15px 5px 25px;
	}

	.menu-txt {
		font-size: 14px;
	}
	
	.popup-contents {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.popup-contents-container {
		flex-wrap: wrap;
	}
	
	.popup-img {
		margin-left: auto;
		margin-right: auto;
	}
	
	.popup-window {
		width: 90%;
	}
	
	.tile-overlay {
		min-width: 100%;
	}
	
	.tile-overlay-content {
		margin: 0px 10px;
	}
	
	.tile-overlay-img {
		height: 300px;
	}
	
	.tile-popup-container {
		flex: 0 0 100%;
	}
	
	.tile-popup-wrapper {
		padding: 30px 10px;
	}
	
	.timer-tbl-clock {
		font-size: 24px;
		height: 70px;
		min-width: 55px;
	}
	
	.timer-tbl-divider {
		font-size: 30px;
	}
	
	.timer-tbl-header {
		font-size: 10px;
		min-width: 55px;
	}
	
	.top-btn {
		font-size: 11px;
	}
	
	.top-text {
		font-size: 12px;
	}
	
	.vertical-flex-container {
		padding-bottom: 60px !important;
		padding-top: 60px !important;
	}

}