﻿/* main page headings */

.mapsectitle {
	display: inline-block;
	background-color: var(--page_head_d);
	box-shadow: 1px 2px 4px rgba(0,0,0,0.3);
	font-family: "Titillium Web";
	color: var(--font_white);
	font-size: 22px;
	font-weight: bold;
	padding-top: 2px;
	padding-bottom: 2px;
	margin: 12px 6px 6px 6px;
	width: 99%;
}

.mapspages {
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% - 20px);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.mapssect {
	font-family: "Titillium Web";
	color: var(--font_white);
	font-size: 18px;
	font-weight: bold;
	padding: 2px 7px;
	background-color: var(--page_nav);
	box-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}
.mapssect:hover {
	background-color: var(--nav_mid);
}

.mapssect > a:link, .mapssect > a:visited {
	color: var(--font_white);
	text-decoration: none;
}
.mapssect > a:hover .mapssect > a:active {
	color: var(--font_white);
}
.currentlink {
	background-color: var(--body_bg_col);
	color: var(--font_black);
}
.currentlink:hover {
	background-color: var(--body_bg_col);
	color: var(--font_black);
}
.currentlink > a:link, .currentlink > a:visited {
	color: var(--font_black);
	text-decoration: none;
}
.currentlink > a:hover .currentlink > a:active {
	color: var(--font_black);
}

@media screen and (max-width: 1000px) {
.mapssect {
	font-size: 16px;
}
.mapstitle {
	font-size: 18px;
}
}

@media screen and (max-width: 600px) {
.mapssect {
	font-size: 14px;
}
.mapstitle {
	font-size: 16px;
}
.sectiontitle {
	font-size: 20px;
}
}
@media screen and (max-width: 450px) {
.mapssect {
	font-size: 13px;
}
.mapstitle {
	font-size: 16px;
}
.sectiontitle {
	font-size: 20px;
}
}

.mapstext {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	color: var(--font_black);
	font-size: 12px;
	text-align: left;
	padding: 5px 10px;
}
.mapstexttitle {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

/* main bird cards */

.container {
	position: relative;
	float: left;
	display: inline-block;
	width: calc(100% - 20px);
	margin: 0px 10px;
	padding-bottom: 5px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}


/* Maps section formating */

.mainmapdiv {
	height: 650px; 
	width: calc(100% - 8px);
	border: 1px solid var(--body_bg_col);
	margin: 5px 4px 4px 4px;
	box-shadow: 1px 2px 4px rgba(0,0,0,0.3);
	font-family: "Titillium Web";
	color: var(--font_white);
	font-size: 18px;
	font-weight: bold;
}
.maplegends {
	width: calc(100% - 8px);
	border: 1px solid var(--body_bg_col);
	margin: 5px 4px 4px 4px;
	box-shadow: 1px 2px 4px rgba(0,0,0,0.3);
	font-family: "Poppins", sans-serif;
	color: var(--font_black);
	font-size: 13px;
}
.legendcontain {
	display: inline-block;
	margin: 1px 6px 1px 6px;
}

.legendbox {
	display: inline-block;
	width: 13px;
	height: 13px;
	border:1px #cccccc solid;
}


/* table properties */
.statstable {
	border-collapse: collapse;
	border: 0px;
	width: calc(100% - 8px);
	font-size: 12px;
	margin: 4px 4px 4px 4px;
}
.statstable td {
	padding: 2px;
	border-width: 0px 0px 1px 0px;
    border-color: var(--bird_box1);
}

@media screen and (max-width: 900px) {
.statstable {
	font-size: 11px;
	transition-duration: .3s;
}
}

.smalltitle {
	visibility:hidden;
	font-size: 0px;
}

@media screen and (max-width: 650px) {
.smalltitle {
	visibility: visible;
	font-size: 11px;
}
.titlenormal {
	visibility:hidden;
	font-size: 0px;
}
}

.titlerow {
	font-weight: 600;
	color: var(--font_white);
	background-color: var(--page_head_d);
}
.titlerow2 {
	font-weight: 600;
	color: var(--font_white);
	background-color: var(--page_head_l);
}

.firstcol {
	text-align: left;
}

