/* SCSS Document */
/* MICROSOFT NONSENSE */
/* MIXINS */
/* RESET STYLES */
html, body, ul, ol,
h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, button, select, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

/* VARIABLES */
/* ELEMENT STYLES */
strong {
  font-weight: 700;
}

body, html {
  text-align: center;
  color: #000000;
  font-family: futura-pt, sans-serif;
  font-size: 20px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  background: #9A9A9C;
  line-height: 1.5em;
}

a {
  text-decoration: none;
  color: #FFFFFF;
}

#loader {
  transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  background-image: url("../images/loader-flag-col.gif");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 150px 95px;
  z-index: 99999;
  opacity: 1;
}
#loader.hidethis {
  opacity: 0;
}
#loader.remove {
  display: none;
}

main {
  position: relative;
}
main #slideshow {
  width: 100vw;
  height: 100vh; /*background-image: url('../images/loader-flag-col.gif'); background-repeat: no-repeat; background-position: 50% 50%; background-size: 150px 95px;*/
}
main #slideshow .slides {
  width: 100vw;
  height: 100vh;
}
main #slideshow .slides li {
  width: 100vw;
  height: 100vh;
}
main #slideshow .slides li img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}
main #handle {
  position: fixed;
  bottom: 0;
  right: 5vw;
  width: 3em;
  height: 2em;
  background-color: #35363A;
  background-image: url("../images/thumbs.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  border-radius: 0.25em 0.25em 0 0;
  cursor: pointer;
}
main #drawer {
  width: 100vw;
  position: fixed;
  left: 0;
  bottom: -100vh;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  background-color: #35363A;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
main #drawer.open {
  bottom: 0;
}
main #drawer #funcs {
  width: 8em;
  margin: 0.5vw 0 1em;
}
main #drawer #funcs .panel {
  display: flex;
  flex-wrap: wrap;
}
main #drawer #funcs .panel .button {
  width: 100%;
  cursor: pointer;
  margin: 0 0 1em;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
}
main #drawer #funcs .panel .button img {
  width: 100%;
  height: 1.5em;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  margin: auto;
}
main #drawer #funcs .panel .button span {
  width: 90%;
  margin: 0 5%;
  display: block;
  color: #FFFFFF;
  font-size: 0.4em;
  text-align: center;
  line-height: 0.9em;
  font-weight: 700;
}
main #drawer .flex-direction-nav {
  position: fixed;
  left: 0;
  top: 50vh;
  width: 100vw;
}
main #drawer .flex-direction-nav li a {
  display: block;
  width: 2em;
  height: 3em;
  background-color: #35363A;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  color: transparent;
  overflow: hidden;
  cursor: pointer;
}
main #drawer .flex-direction-nav li a.flex-disabled {
  display: none;
}
main #drawer .flex-direction-nav li:first-of-type a {
  left: 0%;
  background-image: url("../images/back.svg");
  border-radius: 0 0.25em 0.25em 0;
}
main #drawer .flex-direction-nav li:last-of-type a {
  right: 0%;
  background-image: url("../images/forward.svg");
  border-radius: 0.25em 0 0 0.25em;
}
main #drawer .flex-direction-nav.hide {
  display: none;
}
main #drawer .flex-control-paging {
  display: flex;
  flex-wrap: wrap;
  width: calc(99vw - 8em);
  padding: 0.5% 0.5vw;
}
main #drawer .flex-control-paging li {
  display: block;
  width: 5.05%;
  height: 3%;
  margin: 0.25%;
}
main #drawer .flex-control-paging li a {
  display: block;
  width: 100%;
  background-color: #9A9A9C;
  font-size: 0;
  line-height: 0;
  opacity: 0.5;
  transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  position: relative;
}
main #drawer .flex-control-paging li a img {
  width: 100%;
  height: auto;
}
main #drawer .flex-control-paging li a.flex-active {
  opacity: 1;
}

/* Mobile Landscape */
@media only screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  main #drawer #funcs .panel .button {
    width: 50%;
  }
}
/* Mobile Portrait */
@media only screen and (max-device-width: 820px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  main #drawer #funcs {
    width: 4em;
  }
  main #drawer #funcs .panel .button {
    margin: 0 0 0.5em;
  }
  main #drawer .flex-control-paging {
    width: calc(99vw - 4em);
  }
  main #drawer .flex-control-paging li {
    display: block;
    width: 19%;
    height: auto;
    margin: 0.5%;
  }
}/*# sourceMappingURL=styles.css.map */