.tx_brandextcookie{
    font-size: 0.75em;
}

.tx_brandextcookie h3{
    font-size: 2em;
    line-height: 140%;

}
.tx_brandextcookie h3.small{
    font-size: 1.5em;
}

.tx_brandextcookie .textBefore{
    margin-bottom: 2em;
}

.tx_brandextcookie .textAfter{
    margin-top: 2em;
}

.tx_brandextcookie .cookietype{
    margin-top: 2em;
}

.tx_brandextcookie .onoffswitch {
    position: relative;
    width: 90px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.tx_brandextcookie .onoffswitch-checkbox {
    display: none;
}

.tx_brandextcookie .onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 50px;
}

.tx_brandextcookie .onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.tx_brandextcookie .onoffswitch-inner:before, .tx_brandextcookie .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 25px;
    padding: 0;
    line-height: 25px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.tx_brandextcookie .onoffswitch-inner:before {
    /*content: "JA";*/
    content: attr(data-yes);
    padding-left: 13px;
    background-color: #85B200;
    color: #FFFFFF;
}

.tx_brandextcookie .onoffswitch-inner:after {
    /* content: "NEIN";*/
    content: attr(data-no);
    padding-right: 13px;
    background-color: #B42557;
    color: #FFFFFF;
    text-align: right;
}

.tx_brandextcookie .onoffswitch-switch {
    display: block;
    width: 40px;
    margin: -7.5px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 61px;
    border: 2px solid #ccc;
    border-radius: 50px;
    transition: all 0.3s ease-in 0s;
}

.tx_brandextcookie .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.tx_brandextcookie .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0;
}
.tx_brandextcookie #cookie_yes, .tx_brandextcookie #cookie_no{
    display: none;
}
.tx_brandextcookie .cookielements{
    display: none;
}

.cookiepopup{
    max-height: 200px;
    background-color: rgb(75,75,75);
    height: auto;
    position: fixed;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 11px 15px;
    margin-bottom: 10px;
    bottom: 10px;
    z-index: 9997;
    left: 20px;
    width: 350px;
    color: #fff;
    animation-name: slideUp;
    -webkit-animation-name: slideUp;

    animation-duration: 1s;
    -webkit-animation-duration: 1s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    visibility: visible !important;


}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    50%{
        transform: translateY(8%);
    }
    65%{
        transform: translateY(-4%);
    }
    80%{
        transform: translateY(4%);
    }
    95%{
        transform: translateY(-2%);
    }
    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }
    50%{
        -webkit-transform: translateY(8%);
    }
    65%{
        -webkit-transform: translateY(-4%);
    }
    80%{
        -webkit-transform: translateY(4%);
    }
    95%{
        -webkit-transform: translateY(-2%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }
    50%{
        transform: translateY(-8%);
    }
    65%{
        transform: translateY(4%);
    }
    80%{
        transform: translateY(-4%);
    }
    95%{
        transform: translateY(2%);
    }
    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
    }
    50%{
        -webkit-transform: translateY(-8%);
    }
    65%{
        -webkit-transform: translateY(4%);
    }
    80%{
        -webkit-transform: translateY(-4%);
    }
    95%{
        -webkit-transform: translateY(2%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}


.cookiepopup .headline{
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    margin-top: 5px;
    width: 100%;
}
.cookiepopup .more{
    text-transform: uppercase;
    color: #fff;
    margin-top: 5px;
    display: block;
}
.cookiepopup .svgicon{
   float: left;
    margin-top: 4.5px;
    margin-right: 20px;
}
.cookiepopup .popupcontent{
    float: left;
    width: 75%;
}
.cookiepopup .popupcontent:after{
    clear: both;
}
.cookiepopup svg.close_notification{
    position: absolute;
    right: 8px;
    top: 8px;
    cursor: pointer;
}
.hideElement{
    display: none!important;
}
.hideElementAnimation{
    visibility: hidden;
    opacity: 0;

    transition: visibility 0s linear 0.33s, opacity 0.33s linear;
}

.showElement{
    display: block!important;
}
.switchtext .activated, .switchtext .deactivated{
    display: none;
}