.hiddencookie { display: none; }
 
 
.boxcokkie * {
    box-sizing: border-box;
}
 
.boxcokkie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
 
.boxcokkie > .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: black;
    opacity: .85;
}
 
.boxcokkie > .content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
}
 
.boxcokkie > .content p,
.boxcokkie > .content a.close,
.boxcokkie > .content a.manage {
    font-size: 0.75em;
    line-height: 1.5em;
    color: white;
}
 
.boxcokkie > .content a.close,
.boxcokkie > .content a.manage {
    display: block;
    float: right;
    padding: 8px 10px;
    margin: 0 0 0 1em;
    border: 1px solid white;
    text-decoration: none;
}
 
.boxcokkie > .content a.close:hover,
.boxcokkie > .content a.manage:hover {
    background-color: white;
    color: black;
}

.wrapperBoxCokkie .boxcokkie>.content a.manage {
    display: block;
    float: right;
    padding: 8px 10px;
    margin-top: 4px;
    border: 1px solid white;
    font-family: 'vagRundschriftD-WebFont',Arial,sans-serif,serif;
    text-rendering: optimizeLegibility;
    line-height: normal;
    font-size: 1.2em;
}


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 25px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}