﻿/* UTDHS 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;
}


div.grid table thead th {
  background-color: #5ABCB0; /* Teal - lite */
}

#foot .stdDiv {
    color:white;
}

#pageForm {
    background-color: transparent;
    border-width: 0;
}



/* New Theme Colors from UTDHHS team */
.container .row div[class^="col-"] {
  background-color: white;
}

#main {
  border: solid 1px #490F52;
  padding: 0 15px 0 15px;
}

#foot { /* purple, footer-background, modal-close-X-btn */
  color: #490F52;
}

.bg-dark { /* bootstrap navbar dark background color */
  background-color: white !important;
  color: white;
}

.page-title {
  background-color: #490F52 !important; /* Purple */
  color: #ffffff;
}

body { 
    background-color: white !important;
}

a { /* purple hyperlinks */
  color: #490F52;
}
  a:hover { /* dark purple hyperlink hover */
    color: #220726;
    text-decoration: underline;
  }

  a.btn-outline-primary { /* Teal */
    border-color: #23A595 !important;
    color: #23A595 !important
  }


    a.btn-outline-primary:hover {
      color: #ffffff !important;
      background-color: #12524A !important; /* Dark Teal */
    }

.btn-primary { /* Teal */
    background-color: #23A595 !important;
    border-color: #23A595 !important;
    font-weight: 600 !important;
}
  .btn-primary:hover {
    background-color: #12524A !important;
    border-color: #12524A !important; /* Dark Teal */
  }

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;
}


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;
}


.ut-logo {
    height: 5rem;
    width: auto;
}


.bg-light {
    background-color: #ffffff !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;
    }

    .ut-logo {
        height: 3rem;
    }

    .navbar-light {
        background-color: #ffffff !important;
    }
}

@media screen and (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

