﻿/* OREGON Theme.css */
/*body {
    background-color: white;
}*/

#banner {
    width: 100%;
}

.topLinks {
    color: white !important;
}

.topNavHeaderItem {
    color: white !important;
}

.topMenuItem {
    color: black;
}

nav, .menu, .submenu {
  /*background-color:#517d39;*/
  border-bottom: 1px solid #ffffff !important;
}

.subNavCurrentItem {
    color:white !important;
    background-color: #48603b;
}


/*h1 {
    background: #ffffff;
    color: black;
    line-height: 40px;
    font-weight:600;
}

button {
    background-color: #006dcc;
}*/

div.grid table thead th {
  background-color: #00578b;
}

#foot .stdDiv {
    /*background-color: #002c73;*/
    color:white;
}

#pageForm {
    background-color: transparent;
    border-width: 0;
}



/* New Theme Colors from Ben's mockups */
.container .row div[class^="col-"] {
  background-color: white ;
}

#foot { /* dark-blue, footer-background, modal-close-X-btn */
  color: #00578b;
}

.bg-dark { /* bootstrap navbar dark background color */
  /*background-color: transparent !important;*/
  /*Julie is adding a color here for legibility over the new stolen background image*/
  background-color: white !important;
  color: white;
}

.page-title {
  /*background-color: #78BE21 !important;*/
  /*Julie is adding a color here for Oregon green*/
  background-color: #00578b !important;
  color: #ffffff;
}

body { /* dark-gray */
  color: #606060;
}

a { /* light-blue hyperlinks */
  color: #2BA6CB;
}

  a.btn-outline-primary {
    /*border-color: #2F5387 !important;
  color: #2F5387 !important*/
    border-color: #39b54a !important;
    color: #39b54a !important
  } /* Need to define a custom hover color */


    a.btn-outline-primary:hover {
      color: #ffffff !important;
      /*background-color: #5d83b9 !important;*/
      background-color: #226c2c !important;
    }

.btn-primary:hover {
  background-color: #3278a2 !important;
  border-color: #3278a2 !important;
}

input, select, textarea { /* light-gray form field borders */
  border-color: #CCCCCC !important;
}

input, select, textarea { /* medium-gray => form-field-text */
  color: #808080 !important;
}

.btn-primary { /* medium-blue button-background */
    /*background-color: #2F5387 !important;
  border-color: #2F5387 !important;*/
    background-color: #00578b !important;
    border-color: #00578b !important;
    font-weight: 600 !important;
} /* Need to define a custom hover color */

.required, .warning { /* red invalid-msg-text error-msg-text */
  color: #FF0000 !important;
}

input[type="checkbox"] { /* dark-gray-minus checkmark */
  color: #666666 !important;
}

body {
  background-color: #00578b !important;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("../Images/orgov_bg.jpg");
  background-position-x: center;
}

label {
  width: 100% !important;
  display: block !important
}

/*a.nav-link {
  color: white !important;
  font-weight: 400;
}*/

.or-hr {
  border-color: #00578b !important;
}

.or-separator {
  position: relative;
  left: 46%;
  bottom: 1.8rem;
  background-color: white;
  display: inline;
  padding: 2px;
  color: #00578b !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.7);
}

  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 1);
  }

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.7);
}

.desktop-nav {
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    display: flex;
    margin-bottom: 1rem;
}

.desktop-nav-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.desktop-menu {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.orchards-logo {
    height: 5rem;
    width: auto;
}



.bg-light {
    background-color: #F0F0F0 !important;
}

.navbar-light {
    background-color: #F5F5F5 !important;
}


/* New Mobile Menu*/


.mobile-nav {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 1rem;
}

.nav-item {
    list-style-type: none;
    border-radius: .25rem;
    transition: all ease-in-out 200ms;
    color: #212121 !important;
}

    .nav-item:hover {
        background-color: rgba(0, 0, 0, .04)
    }

.navigation-items-container {
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-navigation-items {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 1rem;
    position: absolute;
    z-index: 999;
    right: 0;
    top: 3rem;
    border-radius: .25rem;
    box-shadow: .25rem .25rem 1rem rgba(0, 0, 0, 0.2);
}



.mobile-nav-container {
    position: relative;
}


@media screen and (max-width: 767px) {
    .mobile-nav {
        display: block;
    }

    .desktop-nav {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

