﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


:root {
    /*--dark-color: #222;*/
    --dark-color: #000;
    --dark-text-color: #343a40;
    --dark-color-transparent: rgba(0, 0, 0, 0.9);
    --light-color: #FFF;
    --light-background-color: #E5E9EC;
    --hover-transition: all 0.3s ease-in;
    --border-bottom-color: rgba(255,255,255,.3);
    --border-bottom-color-dark: rgba(0,0,0,.3);
    --border-bottom: 1px solid var(--border-bottom-color);
    --text-muted-color: #78787F;
    --navbar-height: 96px;
}

body {
    background-image: url("../jpg/hero.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

main {
}

a.navbar-brand, a.footer-brand, a .company-logo {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    opacity: 0.9;
}

    .navbar .fa-user-circle {
        font-size: 1.5rem;
        vertical-align: bottom; 
    }

    a.navbar-brand:hover, a.footer-brand:hover, a .company-logo:hover {
        opacity: 1;
    }

    a.navbar-brand img {
        height: 70px;
    }

    a.footer-brand img {
        height: 50px;
    }

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: var(--navbar-height);
}

.footer {
    margin-top: auto;
}

.navbar {
    background: transparent !important;
    transition: all 0.5s ease-in-out;
}

    .navbar.scroll {
        background: var(--dark-color-transparent) !important;
    }

    .navbar .nav-item {
        margin: 0 .9375em;
    }

    .navbar a.nav-link, .navbar button.btn.btn-link.nav-link {
        font-weight: 600;
        color: var(--light-color) !important;
    }

    .navbar.scroll a.nav-link {
    }

    .navbar a.nav-link:hover,
    .navbar a.nav-link.active,
    .nav-item.dropdown:hover a.nav-link,
    .nav-item.dropdown.show a.nav-link.dropdown-toggle,
    .navbar button.btn.btn-link.nav-link:hover,
    .navbar button.btn.btn-link.nav-link.active {
        border-bottom: var(--border-bottom);
    }

.dropdown-menu {
    border-radius: 0 !important;
    border: var(--border-bottom);
    background: var(--dark-color-transparent);
    margin: -1px 0 0 !important;
}

    .dropdown-menu .dropdown-item {
        color: var(--light-color);
    }
        .dropdown-menu .dropdown-item:hover {
            color: var(--dark-color);
        }

        hr {
            border-color: var(--border-bottom-color);
        }

    hr.dark {
        border-color: var(--border-bottom-color-dark);
    }

.text-dark {
    color: var(--dark-text-color) !important;
}

.text-muted, footer a, footer button {
    color: var(--text-muted-color) !important;
}

footer button {
    background: none !important;
    border: none;
    padding: 0 !important;
    font-family: arial, sans-serif;
    cursor: pointer;
}

footer button:hover {
    text-decoration: underline !important;
}

footer {
    background: var(--dark-color) !important;
}

    footer h5 {
        color: var(--light-color) !important;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

.cta {
    border-radius: 0;
    border-width: 3px;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.8rem 3rem;
    text-transform: uppercase;
}

.hero-container {
    position: relative;
}

    .hero-container h1 {
        color: var(--light-color);
        font-weight: 500 !important;
    }

.hero-separator {
    margin: 4rem auto;
    width: 30%;
}

.hero-container p.hero-subtitle {
    color: var(--light-color) !important;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 2;
}

.goto::before {
    display: block;
    content: " ";
    margin-top: calc(var(--navbar-height) * -1);
    height: var(--navbar-height);
    visibility: hidden;
    pointer-events: none;
}

/* Colored Containers */

.light-container {
    background: var(--light-color);
}

.dark-container {
    background: var(--dark-color);
}

.gray-container {
    background: var(--light-background-color);
}

    .light-container h3, .gray-container h3, .dark-container h3 {
        font-weight: 700;
    }

/* End Colored Containers */

small {
    color: var(--text-muted-color) !important;
}

input[type=radio], input[type=checkbox] {
    zoom: 1.5; 
}

.login-error-list {
    list-style-type: disclosure-closed;
}

/* Responsive Tables */
/*.k-grid table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}*/
/* End Responsive Tables */

.k-loading-image::after, .k-loading-image::before {
    border-width: 4px !important;
    font-size: 6em !important;
    color: var(--dark-color-transparent) !important;
}

.k-loading-mask {
    background: white !important;
    opacity: 0.8;
}

/* Media Queries */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .hero-separator {
        width: 50%;
    }
}

@media (max-width: 1200px) {
    .navbar-collapse.collapse.show {
        background: var(--dark-color-transparent) !important;
    }
}

@media (max-width: 768px) {
    .hero-separator {
        width: 50%;
    }
}
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu a::after {
        /*transform: rotate(-90deg);*/
        position: absolute;
        /*right: 6px;*/
        top: 0.95em;
    }

    .dropdown-submenu .dropdown-menu {
        top: 41px;
        left: 12%;
        margin-left: .1rem;
        margin-right: .1rem;
    }

.dropdown-item:focus {
    color: var(--dark-color);
}

li.btn-group a:first-child {
    padding: .25rem 1.5rem !important;
}

.r-90 {
    transform: rotate(90deg) !important;
}