
/* latin-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: local('Raleway Light'), local('Raleway-Light'), url('fonts/Raleway-Light-Ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: local('Raleway Light'), local('Raleway-Light'), url('fonts/Raleway-Light-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: local('Raleway Bold'), local('Raleway-Bold'), url('fonts/Raleway-Ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: local('Raleway Bold'), local('Raleway-Bold'), url('fonts/Raleway-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}



/* _functions.scss */
/*
## Triangle
* @include triangle within a pseudo element and add positioning properties (ie. top, left)
* $direction: up, down, left, right
*/
/*
* Currency
*/
/*
* Clearfix
*/
/* line 103, ../_scss/_functions.scss */
.clearfix {
  *zoom: 1;
}
/* line 105, ../_scss/_functions.scss */
.clearfix:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}

/*
* Respond To
* Copied from UtilityBelt- https://github.com/dmtintner/UtilityBelt
*
* Example:
* @include respondTo(smartphone){ display: none; }
*
*/
/*
* Ghost Vertical Align
*/
/*
* Truncate Text
*/
/*
* Animation
*/
/*
* Alerted
*/
@-webkit-keyframes alertMe {
  /* line 195, ../_scss/_functions.scss */
  from {
    border-width: 3px;
    border-color: gold;
  }

  /* line 199, ../_scss/_functions.scss */
  to {
    border-width: 0;
    border-color: rgba(255, 215, 0, 0.1);
  }
}

@-moz-keyframes alertMe {
  /* line 195, ../_scss/_functions.scss */
  from {
    border-width: 3px;
    border-color: gold;
  }

  /* line 199, ../_scss/_functions.scss */
  to {
    border-width: 0;
    border-color: rgba(255, 215, 0, 0.1);
  }
}

@-ms-keyframes alertMe {
  /* line 195, ../_scss/_functions.scss */
  from {
    border-width: 3px;
    border-color: gold;
  }

  /* line 199, ../_scss/_functions.scss */
  to {
    border-width: 0;
    border-color: rgba(255, 215, 0, 0.1);
  }
}

@keyframes alertMe {
  /* line 195, ../_scss/_functions.scss */
  from {
    border-width: 3px;
    border-color: gold;
  }

  /* line 199, ../_scss/_functions.scss */
  to {
    border-width: 0;
    border-color: rgba(255, 215, 0, 0.1);
  }
}

/* default.scss */
/* line 2, ../_scss/_default.scss */
HTML {
  margin: 0;
  padding: 0;
}

