@charset "utf-8";

body {
	margin: 0;
	overflow-y: scroll;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: white;
	background-color: #3f3f3f;
	background-image: url('../images/background.jpg');
	background-position-x: center;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 1000px) {
	body {
		background-position-y: -150px;
	}
}

button {
	cursor: pointer;
}

hr {
	color: #475464
}

img { max-width: 100%; }

.grid-container {
	display: grid;
	grid-template-columns: 150px 2fr 150px;
}

@media only screen and (max-width: 1000px) {
	.grid-container {
		display: flex;
		flex-direction: column;
	}
}

.title {
	grid-column: 1 / 4;
	grid-row: 2 / 3;
	display: flex;
	color: white;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 800;
	height: 300px;
	text-shadow: 1px 1px grey;
}

@media only screen and (max-width: 1000px) {
	.title {
		height: 150px;
	}
}

.content {
	border-radius: 15px;
	margin-left: 150px;
	margin-right: 150px;
	min-height: 300px;
	min-width: 1000px;
	max-width: 1000px;
	justify-self: center;
	grid-column: 1 / 4;
	grid-row: 3 / 4;
	background-color: #313131;
	-webkit-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	display: grid;
	grid-template-rows: 50px;
}

@media only screen and (max-width: 1000px) {
	.content {
		margin-left: 0;
		margin-right: 0;
		min-width: 100%;
		display: block;
	}
}

.content-header {
	background-color: #424242;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom: 2px solid #475464;
	display: flex;
	align-items: center;
	padding-top: 10px;
	padding-left: 20px;
}

section {
	padding: 20px;
	letter-spacing: 0.7px;
}

.modal-container {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.70);
	display: flex;
	flex-direction: column;
	overflow-y: hidden;
	align-items: center;
	justify-content: center;
}

.image-row {
	display: flex;
}

.image-row-image {
}

.modal-container-image {
	padding-bottom: 10px;
}

.image-carousel {
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	-webkit-box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
}

.image-carousel-image-container {
	position: relative;
}

.image-carousel-image {
	cursor: pointer;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	-webkit-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
}

.cursor-pointer {
	cursor: pointer;
}

.image-carousel-image.image-inactive {
	display: none;
}

.image-carousel-label {
	padding-top: 10px;
}

.image-carousel-button {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	border: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 50%;
	outline: none;
}

.image-carousel-button-left {
	left: 15px;
}

.image-carousel-button-right {
	right: 15px;
}

.image-carousel-button:hover {
	background-color: #44b0ff77;
}

.image-carousel-arrow {
	fill: white;
}

.image-carousel-pills {
	display: flex;
}

.image-carousel-pill {
	cursor: pointer;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background-color: white;
}
.image-carousel-pill:hover {
	background-color: #44b0ff;
}

.image-carousel-pill.active-pill {
	background-color: #44b0ff;
}

@media only screen and (min-width: 1000px) {
	header {
		grid-column: 1 / 4;
		grid-row: 1 / 2;
		background-color: #313131;
		display: grid;
		grid-template-columns: 150px 2fr 2fr 200px;
		grid-template-rows: minmax(40px, 100%);
		max-width: 1000px;
		min-width: 1000px;
		justify-self: center;
		border-radius: 0px 0px 15px 15px;
		border-top: 2px solid #475464;
	}
}

@media only screen and (max-width: 1000px) {
	header {
		display: flex;
		flex-direction: row;
		background-color: #313131;
		justify-content: center;
		min-height: 100%;
		border-radius: 0px 0px 15px 15px;
		border-top: 2px solid #475464;
	}
}

.nav {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	list-style-type: none;
	line-height: 50px;
}

.nav a {
	font-family: 'Open Sans Condensed', sans-serif;
	color: white;
	padding-left: 20px;
	padding-right: 20px;
	text-transform: uppercase;
	text-decoration: none;
}

@media only screen and (max-width: 1000px) {
	.nav a {
		padding-left: 15px;
		padding-right: 10px;
	}
}

.nav a:hover {
	color: #44b0ff;
	text-decoration: none;
}


.social {
	grid-column: 4;
	grid-row: 1;
	display: flex;
	list-style-type: none;
	justify-content: end;
	align-items: center;
	padding-right: 20px;
}

@media only screen and (max-width: 1000px) {
	.social {
		display: none;
	}
}

.nav li {
	cursor: pointer;
}

.nav li:hover {
	color: #44b0ff;
}

.active {
	list-style-position: inside;
	color: #44b0ff;
	border-bottom: 4px solid #44b0ff;
}

.social-logo {
	width: 40px;
	height: 35px;
	margin-left: 5px;
	margin-right: 5px;
}

.social-youtube {
	background-image: url('../images/logos/youtube1.png');
}

.social-youtube:hover {
	background-image: url('../images/logos/youtube2.png')
}

.social-twitter {
	background-image: url('../images/logos/twitter1.png');
}

.social-twitter:hover {
	background-image: url('../images/logos/twitter2.png')
}

.social-twitch {
	background-image: url('../images/logos/twitch1.png');
}

.social-twitch:hover {
	background-image: url('../images/logos/twitch2.png')
}

.social-discord {
	background-image: url('../images/logos/discord1.png');
}

.social-discord:hover {
	background-image: url('../images/logos/discord2.png')
}

