﻿html, main, body {
    background-color: #1e1e1e !important;
    color: white !important;
    z-index: 0;
    font-family: "Roboto", sans-serif !important;
}

h1, h2, h3, h4, h5, p, label {
    color: white !important;
}

.loginLogoutNav {
    display: none;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    margin-top: -4px;
    margin-right: 10px;
}

.navbar-title {
    font-size: 1.3rem !important;
    margin-top: -6px;
}

td {
    vertical-align: middle !important;
}

.modal-content {
    width: 550px;
    border-radius: 15px;
}

.lt1000 {
    display: table-cell;
}

.appName {
    color: mediumslateblue;
}

.binav {
    font-size: 1.4rem;
    margin-top: -24px;
}

.sidebar-custom {
    background-image: linear-gradient(180deg, #2a2a2a 0%, #2a2a2a 70%) !important;
}

.titlecontainer {
    background-color: #111 !important;
}

main .content {
    background-color: #1e1e1e;
    padding: 1rem !important;
}

.top-row-custom {
    background-color: #111 !important;
    border-bottom: 0px solid #1e1e1e !important;
}

.table, th {
    background-color: #1e1e1e;
    color: white !important;
}

.spinner {
    font-size: 50%;
    width: 5vw;
    height: 5vw;
    margin-top: 30vh;
}


@media screen and (max-width: 1000px) {
    .chart {
        width: 70%;
    }

    .lt1000 {
        display: none;
    }
}

@media screen and (max-width: 641px) {
    .small-display-hide {
        display: none !important;
    }

    .loginLogoutNav {
        display: inherit;
        margin: 10px 30% 25px 30%;
    }

    .sidebar-custom {
        position: sticky !important;
        top: 0;
        z-index: 1;
        box-shadow: 0 0 15px 0px #111;
    }

    .titlecontainer {
        box-shadow: 0 0 15px 0px #111;
    }

    .spinner {
        font-size: 50%;
        width: 20vw;
        height: 20vw;
        margin-top: 30vh;
    }








/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }