/* SCSS Document */
/* MICROSOFT NONSENSE -------------------- */
@-ms-viewport {
  width: device-width; }

/* 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; }

a {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  cursor: pointer; }
  a img {
    border: none; }
  a:hover {
    opacity: 0.5; }

body, html {
  text-align: center;
  color: #FFFFFF;
  font-family: montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  background: #000000; }

h1, h2, h3 {
  font-weight: 400; }

h2 {
  margin: 1em 0; }

/* FORM STYLES -------------------- */
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='time'],
input[type='number'],
input[type='submit'],
select,
textarea {
  width: 95%;
  padding: 10px 2.5%;
  display: block;
  color: #000000;
  line-height: 1.25em;
  font-size: 1em;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  margin: 1.5em auto;
  -webkit-font-smoothing: inherit;
  background: #FFFFFF;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  text-align: center; }

.fieldwrapper label,
.fieldwrapper input,
.fieldwrapper select {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out; }

.fieldwrapper {
  display: block;
  position: relative; }

.fieldwrapper label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  font-size: 0.5em;
  line-height: 1.5em; }

.fieldwrapper.hasval label {
  opacity: 1;
  color: #000000;
  font-weight: 400; }

.fieldwrapper.hasval input,
.fieldwrapper.hasval select {
  padding-top: 15px;
  padding-bottom: 5px; }

.notes {
  width: 95%;
  line-height: 1.5em;
  font-size: 0.75em; }

.gdprRequired {
  width: 100%;
  line-height: 1.5em;
  font-size: 0.75em;
  /* For mobile, it's typically better to position checkbox on top of clickable area and turn opacity to 0 instead. */ }
  .gdprRequired input[type='checkbox'] {
    position: absolute;
    top: -9999px;
    left: -9999px;
    display: none; }
  .gdprRequired input[type='checkbox'] ~ label {
    cursor: pointer; }
    .gdprRequired input[type='checkbox'] ~ label div {
      background: #FFFFFF;
      width: 25px;
      height: 25px;
      display: inline-block;
      margin-right: 0.5em;
      position: relative;
      top: 5px;
      border-radius: 3px; }
    .gdprRequired input[type='checkbox'] ~ label a {
      font-weight: 600; }
  .gdprRequired input[type='checkbox']:checked ~ label div {
    background: url("../img/check.png") #FFFFFF no-repeat 50% 50%;
    background-size: 25px 25px; }

input[type='submit'] {
  width: 100%;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  background: #00FCA6;
  color: #000000; }
  input[type='submit']:hover {
    opacity: 0.5; }

/* CONTENT STYLES -------------------- */
main {
  position: relative; }
  main #shimmerbg {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    text-align: left; }
    main #shimmerbg svg {
      width: auto;
      height: 100vh; }
      main #shimmerbg svg polygon {
        fill: #00FCA6;
        opacity: 0;
        transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out; }
        main #shimmerbg svg polygon.on {
          opacity: 0.2; }
  main .outer {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0; }
    main .outer svg {
      width: 20%; }
      main .outer svg path {
        fill: #00FCA6;
        animation: fade 1s linear infinite;
        transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
        opacity: 0.5; }
        main .outer svg path.path1 {
          animation-delay: 0.2s; }
        main .outer svg path.path2 {
          animation-delay: 0.4s; }
        main .outer svg path.path3 {
          animation-delay: 0.6s; }

@-webkit-keyframes fade {
  0% {
    opacity: 1; }
  25% {
    opacity: 0.8; }
  50% {
    opacity: 0.6; }
  75% {
    opacity: 0.4; }
  100% {
    opacity: 0.2; } }
    main .outer #floater {
      position: absolute;
      top: -50px;
      right: 30px;
      width: 250px;
      height: auto; }
    main .outer .inner {
      width: 90%;
      max-width: 400px;
      margin: 2rem auto; }
      main .outer .inner img {
        width: 100%;
        height: auto; }
      main .outer .inner .content__gdpr {
        font-size: 0.75rem;
        color: #FFFFFF; }

@media only screen and (max-width: 1023px) {
  body main .outer #floater, html main .outer #floater {
    display: none; } }

@media only screen and (max-width: 750px) {
  body, html {
    font-size: 1.5em; }
    body main .outer .inner, html main .outer .inner {
      max-width: 750px; } }
