
.videocontainer .optInOver , .videocontainer .optInOver a,
.videocontainer .optInOver a:hover, .videocontainer .optInOver a:visited{
    color: white;
}

.optin-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.optin-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    border-radius: 45px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cccccc;
    -webkit-transition: .4s;
    transition: .4s;
}

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

.optin-list input:checked + .toggle-slider {
    background-color: #4CAF50;
}

.optin-list input:focus + .toggle-slider {
    box-shadow: 0 0 1px #4CAF50;
}


.optin-list .disabled input:checked + .toggle-slider {
    background-color: #89bd8b;
}

.optin-list .disabled input:focus + .toggle-slider {
    box-shadow: 0 0 1px #89bd8b;
}

.optin-list input:checked + .toggle-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

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

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


.optin-list-item {
    display: grid;
    grid-template-columns: 3fr 1fr; /* fraction*/
}


.optin-list ul {
    list-style-type: none;
}

.optin-list ul ul{
    margin-left:2em;
}
