﻿/* MSCC Theme.css */

#banner {
  width: 100%;
}

.topLinks {
  color: white !important;
}

.topNavHeaderItem {
  color: white !important;
}

.topMenuItem {
  color: black;
}

/*nav, .menu, .submenu {
  border-bottom: 1px solid #ffffff !important;
}*/

.subNavCurrentItem {
  color: white !important;
  background-color: #48603b; /*Olive Green*/
}

div.grid table thead th {
  background-color: #4b3185; /*Dark Purple*/
  color: white !important;
}

table tr:nth-of-type(even) {
  background-color: #F0F0F0;
}

#foot .stdDiv {
  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; /*Dark Purple*/
}

.bg-dark { /* bootstrap navbar dark background color */
  background-color: #183052; /*Dark Blue*/
  color: white;
}

.page-title {
  background-color: #4b3185 !important; /*Dark Purple*/
  color: white;
}

input, select, textarea { /* light-gray form field borders */
  border-color: #CCCCCC !important;
}

input, select, textarea { /* medium-gray => form-field-text */
  color: #808080 !important;
}

.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: #C0B4DA !important; /*Lite Purple*/
  background-repeat: no-repeat;
  background-size: auto;
  background-position-x: center;
}

label {
  width: 100% !important;
  display: block !important
}

.or-hr {
  border-color: #00578b !important; /*Dark Purple*/
}

.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: #0F6699; /*Lighter Blue*/
}

  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: #0F6699; /*Lighter Blue*/
    text-decoration: underline;
  }

  .navbar-dark .navbar-nav .nav-link.disabled {
    color: #0F6699; /*Lighter Blue*/
  }

.navbar-dark .navbar-text {
  color: #0F6699; /*Lighter Blue*/
}

.mscc-header {
  background-color: #F0F0F0 !important; /*Gray*/
}

.btn-primary {
  background-color: #4b3185; /*Dark Purple*/
  color: white;
  font-weight: bold;
}

  .btn-primary:hover:not(:disabled) {
    background-color: #7a4cd9; /*Purple*/
    border-color: #014e78;
    color: white;
  }

  .btn-primary:disabled:hover {
    color: #fff;
    background-color: #2F5387; /*Gray Blue*/
    border-color: #2F5387; /*Gray Blue*/
  }

body > div.container {
  margin-bottom: 40px;
}

footer > div {
  background-color: #014e78; /*Dark Purple*/
  color: #fff;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
}

footer a {
  color: #fff;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
  text-decoration: underline;
}

  footer a:hover {
    color: #fff;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
    text-decoration: underline;
    cursor: pointer;
  }


.desktop-nav {
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    display: flex;
}

.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;
}


.msdh-mobile-logo {
    height: 4rem;
    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;
}

.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;
    }
}

