/* color vars */
:root {
  --link-color: #000;
  --link-hover-color: #666;
  --purple: #693f9b;
  --blue: #1d4e91
}

/* main.css overwrites  */
a[href$=".pdf"]::after {
  content: none;
}
.basic-page-template .fixed-width-content ul:not(.nav-tabs) li {
  position: unset;
  padding: 0 !important;
}
.basic-page-template h4 {
  margin-top: 0;
}

.related-resources ul {
  padding-left: 0;
}

/* faculty accordion */
.faculty-accordion .accordion-header {
  display: unset;
  padding: 0;
}
.faculty-accordion h3 {
  color: var(--blue);
}
.link-button {
  background: none;
  border: none;
  font-weight: 900;
  color: var(--blue);
  padding: 0;
}
.link-button:first-child:after {
  content: "|";
  padding: 10px;
}
.link-button:hover {
  text-decoration: underline;
}
/* pagination.css overwrites */
.paginationjs .paginationjs-pages li.active > a {
  background-color: var(--blue);
}
.paginationjs .paginationjs-pages li > a {
  color: var(--blue);
}

/* meeting items*/
#meetings {
  margin-top: 20px;
}
#meetings {
  width: 100%;
}
#meetings .meeting {
  display: flex;
  flex-wrap: wrap;
  background-color: #fcfcfc;
  border: solid 1px #e3e3e3;
  border-left: solid 4px #c1c1c1;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%);
  margin-bottom: 20px;
  padding: 20px 25px;
}
#meetings .meeting .column {
  width: 100%;
}
#meetings .meeting .meeting-title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
#meetings .meeting .date-display-start,
#meetings .meeting .date-display-end {
  display: inline-block;
}
#meetings .meeting .meeting-type {
  margin-bottom: 20px;
}
#meetings .meeting .meeting-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#meetings .meeting .meeting-icons a.link-static {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 80px;
  color: var(--link-color);
}
#meetings .meeting .meeting-icons a.link-static:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}
#meetings .meeting .meeting-icons a.link-static:hover span.title {
  text-decoration: underline;
}
#meetings .meeting ul.mtg-menu {
  width: 300px;
}
#meetings .meeting ul.mtg-menu li {
}
#meetings .meeting ul.mtg-menu li a {
  width: 100%;
  padding: 5px 10px;
  display: block;
  color: var(--link-color);
}
#meetings .meeting ul.mtg-menu li a:hover {
  color: var(--link-hover-color);
}

/* next meetings */
.mtg-schedule {
}
.mtg-schedule .mtg-month {
  font-size: 2em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  justify-content: center;
  align-self: center;
  flex-direction: column;
  text-align: center;
  height: 85%;
}
.mtg-schedule .mtg-details p,
.mtg-next .wrapper p {
  margin-bottom: 0.25em;
}
.mtg-schedule h2,
.mtg-next h2 {
  padding-bottom: 30px;
}
.mtg-next h3 {
  font-size: 1.25em;
}
.mtg-next .wrapper {
  border: 1px solid #ccc;
  border-radius: 10px;
  border-left: 5px solid var(--blue);
  padding: 20px;
}

/* icons  */
.mtg-icon {
  display: block;
}
.fa-stack.small {
  font-size: 1em;
  width: unset;
}
.fa-stack.small span {
  vertical-align: middle;
}

/* form controls */

.btn-default {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid #ced4da;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  padding: 0.375rem 0.75rem;
  line-height: 1.42857143;
  border-radius: 0.25em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-reset {
  display: block;
  height: calc(1.5em + 0.75rem + 2px);
  border: 1px solid #ccc;
}

.row::before,
.row::after {
  display: table;
  content: unset;
}

/* *** DEV-ONLY CLASSES *** */

.red {
  border: 1px dashed red;
}

.green {
  border: 1px dashed green;
}