﻿.cookie-consent {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 30px;
    width: 380px;
    max-width: calc(100% - 120px);
    box-shadow: 0px 0px 15px 3px rgb(0 0 0 / 25%);
    background-color: white;
    z-index: 100000;
}

    .cookie-consent input[type=checkbox] {
        -webkit-appearance: checkbox !important;
        margin-right: 10px;
    }

.cookie-consent__description {
    font-size: 0.9em;
}

    .cookie-consent__description a {
        color: #E95229;
        text-decoration: underline;
    }

.cookie-consent__options {
    display: none;
}

.cookie-consent__option {
    display: inline-block;
    line-height: 2.5em;
}

.cookie-consent__accept {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    cursor: pointer;
}

.cookie-consent .button-primary {
    background-color: #E95229;
    border: 1px solid #E95229;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px;
}

    .cookie-consent .button-primary:hover {
        color: #E95229;
        background-color: white;
        border: 1px solid #E95229;
    }

.cookie-consent .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: initial;
    font-size: 0.9em;
    padding: 10px;
    flex: 1;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid black;
    color: black;
    cursor: pointer;
}

.cookie-consent__buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent__decline {
}

.cookie-consent__options {
    margin-top: 10px;
}

.cookie-consent .button-secondary.cookie-consent__save {
    display: none;
}

@media screen and (max-width: 1023px) {
    .cookie-consent {
        left: 0;
        right: 0;
        bottom: 0;
        width: calc(100% - 60px);
        max-width: initial;
        border-radius: 0;
    }
}
