/* By: Julian Travis, 2019 /*
/* Main Style */

/* Orange Color Scheme: #fa8d00 */

body {
	box-sizing: border-box;
	min-width: 1000px;
	margin: 0;
}

.base {
	padding-top: 40px;
	background-color: white;
	width: 900px;
	box-shadow: 0px 0px 20px grey;
}

.logoBox {
	width: 520px;
	padding-right: 485px;
	padding-bottom: 30px;
	padding-top: 30px;
}

#logo {
	width: 80px;
	height: 80px;
	margin-bottom: -25px;
}

.bigTitle {
	font-family: 'Raleway', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
}

.homeBar {
	z-index: 1;
	position: relative;
	top: 50px;
	margin-top: -50px;
	left: 0px;
}

.menu {
	z-index: 2;
	position: relative;
	top: 25px;
	margin-top: -50px;
	left: 0px;
	list-style: none;
	padding: 0px;
	width: 900px;
	white-space: nowrap;
}

.menu li {
	font-family: 'Open Sans', sans-serif;
	display: inline;
	text-transform: uppercase;
	color: white;
	font-size: 16px;
}

/* Mobile Device Menu */
@media screen and (max-width: 1000px) {
	.menu li {
	    /* 1% of viewport width to make sure it always looks good */
		font-size: 1vw;
	}
}

#contentContainer {
	padding-left: 50px;
	padding-right: 50px;
}

.smallTitle {
	font-family: 'Raleway', sans-serif;
	font-size: 25px;
	color: #fa8d00;
	text-transform: uppercase;
}

.bodyText {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: black;
}

.displayPic {
	box-shadow: 0px 7px 20px 0px grey;
}

#hdiv {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(128, 128, 128, 0), rgba(128, 128, 128, 0.75), rgba(128, 128, 128, 0));
}

#vdiv {
	height: 1px;
	width: 40px;
	vertical-align: middle;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
	transform: rotate(90deg);
}

.creditText {
	color: grey;
	font-family: 'Open Sans', sans-serif;
	font-size: 10px
}

/* Other Style */

.noSelect {
	/* No Drag or Select */
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

/* Hyperlinks */
.menu li a:link {
	text-decoration: none;
	color: white;
}

.menu li a:visited {
	text-decoration: none;
	color: white;
}

.menu li a:hover {
	text-decoration: none;
	color: white;
	text-shadow: 0px 0px 20px grey;
}

.menu li a:active {
	text-decoration: none;
	color: white;
	text-shadow: 0px 0px 20px grey;
}

.smallTitle a:link {
	text-decoration: none;
	color: #fa8d00;
}

.smallTitle a:hover {
	text-decoration: none;
	color: #fa8d00;
	text-shadow: 0px 0px 20px grey;
}

.smallTitle a:visited {
	text-decoration: none;
	color: #fa8d00;
}

.smallTitle a:active {
	text-decoration: none;
	color: #fa8d00;
}

/* Bullet Points */
#contentContainer ul li {
	padding-bottom: 5px;
	color: #fa8d00;
}

#contentContainer ul li span {
    color: black;
}

br {
	/* No Drag or Select */
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

/* Custom Select Menu */
/* From w3schools */

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: 'Open Sans', sans-serif;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #fa8d00;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #fa8d00;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
} 
