
.weather-container {
    position: absolute;
    right: 0px;
    top: 100%;
    width: 100%;
    height: 0px;
    overflow: hidden;
    
    background-color: #33332e;
    padding: 0;

    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.weather-container .weather-info{
    display: flex;
    align-items: center;
    padding: 12px 6px;
    margin-bottom: 10px;
}
.weather-container.active {
    height: 135px;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}


.weather-container span {
    display: inline-flex;
    flex-flow: column;
    justify-content: flex-end;
    text-align: center;
    position: relative;
    color: #cb545b;
    width: 33%;
}
.weather-container > a {
    display: block;
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    color: #FFF;
    background-color: #cb545b;
}

.weather-container > a.sh-view-more {
    display: block;
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    color: #FFF;
    background-color: #cb545b;
    border: 2px solid #cb545b;
    padding: 5px;
    font-size: 14px;
}

.weather-container p {
    font-family: museo-sans, sans-serif;
    font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (640 - 320)));
    line-height: 1.1;
    color: #cbcccc;
    margin: 0;
}
.weather-container .sh-view-more i {
    font-size: 20px;
    color: #cb545b;
    position: absolute;
    top: 58px;
    right: 3px;
    transform: translateY(-50%);
}

.weather-container .day,
.weather-container .condition-container i.wi,
.weather-container .temperature{
    height: 25px;
    margin-bottom: 5px;
}

.weather-container .day {
    font-family: "museo-sans", sans-serif;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f5f5f0;
}
.weather-container .condition-container i.wi {
    font-size: calc(26px + (30 - 26) * ((100vw - 320px) / (640 - 320)));
    margin-bottom: 5px;
    color: #f5f5f0;
}
.weather-container .temperature {
    font-size: 20px;
    line-height: 25px
    font-family: "museo-sans", sans-serif;
    text-transform: uppercase;
    color: #f5f5f0;
}

.weather-container.active .sh-view-more:hover { 
    background-color: #FFF;
    color: #cb545b; 
}

.weather-container.active .sh-view-more:hover { 
    background-color: #FFF;
    color: #cb545b; 
}

.weather-container.active .sh-view-more:hover span,
.weather-container.active .sh-view-more:hover i { 
    color: white; 
}

.weather-wrapper .weather-control {
    padding: 15px;
}

.header-right .weather-wrapper .weather-control {
    padding: 15px 10px;
    font-size: 14px;
}

.mobile-nav .weather-wrapper .weather-control {
    padding-left: calc(10px + (15 - 10) * ((100vw - 320px) / (1099 - 320)));
    padding-right: calc(12px + (15 - 12) * ((100vw - 320px) / (1099 - 320)));
    padding-top: 5px;
    padding-bottom: 5px;
}
.weather-wrapper .weather-control i.wi::before {
    line-height: 1;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1099 - 320)));
    width: calc(16px + (20 - 16) * ((100vw - 320px) / (1099 - 320)));
    height: calc(16px + (20 - 16) * ((100vw - 320px) / (1099 - 320)));
    text-align: center;
    display: block;
}

.weather-wrapper .weather-control .close-container{
    width: calc(16px + (20 - 16) * ((100vw - 320px) / (1099 - 320)));
    height: calc(16px + (20 - 16) * ((100vw - 320px) / (1099 - 320)));
}

.weather-wrapper .weather-control .close-container,
.weather-wrapper .weather-control.active .open-container{
    opacity: 0;
    transition: opacity .666s ease;
    display: none;
}

.weather-wrapper .weather-control.active .close-container{
    opacity: 1;
    transition: opacity .666s ease;
    display: block;
    color: #434444;
}


.weather-wrapper .weather-control{
    color: #f5f5f0;
}
@media screen and (max-width: 46.5625em) {
    .weather-control.hidden{
        opacity: 0;
        pointer-events: none;
    }
}

@media (min-width: 641px) {
    .weather-container p {
        font-size: 12px;
    }
    .weather-container .day,
    .weather-container .condition-container i.wi,
    .weather-container .temperature{
        height: 30px;
        margin-bottom: 5px;
    }
    .weather-container .condition-container i.wi {
        font-size: 30px;
    }
    .weather-container .temperature {
        font-size: 28px;
        line-height: 30px;
    }
}

@media screen and (min-width: 1100px) {
    .weather-wrapper{
        position: relative;
    }

    .weather-wrapper .weather-container {
        width: 430px;
        height: 0;
        margin: -10px 0;
    }

    .weather-wrapper .weather-container.active {
        height: 135px;
        right: 0;
    }

    .ie-view .active .weather-control {
        right: 1px;
    }

    .weather-wrapper .weather-control i.wi::before {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }

    .weather-wrapper .weather-control .close-container{
        width: 20px;
        height: 20px;
    }

}