/* Cookie box */
.cookie-box {
    width: 100%;
    height: auto;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
.cookie-box .cookie-text p {
    text-align: center;
    margin: 0;
}
.cookie-box .cookie-text a {
    text-decoration: underline;
}
.cookie-box .cookie-button {
    padding: 0 10px;
    display: flex;
    align-items: center;
}
.cookie-box .cookie-button-btn {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    padding: 9px 15px 10px;
    border: 0 none;
    text-align: center;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    cursor: pointer;
}
.cookie-box .cookie-button-btn:hover,
.cookie-box .cookie-button-btn:focus {
    opacity: 0.85;
}

@media screen and (max-width: 567px) {
    .cookie-box {
        flex-direction: column !important;
    }
    .cookie-box .cookie-button {
        justify-content: center;
        margin-top: 10px;
    }
}