.eCC-container{
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    font-size: 14px;
    display: block;
    transition: transform 200ms ease 0s;
    transform: translateY(0%);
    z-index: 9999;
}

.eCC-container.eCC-fade{
    transform: translateY(100%);
}

.eCC-container.eCC-faded{
    display:none;
}

.eCC-innerContainer{
    position: relative;
    float: left;
    padding-top: 15px;
    padding-right: 0px;
    padding-left: 0px;
}

.eCC-text{
    width: 83.33333333%;
}

.eCC-buttons{
    width: 16.66666667%;
}

.eCC-button{
    padding: 9px 15px;
    margin-left: 20px;
    float: right;    
    border: 0;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
}

.eCC-style-dark{    
    background-color: #333;
    color:  #888;
}

.eCC-style-light{
    background-color: #eee;
    color: #888;
}

.eCC-button.eCC-style-dark{
    background-color: #eee;
    color: #333;
    font-weight: 700;
}
.eCC-button.eCC-style-dark:hover{
    background-color: #ccc;
}

.eCC-button.eCC-style-light{
    background-color: #333;
    color: #eee;
    font-weight: 700;
}
.eCC-button.eCC-style-light:hover{
    background-color: #555;
}