.weather-wrapper {
	background-color: var(--teal);
	cursor: pointer;
	position: relative;
	display: inline-block;
	height: 100%;
}
.weather-wrapper .deg {
	padding-left: 1px;
}
.weather-wrapper .weather-button {
	width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    background-color: transparent;
	padding: 19px 15px 17px;
    margin: 0;
    color: #FFF;
    font-size: 13px;
	font-weight: 500;
}

.weather-wrapper .weather-button:focus {
	outline: 1px dashed var(--teal)
}
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
	line-height: 1.2em;
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
}
.weather-wrapper .weather-button .weather-icon {
	font-size: 24px;
	line-height: 0.9em;
}
.weather-wrapper .weather-dropdown {
	display: none;
    min-width: 320px;
    background-color: var(--blue);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    cursor: initial;
    color: #FFF;
    border: 2px solid #FFF;
}
.weather-wrapper .weather-dropdown.open {
	display: block;
}
.weather-wrapper .top-section {
	text-align: center;
	padding: 5px;
}
.weather-wrapper .forecast .temp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.weather-wrapper .forecast .weather-icon {
	font-size: 22px;
	margin-right: 7px;
}
.weather-wrapper .forecast .temp {
	font-size: 32px;
}
.weather-wrapper .forecast .info {
	font-size: 18px;
}
.weather-wrapper .forecast-list .item {
	display: block;
	border-top: 1px solid #748fa6;
	padding: 2px 8px;
}
.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
}
.weather-wrapper .item-details .data {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.weather-wrapper .item-details .data > div {
	font-size: 24px;
	padding: 0px 3px;
	text-align: center;
}
.weather-wrapper .item-details .weather-icon {
	font-size: 22px;
	display: inline-block;
	min-width: 35px;
	color: var(--yellow);
}
.weather-wrapper .item-details .high {
	padding-right: 6px;
	width: 55px;
}
.weather-wrapper .item-details .sep {
	border-left: 1px solid #748fa6;
	height: 26px;
	width: 1px;
}
.weather-wrapper .item-details .low {
	color: #18a3de;
	width: 55px;
}

@media screen and (min-width: 64em) {
	.weather-wrapper {
		width: 100%;
		height: 100%;
	}
	.weather-wrapper .weather-button {
		flex-direction: column;
		justify-content: center;
	}
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}
}