.weather-wrapper {
	position: relative;
}
.weather-wrapper .weather-button{
	margin: 0;
	background-color: transparent;
	padding: 0;
	color: #008c98;
	font-family: futura-pt, sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
}

.weather-wrapper .weather-button .weather-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.weather-wrapper .weather-button .wi {
	font-size: 28px;
	margin-right: 10px;
}

.weather-wrapper .weather-icon > * {
	font-size: var(--header-icon-size);
}

.weather-wrapper .weather-button .dropdown-toggle {
	display: none;
}

.weather-wrapper .weather-dropdown {
	display: none;
}

@media screen and (min-width: 1200px) {
	.weather-wrapper .weather-button {
		color: #fff;
		font-size: 12px;
		margin-top: 15px !important;
	}

	.weather-wrapper .weather-button .wi,
	.weather-wrapper .weather-icon > * {
		font-size: var(--header-icon-size);
	}

	.weather-wrapper .weather-button span {
		display: none;
	}
	
	.weather-wrapper .weather-button .dropdown-toggle {
		display: block;
	}

	.weather-wrapper .weather-dropdown {
		position: absolute;
		bottom: -15px;
		left: 50%;
    	transform: translate(-50%, 100%);
		background-color: #fff;
		width: 125px;
		height: auto;
	}

	.weather-wrapper .weather-dropdown .fa-caret-up {
		position: absolute;
		top: 8px;
		left: 50%;
		transform: translate(-50%, -100%);
		color: #fff;
		font-size: 20px;
	}

	.weather-wrapper .weather-dropdown.open {
		display: block;
	}

	.weather-wrapper .weather-dropdown .temp-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-end;
		padding: 10px 10px 5px 10px;
		color: #008c98;
		font-family: futura-pt, sans-serif;
		text-transform: uppercase;
		font-size: 30px;
		line-height: 1em;
		font-weight: 700;
	}

	.weather-wrapper .weather-dropdown .temp-wrapper .wi {
		margin-right: 10px;
	}

	.weather-wrapper .weather-dropdown .temp-wrapper .condition {
		width: 100%;
		color: #999999;
		font-size: 10px;
		line-height: 1em;
		font-family: futura-pt, sans-serif;
		font-style: normal;
		font-weight: 500;
		text-transform: uppercase;
		text-align: center;
		margin-top: 10px;
		letter-spacing: 1px;
	}

	.weather-wrapper .weather-dropdown .info {
		background-color: #d7f3f5;
		font-size: 10px;
		line-height: 1em;
		font-family: futura-pt, sans-serif;
		font-style: normal;
		font-weight: 800;
		text-transform: uppercase;
		text-align: center;
		padding: 5px;
		letter-spacing: .5px;
	}

	.weather-wrapper .weather-dropdown .info i {
		margin-left: 5px;
	}
}