.weather-container .sv-weather-widget-icon{
	position: relative;
	cursor: pointer;
	width: 100%;
	height: 40px;
	z-index: 999999;

	background: rgba(255,255,255,0.10);
	border:1px solid rgba(255,255,255,0);
	border-radius: 3px;
	padding:0 10px;

	-webkit-transition: all .25s;
	transition: all .25s;

	-webkit-transition-delay: .19s;
    transition-delay: .19s;
}
.weather-container .sv-weather-widget-icon .icon{
	position: relative;
	top: -2px;
	width: 28px;
	height: 28px;
}
.weather-container .sv-weather-widget-icon::after{
	position: absolute;
	right: 10px;)
	top: 0;
	content: '';
	width: 12px;
	height: 40px;
	background-image: url("/includes/public/assets/icon-widget-arrow.png");
	background-position: left center;
	background-repeat: no-repeat;
	-webkit-transition: all .35s;
	transition: all .35s;
}
.weather.open .weather-container .sv-weather-widget-icon::after{
	 -ms-transform: rotate(-180deg); /* IE 9 */
    -webkit-transform: rotate(-180deg); /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
}
.weather-container .sv-weather-widget-icon > div{
	display: inline-block;
}
.sv-weather-widget-icon .temp{
	position: relative;
	color: #d7d7d7;
	font-size: 15px;
	line-height: 40px;
	font-family:'Aktiv Grotesk W01 Medium';
	padding-left: 8px;
}

/* dropdown */
.weather-container .dropdown{
	position: absolute;
	top: 39px;
	right: 0;
	width: 284px;
	height: 404px;
	overflow: hidden;
	
	background: #303030;
	border-top-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	z-index: 99999;

	max-height: 0;
	-webkit-transition: max-height .25s;
	transition: max-height .25s;
}
.weather-container .dropdown-int{
	width: 100%;
	height: 100%;
	padding: 18px 12px;
	border: 1px solid #4f4f4f;
}
.weather-container .dropdown .item{
	position: relative;
	width: 100%;
	padding:14px 0 1px;
	border-bottom: 1px solid #4f4f4f;

	font-family:'Aktiv Grotesk W01 Medium';
	font-size: 15px;
	line-height: 15px;
	color: #d7d7d7;
}
.weather-container .dropdown .icon{
	position: relative;
	top: -6px;
	width: 28px;
	height: 28px;
}
.weather-container .dropdown .date{
	width: 90px;
}
.weather-container .dropdown .temp{
	width: 75px;
	color: #f78f1e;
	text-align: right;
}
.weather-container .dropdown .temp.low{
	width: 60px;
	color: #00a994;
}
.weather-container .dropdown .weather-btn{
	width: 166px;
	height: 44px;
	line-height: 44px;
	font-size: 16px;
	color: #00bbe3;
	text-align: center;
	border: 2px solid #00bbe3;
	border-radius: 4px;
	margin: 20px auto 0;
}

/* current item */
.weather-container .item.current{
	padding-top: 0;
	padding-bottom: 14px;
}
.weather-container .item.current .current-info{
	width: 108px;
}
.weather-container .item.current .text{
	width: 130px;
	font-size: 20px;
	line-height: 20px;
	color: #f8c00b;
	font-family: "ff-good-headline-web-pro-con",sans-serif;
}
.weather-container .item.current .cicon{
	position: relative;
	top: -8px;
	width: 48px;
	height: 48px;
}
.weather-container .item.current .ctemp{
	font-size: 28px;
	line-height: 28px;
}
.weather-container .item.current .ctext{
	width: 100%;
	text-align: right;
	font-size: 18px;
	line-height: 18px;
	font-family:'Aktiv Grotesk W01 Light1370681';
}

/*** open/active **/
.weather.open .weather-container .sv-weather-widget-icon{
	border-top: 1px solid #4f4f4f;
	border-left: 1px solid #4f4f4f;
	border-right: 1px solid #4f4f4f;
	background: #303030;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;

	-webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.weather.open .weather-container .dropdown{
	max-height: 404px;
}





/** mobile **/
.weather-container.mobile .sv-weather-widget-icon .temp{
	font-size: 16px;
	line-height: 16px;
	font-family:'Aktiv Grotesk W01 Light1370681';
	height: auto;
}
.weather-container.mobile .sv-weather-widget-icon .icon{
	height: 28px;
}
@media (max-width: 640px) {
	li.weather-mobile {display: block; }
	.weather-container div.text { display: inline-block;}
}
