html, body, .images {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: Helvetica;
  font-size: 16px;
  background: #111111; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

.img-container {
  display: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.1s;
  transition: all 0.1s; }

.ui {
  position: fixed;
  left: 15px;
  bottom: 10px;
  z-index: 1000; }

h1, h2 {
  margin: 0;
  font-size: 1em;
  font-weight: normal; }

.info {
  display: inline-block;
  position: relative; }
  .info:hover .info-details, .info-open .info .info-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.info-details {
  display: none;
  padding: 5px 10px;
  color: #111111;
  background-color: white;
  position: absolute;
  bottom: 2.7rem;
  width: calc(100vw - 50px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  max-height: calc(100vh - 80px);
  overflow: auto; }
  @media (min-width: 767px) {
    .info-details {
      width: 40ch; } }
  @media (orientation: landscape) and (max-width: 991px) {
    .info-details {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      max-width: 70vw;
      width: 80vw !important;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .info-details .section {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(50% - 30px);
                flex: 0 0 calc(50% - 30px); } }

.trigger {
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 1.6rem;
  background: #111111;
  padding: 5px 10px;
  font-weight: bold; }
  .trigger:hover {
    text-decoration: none; }

.page {
  display: none; }
  .page:first-child {
    display: inline-block; }
  .page .pager {
    text-align: right;
    padding: 0 5px; }
  .page .prev, .page .next {
    cursor: pointer; }

.loading .loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  width: 100vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  background: #111111;
  position: absolute; }
  .loading .loader:after {
    content: 'Y';
    -webkit-animation: loading infinite ease-out 1s;
            animation: loading infinite ease-out 1s;
    display: inline-block;
    font-size: 5rem;
    color: white; }
    @media (min-width: 767px) {
      .loading .loader:after {
        -webkit-animation: loading-large infinite ease-out 1s;
                animation: loading-large infinite ease-out 1s; } }

p {
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  padding: 5px 0px; }

@-webkit-keyframes loading {
  from {
    -webkit-transform: translateY(-50%) rotateY(0deg);
            transform: translateY(-50%) rotateY(0deg); }

  to {
    -webkit-transform: translateY(-50%) rotateY(360deg);
            transform: translateY(-50%) rotateY(360deg); } }

@keyframes loading {
  from {
    -webkit-transform: translateY(-50%) rotateY(0deg);
            transform: translateY(-50%) rotateY(0deg); }

  to {
    -webkit-transform: translateY(-50%) rotateY(360deg);
            transform: translateY(-50%) rotateY(360deg); } }
@-webkit-keyframes loading-large {
  from {
    -webkit-transform: translateY(0%) rotateY(0deg);
            transform: translateY(0%) rotateY(0deg); }

  to {
    -webkit-transform: translateY(0%) rotateY(360deg);
            transform: translateY(0%) rotateY(360deg); } }
@keyframes loading-large {
  from {
    -webkit-transform: translateY(0%) rotateY(0deg);
            transform: translateY(0%) rotateY(0deg); }

  to {
    -webkit-transform: translateY(0%) rotateY(360deg);
            transform: translateY(0%) rotateY(360deg); } }
svg {
  position: absolute;
  left: -999px; }

table {
  border-spacing: 0; }

@media (orientation: landscape) and (max-width: 991px) {
  .hidden-landscape {
    display: none !important; } }
