body, html{

}

div[data-widget='sidebar-search'] input{
    background: #fff !important;
    color: gray !important;;
}
div[data-widget='sidebar-search'] .input-group-append button{
    background: #fff !important;
    color: gray !important;;
}
.sidebar-search-results .list-group-item{
    background: #fff !important;
    color: gray !important;;
}
.sidebar-search-results .list-group-item strong.text-light{
    color: #666 !important;
}



.popup{
    display: none;
    position: absolute;
    background: #fff;
}
.popup span.close{
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
}
.popup span.close:hover{
    font-weight: bold;
}
.popup div.inner{
    padding: 12px 12px;
}
.popup div.inner iframe{
    border: 0;
    margin: 0;
    padding: 0;
}
.popup div.inner h2{
    color: #00447e;
    font-size: 16px;
    margin: 0 0 20px 0;
}
.popup div.inner div.buttons{
    padding: 20px 0 0 0;
    text-align: center;
}


input[type=checkbox]#sandbox {
    visibility: hidden;
    position: absolute;
}
input[type=checkbox]#sandbox + label {
    clear: both;
    display: block;
    margin: 0 0 12px 0;
    position: relative;
    line-height: 28px;
    padding: 0 0 0 70px;
}
input[type=checkbox]#sandbox + label .unchecked {
    display: inline;
}
input[type=checkbox]#sandbox + label .checked {
    display: none;
}
input[type=checkbox]#sandbox + label:before {
    position: absolute;
    content: "";
    background: #a3a4a6;
    width: 58px;
    height: 28px;
    top: 0;
    left: 0;
    border-radius: 14px;
    transition: background 0.3s;
}
input[type=checkbox]#sandbox + label:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 13px;
    top: 2px;
    left: 2px;
    background: #eff3f6;
    border: 2px solid #fafeff;
    transition: background 0.3s, border-color 0.3s, left 0.3s;
}
input[type=checkbox]#sandbox:checked + label .unchecked {
    display: none;
}
input[type=checkbox]#sandbox:checked + label .checked {
    display: inline;
}
input[type=checkbox]#sandbox:checked + label:before {
    background: #00817f;
}
input[type=checkbox]#sandbox:checked + label:after {
    left: 32px;
    background: #eff3f6;
    border: 2px solid #eff3f6;
}