/* line 7, ../_scss/_default.scss */
BODY {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 100%;
  line-height: 1.2em;
  color: #313131;
  margin: 0;
  padding: 0;
}
@media (min-width: 1940px) {
  /* line 7, ../_scss/_default.scss */
  BODY {
    font-size: 125%;
  }
}
@media (min-width: 1680px) and (max-width: 1940px) {
  /* line 7, ../_scss/_default.scss */
  BODY {
    font-size: 105%;
  }
}
@media (min-width: 1280px) and (max-width: 1680px) {
  /* line 7, ../_scss/_default.scss */
  BODY {
    font-size: 95%;
  }
}
@media (max-width: 1280px) {
  /* line 7, ../_scss/_default.scss */
  BODY {
    font-size: 85%;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  /* line 7, ../_scss/_default.scss */
  BODY {
    font-size: 75%;
  }
}
@media (max-width: 767px) {
  /* line 7, ../_scss/_default.scss */
  BODY {
    font-size: 65%;
  }
}

/* line 24, ../_scss/_default.scss */
DIV {
  margin: 0;
  padding: 0;
}

/* line 29, ../_scss/_default.scss */
A {
  color: inherit;
}

/* line 33, ../_scss/_default.scss */
* {
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-overflow-scrolling: touch;
  /* -webkit-transform: translateZ(0); */
  -webkit-touch-callout: none;
}

/* line 48, ../_scss/_default.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  padding: 0;
  margin: 0;
  display: block;
  line-height: 1em;
  text-shadow: black 0px 2px 10px;
}

/* line 6, ../_scss/_functions.scss */
body h1 {
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  font-size: 3.2em;
  color: white;
  letter-spacing: 1px;
}

/* line 6, ../_scss/_functions.scss */
body h2 {
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  font-size: 2.8em;
  color: white;
  letter-spacing: 1px;
}

/* line 6, ../_scss/_functions.scss */
body h3 {
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  font-size: 2.4em;
  color: white;
  letter-spacing: 0px;
}

/* line 6, ../_scss/_functions.scss */
body h4 {
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  font-size: 2em;
  color: white;
  letter-spacing: 0px;
}

/* line 6, ../_scss/_functions.scss */
body h5 {
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  font-size: 1.6em;
  color: white;
  letter-spacing: 0px;
}

/* line 6, ../_scss/_functions.scss */
body h6 {
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  font-size: 1.2em;
  color: white;
  letter-spacing: 0px;
}

/* line 66, ../_scss/_default.scss */
p {
  max-width: 80em;
}

/* line 70, ../_scss/_default.scss */
.float-right {
  float: right;
}

/* line 74, ../_scss/_default.scss */
.float-left {
  float: left;
}

/* line 78, ../_scss/_default.scss */
.aligncenter {
  text-align: center;
}

/* line 82, ../_scss/_default.scss */
.alignright {
  text-align: right;
}

/* line 86, ../_scss/_default.scss */
.alignleft {
  text-align: left;
}

/* line 90, ../_scss/_default.scss */
input[type="text"], input[type="password"] {
  padding: 10px 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  border: 1px solid #ACACAC;
  border-radius: 3px;
}

/* line 100, ../_scss/_default.scss */
label {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  vertical-align: top;
}

/* line 108, ../_scss/_default.scss */
select {
  padding: 8px 15px;
  border: 2px solid #222;
  border-radius: 3px;
}

/* line 114, ../_scss/_default.scss */
select, option {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
}

/* line 121, ../_scss/_default.scss */
option {
  padding: 5px 10px;
}

/* _fonts.scss */
/* line 5, ../_scss/style.scss */
body {
  max-width: 100%;
  overflow: hidden;
}

/* line 10, ../_scss/style.scss */
#particle-target {
  position: absolute;
  overflow: hidden;
}

/* line 15, ../_scss/style.scss */
#demo-menu {
  position: absolute;
  right: -400px;
  top: 2em;
  width: auto;
  padding: 2em;
  background: rgba(255, 255, 255, 0.8);
  height: auto;
  display: inline-block;
  z-index: 20;
}

/* line 27, ../_scss/style.scss */
#min-max-tag {
  position: absolute;
  right: 0;
  top: 2em;
  width: auto;
  padding: 0.4em;
  font-size: 200%;
  line-height: 1em;
  background: rgba(255, 255, 255, 0.4);
  color: rgba(34, 34, 34, 0.6);
  height: auto;
  display: inline-block;
  z-index: 20;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0em;
  border-bottom-right-radius: 0em;
  border-bottom-left-radius: 0.5em;
  cursor: pointer;
  -webkit-transition: all 200ms cubic-bezier(0.62, -0.005, 0.26, 0.995);
  -moz-transition: all 200ms cubic-bezier(0.62, -0.005, 0.26, 0.995);
  -o-transition: all 200ms cubic-bezier(0.62, -0.005, 0.26, 0.995);
  transition: all 200ms cubic-bezier(0.62, -0.005, 0.26, 0.995);
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) -0.2em 0em 2em;
  -moz-box-shadow: rgba(0, 0, 0, 0.75) -0.2em 0em 2em;
  box-shadow: rgba(0, 0, 0, 0.75) -0.2em 0em 2em;
}
/* line 50, ../_scss/style.scss */
#min-max-tag:hover {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(34, 34, 34, 0.8);
}


.ld-smart-container {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ld-overlap-container {
  position: absolute;
}

.ld-smart-container .ld-3d-parent {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 9000px;
  opacity: 1;
  position: relative;
}

.ld-smart-container .ld-transform-target {
  position: relative;
  -webkit-transform-style: flat;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform-style: preserve-3d;
}

.ld-smart-container .ld-3d-object {
  position: absolute;
  pointer-events: none;
  -webkit-transform-style: flat;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform-style: preserve-3d;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000px;
}
