/**
 * @file
 * 'Master' stylesheet.
 */
/**
 * @file
 * SASS base.
 */
@import url(https://fonts.googleapis.com/css?family=Roboto:400,900,700,500,300);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:700);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,300,900);
/* LEGEND for the breakpoint variables:
| <- $layout-page-min-width                          $layout-page-max-width -> |
|                                                                              |
|            <- monocol ->              |            <- multicol ->            |
|                                       |                                      |
|  monocol   |  monocol   |  monocol    |  multicol  |  multicol  |  multicol  |
|  lowthird  |  midthird  |  highthird  |  lowthird  |  midthird  |  highthird |
| (mono-lt)  | (mono-mt)  | (mono-ht)   | (multi-lt) | (multi-mt) | (multi-ht) |
*/
/**
 * @file
 * Custom mixins.
 *
 * NOTES on basic syntax:
 * @code
 *
 * @mixin test-mixin--box($bg: gold, $padding: 1em) {
 *   background: $bg;
 *   padding: $padding;
 *
 *   @if $bg == (gold) and $padding == (1em) {
 *     border: 1px solid red;
 *   }
 *   @else if $bg == (gold) and $padding != (1em) {
 *     border: 5px solid red;
 *   }
 *   @else {
 *     border: 3px solid black;
 *   }
 * }
 *
 * @endcode
 */
/**
 * @file
 * Base styles.
 */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  line-height: 1.5;
  font-weight: 400;
}

body {
  font-family: "Roboto", Arial, Verdana, sans-serif;
  font-weight: 400;
}

p:first-child,
ul:first-child,
ol:first-child,
dl:first-child {
  margin-top: 0;
}
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 1em;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

.brand-logo {
  display: inline-block;
  text-decoration: none;
}

.section-title {
  display: block;
  font-family: "Roboto Slab", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.25;
}
@media all and (min-width: 840px) {
  .section-title {
    font-size: 2em;
  }
}

.line {
  height: 1px;
  border: none;
  /**/
}

label {
  display: block;
  font-weight: 700;
  font-size: 0.9em;
  line-height: 1.25;
}

label + input {
  margin-top: 0.5em;
}

.input--textfield {
  font-size: 1em;
  height: 35px;
  line-height: 34px;
}

.input--textfield {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid silver;
  color: #333;
  padding: 0 0.5em;
}

.form__item {
  position: relative;
}

.fi__notification {
  display: none;
}

.fin__text {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-transition-property: background-color;
  -o-transition-property: background-color;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background-color: #777;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  margin: 1em 0 0;
  padding: 0.5em 0.75em;
}

.fi__notification.on {
  display: block;
}

.fi__notification.alert .fin__text {
  background-color: red;
}

input:focus ~ .fi__notification .fin__text {
  background-color: #777;
}

.form__item + .form__item {
  margin-top: 1.5em;
}

.lt-ie9 .page-center {
  width: 700px;
}
.lt-ie9 img {
  max-width: none;
}
.lt-ie9 .benefit__image img {
  width: 180px;
}
.lt-ie9 .intro__image img {
  width: 200px;
}

body.admin .board {
  margin: 0 auto;
  max-width: 732px;
  padding: 1em;
}

.sys-msg {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #eee;
  border: 1px solid #888;
  padding: 0.75em 1em;
}
.sys-msg.minor {
  background: transparent;
}
.sys-msg + .sys-msg {
  margin-top: 1em;
}

.generator-ui .menu {
  background: #eee;
  display: inline-block;
  margin: 0 0 2em;
  padding: 1em 2em;
}
.generator-ui p + .menu {
  margin-top: 1em;
}

.github-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  z-index: 200;
}

.display-inline {
  display: inline;
}

/**
 * @file
 * Layouts.
 */
