/* Remove the navbar's default margin-bottom and rounded borders */

.navbar {
    margin-bottom: 0;
    border-radius: 0;
    min-height: 70px;
}

.admin .navbar{
    background-color: #217fc0 !important;
    border: 0 !important;

}
.admin .navbar *{
    color: white !important;
}

/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {
    height: 100%
}

/* Set gray background color and 100% height */
.sidenav {
    padding-top: 20px;
    background-color: #f1f1f1;
    height: 100%;
}

/* Set black background color, white text and some padding */
footer {
    background-color: #45494a;
    color: white;
    padding: 10px;
    font-size: 12px;
}

.admin footer{
    background-color: #217fc0 !important;
}

/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
    .sidenav {
        height: auto;
        padding: 15px;
    }

    .row.content {
        height: auto;
    }
}

@keyframes spinner {
    0% {
        filter: grayscale(0%);
       /* opacity: 1;*/
        transform: scale(1);
    }
    50% {
        filter: grayscale(100%);
        /*opacity: 0.5;*/
        transform: scale(0.7);
    }
    100% {
        filter: grayscale(0%);
        /*opacity: 1;*/
        transform: scale(1);
    }
}

img.spinner {
    animation: spinner 4s ease-in-out infinite;
}

/*
#logo {
    height: inherit;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.navbar-brand{
    padding: 0;
    height: 100px;
    width: auto;
}*/
.nav > li > a {
    padding: 25px 15px !important;
}

#logo{
    width: 44px;
    margin: -15px 0;
}

#form{
    padding-top: 2%;
    padding-bottom: 2%;
}

#form > select{
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.jqstooltip {
    box-sizing: content-box;
    width: auto !important;
    height: auto; !important;
}



.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.4s 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.3s 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;
}
.btn {
    border-radius: 0 !important;
}

#spliter-2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}

#spliter-2 table {
    flex: 0 0 calc(50% - 20px);
    margin: 10px;
    display: block;
}
#filter {
    margin-top: 10px;
}
footer a{
    color: #ddddff;
}

.my-up{
    margin-top: 10px;
}
.col > switch {
    display: inline-block !important;
    /*flex-wrap: wrap;*/
    /*width: 100%;*/
}
.inl {
    display: inline;
}
 ul {
     list-style-type: none;
 }

 /* :) */

html {
    height: 100%;
}


body{
    min-height: 100%;
    height: 100%;
}

.root {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.root > *{
    width: 100%;

}
.app-content {
    flex: 1;
}
.list-group-item {
    display: flex;
    }
.list-group-item > span{
    flex: 1;
    margin-right: 10px;
}

.list-group-item > .material-switch {
    top: 1.2ex;
    position: relative;
}