@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
* {
  /* this targets the default scrollbar (compulsory) */
  /* the new scrollbar will have a flat appearance with the set background color */
  /* this will style the thumb, ignoring the track */
  /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
  /* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */ }
  * ::-webkit-scrollbar {
    width: 1rem; }
  * ::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5); }
  * ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); }
  * ::-webkit-scrollbar-button {
    background-color: rgba(0, 0, 0, 0.6); }
  * ::-webkit-scrollbar-corner {
    background-color: black; }

.i-c-purple {
  color: #6a67ce; }

.i-c-green {
  color: #3be8b0; }

.i-c-gold {
  color: #ffb900; }

.i-c-teal {
  color: #1aafd0; }

.i-c-coral {
  color: #fc636b; }

.i-c-fb {
  color: #3b5998; }

.i-c-tw {
  color: #00a0d1; }

.i-c-slack {
  color: #CE1E5B; }

.i-c-android {
  color: #A4C639; }

.i-c-ios {
  color: #000; }

.i-c-telegram {
  color: #2DA4D7; }

.ic, .ic-shopify, .ic-intercom, .ic-zendesk, .ic-sf, .ic-hooks {
  height: 100%;
  width: 100%;
  background-size: 100%; }

.ic-shopify {
  background-image: url(../../assets/main/shopify.png); }

.ic-intercom {
  background-image: url(../../assets/main/intercom.png); }

.ic-zendesk {
  background-image: url(../../assets/main/zendesk.png); }

.ic-sf {
  background-image: url(../../assets/main/sf.png); }

.ic-hooks {
  background-image: url(../../assets/main/webhooks.png); }

/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../assets/fonts/fontawesome-webfont.eot?v=4.5.0");
  src: url("../assets/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../assets/fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../assets/fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../assets/fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../assets/fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.85714em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }
.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }
.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #eee;
  z-index: 200;
  padding: 2rem 12%;
  height: 7rem;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }
  #header .i-h-brand {
    background-image: url(../assets/main/logo_dark.png); }
  #header .i-h-section {
    color: #4d4d4d; }
  #header .i-h-cta {
    border: 1px solid #4d4d4d;
    border-radius: 4px;
    padding: 1rem; }
  #header .nav-toggle {
    color: #4d4d4d; }
  #header .i-h-section:hover {
    background: rgba(0, 0, 0, 0.05); }
  #header .i-h-section.active {
    background: #38B4E0;
    color: white; }

.fp-viewing-1 #header, .fp-viewing-0 #header {
  opacity: 0;
  pointer-events: none;
  height: 0; }
.fp-viewing-1.overlay-active #header, .fp-viewing-0.overlay-active #header {
  opacity: 1;
  pointer-events: all;
  height: 7rem; }

.overlay-active.overlay-waitlist #header, .overlay-active.overlay-demos #header {
  opacity: 0;
  pointer-events: none;
  height: 0; }

.nav-toggle {
  font-size: 3.4rem;
  color: white;
  padding-right: 2rem;
  vertical-align: top;
  float: left;
  display: none;
  cursor: pointer;
  opacity: 0.9; }
  .nav-toggle:hover {
    opacity: 1; }

#drawer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 200;
  background: rgba(0, 0, 0, 0.4);
  display: none; }
  #drawer.open .drawer-menu {
    left: 0rem; }
  #drawer .i-h-sections {
    display: block;
    width: 100%;
    float: none; }
  #drawer .i-h-section {
    color: #4d4d4d;
    display: block;
    margin: 0 !important;
    padding: 1rem 2rem;
    border-radius: 0; }
    #drawer .i-h-section.active {
      background-color: #FFD865; }
    #drawer .i-h-section:hover {
      background: #eae7ed;
      text-decoration: none; }
  #drawer .i-h-brand {
    position: relative;
    height: 100%; }

.menu-cover {
  height: 7rem;
  background-color: #2E2A34; }

.drawer-menu {
  width: 20rem;
  height: 100%;
  position: absolute;
  left: -20rem;
  top: 0;
  background: white;
  -webkit-transition: left 0.2s ease-out;
  -khtml-transition: left 0.2s ease-out;
  -moz-transition: left 0.2s ease-out;
  -ms-transition: left 0.2s ease-out;
  -o-transition: left 0.2s ease-out;
  transition: left 0.2s ease-out; }

.nav-open #drawer {
  display: block; }

