.consent {
    display: none;
    z-index: 999;
    z-index: 100000;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	background-color: #575555;
    
    color: white;
}

    .consent * {
        margin: 0;
    }


.consent--open {
    display:block;
}

.consent__content {
    max-width:1240px;
    padding: 20px;
    margin: 0 auto;
    display:flex;
    flex-wrap:wrap;
}

.consent__heading {
    width:100%;
	font-size: 2rem;
	margin-bottom: 1rem;
}

.consent__message {
    width: 100%;
    margin-bottom: 1em;
}
.consent__categories {
    width:0;
}

.consent--multiple .consent__categories, .consent--multiple .consent__message {
    width: 50%;
}

.consent--multiple .consent__message {
    padding-right: 1em;
}

.consent--multiple .consent__categories {
    padding-left: 1em;
    margin-bottom: 1em;
}


@media screen and (max-width: 639px) {
    .consent--multiple .consent__categories, .consent--multiple .consent__message {
        width: 100%;
        padding: 0;
    }
}


.consent__bottom {
    display: flex;
    flex-wrap:wrap;
    width:100%;
}

.consent__current, .consent__buttons {
    width: 50%;
}

@media screen and (max-width: 1024px) {
    .consent__current {
        margin-bottom:1em;
    }
    .consent__current, .consent__buttons {
        width: 100%;
    }
}


.consent__buttons {
    display: flex;
    justify-content: flex-end;
}

.consent__button {
    margin: 0 5px;
	background-color: #434343;
}

.consent__category {
    margin-bottom:1em;
}
.consent__category:last-child {
    margin-bottom:0;
}

.consent__category-header {
    display:flex;
}

.consent__category-check {
    margin-right:.5em;
    position:relative;
    top:1px;
}

.consent__category-heading {
    font-weight:bold;
}

.consent__long-description {
    display: none;
    padding:1em 0 1em 1em;
    border-left:2px solid black;
}
.consent__long-description--visible {
    display:block;
}


.consent__open-long-description {
    text-decoration: none;
    color: black;
    font-weight: bold;
    background: none;
    border: none;
    display: inline;
    padding: 0;
    line-height: 1;
    margin: 0;
    cursor: pointer;
}

.consent__open-long-description--hidden {
    display:none;
}

.consent__open-long-description-svg {
    stroke: black;
}

.consent__link {
	color: white;
	text-decoration: underline;
