#cookieNotice .btn-primary:hover {
    background-color: #FFF !important;
    color: #000;
}
.checkbox-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 24px;
}
.checkbox-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.checkbox-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

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

input:checked + .checkbox-slider {
    background-color: #2196F3;
}
input:checked:disabled + .checkbox-slider {
    background-color: #5e6265;
}
input:focus + .checkbox-slider {
    box-shadow: 0 0 1px #2196F3;
}

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

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

.checkbox-slider:before {
    border-radius: 50%;
}
.btn-margin-top{
    margin-top: 1em;
}
#cookieNotice p {
    margin: 0px;
    padding: 0px;
}
#cookieNotice label.title{
    color:#FFFFFF;
    height: 24px;
    margin: 5px 15px 5px 0px;
    font-weight: bold;
    width: 50%;
}
#cookieNotice .btn-save{
    float: right;
}
#cookieNotice .btn-save,#cookieNotice .btn-settings{
    background-color: green;
}
#cookieNotice .setting-hide{
    display: none;
}