.intro-header {
  position: absolute;
  text-align: left;
  top: 0;
  z-index: 1;
  height: 13rem;
  padding: 5rem 12% 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.i-h-brand {
  display: inline-block;
  background-image: url(../assets/main/logo.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 16rem;
  height: 3rem;
  cursor: pointer; }

.intro .i-h-brand {
  cursor: default; }

.i-h-sections {
  display: inline-block;
  float: right; }

.i-h-section {
  border-radius: 0.4rem;
  margin-left: 2rem;
  color: white;
  line-height: 3rem;
  text-decoration: none;
  padding: 0.5rem 1rem; }
  .i-h-section:first-child {
    margin-left: 0; }

.m-section .i-h-section:hover {
  background: rgba(255, 255, 255, 0.1); }
.m-section .i-h-section.active {
  background: white;
  color: #4d4d4d; }

.m-section.intro {
  background-color: #38B4E0; }

.intro-text {
  text-align: left;
  width: 44rem;
  float: left; }

.intro-demo {
  position: absolute;
  top: 12rem;
  right: 15%; }
  .intro-demo img {
    width: 29rem; }

.intro-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 12%;
  text-align: center;
  background: transparent;
  color: white;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.i-desc {
  font-size: 2rem;
  line-height: 3rem;
  max-width: 60rem;
  margin: auto;
  margin-top: 2rem; }

.i-cta {
  width: 16rem;
  height: 5rem;
  color: white;
  background-color: #38B4E0;
  border: 2px solid white;
  border-radius: 0.5rem;
  outline: none;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 4rem 0;
  cursor: pointer;
  display: inline-block;
  line-height: 5rem;
  text-decoration: none;
  text-align: center; }
  .i-cta:hover {
    background-color: #4FD0EA; }

.i-cta-demo {
  width: 10rem;
  margin-left: 1rem !important;
  background: white;
  color: #38B4E0; }
  .i-cta-demo:hover {
    background-color: #C3E8F6; }

#i-switcher {
  display: inline-block;
  height: 6rem;
  width: 25rem;
  background-image: url(../assets/main/switcher.png);
  background-position: 0 6.5%;
  background-repeat: repeat-y;
  background-size: 100%;
  vertical-align: text-bottom;
  margin: 0 -3rem;
  -webkit-animation: displace 10s linear infinite;
  animation: displace 10s linear infinite;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease; }
@keyframes displace {
  0% {
    background-position: 0 6.5%; }
  23% {
    background-position: 0 6.5%; }
  33% {
    background-position: 0 50%; }
  56% {
    background-position: 0 50%; }
  66% {
    background-position: 0 94%; }
  90% {
    background-position: 0 94%; }
  100% {
    background-position: 0 137%; } }
@-webkit-keyframes displace {
  0% {
    background-position: 0 6.5%; }
  23% {
    background-position: 0 6.5%; }
  33% {
    background-position: 0 50%; }
  56% {
    background-position: 0 50%; }
  66% {
    background-position: 0 94%; }
  90% {
    background-position: 0 94%; }
  100% {
    background-position: 0 137%; } }
.next-btn {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 0.7; }
  .next-btn svg {
    fill: white; }
  .next-btn:hover {
    opacity: 1; }

.m-section.channels {
  min-height: 35rem;
  height: auto !important;
  padding: 0 15%;
  text-align: center;
  background-color: #F4F6F8;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.ch-title {
  display: inline-block;
  float: right;
  font-size: 3rem;
  line-height: 4rem;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.ch-img {
  display: inline-block;
  padding: 5rem 0;
  width: 30%;
  min-width: 20rem;
  float: left; }

.channels-container {
  width: 100%;
  position: relative;
  overflow: hidden; }

@media screen and (max-width: 675px) {
  .ch-img {
    float: none; }

  .ch-title {
    position: static;
    transform: none;
    font-size: 2.1rem;
    padding-top: 5rem;
    width: 100%; } }
.demo-page-focused .interface-switcher {
  width: 5rem; }
.demo-page-focused .i-o-name {
  height: 0;
  width: 0; }
.demo-page-focused .interface-option i {
  width: 100%; }

#chat-contaner {
  border-left: 1px solid #ddd;
  height: 100%;
  width: 28rem;
  float: right;
  overflow: hidden; }

.interface-switcher {
  height: 100%;
  background: #aaa;
  width: 100%;
  float: right;
  margin: 0;
  padding: 0;
  -webkit-transition: width 0.3s ease;
  -khtml-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease; }

.chat-space {
  width: 23rem;
  float: left;
  height: 95%;
  background-color: white;
  overflow: hidden;
  position: relative;
  margin-bottom: 5%;
  pointer-events: none; }

.interface-option {
  list-style: none;
  line-height: 5rem;
  height: 5rem;
  text-align: center;
  cursor: pointer;
  color: white;
  border-bottom: 1px solid #bbb; }
  .interface-option:hover {
    background-color: rgba(0, 0, 0, 0.5); }
  .interface-option.active {
    background-color: black; }
  .interface-option i {
    float: left;
    line-height: 5rem;
    display: inline-block;
    width: 15%;
    -webkit-transition: width 0.3 ease;
    -khtml-transition: width 0.3 ease;
    -moz-transition: width 0.3 ease;
    -ms-transition: width 0.3 ease;
    -o-transition: width 0.3 ease;
    transition: width 0.3 ease; }

.msg-cont {
  clear: both;
  overflow: hidden;
  padding: 0.5rem; }
  .msg-cont.right .msg-content {
    float: right;
    background-color: #0066FF;
    color: rgba(255, 255, 255, 0.9); }
  .msg-cont.left .msg-content {
    float: left;
    background-color: #eee;
    color: #4d4d4d; }

.msg-content {
  background-color: #ddd;
  border-radius: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8rem;
  max-width: 16rem; }

.message-slide {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  -webkit-transition: transform 0.2s ease;
  -khtml-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -ms-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease; }

.m-t-card .msg-content,
.m-t-slider .msg-content,
.m-t-location .msg-content {
  max-width: 13rem; }

.m-o-options {
  padding: 0.2rem 2rem;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.m-o-option {
  text-align: center;
  background-color: white;
  margin: 0.5rem 0;
  border-radius: 0.5rem; }

.m-l-map {
  width: 13rem;
  height: 13rem;
  border: 1px solid #ccc;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  margin: 1rem 0;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.m-l-map_thumb {
  width: 200%;
  position: absolute;
  left: -44%;
  top: -41%; }

.m-l-btn {
  position: absolute;
  bottom: 0.5rem;
  right: 1.3rem;
  background: white;
  padding: 0.2rem 0.5rem;
  border: 1px solid #aaa;
  border-radius: 1rem;
  width: 9rem;
  text-align: center; }

.m-c-img {
  width: 100%;
  height: 10rem;
  background: white;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ccc; }
  .m-c-img img {
    width: 115%;
    position: absolute;
    top: -5%; }

.m-t-card .msg-content {
  max-width: 19rem; }

.m-c-card {
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 1rem;
  background-color: white;
  margin: 0.5rem 0; }

.m-c-title {
  font-size: 1.3rem; }

.m-c-title,
.m-c-desc {
  padding: 0.2rem 1rem; }

.m-c-desc {
  font-size: 1rem; }

.m-c-btn,
.m-s-btn {
  text-align: center;
  background: white;
  padding: 0.2rem 0.5rem;
  border-radius: 0.7rem;
  margin: 0.5rem 0; }

.m-rich,
.m-alternate-text {
  display: none; }

.native .m-rich {
  display: block; }

.facebook .m-alternate-text {
  display: block; }

.m-s-slider {
  width: 13rem;
  margin: 1rem 0; }

.m-s-range-r {
  float: right; }

.m-s-range-l {
  float: left; }

.m-s-slide {
  clear: both;
  width: 100%;
  border-top: 2px solid #999;
  position: relative; }

.m-s-handle-l,
.m-s-handle-r {
  position: absolute;
  top: -6px;
  left: 1rem;
  height: 1rem;
  width: 1rem;
  border-radius: 1rem;
  background-color: #0066FF; }

.m-s-handle-r {
  right: 5rem;
  left: inherit; }

.m-s-selection {
  position: absolute;
  border-top: 2px solid #0066FF;
  left: 1.3rem;
  width: 6rem;
  top: -2px; }

.m-s-sel-range {
  margin-top: 1rem;
  text-align: center; }

.m-t-payment .m-s-btn {
  background-color: #0066FF;
  color: white; }

.m-t-catalog .msg-content {
  max-width: 19rem; }

.ct-i-img {
  height: 5rem;
  width: 5rem;
  float: left;
  background: white;
  overflow: hidden;
  position: relative; }
  .ct-i-img img {
    top: -40%;
    height: 144%;
    position: absolute; }

.m-rich.ct-i-data {
  height: 4rem;
  width: 13.5rem;
  padding: 0.5rem 0 0.5rem 0.5rem;
  font-size: 1rem;
  float: right; }

.ct-item {
  margin: 0.5rem 0;
  overflow: hidden;
  background: white;
  border-radius: 1rem; }

#demo-info {
  float: left;
  width: calc(100% - 29rem);
  height: 100%;
  overflow: hidden; }

.demo-slide {
  position: relative;
  display: none;
  height: 100%;
  padding: 10rem 3rem;
  text-align: center;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden; }
  .demo-slide.active {
    display: block; }

.d-s-img {
  height: 18rem;
  width: 18rem;
  background: #eee;
  margin: auto;
  border-radius: 10rem;
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%); }

.i-o-name {
  display: inline-block;
  width: 85%;
  overflow: hidden;
  -webkit-transition: width 0.3 ease;
  -khtml-transition: width 0.3 ease;
  -moz-transition: width 0.3 ease;
  -ms-transition: width 0.3 ease;
  -o-transition: width 0.3 ease;
  transition: width 0.3 ease; }

.o-content {
  width: 100%;
  margin: auto;
  text-align: center; }

#mc_embed_signup {
  display: inline-block; }

.mc-field-group {
  clear: both;
  overflow: hidden;
  margin: 3rem 0; }
  .mc-field-group input {
    float: left;
    width: 35rem;
    line-height: 2.7rem;
    font-size: 1.8rem;
    outline: none; }
  .mc-field-group label {
    float: left;
    width: 14rem;
    text-align: left;
    line-height: 3.3rem; }

#mc-embedded-subscribe {
  float: right;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  color: white;
  outline: none;
  background-color: #633667;
  min-width: 10rem;
  cursor: pointer; }
  #mc-embedded-subscribe:hover {
    background-color: #834888; }

.indicates-required {
  display: none; }

.o-section-about .o-content,
.o-section-faq .o-content {
  height: calc(100% - 8rem);
  padding: 0 2rem 15rem;
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 5rem;
  text-align: left; }
  .o-section-about .o-content .social,
  .o-section-faq .o-content .social {
    background: #2E2A34;
    height: 4rem;
    padding: 0.7rem;
    width: 21rem;
    margin: 3rem 0;
    border-radius: 3px; }

.o-a-cover {
  position: relative;
  width: 100%;
  height: 20rem; }

.o-a-cover-line {
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  width: 100%;
  color: #38B4E0; }

.o-a-content p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #4d4d4d;
  opacity: 0.9; }

.o-a-intro {
  font-size: 2rem;
  line-height: 3rem;
  color: #4d4d4d; }

.o-a-title {
  color: #4d4d4d;
  margin: 4rem 0; }

.o-f-que {
  color: #4d4d4d;
  margin: 2rem 0; }

.o-f-ans {
  margin-bottom: 4rem;
  color: #4d4d4d;
  opacity: 0.9; }

.h-g, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400; }

h1 {
  font-size: 5rem;
  line-height: 7.5rem; }

h2 {
  font-size: 3.5rem;
  line-height: 5rem; }

h3 {
  font-size: 3rem;
  line-height: 4.5rem; }

h4 {
  font-size: 2.5rem;
  line-height: 3rem; }

h5 {
  font-size: 1.8rem;
  line-height: 2.7rem; }

h6 {
  font-size: 1.5rem;
  line-height: 2.2rem;
  font-weight: 700; }

html {
  font-family: Lato, Helvetica;
  font-size: 10px;
  line-height: 15px; }

#m-scroll-container {
  z-index: 10;
  -webkit-transition: opacity 0.3s ease;
  -khtml-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  line-height: 2.3rem;
  color: #2E2A34; }
  body.loading {
    background-color: #2E2A34; }
    body.loading #m-scroll-container {
      opacity: 0;
      -webkit-transition: opacity 0.3s ease;
      -khtml-transition: opacity 0.3s ease;
      -moz-transition: opacity 0.3s ease;
      -ms-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease; }
  body.overlay-active, body.nav-open {
    overflow: hidden !important; }

.hide {
  display: none !important; }

.m-section,
footer,
.f-social {
  display: none !important; }

.intro,
.hiw,
.feature,
.footer,
.detail-feat,
.channels,
.page-cover,
.page-content,
.in-the-news,
.banner {
  display: block !important; }

.flash-news-active .flash-news {
  display: block !important; }
.flash-news-active .next-btn {
  bottom: 9rem; }

.m-section {
  min-height: 71rem;
  background-color: white; }

.page-content {
  height: auto !important; }

.flash-news {
  height: 4rem !important;
  min-height: 0 !important;
  background-color: #37A0C6;
  color: white;
  line-height: 4rem;
  position: relative; }
  .flash-news .f-n-content {
    width: 100%;
    display: inline-block;
    text-align: center;
    opacity: 0.8; }
    .flash-news .f-n-content a {
      color: white; }
  .flash-news .f-n-close {
    width: 4rem;
    height: 4rem;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer; }

.chat-connect {
  height: 5rem;
  width: 5rem;
  border-radius: 5rem;
  background: white;
  color: #4d4d4d;
  border: 1px solid #eee;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  overflow: hidden;
  -webkit-transition: width 0.3s ease;
  -khtml-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
  -webkit-box-shadow: 2px 3px 3px rgba(41, 41, 41, 0.3);
  -khtml-box-shadow: 2px 3px 3px rgba(41, 41, 41, 0.3);
  -moz-box-shadow: 2px 3px 3px rgba(41, 41, 41, 0.3);
  -ms-box-shadow: 2px 3px 3px rgba(41, 41, 41, 0.3);
  -o-box-shadow: 2px 3px 3px rgba(41, 41, 41, 0.3);
  box-shadow: 2px 3px 3px rgba(41, 41, 41, 0.3);
  cursor: pointer; }
  .chat-connect i {
    line-height: 5rem;
    width: 5rem;
    text-align: center;
    font-size: 3rem; }
  .chat-connect .connect-slide {
    width: 18rem; }
  .chat-connect.active {
    width: 18rem; }
  .chat-connect .fb-messengermessageus {
    display: inline-block !important;
    max-width: 120px; }

.page-cover {
  height: 22rem !important;
  min-height: 22rem !important;
  background-color: #38B4E0; }

.cover-title {
  padding: 14rem 12% 3rem;
  height: 22rem;
  color: white;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.in-the-news {
  height: auto !important;
  min-height: 0 !important;
  text-align: center;
  background-color: white; }
  .in-the-news ul {
    margin: 0;
    padding: 2rem;
    padding-bottom: 4rem;
    padding-top: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; }
  .in-the-news .i-t-n-title {
    height: 4.5rem;
    display: inline-block;
    margin-top: 3rem;
    font-size: 1.5rem;
    opacity: 0.8;
    text-transform: uppercase; }

.i-t-n-logo {
  display: inline-block;
  height: 6rem;
  margin: 2rem;
  margin-bottom: 0;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }
  .i-t-n-logo .i-t-n-link {
    display: block;
    height: 100%;
    background-image: url("/assets/main/in-the-news.png");
    background-size: auto 15rem;
    color: transparent;
    font-size: 1px; }
    .i-t-n-logo .i-t-n-link.vb {
      width: 163px;
      background-position: 0px -75px; }
      .i-t-n-logo .i-t-n-link.vb:hover {
        background-position: 0px 0px; }
    .i-t-n-logo .i-t-n-link.imw {
      width: 129px;
      background-position: -180px -75px; }
      .i-t-n-logo .i-t-n-link.imw:hover {
        background-position: -180px 0px; }
    .i-t-n-logo .i-t-n-link.g360 {
      width: 150px;
      background-position: -315px -75px; }
      .i-t-n-logo .i-t-n-link.g360:hover {
        background-position: -315px 0px; }
    .i-t-n-logo .i-t-n-link.bwd {
      width: 125px;
      background-position: -465px -75px; }
      .i-t-n-logo .i-t-n-link.bwd:hover {
        background-position: -465px 0px; }
    .i-t-n-logo .i-t-n-link.tma {
      width: 57px;
      background-position: -600px -75px; }
      .i-t-n-logo .i-t-n-link.tma:hover {
        background-position: -600px 0px; }

.hiw {
  min-height: 55rem;
  height: auto !important;
  background-color: #F4F6F8; }

.section-title {
  color: #494A5A;
  text-align: center;
  padding: 8rem 0 0; }

.section-desc {
  text-align: center;
  width: 55%;
  font-size: 1.8rem;
  margin: 1rem auto;
  line-height: 2.7rem;
  color: #777; }

.hiw-step {
  display: inline-block;
  padding: 4rem;
  padding-bottom: 0;
  width: 14rem;
  height: 20rem;
  text-align: center;
  vertical-align: top; }
  .hiw-step img {
    height: 10rem; }

.hiw-steps {
  text-align: center;
  width: 100%; }

.step-title {
  padding: 2rem 0 1rem;
  font-size: 1.8rem;
  text-transform: uppercase; }

.step-desc {
  font-size: 1.4rem;
  line-height: 2rem;
  color: #777; }

.feat-details {
  max-width: 40rem; }

.feature {
  background-color: #F4F6F8;
  overflow: hidden; }

.feat-1 {
  background-color: white; }

.feat-2 .feat-details {
  float: right;
  padding-left: 2rem;
  box-sizing: border-box; }
.feat-2 .feat-screen {
  left: 0;
  right: auto; }
  .feat-2 .feat-screen img {
    right: 0;
    left: auto;
    height: 60%; }

.feat-3 {
  background-color: white; }
  .feat-3 .feat-screen img {
    height: 55%; }

.feature-container {
  padding: 0 12%;
  height: 100%; }

.feat-details {
  width: 50%;
  display: inline-block;
  margin-top: 18rem; }

.feat-screen {
  position: absolute;
  right: 2rem;
  top: 25%;
  max-width: 60rem;
  width: 47%;
  height: 90%; }
  .feat-screen img {
    position: absolute;
    left: 0;
    height: 70%; }

.feat-sub-title {
  opacity: 0.7;
  margin: 2rem 0; }

.feat-points {
  font-size: 1.8rem;
  line-height: 2.7rem; }

.f-p-item {
  display: inline-block;
  text-align: left;
  width: 30rem;
  margin: 1rem 0; }
  .f-p-item i {
    width: 2rem;
    margin-right: 1.5rem;
    text-align: center; }

.feat-1 .f-p-item {
  width: 30rem; }

.feat-2 .f-p-item {
  width: 24rem; }

.feat-3 .f-p-item {
  width: 30rem; }

.detail-feat {
  background-color: #F4F6F8;
  height: auto !important; }
  .detail-feat.d-f-integrations {
    background-color: white;
    height: auto !important;
    min-height: 0; }

.d-f-integrations .section-title {
  font-size: 3rem;
  padding-top: 5rem; }

.detail-feat-container {
  height: 100%;
  text-align: center; }
  .detail-feat-container .section-desc {
    font-size: 1.8rem;
    margin: 1rem auto; }

.d-f-sub-title {
  text-transform: uppercase;
  font-weight: 700; }

.d-f-feat {
  /*width: 33%;*/
  vertical-align: top;
  display: inline-block;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

.d-f-f-desc {
  display: none; }

.d-f-f-icon {
  height: 3rem;
  width: 3rem;
  border-radius: 3rem;
  display: inline-block;
  margin: 2rem;
  line-height: 3rem;
  font-size: 3rem;
  color: #666; }

.d-f-f-name {
  font-weight: 700;
  color: #666;
  margin-bottom: 1.5rem; }

.d-f-sub-section {
  padding-bottom: 6rem;
  clear: both;
  overflow: hidden;
  border-bottom: 1px solid #eee; }
  .d-f-sub-section:last-child {
    border: none; }

.demo-container {
  height: 100%; }

.c-d-animation {
  height: 50rem;
  width: 100%;
  max-width: 60rem;
  margin: 3rem auto 0;
  background: white;
  border: 1px solid #eee; }
  .c-d-animation .msg-content {
    font-weight: 400; }

.fp-viewing-5 .interface-switcher {
  width: 5rem; }
.fp-viewing-5 .i-o-name {
  height: 0;
  width: 0; }
.fp-viewing-5 .interface-option i {
  width: 100%; }

.demo-container {
  background-color: white; }
  .demo-container .m-o-options {
    padding: 0; }
  .demo-container .m-o-option {
    padding: 0 1rem; }
  .demo-container .m-rich.ct-i-data {
    width: 15.5rem; }
  .demo-container .m-t-catalog .msg-content {
    max-width: 21rem; }

.interface-switcher {
  background-color: #7f808b;
  -webkit-transition: width 0.3s ease 1s;
  -khtml-transition: width 0.3s ease 1s;
  -moz-transition: width 0.3s ease 1s;
  -ms-transition: width 0.3s ease 1s;
  -o-transition: width 0.3s ease 1s;
  transition: width 0.3s ease 1s; }
  .interface-switcher .interface-option {
    border-bottom: 1px solid #92929c; }

.banner-container {
  background-color: #ffcc33;
  background-position: 0 100%;
  height: 100%;
  background-repeat: no-repeat;
  text-align: center;
  color: #4d4d4d; }
  .banner-container .b-mail {
    color: #4d4d4d; }
    .banner-container .b-mail:hover {
      text-decoration: underline; }
  .banner-container .i-cta {
    background-color: #2E2A34;
    border: none; }
    .banner-container .i-cta:hover {
      background-color: #494A5A; }

.b-tag-line {
  color: #494A5A;
  font-weight: 700;
  padding-top: 5rem; }

.footer {
  height: auto !important;
  min-height: 0 !important; }

.banner {
  height: 30rem !important;
  min-height: 0 !important; }

.footer {
  background: #2E2A34;
  padding: 3rem 12%; }

.footer-container {
  text-align: center;
  height: 100%; }

.footer-nav {
  position: relative;
  clear: both;
  overflow: hidden; }
  .footer-nav .i-h-sections {
    float: left;
    opacity: 0.4; }
  .footer-nav .i-h-section {
    display: inline-block; }
  .footer-nav .i-h-subsection {
    display: inline-block;
    padding-right: 2rem;
    float: left; }
    .footer-nav .i-h-subsection:last-child {
      padding-right: 0; }
  .footer-nav .i-h-brand {
    position: static;
    margin-right: 4rem;
    -webkit-transform: none;
    -khtml-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    float: left;
    height: 3.5rem; }
  .footer-nav .i-h-brand,
  .footer-nav .i-h-subsection {
    margin-top: 1rem; }

.f-tag-line {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem; }

.f-social {
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 5rem;
  color: white; }

.f-s-btn {
  border: none;
  width: 10rem;
  height: 3rem;
  outline: none;
  cursor: pointer;
  color: white;
  border-radius: 0.4rem;
  margin: 0.5rem;
  font-size: 1.3rem;
  font-weight: 400; }

.f-s-fb {
  background-color: #3b5998; }

.f-s-tw {
  background-color: #00a0d1; }

.f-s-share {
  margin: 1rem 0; }

.f-links {
  padding: 7rem 0;
  display: none; }

.f-social-link {
  padding: 0 1rem; }

.f-meta {
  color: #888;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  opacity: 0.5;
  padding-top: 1rem; }

.f-cp {
  padding-right: 10rem; }

.f-design {
  display: inline-block; }
  .f-design a {
    color: #888;
    opacity: 0.7; }

.f-cp,
.f-design {
  padding-top: 1rem; }

.social {
  line-height: 3rem;
  text-align: left;
  padding-top: 2rem; }

.social-link {
  display: inline-block;
  margin: 0 1rem;
  vertical-align: -webkit-baseline-middle; }
  .social-link:hover .icon {
    opacity: 1; }
  .social-link:first-child {
    margin-left: 0; }
  .social-link#social-link-mail {
    margin-right: 5rem; }

.icon {
  height: 2.5rem;
  width: 2.5rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 2.5rem;
  opacity: 0.6; }

.i-fb {
  background-image: url(../assets/comingSoon/fb.png); }

.i-tw {
  background-image: url(../assets/comingSoon/tw.png); }

.i-med {
  background-image: url(../assets/comingSoon/med.png); }

.i-mail {
  background-image: url(../assets/comingSoon/email.png); }

#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 50; }

.ai-overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  TRANSform: translate(-50%, -50%);
  z-index: 100; }

.o-section {
  display: none; }

.overlay-active .ai-overlay {
  display: block; }
.overlay-active #popup-overlay {
  display: block; }

.overlay-waitlist .o-section-waitlist {
  display: block;
  background: white;
  width: 60rem;
  padding: 0rem;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  margin: auto;
  min-height: 18rem;
  border-radius: 3px; }
.overlay-waitlist .o-content {
  margin-right: -1rem; }
.overlay-waitlist .o-title {
  margin-top: 1rem; }
.overlay-waitlist .typeform-widget {
  height: 40rem; }

.overlay-demos .o-section-demos {
  display: block;
  background: white;
  width: 60rem;
  padding: 3rem;
  text-align: center;
  box-sizing: border-box;
  margin: auto;
  min-height: 18rem;
  border-radius: 3px; }
  .overlay-demos .o-section-demos .o-content {
    margin-top: 3rem; }
  .overlay-demos .o-section-demos .demo-item {
    padding: 1rem 2rem;
    background: #2E2A34;
    color: white;
    border-radius: 2rem;
    text-decoration: none;
    display: inline-block;
    margin: 1rem; }
    .overlay-demos .o-section-demos .demo-item:hover {
      opacity: 0.5; }

.o-section-about,
.o-section-faq {
  width: 76%;
  height: 100%;
  margin: auto;
  padding: 12rem 0 0;
  box-sizing: border-box; }

.overlay-faq .o-section-faq {
  display: block; }
.overlay-faq [data-action="faq"] {
  text-decoration: underline; }

.overlay-about .o-section-about {
  display: block; }
.overlay-about [data-action="about"] {
  text-decoration: underline; }

.overlay-about .ai-overlay,
.overlay-faq .ai-overlay {
  width: 100%;
  height: 100%;
  background-color: white; }
.overlay-about #close-overlay,
.overlay-faq #close-overlay {
  right: 12%;
  top: 13rem;
  padding: 0; }

.o-title {
  color: #4d4d4d; }

.o-t-w-demo {
  margin-top: 2rem; }

#close-overlay {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2.5rem;
  line-height: 2.5rem;
  width: 2.5rem;
  text-align: center;
  padding: 1rem;
  opacity: 0.5;
  cursor: pointer; }
  #close-overlay:hover {
    opacity: 0.8; }

.prefinery-form-embed {
  margin-top: 2rem;
  position: relative;
  z-index: 100;
  height: 100%; }
  .prefinery-form-embed iframe {
    min-height: 230px !important;
    background: white; }

.o-section.o-section-waitlist:after {
  display: none;
  opacity: 0.7;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  font-size: 2.5rem; }
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg); }
  to {
    -ms-transform: rotate(360deg); } }
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg); }
  to {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
#mc_embed_signup {
  display: none; }

.page-content .o-content {
  width: 76%;
  text-align: left;
  padding-bottom: 10rem;
  padding-top: 5rem;
  color: #4d4d4d; }

@media screen and (max-width: 1040px) {
  .intro-text {
    width: 35rem; }

  .intro-demo {
    right: 9%; }
    .intro-demo img {
      width: 25rem; }

  .nav-toggle {
    display: inline-block; }

  .i-h-section {
    display: none; }
    .i-h-section.i-h-cta {
      display: inline;
      margin: 0; }

  .i-h-brand {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); } }
@media screen and (max-width: 768px) {
  .intro-text {
    width: 30rem; }

  h1 {
    font-size: 4.5rem;
    line-height: 5.5rem; }

  .feat-screen {
    top: auto;
    max-width: none;
    width: 100%;
    height: 30rem;
    text-align: center; }
    .feat-screen img {
      position: absolute;
      left: 50%;
      height: 100%;
      -webkit-transform: translateX(-50%);
      -khtml-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%); }

  .i-cta {
    margin: 3rem 0; }

  .feat-details {
    max-width: none;
    width: 100%;
    margin: 7rem 0;
    text-align: center; }

  .feat-2 .feat-details,
  .feat-3 .feat-details {
    float: none;
    padding-left: 0; }
  .feat-2 .feat-screen img,
  .feat-3 .feat-screen img {
    right: auto;
    height: 100%; }

  .feat-points {
    padding-top: 1rem; }

  .d-f-feat {
    padding: 3.5rem 2rem; }

  .hiw-step {
    padding: 3rem;
    padding-bottom: 0; }
    .hiw-step img {
      height: 6rem; } }
@media screen and (max-width: 675px) {
  .d-f-integrations .section-title {
    font-size: 2.1rem; }

  .intro {
    min-height: 90rem !important; }

  .intro-container {
    transform: none;
    top: 15%; }

  .intro-header {
    padding: 3rem 4% 0; }

  .footer {
    padding: 1rem 4%; }

  #header {
    padding: 2rem 4%; }
    #header .i-h-brand {
      background-size: 16rem;
      background-position: left;
      width: 5rem; }

  .cover-title {
    padding: 14rem 4% 3rem; }

  .page-content .o-content {
    width: 92%; }

  .i-h-section {
    margin-left: 1rem; }

  .intro-text {
    width: 100%;
    text-align: center; }

  .intro-demo {
    position: static; }
    .intro-demo img {
      width: 23rem; }

  #i-switcher {
    width: 23rem;
    margin: 0 -2rem; }
  @keyframes displace {
    0% {
      background-position: 0 4%; }
    23% {
      background-position: 0 4%; }
    33% {
      background-position: 0 48%; }
    56% {
      background-position: 0 48%; }
    66% {
      background-position: 0 93%; }
    90% {
      background-position: 0 93%; }
    100% {
      background-position: 0 138%; } }
  @-webkit-keyframes displace {
    0% {
      background-position: 0 4%; }
    23% {
      background-position: 0 4%; }
    33% {
      background-position: 0 48%; }
    56% {
      background-position: 0 48%; }
    66% {
      background-position: 0 93%; }
    90% {
      background-position: 0 93%; }
    100% {
      background-position: 0 138%; } }
  .next-btn {
    display: none; }

  .d-f-feat {
    /*width: 48%;*/ }

  .section-desc {
    width: 90%; }

  .feature-container {
    padding: 0 5%; }

  .feat-screen {
    height: 25rem; }

  .m-section {
    min-height: 70rem; }

  .ai-overlay {
    width: 100%;
    height: 100%; }

  .overlay-waitlist .o-section-waitlist {
    width: 100%;
    height: 100%; }
  .overlay-waitlist .prefinery-form-embed {
    margin-top: 3rem; }
  .overlay-waitlist .o-content {
    height: calc(100% - 3rem); }
  .overlay-waitlist .typeform-widget {
    height: 100%; }

  .overlay-demos .o-section-demos {
    width: 100%;
    height: 100%;
    padding-top: 15rem; }

  .overlay-faq .ai-overlay #close-overlay,
  .overlay-about .ai-overlay #close-overlay {
    right: 4%;
    top: 9rem; }

  .o-section-about,
  .o-section-faq {
    width: 92%;
    padding: 8rem 0 0; }

  .o-section.o-section-waitlist:after {
    top: 30%; } }
@media screen and (max-width: 500px) {
  .d-f-feat {
    /*width: 90%;*/ }

  .intro-container {
    padding: 5%; }

  .intro {
    min-height: 100rem !important; }

  .feat-screen {
    height: 15rem; }

  h1 {
    font-size: 3.5rem;
    line-height: 6rem; }

  h4 {
    font-size: 2.3rem; }

  .f-cp {
    padding-right: 0; }

  .overlay-waitlist .o-section-waitlist {
    padding: 1rem; }
  .overlay-waitlist .prefinery-form-embed {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    margin-top: 4rem;
    padding-top: 2rem;
    box-sizing: border-box;
    width: calc(100% - 2rem); }

  #header .i-h-brand {
    position: static;
    left: auto;
    -webkit-transform: none;
    -khtml-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none; }

  #i-switcher {
    display: block;
    margin: auto;
    width: 18rem; }
  @keyframes displace {
    0% {
      background-position: 0 0.5%; }
    23% {
      background-position: 0 0.5%; }
    33% {
      background-position: 0 50%; }
    56% {
      background-position: 0 50%; }
    66% {
      background-position: 0 100%; }
    90% {
      background-position: 0 100%; }
    100% {
      background-position: 0 149%; } }
  @-webkit-keyframes displace {
    0% {
      background-position: 0 0.5%; }
    23% {
      background-position: 0 0.5%; }
    33% {
      background-position: 0 50%; }
    56% {
      background-position: 0 50%; }
    66% {
      background-position: 0 100%; }
    90% {
      background-position: 0 100%; }
    100% {
      background-position: 0 149%; } } }

/*# sourceMappingURL=main-index.css.map */
