/* GLOBAL
-------------------------------------------------- */

html, body, #Site {
  height: 100%; width: 100%; margin: 0;
  font-family: "ProximaNova-Regular", Helvetica, Arial, sans-serif;
  font-size: 1em;
  color: rgba(42, 42, 42, 0.75);
  overflow: hidden;
}
html:hover, body:hover, #Site:hover {
  /*color: rgba(0, 0, 0, .75);*/
}
#Site {
  height: 100vh; width: 100vw;
}


/* Browsers
-------------------------------------------------- */

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: rgba(42, 42, 42, 0.93);
}
a:hover,
a:focus {
  color: rgba(42, 42, 42, 0.42);
}

/* Hide Dotted Outline on Firefox */
*:focus { outline: 0px none transparent; }
:focus { outline:none; }
::-moz-focus-inner { border:0; padding:0; }

textarea,
textarea:hover,
textarea:focus,
textarea:active {
  resize: none;
  outline: none;
  /*border: none;*/
  border: 1px solid rgba(100, 100, 100, 0.5);
  padding: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  overflow: auto;
  overflow-x: hidden; /* for Firefox (autosize) */
  /*min-height: 70px;*/
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* iOS
-------------------------------------------------- */

input {
  padding: 0px;
}


/* Form-Format
-------------------------------------------------- */

.Form-Format {
  width: auto;
  font-family: "ProximaNova-Regular";
  /*font-size: 0.93em;*/
  /*letter-spacing: 0.08em;*/
  line-height: 1.42;
  color: rgba(42, 42, 42, 0.75);
  background-color: transparent;
  background-image: none;
  /*background: rgba(255, 255, 255, .75);*/
  border: none;
  /*border: 1px solid rgba(100, 100, 100, 0.5);*/
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.Form-Format { /* Safari-only solution */
  /*(;line-height: 2.02;);*/
} /* Safari-only solution */
.Form-Format:hover,
.Form-Format:focus {
  border: none;
}


/* Utility
-------------------------------------------------- */

.Readonly-Text {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}


/* Site
-------------------------------------------------- */

.Site {
  height: 100%; width: 100%;
  overflow: scroll;
}
@media (max-height: 599px) and (max-width: 849px) {
} /* max-height: 599px and max-width: 849px */


/* Site
-------------------------------------------------- */
#ArrivingSoon {
  font-family: "AvenirNext-Regular";
  font-size: 25px;
  text-align: center;
/* center vertically */
  position: relative; top: 42%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* placeholders
-------------------------------------------------- */

::-webkit-input-placeholder {
  text-align: left;
  color: rgba(42, 42, 42, 0.42);
}
:-moz-placeholder {
  text-align: left;
  color: rgba(42, 42, 42, 0.42);
}
::-moz-placeholder {
  text-align: left;
  color: rgba(42, 42, 42, 0.42);
}
:-ms-input-placeholder {
  text-align: left;
  color: rgba(42, 42, 42, 0.42);
}


/* Typography
-------------------------------------------------- */

/* AvenirNext-Regular */
@font-face {
  font-family: "AvenirNext-Regular";
  src: url("../fonts/AvenirNext/AvenirNext-Regular.eot");
  src: local("☺"),
      url("../fonts/AvenirNext/AvenirNext-Regular.woff") format("woff"),
      url("../fonts/AvenirNext/AvenirNext-Regular.ttf") format("truetype"),
      url("../fonts/AvenirNext/AvenirNext-Regular.svg") format("svg");
}

/* ProximaNova-Regular */
@font-face {
  font-family: "ProximaNova-Regular";
  src: url("../fonts/ProximaNova/ProximaNova-Regular.eot");
  src: local("☺"),
      url("../fonts/ProximaNova/ProximaNova-Regular.woff") format("woff"),
      url("../fonts/ProximaNova/ProximaNova-Regular.ttf") format("truetype"),
      url("../fonts/ProximaNova/ProximaNova-Regular.svg") format("svg");
}

/* ProximaNova-Bold */
@font-face {
  font-family: "ProximaNova-Bold";
  src: url("../fonts/ProximaNova/ProximaNova-Bold.eot");
  src: local("☺"),
      url("../fonts/ProximaNova/ProximaNova-Bold.woff") format("woff"),
      url("../fonts/ProximaNova/ProximaNova-Bold.ttf") format("truetype"),
      url("../fonts/ProximaNova/ProximaNova-Bold.svg") format("svg");
}

.Bold {
   font-family: "ProximaNova-Bold"; 
}

.Text-Align-Center {
  text-align: center;
}


/* Animations
-------------------------------------------------- */

  /* enter
  -------------------------------------------------- */

  .enter {
    animation-name: enter;
    -webkit-animation-name: enter;

    animation-duration: 2s;
    -webkit-animation-duration: 2s;

    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;

    visibility: visible !important;
  }

  @keyframes enter {
    0% {
      opacity: 0.0;
    }
    22% {
      opacity: 0.0;
    }
    100% {
      opacity: 1;
    }
  }

  @-webkit-keyframes enter {
    0% {
      opacity: 0.0;
    }
    22% {
      opacity: 0.0;
    }
    100% {
      opacity: 1;
    }
  }

  /* evolveIn
  -------------------------------------------------- */

  .evolveIn {
    animation-name: evolveIn;
    -webkit-animation-name: evolveIn;

    animation-duration: .75s;
    -webkit-animation-duration: .75s;

    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;

    visibility: visible !important;
  }

  @keyframes evolveIn {
    0% {
      opacity: 0.0;
    }
    100% {
      opacity: 1;
    }
  }

  @-webkit-keyframes evolveIn {
    0% {
      opacity: 0.0;
    }
    100% {
      opacity: 1;
    }
  }

  /* shake
  -------------------------------------------------- */

  .shake {
    animation-name: shake;
    -webkit-animation-name: shake;

    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;

    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;

    animation-iteration-count: 2;
    -webkit-animation-iteration-count: 2;

    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
  }

  @keyframes shake {
    0% { 
      transform: scale(1);
    }
    50% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }

  @-webkit-keyframes shake {
    0% { 
      -webkit-transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
    }
  }

  /* zoomIn
  -------------------------------------------------- */
  .zoomIn {
    animation-name: zoomIn;
    -webkit-animation-name: zoomIn;

    animation-duration: .55s;
    -webkit-animation-duration: .55s;

    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;

    visibility: visible !important;
  }

  @keyframes zoomIn {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(0);
      opacity: 0.0;
    }
  }

  @-webkit-keyframes zoomIn {
    0% {
      -webkit-transform: scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(0);
      opacity: 0.0;
    }
  }