

.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 10px;
    width: 300px;
    padding-top: 20px;
    height: 140px;
    color: #fff;
    line-height: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    background: #292929;
    z-index: 120;
    border-radius: 3px;
    
    transition: 200ms;
}

.cookie-consent.active {
  bottom: 5%;
}

.allow-button {
    height: 30px;
    width: 154px;
    color: #fff;
    font-size: 12px;
    line-height: 10px;
    border-radius: 5px;
    border: 1px solid green;
    background-color: green;
    cursor: pointer;
}

.cancel-button {
    height: 30px;
    width: 154px;
    color: #fff;
    font-size: 12px;
    line-height: 10px;
    border-radius: 5px;
    border: 1px solid red;
    background-color: red;
    cursor: pointer;
}

