/* common for all websites and stores */
.news.infoCookies {
    background-color: white;
    padding: 50px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 10000;
    color: #000;
    text-align: center;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}
.news.infoCookies > div {
    padding: 0 50px;
    max-width: 800px;
    align-self: center;
}
.news.infoCookies > a {
    color: #000;
}

.btn.btn-cookies {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    overflow: hidden;
    hyphens: auto;
    box-sizing: border-box;
    vertical-align: middle;
    border-color: black;
    text-decoration: none;
    margin: 0 1%;
    height: min-content;
    width: fit-content;
    align-self: center;
}

.btn.btn-cookies:hover {color: white;}

@media only screen and (max-width: 600px) {
    .news.infoCookies {
        text-align: center;
        display: block;
    }
    .news.infoCookies a {
        display: block;
        width: max-content;
        text-align: center;
        margin: 10px auto;
    }
}