/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

.sidebar {
    display: flex;
    flex-direction: column;
    background: #157cce;
    color: rgba(255, 255, 255, 0.85);
}

    .sidebar a {
        color: rgba(255, 255, 255, 0.85);
    }

    .sidebar svg {
        width: 20px;
        height: 20px;
        color: rgba(255, 255, 255, 0.85);
    }

        .sidebar svg:hover {
            color: white;
        }

    .sidebar .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        padding: 10px;
    }

        .sidebar .header h5 {
            font-size: 14px;
            font-weight: 500;
            margin: 0;
            text-transform: uppercase;
        }

        .sidebar .header i {
            color: white;
            font-size: 14px;
        }

    .sidebar ul {
        overflow-y: auto;
    }

        .sidebar ul li {
            margin-bottom: 2px;
        }

            .sidebar ul li a {
                display: block;
                padding: 2px 10px;
                font-size: 14px;
                text-decoration: none;
            }

                .sidebar ul li a.active, .sidebar ul li a:hover {
                    background: rgba(255, 255, 255, 0.25);
                }

                .sidebar ul li a:before {
                    content: "#";
                    margin-right: 2px;
                }

    .sidebar .profile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background: rgba(0, 0, 0, 0.1);
        margin-top: auto;
    }

        .sidebar .profile a {
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        .sidebar .profile .btn-sign-out {
            background: none;
            border: none;
            display: flex;
        }

.main-content {
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    /*overflow: hidden;*/
}

    .main-content svg {
        width: 20px;
        height: 20px;
    }

        .main-content svg:hover {
            color: #555;
        }

    .main-content .header {
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

        .main-content .header h5 {
            margin: 0;
            font-size: 18px;
        }

            .main-content .header h5:before {
                content: "#";
            }

    .main-content .messages-container {
        overflow-y: auto;
        flex-grow: 1;
        padding: 10px;
    }

    .main-content .no-messages-info {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%);
    }

.message-item {
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
}

    .message-item .message-content {
        font-size: 16px;
        background: #f7f8fa;
        padding: 7px 10px;
        border-radius: 10px;
        max-width: 60%;
    }

        .message-item .message-content .author {
            font-size: 14px;
            font-weight: 500;
            margin-right: 10px;
            white-space: nowrap;
        }

        .message-item .message-content .timestamp {
            font-size: 13px;
        }

        .message-item .message-content .content {
            margin-top: 2px;
            line-height: 1.4;
            color: #333;
        }

            .message-item .message-content .content img {
                max-width: 270px;
                max-height: 270px;
                object-fit: contain;
            }

            .message-item .message-content .content .post-image {
                width: 100%;
                border-radius: 2px;
            }

    .message-item .actions svg {
        width: 16px !important;
        height: 16px !important;
    }

.ismine {
    flex-direction: row-reverse;
}

    .ismine .message-content {
        background: #8abde6;
        color: white;
    }

        .ismine .message-content .content {
            color: white;
        }

    .ismine .message-info {
        flex-direction: row-reverse;
    }

        .ismine .message-info .author {
            margin-right: 0;
            margin-left: 10px;
        }

.message-input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    margin: 20px;
    padding: 5px;
    border-radius: 10px;
    position: relative;
}

    .message-input-container input {
        width: 100%;
        border: none;
        background: inherit;
        outline: 0;
        padding: 10px 20px;
    }

        .message-input-container input[type=file] {
            display: none;
        }

    .message-input-container .actions {
        padding: 0 10px;
    }

        .message-input-container .actions svg {
            color: #aaa;
            cursor: pointer;
        }

            .message-input-container .actions svg:hover {
                color: #555;
            }

        .message-input-container .actions #btn-show-emojis {
            margin: 0 10px;
        }

    .message-input-container .emojis-container {
        max-width: 170px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 10px;
        position: absolute;
        right: 54px;
        bottom: 45px;
        padding: 5px 7px;
        cursor: default;
    }

        .message-input-container .emojis-container button {
            display: inline-flex;
            padding: 5px;
            border-radius: 4px;
            border: none;
            background: white;
        }

            .message-input-container .emojis-container button:hover {
                background: #ddd;
            }

            .message-input-container .emojis-container button img {
                width: 16px;
                height: 16px;
            }