@media all and (min-width: 840px) {
  .pseudo-grid-host {
    overflow: hidden;
  }

  .pseudo-grid-stretch {
    margin-left: -1em;
    margin-right: -1em;
  }

  .pseudo-grid {
    display: table;
    width: 100%;
    border-spacing: 1em;
  }
  .pseudo-grid > .p-grid-item {
    display: table-cell;
  }
}
.page-center {
  margin: 0 auto;
  min-height: 5em;
  min-width: 300px;
  max-width: 1100px;
  padding-top: 1em;
  padding-bottom: 1em;
}

/**
 * @file
 * Rules for reusable modules.
 */
.call-to-action {
  -webkit-appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  -moz-transition-property: color, background-color, border-color, background-image;
  -o-transition-property: color, background-color, border-color, background-image;
  -webkit-transition-property: color, background-color, border-color, background-image;
  transition-property: color, background-color, border-color, background-image;
  -moz-transition-duration: 0.1s, 0.1s, 0.1s, 0.1s;
  -o-transition-duration: 0.1s, 0.1s, 0.1s, 0.1s;
  -webkit-transition-duration: 0.1s, 0.1s, 0.1s, 0.1s;
  transition-duration: 0.1s, 0.1s, 0.1s, 0.1s;
  border-radius: 3px;
  border: 1px solid #ccc;
  display: inline-block;
  font-family: "Roboto", Arial, Verdana, sans-serif;
  font-weight: 500;
  font-size: 0.9em;
  line-height: 1.25;
  padding: 8px 14px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.call-to-action:hover,
a.call-to-action.call-to-action:hover {
  background: none;
  border-color: #f39e48;
  color: #f39e48;
  font-weight: 600;
}
.page--researcher .call-to-action:hover, .page--researcher
a.call-to-action.call-to-action:hover {
  border-color: #08acff;
  color: #08acff;
}
.page--developer .call-to-action:hover, .page--developer
a.call-to-action.call-to-action:hover {
  border-color: #fed434;
  color: #fed434;
}
.page--individual .stripe--personas .researchers .call-to-action, .page--individual .stripe--personas .researchers
a.call-to-action.call-to-action {
  border-color: #008DD4;
  color: #008DD4;
}
.page--individual .stripe--personas .researchers .call-to-action:hover, .page--individual .stripe--personas .researchers
a.call-to-action.call-to-action:hover {
  border-color: #08acff;
  color: #08acff;
}
.page--individual .stripe--personas .developers .call-to-action, .page--individual .stripe--personas .developers
a.call-to-action.call-to-action {
  border-color: #FEC901;
  color: #FEC901;
}
.page--individual .stripe--personas .developers .call-to-action:hover, .page--individual .stripe--personas .developers
a.call-to-action.call-to-action:hover {
  border-color: #fed434;
  color: #fed434;
}

.call-to-action.has-icon {
  padding: 8px 40px 8px 14px;
}
.call-to-action.has-icon:after {
  /*
  background-image: image-url('sprite-v1.svg');
  background-attachment: scroll;
  background-repeat: no-repeat;

  .mdz-no-svg & {
    background-image: image-url('sprite-v1.png');
  }
  */
  background: rgba(0, 255, 0, 0.5);
  content: '';
  display: inline-block;
  height: 20px;
  margin-top: -10px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
}

/**
 * @file
 * Page modules.
 */
.separator {
  background-color: #fff;
  display: block;
  height: 5px;
  width: 65px;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.separator.separator-center {
  margin-left: auto;
  margin-right: auto;
}
.separator.separator-left {
  margin-left: 0;
  margin-right: 0;
}

.stripe--sticky-header {
  -moz-box-shadow: rgba(50, 35, 60, 0.5) 0 1px 8px;
  -webkit-box-shadow: rgba(50, 35, 60, 0.5) 0 1px 8px;
  box-shadow: rgba(50, 35, 60, 0.5) 0 1px 8px;
  background: white;
  border-bottom: 1px solid #a8a8a8;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transform: translateZ(0);
}
.stripe--sticky-header .vm__branding {
  clear: both;
  margin: 0;
  padding: 0.5em 0.5em 0;
  min-height: 5em;
}
.stripe--sticky-header .vm__branding .vm__branding__item {
  padding: 0 0.5em;
}
.stripe--sticky-header .vm__branding .vm__branding__item.vm__logo {
  max-width: 200px;
  margin-right: 10px;
}
.stripe--sticky-header .hamburger {
  display: block;
  float: right;
  background-position: 0 -71px;
  margin: 0.25em;
}
.stripe--sticky-header .hamburger:hover {
  background-position: 0 -106px;
}
.stripe--sticky-header .vm__menu {
  display: block;
  padding: 0 0.5em;
}
.stripe--sticky-header .branding__link {
  display: none;
}

@media all and (min-width: 580px) {
  .stripe--sticky-header .vm__branding {
    padding: 0 0.5em;
  }
  .stripe--sticky-header .branding__link {
    display: inline-block;
    padding-right: 1em;
  }
  .stripe--sticky-header .vm__menu .login-register {
    display: none;
  }
}
@media all and (min-width: 1132px) {
  .stripe--sticky-header .vm__branding {
    padding: 0 0.5em;
  }
}
.video-module {
  /**
   * For modern browsers
   * 1. The space content is one way to avoid an Opera bug when the
   *    contenteditable attribute is included anywhere else in the document.
   *    Otherwise it causes space to appear at the top and bottom of elements
   *    that are clearfixed.
   * 2. The use of `table` rather than `block` is only necessary if using
   *    `:before` to contain the top-margins of child elements.
   */
}
.video-module:before, .video-module:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.video-module:after {
  clear: both;
}

.vm__video-block,
.vm__text-block {
  position: relative;
  float: left;
  width: 100%;
}

.vm__video-block {
  margin-right: -100%;
  z-index: 50;
  display: none;
}
.vm__video-block:after {
  background: rgba(0, 0, 0, 0.4);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 60;
}

.vm__video {
  display: block;
}

.vm__text-block {
  padding-bottom: 3em;
  text-align: center;
  z-index: 100;
}

.vm__branding {
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: left;
}
.vm__branding .vm__logo {
  float: left;
  width: 210px;
}

.vm__branding__item {
  padding: 0 1em;
}

.vm__branding__logo {
  /*background: rgba(lime, 0.5);*/
  background: url("../images/logos/logo_light.png");
  background-size: 220px 61px;
  display: block;
  line-height: 61px;
  height: 61px;
  width: 220px;
}

.page-scrolled-in .vm__branding__logo {
  background: url("../images/logos/logo_dark.png");
  background-size: 220px 61px;
  line-height: 61px;
  height: 61px;
  width: 220px;
}

.branding__link {
  display: inline-block;
  font-weight: 700;
  line-height: 50px;
  opacity: 0.8;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
}
.branding__link + .branding__link {
  margin-left: 1em;
}

.vm__title {
  font-family: "Roboto Slab", Arial, Verdana, sans-serif;
  font-weight: 700;
  color: #F08418;
  font-size: 2em;
  line-height: 1.15;
  padding: 1em 1em;
  min-height: auto;
}
.page--developer .vm__title {
  color: #FEC901;
}
.page--researcher .vm__title {
  color: #008DD4;
}

.vm__sub-slogan {
  font-family: "Roboto", Arial, Verdana, sans-serif;
  font-weight: 300;
  display: block;
  line-height: 1.25;
  margin: 0 0 32px;
  font-size: 1.2em;
  padding: 0 1em;
}

.vm__cta {
  padding: 0 1em;
}
.vm__cta .call-to-action {
  background: rgba(0, 0, 0, 0.3);
}

.page--individual .call-to-action, .page--individual
a.call-to-action, .page--individual
a:visited.call-to-action {
  border-color: #F08418;
  color: #F08418;
}
.page--developer .call-to-action, .page--developer
a.call-to-action, .page--developer
a:visited.call-to-action {
  border-color: #FEC901;
  color: #FEC901;
}
.page--researcher .call-to-action, .page--researcher
a.call-to-action, .page--researcher
a:visited.call-to-action {
  border-color: #008DD4;
  color: #008DD4;
}

@media all and (min-width: 420px) {
  .vm__branding {
    display: table;
    padding: 0 0.5em;
    margin-top: 2em;
    width: 100%;
  }
  .vm__branding .brand-logo {
    text-align: left;
  }

  .vm__branding__item {
    padding: 0 1em;
    display: table-cell;
    padding: 1em;
    vertical-align: middle;
    width: 80px;
  }

  .vm__branding__links {
    text-align: right;
    padding-right: 4em;
  }
}
@media all and (min-width: 580px) {
  .vm__title {
    font-size: 2.2em;
    padding: 1em 2em;
  }

  .vm__sub-slogan {
    font-size: 1.5em;
    margin: 0 0 36px;
    padding-left: 2em;
    padding-right: 2em;
  }
}
@media all and (min-width: 860px) {
  .stripe--video-module {
    background: #333;
  }

  .vm__video-block {
    display: block;
  }

  .vm__sub-slogan {
    margin: 0 0 36px;
  }

  .vm__cta .call-to-action {
    font-size: 1.25em;
    padding: 0.75em 2.5em;
  }
}
@media all and (min-width: 920px) {
  .vm__title {
    font-size: 2.4em;
    padding: 1em 4em;
  }

  .vm__sub-slogan {
    margin: 0 0 44px;
  }
}
@media all and (min-width: 1100px) {
  .vm__title {
    font-size: 3.5em;
  }

  .vm__sub-slogan {
    font-size: 1.7em;
  }

  .vm__cta .call-to-action {
    font-size: 1.3em;
    padding: 1em 3em;
  }
}
.hamburger {
  display: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  /*
  background-image: image-url('sprite-v1.svg');
  background-attachment: scroll;
  background-repeat: no-repeat;

  .mdz-no-svg & {
    background-image: image-url('sprite-v1.png');
  }
  */
  background: url("../images/hamburger_menu_sprite.png") no-repeat 0px -1px;
  height: 38px;
  width: 40px;
}
.hamburger.static {
  display: block;
  float: right;
  height: 33px;
  margin-top: 21px;
  margin-left: 20px;
}
@media all and (max-width: 480px) {
  .hamburger.static {
    margin-top: 13px;
  }
}
.hamburger:hover {
  background-position: 0 -34px;
  cursor: pointer;
}

.vm__menu {
  display: none;
  position: relative;
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.vm__menu .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: white;
  display: none;
  padding: 0 1em;
  position: absolute;
  right: 1em;
  top: -1em;
}
.stripe--sticky-header .vm__menu .menu {
  position: static;
}
.vm__menu .menu__item {
  padding: 3px 0;
  text-align: right;
}
.vm__menu .menu__item .menu__link:link, .vm__menu .menu__item .menu__link:visited {
  color: #404040;
}
.vm__menu .menu__item .menu__link:hover {
  font-weight: bold;
}
.vm__menu.page-center {
  min-height: auto;
  min-width: auto;
  padding: 0;
}

.page-scrolled-in .vm__menu {
  max-width: 1100px;
}

.personas-module {
  padding-top: 2em;
  padding-bottom: 2em;
}

.persona-block {
  padding: 1.5em 1em 2em;
  text-align: center;
}
.persona-block a {
  font-weight: bold;
}

.persona-block + .persona-block {
  border-top: 1px solid #5e5e5e;
}

.persona__title {
  display: block;
  font-family: "Roboto Slab", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
@media all and (min-width: 840px) {
  .persona__title {
    font-size: 2em;
  }
}

.persona__text {
  font-family: "Roboto", Arial, Verdana, sans-serif;
  font-weight: 300;
  font-size: 1.5em;
  padding: 0 0 1.5em 0;
}

.personas__button-align {
  display: none;
}

@media all and (min-width: 840px) {
  .personas-module {
    padding-bottom: 0;
  }

  .persona-block {
    width: 50%;
    padding-top: 2.5em;
    padding-bottom: 2.25em;
    vertical-align: middle;
  }
  .persona-block .call-to-action {
    display: none;
  }

  .persona__text {
    margin: 0 0 1em 0;
  }

  .persona-block + .persona-block {
    border: none;
  }

  .personas__button-align {
    display: block;
    padding-bottom: 2em;
  }
  .personas__button-align .button-slot {
    height: 0;
    overflow: visible;
    position: relative;
    text-align: center;
    width: 50%;
    top: -5em;
  }
  .personas__button-align .button-slot--1 {
    float: left;
  }
  .personas__button-align .button-slot--1 .call-to-action {
    left: 0.25em;
  }
  .personas__button-align .button-slot--2 {
    float: right;
  }
  .personas__button-align .button-slot--2 .call-to-action {
    right: 0.25em;
  }
}
.benefits-module {
  padding-top: 2em;
  padding-bottom: 2em;
}

.benefit-block {
  padding: 2.25em 1em 2.25em;
  text-align: center;
}
.benefit-block .separator {
  background-color: #000;
  width: 45px;
}
.benefit-block a {
  font-weight: bold;
}
.benefit-block .benefit__text a, .benefit-block .benefit__text a:visited {
  color: #404040;
}
.benefit-block .benefit__text a:hover {
  color: black;
}

.benefit-block + .benefit-block {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
}

.benefit__image {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25em;
}

.benefit__text {
  padding: 0 0 1.5em 0;
}

@media all and (min-width: 840px) {
  .benefits-module {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .benefit-block {
    width: 33%;
    vertical-align: top;
  }

  .benefit-block + .benefit-block {
    border: none;
  }
}
.intro-module {
  padding: 1em;
}

.intro-block + .intro-block {
  border-top: 1px solid #888;
  margin-top: 1em;
  padding-top: 2em;
}

.intro__title {
  color: #F08418;
  font-size: 1.4em;
  margin-bottom: 0.75em;
}

.page--researcher .intro__title {
  color: #008DD4;
}

.page--developer .intro__title {
  color: #FEC901;
}

.intro__text {
  font-family: "Roboto", Arial, Verdana, sans-serif;
  font-weight: 300;
}

.intro__image {
  margin-bottom: 1em;
}
.intro__image img {
  margin: 0 auto;
}

.text-wrap .section-title {
  text-align: center;
}
.text-wrap .separator {
  margin-left: auto;
  margin-right: auto;
}

@media all and (min-width: 840px) {
  .intro-module {
    padding: 3em 4em;
  }

  .intro-block {
    /**
     * For modern browsers
     * 1. The space content is one way to avoid an Opera bug when the
     *    contenteditable attribute is included anywhere else in the document.
     *    Otherwise it causes space to appear at the top and bottom of elements
     *    that are clearfixed.
     * 2. The use of `table` rather than `block` is only necessary if using
     *    `:before` to contain the top-margins of child elements.
     */
  }
  .intro-block:before, .intro-block:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  .intro-block:after {
    clear: both;
  }
  .intro-block a {
    font-weight: bold;
  }

  .intro-block + .intro-block {
    margin-top: 1.5em;
    padding-top: 3em;
  }

  .intro__title {
    margin-top: -0.25em;
  }

  .intro__image {
    float: left;
    margin-left: 0;
    margin-right: 3em;
  }

  .intro-block:nth-child(odd) .intro__image {
    float: right;
    margin-left: 3em;
    margin-right: 0;
  }

  .text-wrap {
    margin-left: 200px;
    margin-right: 0;
  }
  .text-wrap .section-title {
    text-align: left;
  }
  .text-wrap .separator {
    margin-left: 0;
    margin-right: 0;
  }

  .intro-block:nth-child(odd) .text-wrap {
    margin-left: 0;
    margin-right: 200px;
  }
}
.stripe--subscribe {
  position: relative;
}
.stripe--subscribe .page-center {
  padding: 3em 0;
}

.subscribe-form {
  padding: 0 1em;
  text-align: center;
}
.subscribe-form .form__title {
  display: block;
  font-family: "Roboto Slab", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0.35em;
}
@media all and (min-width: 840px) {
  .subscribe-form .form__title {
    font-size: 2em;
  }
}
.subscribe-form .form__item + .form__item {
  margin-top: 2em;
}
.subscribe-form input {
  width: 300px;
}
.subscribe-form input.input--textfield {
  height: 60px;
}
.subscribe-form button {
  font-size: 1em;
  padding: 1em 1.5em;
}

#subscribe-anchor {
  left: 0;
  position: absolute;
  height: 1px;
  top: -104px;
}

.has-js .sf__email {
  display: inline-block;
  position: relative;
}

.subscribe-form label {
  display: none;
}
.subscribe-form .hasPlaceholderText label {
  display: block;
}
.subscribe-form input {
  padding: 0 6em;
  margin: 0;
}

@media all and (min-width: 420px) {
  .subscribe-form input {
    width: 400px;
  }
  .subscribe-form label {
    left: 2.5em;
  }

  #subscribe-anchor {
    top: -78px;
  }
}
@media all and (min-width: 840px) {
  .subscribe-form {
    padding: 3em 1em;
  }
  .subscribe-form input {
    width: 540px;
  }
  .subscribe-form label {
    left: 3em;
  }
  .subscribe-form button {
    font-size: 1.3em;
    padding: 1em 2.5em;
  }
  .subscribe-form .form-title {
    margin-bottom: 0;
  }
}
.stripe--footer {
  color: #555;
  font-size: 14px;
}
.stripe--footer a, .stripe--footer a:visited {
  color: #555;
}
.stripe--footer a:hover, .stripe--footer a:focus, .stripe--footer a:visited:hover, .stripe--footer a:visited:focus {
  color: #000;
}
.stripe--footer .page-center {
  padding: 2em 1em;
}

.ft__line {
  background-color: #9c9c9c;
  margin: 30px 0;
}

.ft__icon {
  display: inline-block;
}

.footer-block {
  margin-bottom: 1em;
}
.footer-block.ft__block-icons {
  vertical-align: middle;
}

.footer--simplified .ft__icon-groups {
  text-align: center;
}
.footer--simplified .ft__icon {
  display: inline-block;
  line-height: 1;
  margin: 0;
  vertical-align: text-bottom;
  display: inline-block;
  margin: 0.5em 0.25em;
}
.footer--simplified .ft__icon img {
  display: inline-block;
  line-height: 1;
  margin: 0;
  vertical-align: text-bottom;
  max-height: 82px;
}

.ft__copyright {
  font-size: 0.9em;
  text-align: center;
}

@media all and (min-width: 580px) {
  .footer--simplified .ft__icon-group--footer-branding {
    float: none;
    padding-right: 0.5em;
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .footer--simplified .ft__icon-group--footer-branding .ft__icon:first-child {
    margin-left: 0;
  }
  .footer--simplified .ft__icon-group--social-icons {
    float: right;
    padding-left: 0.5em;
    text-align: right;
    width: auto;
  }
  .footer--simplified .ft__icon-group--social-icons .ft__icon:last-child {
    margin-left: 0;
  }
  .footer--simplified .ft__icon-group--social-icons .ft__icon-group__title {
    margin-left: 0.25em;
  }
  .footer--simplified .ft__icon-group--badges {
    clear: both;
    text-align: center;
  }
  .footer--simplified .ft__icon-group--badges .ft__icon {
    vertical-align: middle;
  }
}
@media all and (min-width: 920px) {
  .stripe--footer .page-center {
    padding: 2em 0;
  }

  .footer--simplified .ft__icon-group--footer-branding {
    float: left;
    padding-right: 0.5em;
    text-align: left;
    width: 49%;
  }
  .footer--simplified .ft__icon-group--social-icons {
    text-align: left;
    width: 49%;
  }
  .footer--simplified .ft__icon-group--badges {
    clear: none;
    text-align: right;
  }
}
@media all and (max-width: 480px) {
  .ft__icon-group--badges.ft__icon-group--badges {
    display: block;
    overflow: auto;
  }
}
.ft__icon-group--badges.ft__icon-group--badges .ft__icon {
  vertical-align: middle;
}
@media all and (max-width: 480px) {
  .ft__icon-group--badges.ft__icon-group--badges .ft__icon {
    float: left;
    width: 35%;
    margin: 0 7.5% 25px 7.5%;
    height: 166px;
  }
  .ft__icon-group--badges.ft__icon-group--badges .ft__icon img {
    width: 100%;
    height: auto !important;
    max-height: 100%;
  }
}

/**
 * @file
 * Theme styles. (Applying colors and specific appearance).
 */
a {
  -moz-transition-property: color, background-color, border-color, background-image;
  -o-transition-property: color, background-color, border-color, background-image;
  -webkit-transition-property: color, background-color, border-color, background-image;
  transition-property: color, background-color, border-color, background-image;
  -moz-transition-duration: 0.1s, 0.1s, 0.1s, 0.1s;
  -o-transition-duration: 0.1s, 0.1s, 0.1s, 0.1s;
  -webkit-transition-duration: 0.1s, 0.1s, 0.1s, 0.1s;
  transition-duration: 0.1s, 0.1s, 0.1s, 0.1s;
  text-decoration: none;
}
a, a:visited {
  color: #404040;
}
a:focus {
  outline: none;
}
a:hover {
  color: black;
}

.mobile-show {
  display: none;
}
@media all and (max-width: 480px) {
  .mobile-show {
    display: block;
  }
}

.tile-image img {
  height: 125px;
  width: 125px;
}

.vm__header .buttons {
  float: right;
  position: relative;
  top: 6px;
  margin-left: 10px;
}
@media all and (max-width: 480px) {
  .vm__header .buttons {
    display: none;
  }
}
.vm__header .buttons .seq-btn {
  display: inline-block;
  color: #8F8F8F;
  padding: 5px 12px;
  border: 1px solid #8F8F8F;
  border-radius: 3px;
  text-decoration: none;
  margin: 15px 5px 0 0;
  padding: 3px 8px;
}

/* footer */
.ft__top {
  text-align: center;
  margin-top: 20px;
}

.stripe--video-module {
  background: url(../videos/sequencing-cover.png) no-repeat;
  background-size: cover;
  color: white;
}
.stripe--video-module a, .stripe--video-module a:visited, .stripe--video-module a:hover {
  color: #fff;
}

.stripe--footer {
  background: #d4d4d4;
}

.stripe--personas {
  background: #444;
}
.stripe--personas a, .stripe--personas a:visited, .stripe--personas a:hover {
  color: #fff;
}

.persona-block {
  background: #000;
  color: white;
}
.persona-block a, .persona-block a:visited, .persona-block a:hover {
  color: #fff;
}

.footer__title {
  color: #000;
  border-bottom: 1px solid #9c9c9c;
  font-family: "Lato", Arial, Verdana, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.stripe--benefits {
  background: #EDEDED;
}

.benefit__title {
  color: #000;
}

.stripe--intros {
  background: url("../images/slate_blackboard.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
  display: block;
  margin: 0 auto;
  color: white;
}
.stripe--intros a, .stripe--intros a:visited, .stripe--intros a:hover {
  color: #fff;
}

.stripe--intros img {
  max-width: 100% !important;
  height: auto;
  display: block;
}

/**
 * @file
 * States.
 */
.stripe--sticky-header {
  -moz-transition-property: opacity, top;
  -o-transition-property: opacity, top;
  -webkit-transition-property: opacity, top;
  transition-property: opacity, top;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  top: -86px;
  opacity: 0;
  z-index: -1;
}
.page-scrolled-in .stripe--sticky-header {
  top: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  opacity: 0.85;
  z-index: 900;
}

/*# sourceMappingURL=styles.css.map */
