/*
|===========================================================================================================
| app.css
|===========================================================================================================
| 
| ============
| TIPS & USAGE
| ============
| 
| 1. Next and indent your styles.
| 2. Keep styles organized (use headings, comments, and table of contents)
| 3. The name of your theme is placed as a class on the body tag.
| 4. Use that class to prefix and define all your styles within common containers so as not to override required styles in the header and footer.
| 5. The most common containers will be ".page" and ".feature" but you might have others in a unique template.
| 6. Do not use just ".yourthemename" because it will override the msu-header and msu-footer styles. You must target the inner page container.
| 7. For example, your css rules should be prefixed with ".yourthemename .page" or ".yourthemename .feature" and etc.
|
|
| =================
| TABLE OF CONTENTS
| =================
|
| #  Type
| #  Buttons
| #  Custom NWAC Styles
*/

/** ------------------------------------------------------------------------------------------------------- */
/**
 * 	Type 
 */

/** ------------------------------------------------------------------------------------------------------- */
/**
 * 	Buttons
 */

/** ------------------------------------------------------------------------------------------------------- */
/**
 * 	Custom NWAC Styles
 */

/* Global */

body {
  line-height:1.5!important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  line-height:1.5;
  text-transform: none!important;
}

.page {
  min-height: 100vh;
}

.page h1 {
  font-size: 2em;
  color: #41111c;
}

.page p a {
  text-decoration: underline;
}

footer#msu-footer {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  padding-top: 4em;
  padding-bottom: 4em;
  color: #fff;
  font-size: .85em;
  background: #090909;
}

footer#msu-footer .disclosure {
  margin-top: 2em;
  margin-bottom: 2em;
  padding-top: 2em;
  padding-bottom: 2em;
  border-top: 1px solid #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
  font-size: 0.8em;
}

footer#msu-footer .disclosure p {
  line-height:1.5;
}

footer#msu-footer .h4 {
  color: #aaa;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size:1.1em;
}

/* Slider */

.nwac .orgs-header {
  margin-left: 0.5em;
  margin-top: 0.8em;
}

.nwac #feature .slick-active #slick-slide-control00 {
  display: none;
}

/* Sub Pages */

.page h3.menu-title {
  margin-top: 0px;
}

.thumbnail {
  display: block;
  padding: 0;
  margin-bottom: 2em;
  border: 1px solid #ccc;
  border-radius: 0;
  position: relative;
  width: 100%;
}

.profile-thumbnail {
  border: 0px solid #fff;
}

.py-4 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.img-banner {
  padding-bottom: 2em;
}

.img-article {
  padding-top: 1em;
  padding-bottom: 2em;
}

.topic-list li {
  padding: 1em 0em;
  border-bottom: 1px solid #ccc;
}

.topic-list li:last-child {
  border-bottom: none;
}

a.list-group-item,
button.list-group-item {
  color: #252525;
}

a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
  color: #252525;
  text-decoration: none;
  background-color: #f5f5f5;
}

a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

a.skip-main:focus,
a.skip-main:active {
  color: #fff;
  background-color: #000;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 15px;
  border: 4px solid #640d0d;
  text-align: center;
  font-size: 1.2em;
  z-index: 999;
}

/* Responsive */

@media (max-width: 767px) {
  .jumbotron h2 {
    font-size: 1.6em;
  }

  .jumbotron p {
    font-size: 1em;
  }
  .pers-thumbnail {
    max-width: 600px;
    margin: 0 auto;
  }
  /* hide table headings */
  .custom-table-responsive table thead {
    display: none;
  }

  /* treat rows like divs */
  .custom-table-responsive table tr {
    display: block;
    border-top: 2px solid lightgray; /* separate row data with thicker line */
    margin-top: 5px;
  }

  /* treat columns like divs */
  .custom-table-responsive table td {
    display: block;
    text-align: right; /* text to right */
  }

  /* this part is ugly, but necessary to show label on left */
  .custom-table-responsive table td:before {
    content: attr(data-label);
    float: left; /* label to left */
    font-weight: 700;
  }
}
