.switch_box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
     -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* Switch 1 Specific Styles Start */

.box_1{
    background: #eee;
}

input[type="checkbox"].switch_1{
    font-size: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 3.5em;
    height: 1.5em;
    background: #ddd;
    border-radius: 3em;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

input[type="checkbox"].switch_1:checked{
    background: #0ebeff;
}

input[type="checkbox"].switch_1:after{
    position: absolute;
    content: "";
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
    box-shadow: 0 0 .25em rgba(0,0,0,.3);
    -webkit-transform: scale(.7);
    transform: scale(.7);
    left: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

input[type="checkbox"].switch_1:checked:after{
    left: calc(100% - 1.5em);
}

/* Switch 1 Specific Style End */

/* Cookie Hinweis  */
#js-cookieConsentBar {
    position: fixed;
    overflow: hidden;
    bottom: 0;
    left: 0;
    right: 10px;
    width: 100%;
    z-index: 999999;
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
    line-height: 1.5em;
}


#js-cookieChoice {
    width: 100%;
    /* display: none; */
    background: rgba(65,65,66,0.9);

}


.note_cc_info {
background-color: red;
float: left;
padding: 10px;
border-bottom: 10px solid red;
    display: block;
    margin-bottom: 1em;
}

.note_cc_info a {
color: #fff;
text-decoration: underline;
}


#js-btnCookieOK {
background-color: green;
width: 100%;
}

#js-btnCookieNO {
    background-color: red;
    width: 100%;

}


.cc-btn {
    padding: 10px;
    color: white;
    border: 1px solid black;
}


#cookieMoreInfo {
    display:none;
}

#js-cookieSettings {

    display:none;
    background: rgba(90,15,26,0.9);
    position: fixed;
    overflow: hidden;
    bottom: 1rem;
    left: 0;
    right: 10px;
    width: 100%;
    z-index: 999999;
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
    line-height: 1.5em;
}
/* 29.12.2019 MM */
