﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.logo {
    background-color: rgb(3, 58, 22);
    position: fixed;
    top: 0;
    left: 0;
    width: 140px;
    height: 50px;
}

    .logo:hover svg #logo-letters {
        fill: #2196f3;
    }

    .logo svg #logo-letters {
        fill: #ccc;
        transition: fill .8s ease;
    }

    .logo:hover svg #Stroke-38 {
        stroke: #2196f3;
    }

    .logo svg #Stroke-38 {
        stroke: #ccc;
        transition: stroke .8s ease;
    }

@media (min-width: 768px) {
    .logo {
        width: 260px;
    }
}

.logo-large {
    display: none;
}

@media (min-width: 768px) {
    .logo-large {
        display: block;
    }
}

.logo-small {
    display: block;
}

@media (min-width: 768px) {
    .logo-small {
        display: none;
    }
}

.topbar {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    position: fixed;
    top: 0;
    left: 140px;
    right: 0;
    height: 50px;
}

    .topbar .logout-container {
        position: fixed;
        top: 10px;
        right: 10px;
        display: none;
    }

@media (min-width: 768px) {
    .topbar {
        left: 260px;
    }

        .topbar .logout-container {
            display: unset;
        }
}

.site-title {
    min-width: 350px;
    margin: 5px;
    color: #64604f;
}

.navbar-toggler {
    position: fixed;
    top: 5px;
    right: 5px;
    background-color: black;
}

.navbar-toggler:hover {
    background-color: #222;
}

@media (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 103, 39) 0%, #1a4706 70%);
    padding: 0;
    position: fixed;
    top: 50px;
    bottom: 0;
    width: 260px;
    overflow-y: auto !important;
    z-index: 999;
}

    .sidebar a {
        color: rgb(33, 150, 243);
    }

        .sidebar a.sidebar-button {
            color: white;
        }

@media (min-width: 768px) {
    .sidebar {
        display: block !important;
    }

        .sidebar .logout-container {
            display: none;
        }
}

.sidebar-button {
    color: white;
    width: 100%;
    border: none;
}

    .sidebar-button:hover,
    .sidebar-button:active,
    .sidebar-button:focus,
    .sidebar-button:active:focus {
        background-color: rgba(255, 255, 255, 0.12);
        color: white;
        border: none;
    }

.sidebar-panel,
.sidebar-panel .list-group-item {
    background-color: #222;
    border-color: #555;
}

.sidebar-footer {
    background-color: rgb(33, 33, 33);
    font-size: 10px;
    text-align: center;
    color: white;
    position: fixed;
    bottom: 0;
    width: 260px;
}

.container-content {
    padding: 20px;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .container-content {
        left: 260px;
    }
}