.users-container {
    display: flex;
    flex-direction: column;
}

    .users-container .header {
        height: 50px;
        min-height: 50px;
        display: flex;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

        .users-container .header h5 {
            margin: 0;
            font-size: 18px;
        }

#users-list {
    overflow-y: auto;
}

    #users-list li {
        padding: 7px 10px;
    }

        #users-list li:hover {
            background: #f2f2f2;
            cursor: pointer;
        }

    #users-list .user {
        display: flex;
        align-items: center;
    }

        #users-list .user .user-info {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            overflow: hidden;
        }

            #users-list .user .user-info span {
                display: block;
                font-size: 14px;
                line-height: 1.35;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

.search-container {
    margin: 20px 10px;
    margin-bottom: 30px;
}

    .search-container input {
        width: 100%;
        background: #f5f5f5;
        font-size: 14px;
        text-indent: 25px;
        padding: 7px 10px;
        border: none;
        border-radius: 5px;
        outline: none;
    }

    .search-container svg {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

.auth-container {
    background: #f5f5f5;
    padding: 20px;
}

    .auth-container h1 {
        font-size: 2rem;
    }

    .auth-container input[type=radio] {
        display: none;
    }

        .auth-container input[type=radio] + img {
            border-radius: 50%;
            border: 2px solid transparent;
            padding: 1px;
            cursor: pointer;
        }

        .auth-container input[type=radio]:checked + img {
            border-radius: 50%;
            border: 2px solid #5dca38;
            padding: 1px;
        }

.account-manage-page {
    width: 100%;
    flex-grow: 1;
    max-width: 1200px;
    margin-top: 10px;
}

    .account-manage-page .form-floating {
        margin: 0.5rem 0;
    }

    .account-manage-page button[type=submit] {
        margin: 0.5rem 0;
    }

.profile-avatar {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: auto;
}

.validation-summary-errors ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.field-validation-error {
    font-size: 0.875rem;
}

.fs-14 {
    font-size: 14px;
}

.fw-500 {
    font-weight: 500;
}

a {
    text-decoration: none;
}

.alert-dismissible {
    position: fixed;
    width: 500px;
    right: 25px;
    top: 25px;
    z-index: 9999;
}

.form-label {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
    font-weight: 500;
    color: #323E4A;
}

.form-control,
.form-select {
    color: #323E4A;
    border-color: #dfe5e6;
    border-radius: 0.25rem;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    border-color: #dfe5e6;
    margin-right: 8px;
}

form .btn {
    font-size: 0.875rem;
}

.card {
    margin-bottom: 25px;
    border-radius: 4px;
    background: white;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 30px 25px;
}

.modal-header {
    padding: 0.5rem 1rem;
    border-bottom: none;
}

    .modal-header .btn-close {
        background-size: 0.75rem;
        margin-right: -0.375rem;
    }

.modal-body {
    padding: 0.75rem 1rem;
}

.modal-footer {
    padding-top: 0.5rem;
    border-top: none;
}

.dropdown-menu {
    border: 1px solid #dfdfdf;
}

.dropdown-divider {
    border-top: 1px solid #dfdfdf;
}

.avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    object-fit: cover;
    width: 32px;
    height: 32px;
    background: #549d54;
    color: white;
}

.avatar-lg {
    width: 40px;
    height: 40px;
}

.avatar-xl {
    width: 96px;
    height: 96px;
    font-size: 20px;
}

body {
    background: white;
}

.app {
    display: flex;
    height: 100vh;
    justify-content: space-between;
    background: white;
}

    .app .sidebar {
        width: 200px;
        min-width: 120px;
    }

    .app .main-content {
        flex-grow: 1;
    }

    .app .users-container {
        width: 200px;
        min-width: 137px;
    }

/*# sourceMappingURL=site.css.map */
/* Vehicle table styles
-------------------------------------------------- */
.CodesTable table {
    width: 100%
}

.CodesTable thead {
    width: calc(100%-1em);
}

.CodesTable tbody {
    display: block;
    height: 232px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .CodesTable thead, .CodesTable tbody tr {
        display: table;
        width: 97%;
        table-layout: fixed;
    }

.CodesTable thead, .CodesTable tbody, .CodesTable td {
    border: none !important;
}

.QuantityNeeded {
    background-image: none;
}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: 'Select some files';
    display: inline-block;
    background: linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}

.custom-file-input:hover::before {
    border-color: black;
}

.custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}