﻿/* 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. */

/*===== Header =========================================*/
header {
    z-index: 10000;
    margin-bottom: 30px;
    box-shadow: 0 30px 36px -18px rgba(211,211,211,1);
    -webkit-box-shadow: 0 30px 36px -18px rgba(211,211,211,1);
    -moz-box-shadow: 0 30px 36px -18px rgba(211,211,211,1);
}

.header-primary {
    position: relative;
    height: 55px;
}

.header-primary-content {
    position: relative;
    padding: 8px 10px 20px 70px;
}

.header-title {
    font-size: 16px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    padding-top: 5px;
    text-transform: uppercase;
}

.header-subTitle {
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
}

.site-logo-left {
    position: absolute;
    left: 15px;
    top: 5px;
    width: 40px;
}

    .site-logo-left img {
        width: 40px;
    }

.site-title-right {
    padding-right: 60px;
}

.site-logo-right {
    position: absolute;
    right: 46px;
    top: 8px;
    width: 40px;
}

.site-logo-right img {
    width: 30px;
}

/*===== Navigation ======================================*/
.navbar-collapse {
    padding-left: unset;
    padding-right: unset;
}

.header-menu-btn {
    padding: 3px 0 0 0;
}

.header-nav {
    padding: 0;
    list-style: none;
}

    .header-nav li {
        display: inline;
    }

        .header-nav li a {
            font-size: 14px;
            padding: 15px 10px 14px 10px;
            text-transform: uppercase;
            display: block;
        }

            .header-nav li a:hover {
                background-color: unset;
                text-decoration: none;
            }

.menu-mobile {
    height: 0;
    width: 100%;
    position: absolute;
    z-index: 1000;
    overflow: hidden; /* Disable scroll */
    transition: 0.25s; /* 0.5 second transition effect to slide in the sidenav */
}

/*===== Media Queries ======================================*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .header-primary {
        height: 110px;
    }

    .header-primary-content {
        padding: 20px 135px 20px 162px;
    }

    .header-title {
        font-size: 24px;
        padding-top: 24px;
    }

    .header-subTitle {
        font-size: 18px;
    }

    .header-secondary {
        height: 50px;
    }

    .header-secondary-content {
        padding: 0 16px 0 112px;
        display: flex;
        justify-content:space-between;
        align-items: center;
    }

    .site-logo-left {
        left: 15px;
        top: 25px;
        width: 117px;
    }

        .site-logo-left img {
            width: 117px;
        }

    .site-title-right {
        padding-right: 0;
    }

    .site-logo-right {
        right: 15px;
        top: 25px;
        width: 90px;
    }

        .site-logo-right img {
            width: 90px;
        }


    .header-nav {
        display: inline-block;
        padding: 0 0 0 40px;
    }

    .header-nav li {
        display: inline-block;
    }

        .header-nav li a:hover {
            text-decoration: none;
        }

    .login-nav {
        /*float: right;*/
    }

    .navbar-right {
        margin-right: unset;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}