body {
	margin: 0;
	padding: 0;
	font-family: "Ubuntu", serif;
	font-optical-sizing: auto;
	font-weight: "300";
	font-style: normal;
	font-size: 16px;
}

#map {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}

#logo {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1000;
}

#logo img {
	width: 150px;
}

#bg-overview-stats {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(0, 0, 0, 0.3);
	width: 200px;
	border-radius: 8px;
	z-index: 1000;
	color: "#fff";
	padding: 1em;
}

#bg-overview-stats .content strong {
	color: "#fff" !important;
}

#utc-clock {
	position: absolute;
	bottom: 3px;
	left: 3px;
	background-color: rgba(255, 255, 255, 1);
	padding: 0.5em 0.8em;
	border-radius: 8px;
	z-index: 1000;
	color: "#fff";
	font-size: 12px;
}

#bg-thumbnail-preview-wrapper {
	position: absolute;
	bottom: 100px;
	left: 10px;
	background-color: rgba(0, 0, 0, 0.3);
	width: 250px;
	border-radius: 8px;
	z-index: 1000;
	color: "#fff";
	padding: 0.5em;
}

#thumbnail-preview {
	width: 250px;
	min-height: 180px;
	background-color: #000;
	margin-top: 5px;
}

#thumbnail-preview img {
	width: 100%;
}

#thumbnail-preview-info {
	font-size: 10px;
}

#controls {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 1000;
}

.btn-primary {
	background-color: #940000;
	border: none;
}

.btn-primary:hover,
.btn-primary:active {
	background-color: #6d0000;
}

#weather-info {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 5px;
	z-index: 1000;
	color: "#fff";
	padding: 10px;
}

#weather-info-content {
	font-size: 12px;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#weather-temperature {
	font-size: 16px;
	font-weight: bold;
}

#weather-wind {
	text-align: center;
}

#marker-info {
	position: absolute;
	top: 60px;
	left: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	color: "black";
	padding: 10px;
	border-radius: 5px;
	z-index: 1000;
	width: 250px;
}

.navigation-arrow {
	width: 15px;
	position: relative;
}

.modal-fullscreen {
	width: 90vw;
	height: 65vh;
	max-width: none;
}

.modal-fullscreen .modal-content {
	border-radius: 0;
}

.modal-fullscreen .modal-body {
	overflow-y: auto;
}

.day-box {
	text-align: center;
	border-radius: 5px;
	background-color: #ececec;
	padding: 10px;
	outline: 1px solid #ececec;
	margin: 5px;
	width: 100%;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.day-box:hover {
	background-color: #f0f0f0;
}

.day-box.active {
	background-color: rgba(0, 0, 0, 0.9);
	color: white;
}

.day-box p {
	margin: 0;
}

.hour-box {
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	text-align: center;
}

#selected-day-hour-breakdown {
	max-height: 150px;
	overflow-x: auto;
	background-color: #f9f9f9;
	border-radius: 5px;
}

.weather-day {
	font-weight: bold;
	font-size: 1.2em;
}

.weather-date {
	font-size: 18px;
}

.weather-temp {
	margin-top: 5px;
	font-size: 13px;
}

.modal-title {
	font-size: 24px;
	font-weight: bold;
}

.modal-sub-title {
	font-weight: bold;
	margin-bottom: 15px;
}

.modal-meta-box {
	background-color: #f9f9f9;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.weather-day-astro {
	margin-top: 5px;
	font-size: 12px;
}

.movement-prediction-day-value {
	font-size: 18px;
	font-weight: bold;
	padding: 5px;
	border-radius: 5px;
	margin-top: 10px !important;
}

#legend {
	position: absolute;
	bottom: 8px;
	left: 8px;
	z-index: 1000;
	background: white;
	padding: 10px;
	border-radius: 5px;
}

#main-menu {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
}

#orientation-notice.show {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

#orientation-notice {
	display: none;
}

#marker-info-content .content {
	font-size: 15px;
}

#windDirectionChart {
	width: 320px;
}

/**
 * MEDIA QUERY HELPERS
 */