.screenReaderOnly {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

h1, h3 {
	font-weight: 500;
	line-height: 1.2;
	margin-top: 0;
	color: #8ae3ff;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 2px;
}

h2, h5 {
	color: #8ae3ff;
	letter-spacing: 1.2px;
}

h4 {
	font-weight: 500;
	line-height: 1.2;
	margin-top: 0;
	color: #8ae3ff;
	font-size: 15px;
	text-transform: uppercase;
}

h6 {
	color: #8ae3ff;
	letter-spacing: 1.2px;
	font-size: 12px;
}

a {
	color: #44b0ff;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 17px;
	text-decoration: none;
}

@media only screen and (max-width: 1000px) {
	a {
		font-size: 17px;
	}
}

a:hover {
	text-decoration: underline;
	text-decoration-style: dashed;
	text-decoration-color: white;
}

.not-found {
	text-align: center;
	padding-top: 50px;
}

.dropdown {
	display: inherit;
}

.dropdown:hover .nav-guide-list {
	display: flex;
	line-height: 10px;
	padding-top: 20px;
}

@media only screen and (max-width: 1000px) {
	.dropdown:hover .nav-guide-list {
		display: none;
	}
}

.dropdown:hover .dropdown-nav {
	list-style-position: inside;
	color: #44b0ff;
}

.button-with-icon {
	display: flex;
	align-items: center;
}

.button-with-icon svg {
	padding-top: 2px;
	padding-left: 3px;
}

@media only screen and (max-width: 1000px) {
	.button-with-icon svg {
		display: none;
	}
}

.nav-guide-list {
	display: none;
	position: absolute;
	top: 54px;
	justify-content: space-evenly;
	list-style-type: none;
	background-color: #313131;
	max-width: 900px;
	z-index: 1;
	padding-right: 50px;
	-webkit-box-shadow: 
	0px 20px 35px rgba(50, 50, 93, 0.1),
	0px 15px 15px rgba(0, 0, 0, 0.18);
-moz-box-shadow: 
	0px 20px 35px rgba(50, 50, 93, 0.1),
	0px 15px 15px rgba(0, 0, 0, 0.18);
box-shadow: 
	0px 20px 35px rgba(50, 50, 93, 0.1),
	0px 15px 15px rgba(0, 0, 0, 0.18);
}

.nav-guide-list-entry {
	display: flex;
	flex-direction: column;
	align-items: start;
	padding-bottom: 20px;
}

.nav-guide-list-entry a {
	padding: 0px;
	font-size: 14px;
	padding-right: 20px;
	padding-left: 20px;
}

.nav-guide-list-entry a:hover {
	color: #44b0ff;
}

.guide-entry {
	line-height: 35px;
}

.pl20 {
	padding-left: 20px;
}

table {
	min-width: 100%;
	margin-top: 25px;
	margin-bottom: 25px;
	text-align: left;
	border-radius: 15px;
	border-collapse: collapse;
	background-color: #3f3f3f;
	-webkit-box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
}

th, td {
	padding-top: 10px;
	padding-left: 15px;
	padding-bottom: 10px;
}

thead {
	height: 50px;
	margin-top: 0;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
}

thead tr th {
	background-color: #044a60;
	min-width: 175px;
}

@media only screen and (max-width: 1000px) {
	thead tr th {
		min-width: 0px;
	}
}

thead tr th:first-child {
	border-radius: 15px 0px 0px 0px;
}

thead tr th:last-child {
	border-radius: 0px 15px 0px 0px;
}

table tr:nth-child(2n):not(:last-child) {
  background-color: #393939;
}

table tr:nth-child(2n):last-child td:first-child {
	border-radius: 0px 0px 0px 15px;
	background-color: #393939;
}

table tr:nth-child(2n):last-child td:last-child {
	border-radius: 0px 0px 15px 0px;
	background-color: #393939;
}

tbody tr:last-child td:first-child {
	border-radius: 0px 0px 0px 15px;
}

tbody tr:last-child td:last-child {
	border-radius: 0px 0px 15px 0px;
}

.pl10 {
	padding-left: 10px;
}

.pl0 { 
	padding-left: 0px;
}

.list-icon {
	list-style-image: url('/images/check-circle.svg');
	stroke: white;
}

.list-image-container {
	display: grid;
	grid-template-columns: 50% 50%;
	align-items: center;
}

@media only screen and (max-width: 1000px) {
	.list-image-container {
		display: flex;
		flex-direction: column;
	}
}

.list-image-container-image-left {
	grid-column:  1 / 2;
	border-radius: 15px;
	-webkit-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
}

@media only screen and (max-width: 1000px) {
	.list-image-container-image-left {
		order: 1;
	}
}

.list-image-container-text-right {
	padding: 10px;
	grid-column:  2 / 3;
}

@media only screen and (max-width: 1000px) {
	.list-image-container-text-right {
		order: 0;
	}
}


.list-image-container-image-right {
	grid-column:  2 / 3;
	border-radius: 15px;
	-webkit-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
}

.list-image-container-text-left {
	grid-column:  1 / 2;
}

.menu {
	display: flex;
	justify-content: space-between;
}

@media only screen and (max-width: 1000px) {
	.menu {
		flex-direction: column;
	}
}

.menu-column {
	display: flex;
	flex-direction: column;
}

.no-style-list {
	list-style-type: none;
}

.map-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.map-cards a {
	width: 48%;
}

.map-card {
	color: #44b0ff;
	font-size: 17px;
	text-decoration-style: solid;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 15px;
	margin-bottom: 25px;
	-webkit-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
}

.map-card:hover {
	text-decoration: underline;
	text-decoration-style: dashed;
	text-decoration-color: white;
}

.map-card-image {
	cursor: pointer;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	-webkit-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 15px 35px rgba(50, 50, 93, 0.1),
		0px 5px 15px rgba(0, 0, 0, 0.18);
}

.map-images {
	display:flex;
	flex-wrap: wrap;
}

.map-images a {
	width: 50%;
	opacity: 95%;
}

.map-images a:hover {
	opacity: 100%;
}


dt {
	font-weight: 1000;
}

.no-blue-text {
	color: white;
	font-size: 14px;
}