@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.cookie-bar {
    background-color: rgba(248, 248, 248, 0.98);
    bottom: 0;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    left: 0;
    line-height: 1.25;
    position: fixed;
    right: 0;
    z-index: 998;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.cookie-bar * {
    box-sizing: border-box;
}

.cookie-bar a {
    background-color: transparent;
    font-weight: bold;
    text-decoration: none;
}

.cookie-bar a,
.cookie-bar a:hover {
    color: #000000;
}

.cookie-bar-body {
    padding: 12px 15px;
}

.cookie-bar-body p {
    margin-bottom: 10px;
    margin-top: 0;
}

.cookie-bar-body br {
    display: none;
}

.cookie-bar-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 10px 20px;
}

.cookie-bar-btn:focus {
    outline: none;
}

.cookie-bar-btn-ok {
    background-color: #34B75A;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

.cookie-bar-btn-group {
    white-space: nowrap;
}

@media (min-width: 992px) {
    .cookie-bar-body {
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
        max-width: 1010px;
    }

    .cookie-bar-body p {
        margin-bottom: 0;
    }

    .cookie-bar-body br {
        display: inline;
    }

    .cookie-bar-btn {
        padding: 17px 20px;
    }

    .cookie-bar-btn-ok {
        padding: 17px 36px;
    }

    .cookie-bar-btn-group {
        margin-left: 25px;
    }
}