﻿html, body {
    height: 100%;
}

body {
    padding-top: 100px;
}

.navbar.sticky-top {
    position: fixed;
    width: 100%;
}

nav .navbar-brand .logo1 {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    display: inline-block;
}

nav .nav-titlebar {
    font-size: 2em;
}

nav .nav-items {
    font-size: 1.5em;
}

.navbar-dark .navbar-text, .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

footer {
    background-color: #878787;
    color: white;
}

.validation-summary-errors ul {
    margin-bottom: 0;
}

#feedbackForm {
    width: 800px;
}

.shadow-headers {
    position: fixed;
    top: 100px;
    display: none;
    background-color: rgb(250, 250, 250);
    overflow: auto;
    margin-left: -15px;
    padding-left: 15px;
    margin-right: -15px;
    padding-right: 15px;
    width: calc(100% - 25px);
}

    .shadow-headers > div {
        font-weight: bold;
        padding: 0.5rem;
        border-left: 1px solid rgb(222, 226, 230);
        border-right: 1px solid rgb(222, 226, 230);
        border-bottom: 2px solid rgb(222, 226, 230);
    }

        .shadow-headers > div:first-child {
            border-left: 0;
        }

        .shadow-headers > div:last-child {
            border-right: 0;
        }

.toasts {
    position: fixed;
    display: flex;
    justify-content: end;
    pointer-events: none;
    z-index: 6;
    padding-right: 60px;
}

@media (max-width: 991px) {
    nav .navbar-nav .divider {
        height: 1px;
        background-color: white;
    }
}

@media (min-width: 992px) {
    nav .navbar-nav .divider {
        width: 1px;
        background-color: white;
    }

    .navbar-text {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .spacer-top {
        margin-top: 128px;
    }
}

label {
    font-weight: bold;
}

.form-control .ng-invalid, .ng-invalid-step, .ng-invalid-number {
    border: 2px solid red !important;
}

input[type="number"].empty {
    border: 2px solid red;
}

thead, th {
    border-style: unset !important;
}

.hppTable {
    height: calc(100vh - 300px);
}

.stickyHead {
    position: sticky;
    top: -20px;
    background-color: rgb(250, 250, 250);
}

.m-left-5 {
    margin-left: 5px;
}



* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #379937;
}



.dropdown {
    position: relative;
    font-size: 14px;
    color: #333;
}

    .dropdown .dropdown-list {
        padding: 12px;
        background: #fff;
        position: absolute;
        top: 30px;
        left: 2px;
        right: 2px;
        box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
        transform-origin: 50% 0;
        transform: scale(1, 0);
        transition: transform 0.15s ease-in-out 0.15s;
        max-height: 66vh;
        overflow-y: scroll;
    }

    .dropdown .dropdown-option {
        display: block;
        padding: 1px 6px;
        opacity: 0;
        transition: opacity 0.15s ease-in-out;
    }

    .dropdown .dropdown-label {
        display: block;
        height: 30px;
        background: #fff;
        border: 1px solid #ccc;
        padding: 6px 6px;
        line-height: 1;
        cursor: pointer;
    }

    .dropdown.on .dropdown-list {
        transform: scale(1, 1);
        transition-delay: 0s;
    }

        .dropdown.on .dropdown-list .dropdown-option {
            opacity: 1;
            transition-delay: 0.2s;
        }

[type="checkbox"] {
    position: relative;
    top: 2px;
    margin-right: 4px;
}
