/*******************
Globals
*******************/
html, body {
  height: 100%;
}

*, h1, h2, h3, h4, h5, h6, span, p, a {
  font-family: 'ArialMT', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, span, a, th, td {
  color: black;
}

[type=color],[type=date],[type=datetime-local],[type=datetime],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],textarea {
  color: black;
}

/*
  This is a hack we're using to ensure
  the footer is ~near~ the bottom of the
  window even when the content of the
  page is too short to fill the window.
*/
.main-content {
  min-height: 40%;
}

/*******************
Colors
*******************/
.black {
  color: #000000;
}

.black-border {
  border-color: #000000;
}

.black-background {
  background-color: #000000;
}

.bright-blue {
  color: #007BC3;
}

.bright-blue-border {
  border-color: #007BC3;
}

.bright-blue-background {
  background-color: #007BC3;
}

.dark-grey {
  color: #30373b;
}

.dark-grey-border {
  border-color: #30373b;
}

.dark-grey-background {
  background-color: #30373b;
}

.dark-teal {
  color: #153547;
}

.dark-teal-border {
  border-color: #153547;
}

.dark-teal-background {
  background-color: #153547;
}

.light-grey {
  color: #A5BDCF;
}

.light-grey-border {
  border-color: #A5BDCF;
}

.light-grey-background {
  background-color: #A5BDCF;
}

.grey {
  color: #CACACA;
}

.grey-border {
  border-color: #CACACA;
}

.grey-background {
  background-color: #CACACA;
}

.grey-blue {
  color: #386990;
}

.grey-blue-border {
  border-color: #386990;
}

.grey-blue-background {
  background-color: #386990;
}

.light-grey-blue {
  color: #A5BDCF;
}

.light-grey-blue-border {
  border-color: #A5BDCF;
}

.light-grey-blue-background {
  background-color: #A5BDCF;
}

.powder-blue {
  color: #CDDBE5;
}

.powder-blue-border {
  border-color: #CDDBE5;
}

.powder-blue-background {
  background-color: #CDDBE5;
}

.white {
  color: #FFFFFF;
}

.white-border {
  border-color: #FFFFFF;
}

.white-background {
  background-color: #FFFFFF;
}

/*
  Font Sizes
 */

.small-p {
  font-size: 0.85em;
}

p, .p, label {
  font-size: 1rem;
}

h3 {
  font-size: 2.1em;
}

@media print, screen and (max-width: 39.9375em) {
 .small-p {
   font-size: 0.8em;
 }

 p {
   font-size: 0.8rem;
 }

 h3 {
   font-size: 1.68em;
 }
}

/*
  Uncharacterized because we haven't
  categorized carefully enough
 */
.category-header {
  padding-right: 0rem;
}

.title-header {
  padding-left: 0rem;
}

.title-header h4 {
  padding-top: 0rem;
}

.category-header h4 {
  padding-top: 0rem;
}

.title-header-padding {
  padding-left: 1rem;
}

.nav-separator {
  border-bottom: rgb(224, 224, 224) solid 0.063em;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-top: 0rem;
  margin-bottom: 0rem;
  font-size: 1em;
}

#listing-page-nav {
  padding-top: 2.7rem;
  padding-bottom: 0.5rem;
}

#trial-nav {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

#first-nav-toggle {
  margin-top: 0.5rem;
}

.back-arrow {
  height: 1rem;
  width: 1rem;
}

.title-case {
  text-transform: capitalize;
}

.section-header {
  border-bottom: #007BC3 solid 2px;
  padding-bottom: 0.5em;
  padding-top: 1em;
}

.page-header:after {
  width: calc(100% - 1.875rem);
  margin-left: .9375rem;
  margin-right: .9375rem;
  border-bottom: #007BC3 solid 2px;
}

.page-header-spacing {
  padding-bottom: 0.5em;
  padding-top: 1em;
}

.document pre {
  font-family: inherit;
}

.columns {
  height: 100%;
}

.circular-object {
  height: 9em;
  width: 9em;
  border-radius: 50%;
  border-width: 1.5px;
  border-style: solid;
  margin-bottom: 2em;
}

/* ellipsis-expanding-text */
.ellipsis-expanding-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ellipsis-expanding-text:hover {
  overflow: visible;
  white-space: normal;
}

/* spinner */
.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #7899B4; /* Blue */
    border-radius: 50%;
    width: 6em;
    height: 6em;
    animation: spin 2s linear infinite;
    display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sticky-footer {
  width: 100%;
  bottom: 0;
}


/********************
Others
*********************/

.top {
  margin-bottom: 1em;
  height: 10em;
  position: relative;
}

.top img {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 500px){
  .top img {
    max-height: 5rem;
  }
}

/***************************
Styles for Titles Across Site
****************************/
.page-title {
  margin-bottom: 1em;
  border-bottom: solid 2px #007BC3;
}

.left-nav-title {
  font-weight: bold;
}

.show-more {
  margin-left: 6rem;
  font-size: 0.85em;
}

.mcg-generated-content h3, .mcg-generated-content h2, .mcg-generated-content h1 {
  font-size: 1.5rem;
}

.modal h5 div {
  color: white;
}

/***************************
Footer
***************************/
.footer {
  color: #FFFFFF;
  padding-bottom: 2em;
  padding-top: 2.5em;
}

.footer .columns {
  margin-top: 1em;
}

.footer h5 {
  line-height: 1em;
  font-size: 0.7em;
}

