html,
body {
	background-color: black;
	overflow: hidden;
	height: 100vh;
	width: 100vw;
}

#mapid {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 80%;
	z-index: 1000; /* Completely arbitrary. Just needs to be on top. */
}

#rightBar {
	position: relative;
	width: 20%;
	left: 80%;
	height: 100%;
}

#current {
	position: relative;
	background-color: lightgray;
	width: 90%;
	height: auto;
	margin: auto;
	padding: 3px 5px;
}

#date {
	position: absolute;
	top: 0.5%;
	left: 0.5%;
	margin: 0 auto;
	font-size: 30px;
}

p {
	font-size: 24px;
	margin: 0 auto;
}

#currentTemp {
	position: absolute;
	top: 0.5%;
	right: 0.5%;
	margin: auto;
	font-size: 60px;
	font-weight: bold;
}

#currentWeather {
	position: relative;
	margin: 0 auto;
	padding-top: -5px;
	font-size: 40px;
	font-weight: bold;
}

#currentWind {
	position: absolute;
	top: 25%;
	right: 0.5%;
	margin: 0px;
	font-size: 48px;
}

#hourly_forecast {
	width: 90%;
	height: 100px;
}

#break {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 10px;
}

#dailyDiv {
	position: relative;
	background-color: lightgray;
	width: 90%;
	height: auto;
	margin: auto;
	padding: 2px 5px;
	border: black 1px solid;
}

#hiddenDiv {
	height: 0px;
	overflow: hidden;
	transition: height 100ms;
}

#tempRange {
	position: absolute;
	top: 0%;
	right: 0%;
	margin: 0 auto;
	padding: 0;
	font-size: 36px;
	font-weight: bold;
}

#weather {
	margin-top: 30px;
}

#alerts {
	position: relative;
	width: 90%;
	height: auto;
	margin: auto;
	padding: 3px 5px;
	background-color: black;
}

.alert {
	height: 100%;
	width: 100%;
	color: yellow;
	font-weight: bold;
	background-color: red;
}

#lastSync {
	position: absolute;
	left: 1%;
	bottom: 1%;
	color: gray;
}

#settingButton {
	position: absolute;
	right: 1%;
	bottom: 1%;
	color: gray;
	background-color: black;
	border: none;
}

#settingButton:hover {
	color: white;
}

#smallText {
	font-size: 24px;
}

/*********************************FORM BELOW************************************/

.form-popup {
	position: fixed;
	border: 3px solid #f1f1f1;
	top: 25%;
	left: 50%;
	margin-left: -150px;
	z-index: 99999;
}

.form-container {
	max-width: 300px;
	min-width: 300px;
	padding: 10px;
	background-color: white;
}

.form-container input[type="text"] {
	width: 90%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	background: #f1f1f1;
}

.form-container input[type="text"]:focus {
	background-color: #ddd;
	outline: none;
}

.form-container .btn {
	background-color: #4caf50;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-bottom: 10px;
	opacity: 0.8;
}

.form-container .btn:hover {
	opacity: 1;
}

#switchLocationType {
	position: absolute;
	left: 1%;
	bottom: 0%;
	color: gray;
	background-color: transparent;
	border: none;
}

#switchLocationType:hover {
	color: black;
}
