.cookie-consent {
    background: #fff;
    border: 1px solid #6b6466;
    color: #000;
    display: none;
    height: auto;
    left: 50%;
    max-width: 950px;
    padding: 25px 30px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 10000;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

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

.cookie-consent-col-text {
    margin: 0 0 15px;
}

.cookie-consent-col-text p {
    color: #000;
    font-size: 13px;
    line-height: 21px;
    margin: 0;
}

.cookie-consent-col-button {
    text-align: center;
}

.cookie-consent-button {
    background-color: transparent;
    border: 1px solid #6b6466;
    border-radius: 3px;
    color: #6b6466;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    line-height: 22px;
    margin: 5px 0;
    min-width: 100%;
    padding: 12px 15px;
    text-align: center;
    transition-duration: 300ms;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-button:hover {
    background-color: #6b6466;
    color: #fff;
}

.page-no-cookie {
    .cookie-consent {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .cookie-consent-button {
        margin: 5px;
        min-width: 260px;
    }
}

@media screen and (min-width: 992px) {
    .cookie-consent {
        padding: 40px 50px;
        width: 80%;
    }

    .cookie-consent-col-text {
        margin: 0 0 20px;
    }

    .cookie-consent-col-text p {
        font-size: 15px;
        line-height: 25px;
    }

    .cookie-consent-button {
        font-size: 15px;
        min-width: 240px;

    }
}
