.subscribe-container {
    border: 3px solid #125555;
    border-radius: 10px;
    /*
    margin: 20px;
    padding: 30px;
    */
    font-size: 16px;
    line-height: 20px;
    background-color: #e8fbf9; 
    box-shadow: 10px 10px 5px #46aa46;
}

.subs ,.unsubscribed ,.subscribed {
    font-size: 18px;
    line-height: 25px;
    padding: 8px 16px;   
    margin: 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    font-family: 'Lucida Grande', Helvetica, Arial, Sans-Serif;
    text-decoration: none;
    vertical-align: middle;
}

.unsubscribed {
    background: #dfeffc;
    box-shadow: rgba(0,0,0,1) 0 1px 0;
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
    color: #223322;
    text-decoration: none;    
    vertical-align: middle;
}

.unsubscribed:hover {
    background: #1799a9;
    color: #ffffff !important;
    cursor: pointer;
}

.subscribed {
    background: #10aa49;
    box-shadow: rgba(0,0,0,1) 0 1px 0;
    color: #eeffff !important;
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
    text-decoration: none;
    vertical-align: middle;
}

.subscribed:hover {
    background: #afd590;
    color: #000000 !important;
    cursor: pointer;
}


