﻿/* banner */
.cloud-top {
	height: 10px;
	content: "";
	position: relative;
	top: -10px;
	background-image: linear-gradient(to bottom,
		rgba(255,255,255,0), rgba(255,255,255, 1) 90%);
}
.cloud-bottom {
	height: 10px;
	content: "";
	background-image: linear-gradient(to top,
		rgba(255,255,255,0), rgba(255,255,255, 1) 90%);
}
.sky_grad {
	background-image: linear-gradient(to bottom, #140249, #042866);
}

/* option */
.menu_option {
	background-color: black;
	width: 48px;
	height: 48px;
    border: solid 4px #0425de;
	border-radius: 24px;
	text-align: center;
	vertical-align: middle;
	color: white;
	float: left;
}

/* form - dialog */
.form_dialog {
  	width: 400px;
  	background-color: #ffffff;
	border: solid 1px blue;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 10px auto;
	padding: 10px;
}
.form_dialog label {
  	display: flex;
	float: left;
  	justify-content: center;
  	align-items: center;
	background: #001568;
	border: solid 1px #00ffdd;
	width: 48px;
	height: 48px;
	border-radius: 3px;
}
.form_dialog input[type=text],
.form_dialog input[type=password] {
	width: 320px;
	height: 48px;
	background: white;
	border: solid 1px #aaaaaa;
	margin-bottom: 10px;
	cursor: pointer;
}
.form_dialog input[type=text]:hover,
.form_dialog input[type=password]:hover {
	border: solid 1px #898989;
}
.form_dialog h1 {
	font-size: 18pt;
	color: #222222;
	text-align: center;
	margin: 5px;
}

/* button */
.button_blue {
	background: #0043ae;
	border: solid 1px #001380;
	color: white;
	cursor: pointer;
}
.button_blue:hover {
	background: #004ac0;
	color: rgb(236, 236, 236);
}

/* link */
.link_blue {
	text-decoration: none;
	color: blue;
}
.link_orange {
	text-decoration: none;
	color: #ffdd00;
}


/* gallery containers */
.gallery_cont {
	display: table;
    background: rgb(5,40,102);
    background: linear-gradient(180deg, rgba(5,40,102,1) 12%, rgba(32,142,255,1) 75%, rgba(0,255,219,1) 100%);
	width: 100%;
	border: solid 1px #081062;
	padding-bottom: 4px;
	box-shadow: 10px 10px rgba(0,0,0,0.5);
	border-radius: 5px;
}
.cont_dark {
    background: rgb(10,10,10);
    background-image: linear-gradient( to bottom, rgba(10,10,10,1), rgba(40,40,49,1) );
}
.gallery_header {
	width: 100%;
	border: solid 1px blue;
	background-color: #1f1fe0;
	background-image: linear-gradient( #1f1fe0, rgb(0, 0, 118) );
	margin-bottom: 10px;
	padding-top: 4px;
	color: white;
	text-align: center;
}
.gallery_body {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	margin: 10px;
}
.gallery_item {
	background: rgb(255, 255, 255);
	float: left;
	width: 200px;
	height: 160px;
	border: solid 2px rgba(0, 0, 255, 1);
	border-radius: 10px;
	margin: 5px;
	padding: 5px;
}
.gallery_item:hover {
	background: #b5feee;
	border: solid 2px #2fbaff;
	color: rgba(0,0,240,1);
}
.gallery_item img {
	border-radius: 10px;
}

/* android app gallery containers */
.app_item {
	background: white;
	float: left;
	width: 140px;
	height: 210px;
	border: solid 1px blue;
	border-radius: 10px;
	margin: 5px;
	padding: 5px;
}
.app_item:hover {
	background: #b5feee;
	border: solid 1px #2fbaff;
}
.app_item img {
	border-radius: 10px;
}


/* Merch Item */
.merch_item {
	background: white;
	color: black;
	float: left;
	width: 140px;
	height: 210px;
	border: solid 1px blue;
	border-radius: 10px;
	margin: 5px;
	padding: 5px;
}

.merch_item:hover {
	background: #b5feee;
	border: solid 1px #2fbaff;
}

.merch_item a {
	text-decoration: none;
	color: black;
}


/* movies */
.movie_cont {
	background: rgb(255, 255, 255);
	float: left;
	width: 200px;
	height: 190px;
	border: solid 1px rgb(0,0,255);
	border-radius: 3px;
	margin: 5px;
	color: rgb(10,10,10);
}
.movie_cont:hover {
	background: #b5feee;
	border: solid 1px rgb(0,0,240);
}
.movie {
	width: 190px; height: 120px;
	border: solid 1px rgb(10,10,10);
}
.movie_header {
	height: 50px;
	margin-top: 6px;
}

/* Background Colors */
.bg-white {
	background: white;
}
.bg-black {
	background: black;
}

/* Text Colors */
.text-white {
	color: white;
}
.text-black {
	color: black;
}
