/* checkboxes as switches - see https://proto.io/freebies/onoff/ */
/*
.onoffswitch {
    position: relative;
    width: 70px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: inline-block;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 24px;
    padding: 0;
    line-height: 20px;
    border: 2px solid #E3E3E3;
    border-radius: 20px;
    background-color: #E3E3E3;
    transition: background-color 0.3s ease-in;
}

.onoffswitch-label:before {
    content: "";
    display: block;
    width: 20px;
    margin: 0px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 48px;
    border: 2px solid #E3E3E3;
    border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #49E845;
}

.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
    border-color: #49E845;
}

.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0px;
}
*/
.onoffswitch {
    position: relative;
    width: 70px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: inline-block;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #E3E3E3;
    border-radius: 24px;
}

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

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

.onoffswitch-inner:before {
    content: "yes";
    padding-left: 10px;
    background-color: #40ED3D;
    color: #666666;
}

.onoffswitch-inner:after {
    content: "no";
    padding-right: 10px;
    background-color: #FFFFFF;
    color: #666666;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    width: 25px;
    margin: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 44px;
    border: 1px solid #E3E3E3;
    border-radius: 24px;
    transition: all 0.3s ease-in 0s;
}

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

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}
.sec-confirm {
    background: #f00;
    color: #fff;
}

.mod_yds_cookiebar {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    display: none;
    background-color: rgba(0, 0, 0, 0.25);
    hyphens: auto;
}

.mod_yds_cookiebar.open {
    display: block;
}

.mod_yds_cookiebar .inner {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
    background: rgb(248, 248, 248);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    max-height: 100vh;
    overflow: scroll;
}

.mod_cookiebar_optin .cookiebar_content {
    padding: 25px;
    background: rgb(248, 248, 248);
}

.mod_yds_cookiebar p,
.mod_yds_cookiebar h1,
.mod_yds_cookiebar h2,
.mod_yds_cookiebar h3,
.mod_yds_cookiebar h4,
.mod_yds_cookiebar h5,
.mod_yds_cookiebar h6 {
    padding: 0 1rem;
}

.mod_yds_cookiebar .palette .item {
    background: rgb(255, 255, 255);
    padding: 10px;
    margin-bottom: 3px;
    transition: All 0.2s ease;
    -webkit-transition: All 0.2s ease;
    float: none;
    clear: both;
    overflow: hidden;
}

.mod_yds_cookiebar form .widget-radio input {
    margin: 7px 0 0 0;
    float: left;
    width: 8% !important;
}

.mod_yds_cookiebar form .widget-label {
    float: left;
    width: 80%;
    cursor: pointer;
}

.mod_yds_cookiebar .palette .cookie_option_info {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    margin-bottom: 0;
    cursor: pointer;
}

.mod_yds_cookiebar .submit,
.main-content .mod_yds_cookiebar input[type="submit"] {
    width: 100%;
}

.mod_yds_cookiebar table {
    font-size: 0.8rem;
}

.mod_yds_cookiebar table th:first-child, .mod_yds_cookiebar table td:first-child {
    width: 40%;
}

.mod_yds_cookiebar table tbody.hidden {
    display: none;
}

.dsgvo-more-link {
    float: right;
}

.dsgvo-more-link::before {
    content: '↓';

}

.dsgvo-more-link.active::before {
    content: '↑';

}

a.dsgvo-more-link {
    outline: none;
}


