.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.7);
    font-size: 15px;
    color: rgb(65, 118, 106);
    font-weight: bold;
    padding: 10px 15px;
}

.cookie-consent__message {
    vertical-align: sub;
}

.cookie-consent__agree {
    float: right;
    border: 1px solid rgb(65, 118, 106);
    background-color: rgb(65, 118, 106);
    border-radius: 5px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    padding: 5px 10px;
}

@media (max-width: 1050px) {
    .cookie-consent {
        text-align: center;
    }
    .cookie-consent__agree {
        float: unset;
        display: block;
        margin: 10px auto 0;
    }
}

@media (max-width: 825px) {
    .cookie-consent {
        padding: 10px;
        font-size: 13px;
    }
    .cookie-consent__agree {
        margin-top: 5px;
    }
}
