.cookie-alert {
    position: fixed;
    bottom: 0px;
    /*right:20px;*/
    border-radius: 10px 0;
    background:#2f2f2f;
    color:#fff;
    padding:25px 15px;
    width:100%;
    z-index:100;
    text-align: center;
}
.cookie-alert button {
    display: block;
    text-align: center;
    padding:5px 10px;
    margin:8px auto 0 auto;
    border-radius: 10px;
    background:transparent;
    border: 2px solid #46A2D9;
    color:#46A2D9;
    transition: all .3s ease;
    width: 100px;
}
.cookie-alert button:hover {
    background: #46A2D9;
    color:#2f2f2f;
}
@media only screen and (max-width:480px) {
    .cookie-alert {
        text-align: center;
        left: 0; right: 0;;
        margin: 0 auto;
        max-width:100%;
        padding:10px 30px;
    }
}