.cookie-consent {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #ffffff;
    border-top: 3px solid #00acdb;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    font-family: 'Open Sans', sans-serif;
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-consent__text {
    color: #455f68;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 480px;
    margin-right: 20px;
}

.cookie-consent__text a {
    color: #00acdb;
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    text-decoration: none;
}

.cookie-consent__buttons {
    display: flex;
    flex: 0 0 auto;
    margin-top: 10px;
}

.cookie-consent__btn {
    margin-left: 10px;
}

.cookie-consent__buttons .cookie-consent__btn:first-child {
    margin-left: 0;
}

@media (max-width: 767px) {
    .cookie-consent {
        padding: 12px 0;
    }

    .cookie-consent__text {
        margin-right: 0;
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.4;
    }

    .cookie-consent__buttons {
        margin-top: 0;
    }

    .cookie-consent__btn {
        flex: 1 1 0;
        font-size: 13px;
        padding: 7px 10px;
        white-space: nowrap;
    }
}
