#natcon-cookie-consent {
    background-color: white;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
    box-sizing: border-box;
    left: 0;
    padding: 20px 25px;
    position: fixed;
    transform: translateY(100%);
    transition: transform ease 0.3s;
    width: 100vw;
    z-index: 9999;

    h6 {
        color: #ea5e29;
    }

    p {
        color: black;
    }

    &.open {
        transform: translateY(0);
    }

    h6 {
        margin-bottom: 10px;
    }

    button {
        background: #ea5e29;
        border: #ea5e29 solid thin;
        border-radius: 3px;
        color: white;
        cursor: pointer;
        margin-right: 0.5rem;
        transition: all linear 0.2s;

        &:hover {
            background-color: white;
            color: #ea5e29;
        }

        &#saveCustom, &.hidden {
            display: none;
        }

        &.show {
            display: inline-block !important;
        }
    }

    .natcon-custom-cookies {
        display: none;
        margin-bottom: 10px;

        &.display {
            display: flex;
        }

        label {
            font-weight: 400;
            margin-right: 10px;
        }
    }
}
