.cookieBar {
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.9);
    font-size: 12px;
    padding: 10px;
    width: 100%;
    z-index: 100;
    text-align: center;
    min-width: 320px;
}

.cookieBar > div {
    display: inline-block;
}
.cookieBar__message {
     display: inline-block;
     padding-right: 10px;
 }
.cookieBar__button {
    background-color: #dc387a;
    border: none;
    color: #fff;
    display: inline-block;
    padding: 6px 12px;
    text-align: center;
    min-width: 0;
    width: 100px;
    font-size: 14px;
}
.cookieBar__button:hover {
    background-color: #bf2261;
}

@media (max-width: 1200px) {
    .cookieBar > div {
        display: block;
    }
    .cookieBar__message {
         display: block;
         padding-right: 0;
         margin-bottom: 10px;
    }
}