/* Layout */

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  font-family: "Unineue", sans-serif;
}

.main {
  min-height: 0;
}

@media only screen and (min-width: 768px) {
  .main {
    min-height: 80vh;
  }
}

@media only screen and (min-width: 1024px) {
  body {
    background: #f7f7f7 url(images/bg-eifu.jpg) no-repeat fixed right top;
    background-size: auto 90vh;
  }
  .main {
    min-height: 90vh;
  }
  .main .inner {
    background: #fff;
    background-size: auto 90vh;
  }
}

@media only screen and (min-width: 1280px) {
  body {
    background: #f7f7f7 url(images/bg-eifu.jpg) no-repeat fixed right top;
  }
  .main .inner {
    background: #fff;
  }
}

/* general styles */

.border-gray-200 {
  border-color: #f7f7f7;
}

.border-gray-300 {
  border-color: #e8e8e8;
}

.bg-gray-200 {
  background-color: #f7f7f7;
}

.bg-gray-400 {
  background-color: #b2b2b2;
}

.bg-gray-600 {
  background-color: #828282;
}

.bg-red-600 {
  background-color: #e30613;
}

.bg-black {
  background-color: #020303;
}

.text-gray-400 {
  color: #b2b2b2;
}

.text-gray-600 {
  color: #828282;
}

.text-black {
  color: #020303;
}

.text-red-600 {
  color: #e30613;
}

a:hover {
  text-decoration: underline;
}

/* Shared utils */

.hide,
.hidejs {
  display: none;
}

/* The_Invisible_Man */

.mr-griffin {
  visibility: hidden;
}

/* Cookie popups */

.cookie-warning {
  padding: 1rem;
  background-color: #eee;
  text-align: center;
}

.alert-banner-cookies {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
}

.title {
  text-transform: uppercase;
}

.meta {
  color: #555;
}

.list > .item {
  margin-bottom: 2rem;
}

.img-container {
  margin: 1rem 0;
}

button {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-radius: 2px;
}

.go-back-link:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-right: 2px solid #b2b2b2;
  border-bottom: 2px solid #b2b2b2;
  top: 7px;
  left: 0;
  transform: rotate(135deg);
  transform-origin: 50% 25%;
}
