.widget-popup {
    max-width: 256px;
    position: fixed;
    background: #325729;
    z-index: 9999;
    right:20px;
    bottom:20px;
    border:2px solid #fff;
    padding: 0 0 8px 0;
    display: none;
}
.widget-popup.active {
    display: block;
}
.widget-popup .top-text{
    position: relative;
    top:0;
    background: #325729;
    display: block;
    width: 100%;
    z-index: 1;
    color: #fff;
}
.widget-popup .top-text h3{
    color: #fff;
    padding: 4px;
    text-align: center;
    font-family:"proxima-nova";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
}
.widget-popup .close{
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    color: #325729;
    background: #79C150;
    display: block;
    width: 19px;
    height: 19px;
    text-align: center;
    border-radius: 50%;
}
.widget-popup .close .fa {
    font-weight: 100;
}
.widget-popup .bottom-text{
    position: relative;
    bottom:0;
    background: #325729;
    color: #fff;
    padding: 4px;
    text-align: center;
}
.widget-popup .block-image img{
    position: relative;
}
.widget-popup .bottom-text .description p{
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    color: #fff;
    padding: 4px;
}
.widget-popup .bottom-text .link a{
    cursor: pointer;
    font-family:"proxima-nova";
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    color: #fff;
    background: #79C150;
    border: 0;
    padding: 2px 8px;
}
@media (max-width: 47.9375em) {
    .widget-popup {
        bottom: 76px;
    }
}