/* gdpr popup msg */

#cookie_gdpr {
    width:100%;
    display: none;
    text-align: center;
    margin:0; padding: 5px 0 0 0;
    background: #eee;
    color: #000;
    border: 1px solid  #eee;
}

#cookie_gdpr div .title {
    display: block;
    padding: 10px 0 0;
    font-size: 16px;
    font-weight: bold;
}

#cookie_gdpr div {
    line-height: 1;
    margin:10px 10px 20px;
}

#cookie_gdpr div a {
    display: inline-block;
    color: #00a5e3;
    font-size: 16px;
    padding: 10px;
    text-decoration: none;
}

/* checkbox colors */
.label-primary {
    background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #286090;
}
.label-success {
    background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #449d44;
}

/* checkbox switcher */

.material-switch > input[type="checkbox"] {
    display: none;
}

.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative;
    width: 40px;
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.2s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.2s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}

#cookieSavedStatusWrapper {
    height:45px;
}

.list-group {
    margin:0; padding: 0;
}