* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Slideshow container */
.slides {
  position: relative;
  margin: 32px auto auto auto;
  width: 800px;
  max-width: 100%;
}

.slides__center > slides__container {
  margin: auto;
}

.slides__container {
  display: none;
  overflow: hidden;
}

.slides__container--open-mind {
  max-height: 500px;
  height: 100%;
  width: 100%;
}

.slides__container--excursion {
  height: 500px;
}

.slides__image {
  max-width: 100%;
  max-height: 100%;
}

.slides__image--excursion {
  height: 100%;
}

.slides__numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Next & previous buttons */
.prev,
.next {
  width: auto;
  margin-top: -22px;
  color: #424242;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.dots {
  text-align: center;
}

.dots__dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.photo-fade {
  -webkit-animation-name: photo-fade;
          animation-name: photo-fade;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.photos-page-heading {
  text-align: center;
}

@-webkit-keyframes photo-fade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

@keyframes photo-fade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

#cookieConsent {
  position: fixed;
  bottom: 0;
  width: 99vw;
  margin-left: 0.5vw;
  margin-bottom: 0.5rem;
  max-width: 100%;
}

.cookie-consent-button-decline {
  color: #dc3545;
}

.cookie-consent-button-accept {
  color: #bfd7b5;
}

.cookie-consent-button {
  float: right;
  background-color: transparent;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  border: none;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}

.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #fff;
}

.styled-checkbox:hover + label:before {
  background: #437c90;
}

.styled-checkbox:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styled-checkbox:checked + label:before {
  background: #437c90;
}

.styled-checkbox:disabled + label {
  color: #ced4da;
  cursor: auto;
}

.styled-checkbox:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ced4da;
}

.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: #fff;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
          box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body {
  min-height: 100vh;
  background-color: #eaebed;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
  max-width: 280px;
}

footer {
  position: fixed;
  bottom: 0;
  height: 8vh;
  width: 100%;
  background-color: #eaebed;
  opacity: 0.8;
}

.alert-date {
  color: #11694f;
  background-color: #d2f4ea;
  border-color: #c1f0e2;
  padding: 0.4rem;
  margin: 0.5rem 15px;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.article__crop-container {
  max-height: 440px;
  height: 100%;
  overflow: hidden;
}

.article__image {
  width: 100%;
  padding: 1rem;
}

.article__image-caption {
  padding-left: 1rem;
}

.article__paragraph {
  margin: 16px 4px;
}

.article__list {
  list-style-type: none;
  padding-left: 5px;
}

.article__list > li > ul {
  border-left: solid 2px #dee2e6;
  padding-left: 10px;
  margin-left: 10px;
}

.article__heading {
  font-size: 16px;
  font-weight: bold;
}

.body-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10vh;
}

.conf-page-link {
  color: #6c757d;
}

.conf-page-link:hover {
  color: #437c90;
}

.contact__email {
  font-size: 24px;
}

.contact__header {
  font-size: 40px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
  white-space: normal;
}

.emailButton {
  color: #fff;
}

.erdos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 32px;
}

.erdos__photo {
  max-height: 480px;
  height: 100%;
  width: auto;
}

.erdos__quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 640px) {
  .erdos__quote {
    text-align: right;
  }
}

@media (max-width: 640px) {
  .erdos__quote {
    text-align: center;
    margin-left: 10px;
  }
}

@media (min-width: 640px) {
  .erdos__quote--text {
    font-size: 64px;
  }
}

@media (max-width: 640px) {
  .erdos__quote--text {
    font-size: 24px;
  }
}

.erdos__quote--name {
  font-style: italic;
  font-variant: small-caps;
}

@media (min-width: 640px) {
  .erdos__quote--name {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .erdos__quote--name {
    font-size: 16px;
  }
}

.form-group > .control-label {
  margin-left: 0.5rem;
}

.header {
  width: 100%;
  margin-top: -24px;
}

.header__image {
  width: 100%;
  top: 0;
}

.header__heading {
  font-weight: 600;
  color: #fff;
  font-variant: small-caps;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

@media (min-width: 640px) {
  .header__heading {
    font-size: 60px;
  }
}

@media (max-width: 640px) {
  .header__heading {
    font-size: 32px;
  }
}

@media (min-width: 640px) {
  .header__heading--date {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .header__heading--date {
    font-size: 14px;
  }
}

.header__heading-container {
  float: left;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #55555555;
  padding: 5px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.high-line {
  line-height: 48px;
}

.images-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.images-row__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

.images-row__image > img {
  max-height: 100px;
}

.images-row__image--inverted {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.list-reduce-left {
  margin-left: -10px;
}

.mainPage {
  left: 0;
  position: absolute;
  width: 100vw;
  max-width: 100%;
  padding: 0 0 10vh 0;
}

.min-w-100 {
  min-width: 100%;
}

.modal {
  top: 20vh;
}

.navbar--customBackground {
  background: #2b3d69;
}

.sponsors-text {
  padding: 0 0 32px 32px;
  text-align: left;
}

.v-line {
  min-height: 100%;
  border-left: 0.4rem solid #dee2e6;
}

@media (min-width: 979px) {
  ul.navbar-nav li.dropdown:hover > div.dropdown-menu {
    display: block;
  }
}
/*# sourceMappingURL=Site.css.map */