/*****************************************
Table Of Contents:

01. General Styles
02. Navigation
03. Media Queries
******************************************/


/******************************/
/*     01. General Styles     */
/******************************/
body {
    font-size: 12px;
    font-family: Arial, 'Lucida Grande', sans-serif;
    color: #444;
}

.section-title {
    font-size: 20px;
    width: -webkit-fill-available;
    text-align: center;
}

.main {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 45px;
}

.main .input-group {
    align-items: center;
}

.main .input-group label {
    align-items: center;
    margin: 0;
    padding: 0 .2rem;
    font-size: .8rem;
}

.main .input-group input.form-control, .main .input-group select.form-control {
    border-radius: .25rem !important;
    padding: .1rem .3rem !important;
    font-size: .8rem !important;
}

footer.navbar {
    border: 1px solid #ddd;
    background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
    background-repeat: repeat-x;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.wpx-110 {
    width: 110px;
}

.wpxx-110 {
    max-width: calc(100% - 110px);
}

.margin-auto {
    margin: auto;
}

input[type=button] {
    white-space: normal;
}

.icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #888;
}

input::-webkit-calendar-picker-indicator {
    display: none;
}

/**************************/
/*     02. Navigation     */
/**************************/
.navbar-custom {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
    background-repeat: repeat-x;
    box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
    font: 600 0.875rem/0.875rem "Open Sans", sans-serif;
    transition: all 0.2s;
}

.navbar-custom .navbar-brand {
    font-size: 0;
}

.navbar-custom .navbar-brand.logo-image img {
    width: 6rem;
    -webkit-backface-visibility: hidden;
}

.navbar-custom .navbar-brand.logo-text {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    font: 700 2.25rem/1.5rem "Montserrat", sans-serif;
    color: #fff;
    text-decoration: none;
}

.navbar-custom .navbar-nav {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.navbar-custom .nav-item {
    text-align: center;
}

.navbar-custom .nav-item .nav-link {
    padding: 0.625rem 0.75rem 0.625rem 0.75rem;
    color: #337ab7;
    text-decoration: none;
    transition: all 0.2s ease;
}

.navbar-custom .nav-item .nav-link.active {
    cursor: default;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
    color: #323b97;
}

/* Dropdown Menu */
.navbar-custom .dropdown:hover > .dropdown-menu {
    display: block; /* this makes the dropdown menu stay open while hovering it */
    min-width: auto;
    animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar-custom .dropdown-toggle:focus { /* removes dropdown outline on focus  */
    outline: 0;
}

.navbar-custom .dropdown-menu {
    margin-top: 0;
    border: none;
    border-radius: 0.25rem;
    min-width: 120px !important;
}

.navbar-custom .dropdown-item {
    color: black;
    text-decoration: none;
    text-align: center;
}

.navbar-custom .dropdown-item.active {
    background-color: white;
    color: #323b97;
}

.navbar-custom .dropdown-item:hover {
    background-color: #e9ecef;
}

.navbar-custom .dropdown-item .item-text {
    font: 600 0.875rem/0.875rem "Open Sans", sans-serif;
}

.navbar-custom .dropdown-item:hover .item-text {
    color: #323b97;
}

/* end of dropdown menu */

.navbar-custom .navbar-toggler {
    border: 1px solid #ddd;
}

.navbar-custom .navbar-toggler:hover {
    background-color: #eee;
}

/*****************************/
/*     03. Media Queries     */
/*****************************/
/* Min-width width 576px */
@media (min-width: 576px) {
    .navbar-custom .navbar-brand.logo-image img {
        width: 10rem;
    }
}

/* Min-width width 768px */
@media (min-width: 768px) {
    /* Navigation */
    .navbar-custom .navbar-brand.logo-image img {
        width: 12rem;
    }

    .navbar-custom .navbar-nav {
        margin-top: 0;
        margin-bottom: 0;
    }

    .navbar-custom .nav-item .nav-link {
        padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    }

    .navbar-custom .dropdown-menu {
        border-top: 0.75rem solid rgba(0, 0, 0, 0);
        border-radius: 0.25rem;
        box-shadow: 0 0.25rem 0.375rem 0 rgba(0, 0, 0, 0.03);
    }

    .navbar-custom .dropdown-item {
        padding-left: .5rem;
        padding-right: .5rem;
    }

    /* end of navigation */
}

/* end of min-width width 768px */