.footer p {
  text-align: left;
  padding-left: 2em;
  padding-top: 0.5em;
  margin-bottom: 0.5em;
  font-weight: 500;
}

.footer .vandy-logo-expanded {
  margin-top: 3em;
  padding-top: 2em;
}

.footer img {
  margin-bottom: 2em;
}

.footer footer {
  text-align: center;
  color: #A5BDCF;
  font-weight: 500;
}

.footer a {
    color: #A5BDCF;
}

.footer h6 {
  border-radius: 0.375em;
  color: white;
  border-color: white;
}

.footer .button {
    border-radius: 0.375em;
    color: white;
    border-color: white;
}

.footer .button:hover {
    border-radius: 0.375em;
    color: white;
    border-color: white;
}

.social-links {
  margin-top: 0.5em;
}

.footer .first {
    padding-top: 1.5em;
}

p.reference a {
  text-decoration: none;
  color: inherit;
}

/***************************
HEXAGON
***************************/

.footer-bar {
   background-image: url("/static/img/Hex.67fddd2407c3.png");
   height: 6.250em;
   background-size: 21.875em;
}

/***************************
Nav Bar
***************************/

.nav-bar {
  margin-bottom: 2.5em;
}


.nav-icon h5{
  color: white;
}

.navbar-med-plus {
  padding-top: 3em;
  border-bottom: rgb(224,224,224) solid 0.063em;
}

.navbar-med-plus ul {
  margin-bottom: 0;
}

.navbar-med-plus ul li {
  display: inline-block;
}

.navbar-med-plus ul li a {
  display: block;
  color: black;
  line-height: 1.3em;
  padding: 1em;
  text-align: center;
}

li.divide {
  border-right: solid #386990 0.07em;
}

.page-navigation {
  text-align: right;
}

.page-navigation a {
  display: inline-block;
}

.page-navigation li a b:hover {
    border-bottom: #386990 solid 0.063em;
    padding-bottom: 0.5em;
}

.logoimg {
  margin-left: 3%;
}

@media screen and (min-width: 64em) {
  .navbar-med-plus {
     padding-bottom: 3em;
  }

  .navbar-med-plus ul {
    text-align: right;
  }

  .navbar-med-plus ul li {
    width: auto;
  }

  .navbar-med-plus li button {
    margin: auto;
  }

  .logoimg {
    float: left;
  }
}

@media screen and (min-width: 97em) {
  .navbar-med-plus ul li {
    width: 9em;
    text-align: center;
  }

  .logoimg {
    margin-left: 10em;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .navbar-med-plus  {
     padding-bottom: 2em;
  }

  .navbar-med-plus ul {
    text-align:center;
  }

  .logoimg {
    padding-bottom: 3em;
    display: table;
    margin: 0 auto;
   }

  .nav-bar .icon img {
    margin-left: 1em;
    border: solid 0.05em #386990;
    border-radius: 0.5em;
    padding: 0.3em;
  }
}

@media screen and (max-width: 39.9375em) {
  .nav-bar .offcanvas-trigger {
    padding: 0.9rem;
  }
}

.multilevel-offcanvas .menu a {
  color: #A5BDCF;
  padding-top: 0.625em;
  padding-bottom: 0.438em;
  transition: color 0.2s ease-in;
}

.multilevel-offcanvas {
  padding: 1.250em;
}

.multilevel-offcanvas > .menu {
  margin-bottom: 1rem;
}

.hamburger .line {
  width: 1.250em;
  height: 0.125em;
  display: block;
  margin: 0.188em auto;
  transition: all 0.3s ease-in-out;
  background-color: black;
}

.logo {
    padding-top: 1em;
    padding-bottom: 1em;
}

.navigation {
    padding-top: 1.875em;
}

.navigation .search {
    border-radius: 0.5em;
    align: center;
}

/***************************
Nav Bar SEARCH
***************************/

.invisible {
    display: none;
}

.searching {
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    padding-top: 1em;
    line-height: 1.5em;
}

.searching input[type=text] {
    border: solid 0.05em #386990;
    border-radius: 0.5em;
    width: 20em;
    display: inline-block;
    float: right;
    margin-right: 0.5em;
    padding: 0.9em;
    margin-bottom: 0;
}

.searching .button {
    display: inline-block;
    border: solid 0.05em;
    border-radius: 1em;
    float: right;
    margin-right: 3em;
    margin-bottom: 0;
}

.nav-bar .icon img {
    margin-right: 1em;
    margin-left: 1em;
    padding: 0.5em;
    border: solid 0.05em #386990;
    border-radius: 0.5em;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .visible .button {
      border: solid 0.05em;
      border-radius: 1em;
      margin-right: 2em;
  }

  .visible input[type=text] {
      border: solid 0.05em;
      border-radius: 0.5em;
      width: 20em;
      padding: 0.7em;
  }

  .visible .close-button {
    float: right;
    position: relative;
    top: 0;
  }

  .searching {
      width: 100%;
      font-size: 1.5em;
      line-height: 1.5em;
  }

  .searching .visible {
    margin: auto;
    display: table;
    text-align: center;
  }
}

@media screen and (max-width: 40em) {
  .logo-footer { /* align with category headers in single column display */
    padding-left: calc(10px + 10px + 25.6px);
    padding-right: calc(10px + 10px + 25.6px);
  }
}

/* remove p spacing in bullet lists */
ul li p {
  margin-bottom: unset;
}
