#Cookiebar a {
    text-decoration: underline;
}    

.cookiebar--container{
    position: fixed;
    left: 0;
    right: 0;
    -webkit-transition: bottom 0.5s ease;
    -moz-transition: bottom 0.5s ease;
    transition: bottom 0.5s ease;
    background: #FFF;
    padding: 10px;
    overflow: hidden;
    font-size: 92%;
    box-shadow: 0 0 15px rgba(0,0,0,.5);
    z-index:99999;
}

.cookiebar--container-hidden{
    bottom: -400px;
}

.cookiebar--container-visible{
    bottom: 0;
}

.cookiebar--content{ 
    line-height: 110%;
    width: 100%;
    margin-bottom: 10px;
}

.cookiebar--content p{
	width: 100%;
    padding: 0 !important;
    margin: 0;
    line-height: 110%;
}
.cookiebar--container .impressum-link{	
	margin-right: .5em;
	line-height: 2em;
    padding-top: .4em;
    display: inline-block;
}
.cookiebar--container .dpp-link{
	line-height: 2em;
    padding-top: .4em;
    display: inline-block;
}
.cookiebar--label{
    clear: both;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cookiebar--label span{
	font-size: 11px;
	color: #51626f;
}

.cookiebar--row-container{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.cookiebar--checkbox{
	margin-left: 0;
    cursor: pointer;
}
.cookiebar--buttons{
    display: flex;
    column-gap: 10px;
    row-gap: 5px;
    flex-wrap: wrap;
}

.cookiebar-button{
	font-size: 13.3333px !important;   
    color: #FFF;
    border: 0;
    padding: 5px 8px;
    cursor: pointer;
}
.cookiebar-button.accept{
    background: #e70f46;
}

.cookiebar-button.reject{
    background: #51626f;
}