/* Add this attribute to the element that needs a tooltip */
.tooltip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  font-family: "Whitney", sans-serif;
  font-weight: bold;
}
.is-mobile .tooltip {
  display: none;
}
/* Hide the tooltip content by default */
.tooltip:before,
.tooltip:after {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 70ms linear 300ms;
  -moz-transition: opacity 70ms linear 300ms;
  transition: opacity 70ms linear 300ms;
}
/* Position tooltip below the element */
.tooltip:before {
  -moz-border-radius: 6px;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-border-radius: 6px;
  -webkit-transform: translate(-50%, 0);
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  color: #fff;
  content: attr(data-title);
  font-size: 15px;
  left: 50%;
  line-height: 20px;
  max-width: 300px;
  padding: 7px 12px;
  position: absolute;
  text-align: center;
  top: calc(100% + 10px);
  transform: translate(-50%, 0);
  white-space: nowrap;
}
.tooltip.mod-left-side:before {
  -moz-transform: translate(-20%, 0);
  -ms-transform: translate(-20%, 0);
  -o-transform: translate(-20%, 0);
  transform: translate(-20%, 0);
}
.tooltip.mod-right-side:before {
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}
.tooltip.mod-close:before {
  top: calc(100% + 5px);
}
.tooltip.mod-right:before {
  top: 0;
  left: calc(100% + 5px);
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
/* Triangle hack to make tooltip look like a speech bubble */
.tooltip:after {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  width: 0;
  margin-left: -5px;
  border-bottom: 5px solid rgba(0, 0, 0, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}
.tooltip.mod-close:after {
  top: calc(100%);
}
.tooltip.mod-right:after {
  top: 13px;
  left: calc(100%);
  border-right: 5px solid rgba(0, 0, 0, 0.9);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
/* Show tooltip content on hover */
.tooltip:hover:before,
.tooltip:hover:after {
  visibility: visible;
  opacity: 1;
}
/* Colors */
/* Breakpoints */
@font-face {
  font-family: "Proxima Nova Light";
  src: url("../fonts/Proxima%20Nova%20Light.otf");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Proxima Nova Soft";
  src: url("../fonts/Proxima Nova Soft.ttf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.ttf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica%20Bold.ttf");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Helvetica%20Italic.ttf");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto%20Light.ttf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto%20Regular.ttf");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto%20Medium.ttf");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto%20Light%20Italic.ttf");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora%20Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora%20Italic.ttf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri%20Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Calibri Light";
  src: url("../fonts/Calibri%20Light.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Calibri Light";
  src: url("../fonts/Calibri%20Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Consolas";
  src: url("../fonts/Consolas.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Consolas";
  src: url("../fonts/Consolas Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Whitney";
  src: url("../fonts/Whitney.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Whitney";
  src: url("../fonts/Whitney Bold.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Whitney";
  src: url("../fonts/Whitney Italic.otf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "IcoMoon";
  src: url('../fonts/icomoon.eot');
  src: url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'), url('../fonts/icomoon.woff') format('woff'), url('../fonts/icomoon.ttf') format('truetype'), url('../fonts/icomoon.svg#IcoMoon') format('svg');
  font-weight: normal;
}
@font-face {
  font-family: "Open Dyslexic";
  src: url("../fonts/Open Dyslexic Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Dyslexic";
  src: url("../fonts/Open Dyslexic Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/avenir-next-pro-regular.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/avenir-next-pro-medium.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/avenir-next-pro-italic.woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/avenir-next-pro-thin.ttf");
  font-weight: 200;
  font-style: normal;
}
.inputs {
  line-height: 40px;
  position: relative;
}
.login-form .inputs,
.signup-form .inputs,
.signup-to-copy-form .inputs,
.import-workflowy-form .inputs {
  text-align: center;
}
.SuccessMessage,
.ErrorMessage {
  display: none;
  margin: 0 20px 20px 20px;
  border-radius: 4px;
  font-size: 17px;
  line-height: 24px;
  padding: 10px 20px;
  text-align: left;
}
.static-page-container .SuccessMessage,
.static-page-container .ErrorMessage {
  margin: 0 auto 20px auto;
  width: 300px;
}
.SuccessMessage {
  background: #ebf7d8;
  color: #4F8A10;
  border: 1px solid #daf0b6;
}
.ErrorMessage {
  background: #ffcece;
  color: #b94a48;
  border: 1px solid #ffa5a5;
}
.CaptchaField {
  margin: 10px;
}
.CaptchaField > div {
  margin: 0 auto;
}
.signup-form .SignupLegalDisclaimer,
.signup-to-copy-form .SignupLegalDisclaimer {
  padding: 0 45px;
}
.is-mobile .feedback-option-forum {
  display: none;
}
.modal-container {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal-container.is-shown {
  display: flex;
}
.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal {
  max-height: 90%;
  border-radius: 4px;
  border: none;
  margin: 0 auto;
  padding: 20px 40px;
  text-align: left;
  overflow: hidden;
}
.modal p {
  font-size: 17px;
  line-height: 22px;
}
@media screen and (min-width: 510px) and (orientation: portrait), screen and (min-height: 510px) and (orientation: landscape) {
  .modal {
    width: 500px;
    position: relative;
  }
}
.is-mobile .modal {
  height: calc(100% - 47px);
  top: 23px;
  width: 100%;
  border-radius: 0;
  max-height: 100%;
}
.modal.import-workflowy,
.modal.signup-to-copy {
  box-sizing: border-box;
}
@media screen and (min-width: 510px) and (orientation: portrait), screen and (min-height: 510px) and (orientation: landscape) {
  .modal.import-workflowy,
  .modal.signup-to-copy {
    width: 400px;
  }
}
.sync-status .modal {
  width: 700px;
}
@media screen and (min-width: 510px) and (orientation: portrait), screen and (min-height: 510px) and (orientation: landscape) {
  .choose-plan .modal {
    width: 700px;
  }
}
.is-desktop .settings .modal {
  width: 700px;
  height: 90%;
}
.is-desktop .upload-manager .modal {
  width: 700px;
}
.is-mobile .settings .modal,
.is-mobile .export-document .modal {
  width: 100%;
}
.is-mobile .export-document .modal {
  border-radius: 0;
  overflow: auto;
  padding: 10px 20px;
}
.is-desktop .export-document .modal {
  width: 650px;
}
.is-desktop .sync-error-report .modal,
.is-desktop .feedback.modal-container .modal,
.is-desktop .help.modal-container .modal {
  width: 700px;
}
.modal-title {
  font-family: "Avenir Next", sans-serif;
  font-size: 24px;
  padding: 10px 0;
  margin: 0;
  text-align: center;
}
.is-mobile .modal-bg {
  display: none;
}
.modal .button-container {
  margin: 30px 0 10px 0;
}
.modal-inputs {
  line-height: 40px;
  position: relative;
  text-align: center;
}
html,
body {
  font-family: "Whitney", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #555;
  font-size: 18px;
}
button,
input {
  color: #555;
}
html,
body {
  background: #fdfdfd;
}
body {
  box-sizing: border-box;
  overflow-y: auto;
}
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  height: 100%;
  margin: 0;
  width: 100%;
}
a {
  color: inherit;
}
input,
textarea,
button {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
ul {
  list-style: none;
  padding: 0;
}
.loader {
  background-size: 100px;
  background-image: url('../img/app/loader.gif');
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  display: none;
  left: 0;
  margin: auto;
  max-height: 100px;
  max-width: 100px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.loading .loader,
.is-loading .loader {
  display: block;
}
.tip-container {
  bottom: 0;
  font-size: 18px;
  left: 0;
  margin: auto;
  max-width: 600px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  line-height: 26px;
  width: 100%;
}
.is-mobile .tip-container {
  max-width: 320px;
}
.Form {
  border: none;
  display: block;
  margin: 0 auto;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 510px) and (orientation: portrait), screen and (min-height: 510px) and (orientation: landscape) {
  .Form {
    width: 400px;
  }
}
.Form h1 {
  font-family: "Avenir Next", arial, sans-serif;
  font-size: 26px;
  margin: 10px 0 20px 0;
  text-align: center;
}
@media screen and (min-width: 510px) and (orientation: portrait), screen and (min-height: 510px) and (orientation: landscape) {
  .Form input:not([type='checkbox']),
  .Form textarea {
    width: 300px;
  }
}
input,
textarea {
  border-radius: 3px;
  display: block;
  font-family: "Whitney", arial, sans-serif;
  font-size: inherit;
  padding: 6px 12px;
}
.Form input,
.Form textarea,
.modal-container input,
.modal-container textarea {
  margin: 12px auto;
}
[type='checkbox'],
[type='radio'] {
  display: inline-block;
  margin: 0 5px;
}
.Form [type='checkbox'],
.Form [type='radio'],
.modal-container [type='checkbox'],
.modal-container [type='radio'] {
  margin: 0 5px;
}
.button {
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-family: 'Whitney', sans-serif;
  font-size: inherit;
  margin: 0 5px;
  outline: none;
  padding: 8px 18px;
  text-align: center;
  text-decoration: none;
  width: auto;
}
.close-btn {
  cursor: pointer;
  font-family: "Avenir Next", arial, sans-serif;
  font-size: 30px;
  position: absolute;
  right: 6px;
  text-align: center;
  top: 2px;
  width: 30px;
}
.close-btn::before {
  content: "\D7";
  color: #999;
}
.is-mobile .close-btn {
  font-size: 40px;
  width: 40px;
}
.u-hidden {
  display: none;
}
.u-center-text {
  text-align: center;
}
.u-no-select {
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.KeyboardShortcut {
  position: relative;
  bottom: 2px;
  font-size: 0.8em;
  border-radius: 4px;
  padding: 1px 5px;
}
.SignupLegalDisclaimer-link {
  color: #666;
}
.SignupLegalDisclaimer-link:hover {
  color: #444;
}
.is-calibriLight {
  -moz-font-feature-settings: "kern" off;
  -moz-font-feature-settings: "liga" 0;
  -ms-font-feature-settings: "liga" 0;
  -o-font-feature-settings: "liga" 0;
  -webkit-font-feature-settings: "liga" 0;
  font-feature-settings: "liga" 0;
}
.Header {
  position: fixed;
  top: 0;
  font-family: "Avenir Next", Arial, sans-serif;
  width: 100%;
  height: 50px;
  background-color: #fefefe;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.Header.has-banner {
  margin-bottom: 75px;
}
.Header:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.Header-logo {
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  color: #777777;
  cursor: default;
  font-family: "Proxima Nova Light", arial, sans-serif;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 2px;
  margin: 0;
  text-align: center;
  padding: 10px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 720px) {
  .Header-logo {
    font-size: 26px;
    letter-spacing: 2px;
    text-align: left;
    margin-left: 20px;
  }
}
.Header-logoLink {
  text-decoration: none;
}
.Header-buttonContainer {
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (max-width: 720px) {
  .Header-buttonContainer {
    right: 14px;
  }
  .Header-buttonContainer .Header-link--demo,
  .Header-buttonContainer .Header-link--pricing {
    display: none;
  }
}
.Header-nav {
  position: absolute;
  top: 0;
  left: 40px;
}
@media screen and (max-width: 850px) {
  .Header-nav {
    left: 20px;
  }
}
@media screen and (max-width: 720px) {
  .Header-nav {
    display: none;
  }
}
.Header-link--demo,
.Header-link--features {
  margin-right: 20px;
}
.Header-link:hover {
  color: #222;
}
.Header-link {
  color: #999;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 52px;
  text-decoration: none;
  text-transform: uppercase;
  transition-duration: 0.3s;
  transition-property: color;
}
@media screen and (max-width: 1100px) {
  .Header-link {
    line-height: 56px;
  }
}
.Header-link--home {
  line-height: 52px;
}
.Header-link--demo,
.Header-link--login,
.Header-link--pricing {
  margin-right: 15px;
}
@media screen and (max-width: 720px) {
  .Header-link--demo,
  .Header-link--login,
  .Header-link--pricing {
    margin-right: 10px;
  }
}
.Header-signupButton {
  line-height: 18px;
  bottom: 1px;
}
.Header-signupButton:link,
.Header-signupButton:visited {
  color: #EEE;
}
@media screen and (max-width: 720px) {
  .Header-signupButton {
    font-size: 15px;
    padding: 6px 10px;
    margin: 0;
  }
}
@media screen and (min-width: 400px) {
  .Header-signupButton {
    display: inline-block;
  }
}
.static-page-container {
  margin: 0 auto;
  padding-top: 80px;
}
.Footer {
  font-size: 16px;
  text-align: center;
  padding: 50px 10px 40px 10px;
  line-height: 26px;
  background: #f8f8f8;
}
.static-page-container + .Footer {
  background: #fdfdfd;
}
.Footer-group {
  display: inline-block;
  vertical-align: top;
  margin-right: 40px;
  margin-bottom: 25px;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .Footer-group {
    margin: 0 10px 30px 10px;
    text-align: center;
    width: 30%;
  }
}
.Footer-groupTitle {
  font-size: 18px;
  font-weight: bold;
  color: #444;
  margin-bottom: 6px;
}
.Footer-link {
  text-decoration: none;
  display: block;
}
.Footer-link:hover {
  color: #222;
}
.Footer-copyright {
  white-space: nowrap;
}
.Form input,
.Form textarea {
  background-color: #fff;
}
.PageTitle {
  font-family: "Avenir Next", sans-serif;
  font-size: 34px;
  font-weight: normal;
  text-align: center;
}
.Banner {
  background: #ebf7d8;
  padding: 10px 0;
  position: absolute;
  width: 100%;
  top: 49px;
  font: 16px/20px "Whitney";
  color: #444;
  text-align: center;
  border-top: 1px solid #c0e683;
  border-bottom: 1px solid #c0e683;
}
.Banner-emphasis {
  font-weight: bold;
}
.google-signin-btn {
  background: #fff;
  border-radius: 4px;
  border: thin solid #bbb;
  color: #555;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  width: 300px;
  height: 42px;
  padding-left: 30px;
  position: relative;
}
.google-signin-btn:hover {
  background: #fafafa;
}
.google-signin-icon {
  background: url('../img/app/google_login_icon.svg') transparent 5px 50% no-repeat;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 0;
  left: 0;
}
.google-signin-button-text {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 42px;
  font-family: 'Roboto', sans-serif;
}
.login-method-divider {
  font-size: 16px;
  color: #888;
  width: 300px;
  display: table;
  white-space: nowrap;
  height: auto;
  overflow: hidden;
  margin: 10px auto 18px auto;
}
.login-method-divider:before,
.login-method-divider:after {
  content: '';
  display: table-cell;
  position: relative;
  top: 50%;
  width: 150px;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC);
}
.login-method-divider:before {
  background-position: right 10px top 55%;
}
.login-method-divider:after {
  background-position: left 10px top 55%;
}
.static-page-paragraph {
  line-height: 24px;
  margin: 6px auto;
  max-width: 600px;
  text-align: left;
}
.static-page-paragraph.mod-center {
  text-align: center;
}
.static-page-secondary-text {
  color: #888;
  font-size: 14px;
  line-height: 20px;
  margin-top: 12px;
  text-align: left;
}
.loadable-form {
  position: relative;
}
.loadable-form.loading > *:not(h1) {
  visibility: hidden;
}
.loadable-form.loading .loader {
  visibility: visible !important;
}
.button-container {
  margin: 20px 0;
  text-align: center;
}
.button.mod-primary.mod-static-page {
  width: 300px;
}
.SignupCTA {
  margin: 20px 0 60px 0;
  text-align: center;
}
.SignupContainer {
  padding: 20px 0;
  text-align: center;
}
.SignupContainer-form {
  display: inline-block;
}
.NameField,
.EmailField,
.PasswordField,
.SignupContainer-submitButton,
.SignupCTA-signupButton,
.SignupContainer-tryDemo,
.SignupLegalDisclaimer {
  box-sizing: border-box;
  display: block;
  font-size: 20px;
  padding: 5px 10px;
  margin: 14px auto;
  width: 300px;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .NameField,
  .EmailField,
  .PasswordField,
  .SignupContainer-submitButton,
  .SignupCTA-signupButton,
  .SignupContainer-tryDemo,
  .SignupLegalDisclaimer {
    width: 220px;
  }
}
.SignupLegalDisclaimer {
  font-size: 14px;
}
.SignupCTA-signupButton,
.SignupCTA .SignupContainer-tryDemo,
.SignupCTA .SignupContainer-divider {
  width: 200px;
}
.SignupContainer-error,
.SignupContainer-success {
  min-width: 300px;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .SignupContainer-error,
  .SignupContainer-success {
    width: 220px;
  }
}
.SignupContainer-password {
  margin-bottom: 20px;
}
.SignupCTA-signupButton,
.SignupContainer-submitButton,
.SignupContainer-tryDemo {
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}
.SignupContainer-tryDemoLink {
  text-decoration: none;
}
.SignupContainer-submitButton.button,
.SignupCTA-signupButton.button {
  padding: 10px;
  font-size: 20px;
}
.SignupContainer-submitButton.button:link,
.SignupCTA-signupButton.button:link,
.SignupContainer-submitButton.button:visited,
.SignupCTA-signupButton.button:visited {
  color: #EEE;
}
.SignupContainer-tryDemo {
  background-color: #fdfdfd;
  border: 1px solid #ccc;
  color: #555;
  text-decoration: none;
}
.SignupContainer-tryDemo:hover {
  background-color: #f9f9f9;
}
.SignupContainer-divider {
  font-size: 22px;
  width: 300px;
  display: table;
  white-space: nowrap;
  height: auto;
  overflow: hidden;
  margin: 10px auto 18px auto;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .SignupContainer-divider {
    width: 220px;
  }
}
.SignupContainer-divider:before,
.SignupContainer-divider:after {
  content: '';
  display: table-cell;
  position: relative;
  top: 50%;
  width: 150px;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC);
}
.SignupContainer-divider:before {
  background-position: right 10px top 55%;
}
.SignupContainer-divider:after {
  background-position: left 10px top 55%;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100px;
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 100px;
}
::-webkit-scrollbar-thumb:active {
  -webkit-border-radius: 100px;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
html,
body {
  height: inherit;
  width: inherit;
  overflow-x: hidden;
}
body {
  font-family: "Avenir Next", "Whitney", sans-serif;
  letter-spacing: -0.006em;
  background: #fff;
  color: #333;
}
#noscript-container {
  text-align: center;
}
#noscript-msg {
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 10px 20px;
  background: #ffcece;
  color: #b94a48;
}
/* Header */
.Header {
  position: fixed;
  top: 0;
  letter-spacing: 0;
  z-index: 2;
}
/* Intro header */
.IntroSection {
  padding: 50px 50px 10px 50px;
  text-align: center;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .IntroSection {
    padding: 20px 20px 10px 20px;
  }
}
.IntroSection-title {
  font-size: 34px;
  line-height: 40px;
  margin: 0;
  color: #414141;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .IntroSection-title {
    font-size: 26px;
  }
}
.IntroSection--features .IntroSection-title {
  color: #fcfcfc;
}
.UseCaseSection,
.testimonials-container,
.SignupContainer {
  background: linear-gradient(to bottom, #fff 0, #f8f8f8 200px);
}
.UseCaseSection.is-colored,
.testimonials-container.is-colored,
.SignupContainer.is-colored {
  color: #666;
}
.UseCaseSection.is-first,
.testimonials-container.is-first,
.SignupContainer.is-first {
  border-top: none;
}
.SignupContainer-heading,
.IntroSection-title,
.UseCaseSection-title,
.FeatureList-heading {
  color: #555;
  font-size: 46px;
  font-weight: 200;
  transform: scaleY(1.08);
}
.is-colored .SignupContainer-heading,
.is-colored .IntroSection-title,
.is-colored .UseCaseSection-title,
.is-colored .FeatureList-heading {
  color: #555;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .SignupContainer-heading,
  .IntroSection-title,
  .UseCaseSection-title,
  .FeatureList-heading {
    font-size: 36px;
  }
}
.IntroSection.IntroSection--features {
  padding-top: 100px;
}
.IntroSection.IntroSection--features .IntroSection-title {
  color: #444;
}
.SignupLegalDisclaimer,
.Footer {
  letter-spacing: 0.01em;
}
.Footer-group {
  transform: scaleY(1.03);
}
.Hero {
  box-sizing: border-box;
  min-height: 700px;
  background: linear-gradient(to bottom, #fff 0, #f8f8f8 200px);
  border-bottom: 1px solid #f0f0f0;
}
.Hero-innerWrapper {
  margin: 30px auto 0 auto;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
.Hero-headerContainer {
  margin: 0;
  padding: 10px;
  text-align: center;
}
.Hero-headline {
  font-size: 48px;
  color: #444;
  margin: 0 auto;
  letter-spacing: 0;
  font-weight: 200;
  width: 720px;
  transform: scaleY(1.08);
  white-space: pre-line;
}
@media screen and (max-width: 780px) {
  .Hero-headline {
    width: 100%;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .Hero-headline {
    font-size: 36px;
    white-space: normal;
  }
}
.Hero-subheadline {
  color: #888;
  font-size: 24px;
  font-weight: normal;
  line-height: 38px;
  margin: 12px auto;
  width: 900px;
}
@media screen and (max-width: 780px) {
  .Hero-subheadline {
    font-size: 22px;
    width: 100%;
    line-height: 36px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .Hero-subheadline {
    font-size: 20px;
    line-height: 28px;
  }
}
.Hero-ctaContainer {
  text-align: center;
}
.Hero-button {
  font: 20px/49px 'Avenir Next', sans-serif;
  height: 50px;
  padding: 0;
  width: 150px;
}
.Hero-button.mod-primary {
  width: 250px;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .Hero-button.mod-primary {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .Hero-button.mod-demo {
    font-size: 18px;
    background: none;
    border: none;
    text-decoration: underline;
  }
}
.Hero-screenshotContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  bottom: 0;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .Hero-screenshotContainer {
    display: none;
  }
}
.Hero-screenshot {
  width: 1100px;
  height: 330px;
  border-bottom: none;
  background-image: url('../img/landing-screenshot.png');
  background-repeat: no-repeat;
  background-size: 1100px auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-height: 50%;
}
@media screen and (max-width: 1100px) {
  .Hero-screenshot {
    width: 100%;
    height: 380px;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 780px) {
  .Hero-screenshot {
    height: 490px;
  }
}
.Hero-mobileScreenshot {
  display: none;
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-bottom: none;
  background-image: url('../img/mobile-landing-screenshot.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .Hero-mobileScreenshot {
    display: block;
    margin: 0 auto;
  }
}
.scenario,
.product-intro {
  padding: 70px 80px 60px 80px;
  background: linear-gradient(to bottom, #fff 0, #f8f8f8 200px);
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 1100px) {
  .scenario,
  .product-intro {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario,
  .product-intro {
    padding: 30px 8%;
  }
}
.scenarios-container {
  background: #fff;
}
.product-intro {
  padding: 60px 20%;
}
@media screen and (max-width: 780px) {
  .product-intro {
    padding: 50px 8%;
  }
}
.scenario.mod-right {
  text-align: right;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario.mod-right {
    text-align: left;
  }
}
.scenario-text {
  display: inline-block;
  margin: 20px 50px 0 50px;
  padding: 20px;
  text-align: left;
  width: calc(100% - 650px);
}
@media screen and (max-width: 1100px) {
  .scenario-text {
    margin: 0 20px;
    width: calc(100% - 510px);
  }
}
@media screen and (max-width: 780px) {
  .scenario-text {
    margin: 0;
    padding-right: 0;
    padding-bottom: 0;
    width: calc(100% - 460px);
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario-text {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 780px) {
  .scenario.mod-right .scenario-text {
    padding-left: 0;
    padding-right: 0;
  }
}
.scenario-audience {
  color: #888;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 780px) {
  .scenario-audience {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario-audience {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.scenario-header,
.product-intro-header,
.scenarios-container-header {
  font-size: 40px;
  font-weight: 200;
  transform: scaleY(1.08);
  margin: 8px 0 12px 0;
  letter-spacing: 0;
}
@media screen and (max-width: 1100px) {
  .scenario-header,
  .product-intro-header,
  .scenarios-container-header {
    font-size: 36px;
  }
}
@media screen and (max-width: 780px) {
  .scenario-header,
  .product-intro-header,
  .scenarios-container-header {
    font-size: 32px;
  }
}
.product-intro-header,
.scenarios-container-header {
  text-align: center;
  font-size: 46px;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .product-intro-header,
  .scenarios-container-header {
    font-size: 36px;
  }
}
.scenarios-container-header {
  margin: 40px 0 10px 0;
}
.scenario-explanation,
.product-intro-explanation {
  color: #666;
  font-size: 20px;
  line-height: 32px;
  margin: 20px 0;
  text-align: left;
  transform: scaleY(1.02);
}
@media screen and (max-width: 1100px) {
  .scenario-explanation,
  .product-intro-explanation {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (max-width: 780px) {
  .scenario-explanation,
  .product-intro-explanation {
    line-height: 30px;
  }
}
.scenario-features {
  margin-top: 40px;
}
.scenario-screenshotContainer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 650px;
  bottom: 0;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .scenario-screenshotContainer {
    width: 500px;
  }
}
@media screen and (max-width: 780px) {
  .scenario-screenshotContainer {
    width: 450px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario-screenshotContainer {
    display: none;
  }
}
.scenario.mod-right .scenario-screenshotContainer {
  right: inherit;
  left: 0;
}
.scenario-screenshot {
  background-repeat: no-repeat;
  background-size: 1000px auto;
  height: 650px;
  position: absolute;
  top: 0;
  width: 650px;
}
@media screen and (max-width: 1100px) {
  .scenario-screenshot {
    width: 500px;
    background-size: 800px auto;
  }
}
@media screen and (max-width: 780px) {
  .scenario-screenshot {
    width: 450px;
    background-size: 720px auto;
  }
}
.scenario-demoBtnContainer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.scenario.mod-doer .scenario-screenshot {
  background-image: url('../img/doer-screenshot.png');
}
@media screen and (max-width: 1100px) {
  .scenario.mod-doer .scenario-screenshot {
    background-position: left 0 top 20px;
  }
}
.scenario.mod-scholar .scenario-screenshot {
  background-image: url('../img/scholar-screenshot.png');
  background-position: right 0 top;
}
@media screen and (max-width: 1100px) {
  .scenario.mod-scholar .scenario-screenshot {
    background-position: right 0 top 20px;
  }
}
.scenario-mobile-demo-btn-container {
  display: none;
  text-align: center;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario-mobile-demo-btn-container {
    display: block;
  }
}
.scenario-relevant-features {
  font-size: 20px;
  margin-top: 80px;
  position: relative;
  display: flex;
  justify-content: space-around;
}
.scenario-relevant-features:before {
  content: 'Related features';
  position: absolute;
  left: 0;
  top: -40px;
  font-size: 16px;
  text-transform: uppercase;
  color: #888;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 780px) {
  .scenario-relevant-features:before {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario-relevant-features:before {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 780px) {
  .scenario-relevant-features {
    display: none;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario-relevant-features {
    display: flex;
    margin-top: 70px;
  }
}
.scenario-relevant-feature {
  display: inline-block;
  color: #666;
  font-size: 17px;
  transform: scaleY(1.03);
}
@media screen and (max-width: 1100px) {
  .scenario-relevant-feature {
    font-size: 15px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .scenario-relevant-feature {
    margin: 0 8px;
    text-align: center;
  }
}
.scenario-relevant-feature-icon {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 14px auto;
  opacity: 0.9;
}
@media screen and (max-width: 1100px) {
  .scenario-relevant-feature-icon {
    width: 24px;
    height: 24px;
  }
}
.testimonials-container {
  text-align: center;
  padding: 40px 50px 20px 50px;
  border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .testimonials-container {
    padding: 20px 10px;
  }
}
.testimonial {
  text-align: left;
  width: 500px;
  display: inline-block;
  vertical-align: top;
  margin: 30px 40px;
  transform: scaleY(1.02);
}
@media screen and (max-width: 1100px) {
  .testimonial {
    width: 350px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .testimonial {
    height: auto;
    width: calc(100% - 20px);
    padding: 10px 15px;
    margin: 10px 10px 0 10px;
  }
}
.testimonial-quote {
  font-size: 19px;
  line-height: 30px;
  padding: 15px 20px 0 20px;
  position: relative;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .testimonial-quote {
    font-size: 17px;
    line-height: 26px;
  }
}
.testimonial-quote:before,
.testimonial-quote:after {
  font-size: 24px;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .testimonial-quote:before,
  .testimonial-quote:after {
    font-size: 20px;
  }
}
.testimonial-quote:before {
  content: '“';
  margin-right: 2px;
}
.testimonial-quote:after {
  content: '”';
  margin-left: 2px;
}
.testimonial-person {
  margin: 0 0 20px -70px;
  text-align: right;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .testimonial-person {
    margin: 0 auto 20px auto;
  }
}
.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 3px;
}
.testimonial-photo,
.testimonial-person-info {
  display: inline-block;
  vertical-align: top;
}
.testimonial-person-name,
.testimonial-person-title {
  display: block;
}
.testimonial-person-info {
  line-height: 28px;
  margin-left: 14px;
  position: relative;
  top: 2px;
}
.testimonial-person-name {
  font-weight: bold;
  font-size: 17px;
}
.testimonial-person-title {
  font-size: 16px;
}
.UseCaseSection {
  box-sizing: border-box;
  text-align: center;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .UseCaseSection {
    padding: 20px;
    min-height: inherit;
  }
  .UseCaseSection.UseCaseSection--notes {
    padding-bottom: 0;
  }
}
.UseCaseSection.UseCaseSection--notes {
  padding-bottom: 30px;
}
.UseCaseSection {
  padding: 0 50px;
}
.UseCaseSection-textContainer {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .UseCaseSection-textContainer {
    padding-top: 0;
  }
  .UseCaseSection-textContainer:before {
    top: 0;
  }
}
.UseCaseSection-textContainer:before {
  content: "Dynalist helps you...";
  font-family: "Avenir Next", sans-serif;
  text-transform: uppercase;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.UseCaseSection-screenshotContainer {
  position: relative;
  cursor: pointer;
  width: 600px;
  height: 450px;
  margin: 20px auto 0 auto;
  display: block;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .UseCaseSection-screenshotContainer {
    width: 100%;
    height: auto;
    padding: 0;
  }
  .UseCaseSection-screenshotContainer:after {
    font-size: 16px;
    height: 40px;
    line-height: 38px;
  }
}
.UseCaseSection-screenshotContainer:after {
  content: "Click to try this";
  font-family: "Avenir Next", sans-serif;
  font-size: 18px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}
.UseCaseSection-screenshotContainer .UseCaseSection-screenshot {
  width: 100%;
  height: 100%;
}
.UseCaseSection-title {
  line-height: 80px;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .UseCaseSection-title {
    font-size: 32px;
  }
}
.UseCaseSection-description {
  max-width: 1000px;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .UseCaseSection-description {
    font-size: 20px;
    line-height: 26px;
  }
}
.UseCaseSection-screenshot {
  border: 1px solid #ccc;
  border-radius: 8px;
}
@media screen and (max-width: 780px) {
  .UseCaseSection-screenshot {
    width: 100%;
    height: auto;
  }
}
.UseCaseSection-content {
  padding: 12px 0 42px 0;
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .UseCaseSection-content {
    padding: 12px 0;
  }
}
.UseCaseSection--notes .UseCaseSection-content {
  padding-bottom: 25px;
}
.UseCaseSection.is-first .UseCaseSection-content {
  padding-top: 0;
}
.FeatureList {
  padding: 30px 50px 30px 50px;
  text-align: center;
  background: linear-gradient(to bottom, #fff 0, #f8f8f8 200px);
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .FeatureList {
    padding: 0 20px 30px 20px;
  }
}
.FeatureList-heading {
  font-size: 40px;
  margin: 20px 0;
}
@media screen and (max-width: 780px) {
  .FeatureList-heading {
    font-size: 34px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .FeatureList-heading {
    font-size: 28px;
  }
}
.FeatureList-heading.is-first {
  margin-top: 0;
}
.FeatureListItem {
  display: inline-block;
  width: 260px;
  margin: 20px;
  vertical-align: top;
}
@media screen and (max-width: 780px) {
  .FeatureListItem {
    margin: 10px;
    width: 240px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .FeatureListItem {
    width: 120px;
  }
}
.FeatureListItem-icon {
  display: block;
  margin: 0 auto 10px auto;
  width: 38px;
  height: 38px;
  position: relative;
  top: 5px;
}
.FeatureListItem-icon.is-rectangular {
  width: 60px;
  height: 30px;
  margin-right: 0;
}
.FeatureListItem-title {
  display: inline-block;
  font-size: 20px;
  font-weight: normal;
  margin: 10px 0 8px 0;
}
@media screen and (max-width: 780px) {
  .FeatureListItem-title {
    font-size: 20px;
  }
}
.FeatureListItem.is-pro .FeatureListItem-title {
  position: relative;
  right: 3px;
}
.FeatureListItem.is-pro .FeatureListItem-title:after {
  background-color: #e6e6e6;
  border-radius: 5px;
  bottom: 8px;
  color: #555;
  content: "PRO";
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .5px;
  margin-left: 5px;
  padding: 2px 3px 2px 4px;
  position: relative;
}
.FeatureListItem-caption {
  font-size: 17px;
  line-height: 26px;
  margin-top: 0;
}
@media screen and (max-width: 780px) {
  .FeatureListItem-caption {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .FeatureListItem-caption {
    display: none;
  }
}
.FeatureList-header {
  color: #888;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 30px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 780px) {
  .FeatureList-header {
    font-size: 13px;
  }
}
@media screen and (max-width: 500px), screen and (max-height: 500px) {
  .FeatureList-header {
    font-size: 16px;
  }
}
.tooltip {
  font-weight: normal;
}
.tooltip:before {
  width: 260px;
  white-space: inherit;
  top: calc(100% + 9px);
}
@media screen and (max-width: 780px) {
  .Footer {
    font-size: 16px;
    padding-bottom: 20px;
  }
  .Footer-link {
    margin-right: 10px;
  }
}
