/**
 * Components
 */
/* signed 32bit maxint */
/*********************************************************
* Action Menu
*/
.action-menu {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 999;
  width: 56px;
  margin-left: -28px;
}
.action-menu.full-width {
  left: 20px;
  right: 20px;
  width: auto;
  margin-left: 0;
}
.action-menu.off {
  -webkit-transform: translateY(66px);
          transform: translateY(66px);
}
.action-menu .primary-btn,
.action-menu .secondary-btn,
.action-menu .full-width-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
          transition: transform 0.2s ease-in-out;
}
.action-menu .primary-btn .icon,
.action-menu .secondary-btn .icon,
.action-menu .full-width-btn .icon {
  display: block;
}
.action-menu .primary-btn,
.action-menu .secondary-btn {
  border-radius: 50%;
  border: none;
}
.action-menu .primary-btn {
  width: 56px;
  height: 56px;
  background: #669eff;
  color: #ffffff;
  box-shadow: 0 4px 3px -2px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
}
.action-menu .primary-btn .icon {
  height: 22px;
}
.action-menu .primary-btn.off {
  -webkit-transform: translateY(66px);
          transform: translateY(66px);
}
.action-menu .secondary-btn {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: 8px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #6d7886;
  box-shadow: 0 4px 3px -2px rgba(0, 0, 0, 0.2);
}
.action-menu .secondary-btn.left {
  margin-left: -76px;
}
.action-menu .secondary-btn.right {
  margin-left: 36px;
}
.action-menu .secondary-btn.off {
  -webkit-transform: translateY(90px);
          transform: translateY(90px);
}
.action-menu .secondary-btn .icon {
  height: 15px;
}
.action-menu .btn.full-width-btn {
  height: 42px;
  padding: 0;
  position: absolute;
  bottom: 0;
  margin: 0;
  width: 100%;
}
.action-menu .btn.full-width-btn.active,
.action-menu .btn.full-width-btn:active {
  top: auto;
  bottom: -2px;
}
.action-menu .btn.full-width-btn.off {
  -webkit-transform: translateY(52px);
          transform: translateY(52px);
}
.alert {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #669eff;
  border-radius: 5px;
  border: 1px solid rgba(0, 67, 104, 0.36);
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  padding: 10px 20px;
}
.alert .text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  padding: 0 10px;
}
.alert .dismiss {
  background: none;
  border: none;
  font-weight: 100;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 10px;
  height: 15px;
  background: url(/web/20170304040406im_/https://webmaker.org/img/x.svg) center center / contain no-repeat;
}
.alert.hidden {
  display: none;
}
.alert .hidden {
  visibility: hidden;
}
.el-container {
  position: absolute;
  height: 1px;
  width: 100%;
  left: 50%;
  top: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -50%;
}
.el-container .icon {
  position: relative;
  top: 2px;
  height: 1em;
  margin-right: 0.5em;
}
.touch-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
}
.el {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  z-index: 0;
}
.el.current {
  margin: -1px;
  border: 1px dashed #ffffff;
}
.el.current:after {
  z-index: -1;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed #669eff;
}
/*********************************************************
* Types
*/
.el {
  box-sizing: content-box;
}
.el.el-text {
  max-width: 320px;
}
.el.el-text p {
  margin: 0;
}
.el.el-link .btn {
  margin: 0;
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.el.el-link .btn img {
  top: 1px;
  opacity: 0.8;
  height: 100%;
  margin: 0 0 0 8px;
}
.el.el-image img {
  display: block;
  max-width: 300px;
}
/*********************************************************
* Button
*/
.btn,
.select {
  text-decoration: none;
  position: relative;
  padding: 12px 24px;
  margin-bottom: 10px;
  color: #6d7886;
  background: #ffffff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 2px 0 0 #cdd2dd;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn .active {
  box-shadow: none;
  top: 2px;
}
.btn.btn-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.btn:active,
.select:active {
  box-shadow: none;
  top: 2px;
}
.btn .icon {
  height: 1.2em;
}
.btn .icon:first-child {
  margin-right: 0.3em;
}
.btn .icon:last-child {
  margin-left: 0.3em;
}
.btn.btn-teal {
  background: #61d3c9;
  color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 2px 0 0 #2da197;
}
.btn.btn-teal:active {
  box-shadow: none;
  top: 2px;
}
.btn.btn-blue {
  background: #5793f2;
  color: #ffffff;
  box-shadow: 0 2px 0 0 #105cd3;
}
.btn.btn-blue:active {
  box-shadow: none;
  top: 2px;
}
.btn.btn-rounded {
  background: #FDFDFE;
  border-radius: 40px;
  font-family: FiraSans-Medium;
  color: #71A5FF;
}
.card {
  display: block;
  position: relative;
  width: calc(90%);
  margin: 0 auto 20px auto;
  color: #6d7886;
  text-decoration: none;
  background-color: white;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
}
.card .avatar {
  margin-right: 10px;
}
.card .avatar img {
  display: block;
}
.card .thumbnail {
  padding: 0;
  height: 0;
  padding-bottom: 61.875%;
}
.card .thumbnail img {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #efefef;
}
.card .meta {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  font-size: 1.2rem;
}
.card .meta .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
.card .meta .description {
  margin-top: 10px;
  font-size: 15px;
}
.card .meta .description a {
  color: #669eff;
  text-decoration: none;
}
.card .meta .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  word-wrap: break-word;
  padding: 5px 0 0 0;
}
.card .meta .title {
  line-height: 1.2rem;
}
.card .meta .action button {
  margin: 5px 0 0 0;
  padding: 5px 5px 5px 20px;
  border: 0;
  background: none;
  line-height: 0;
}
.card .meta .action button img {
  width: 5px;
}
.card .author {
  color: #6d7886;
  opacity: 0.6;
  font-size: 1rem;
  text-decoration: none;
}
/*********************************************************
* Color
*/
.color-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.color-group .color-swatch {
  margin: 0;
  display: block;
  padding: 0;
  width: 35px;
  margin-right: 15px;
  border: none;
  position: relative;
  background: none;
}
.color-group .color-swatch.checked::after {
  content: '';
  display: block;
  background: white;
  width: 12px;
  height: 0;
  padding-bottom: 12px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -6px;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.color-group .color-swatch .color-swatch-inner {
  cursor: pointer;
  display: block;
  position: relative;
  border-radius: 50%;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: white;
  box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.color-group .color-swatch .color-swatch-inner.transparent,
.color-group .color-swatch .color-swatch-inner.white {
  box-shadow: inset 0 0 1px 1px #cbcfdb;
}
.color-group .color-swatch .color-swatch-inner.transparent::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #eb5d52;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.color-group .tinker-container {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.color-group .tinker-container .tinker {
  width: 35px;
  display: block;
}
.color-group .tinker-container .tinker img {
  width: 100%;
  display: block;
}
/*********************************************************
* Spectrum color picker
*/
.spectrum-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.spectrum-container .spectrum-left {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.spectrum-container .saturation {
  position: relative;
  width: 100%;
  height: 140px;
}
.spectrum-container .saturation-white,
.spectrum-container .saturation-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.spectrum-container .saturation-white {
  background: -webkit-linear-gradient(left, #ffffff, rgba(204, 154, 129, 0));
  background: linear-gradient(to right, #ffffff, rgba(204, 154, 129, 0));
}
.spectrum-container .saturation-black {
  background: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
  background: linear-gradient(to top, #000000, rgba(204, 154, 129, 0));
}
.spectrum-container .sl-marker {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 2px solid white;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  margin-left: -10px;
  margin-top: -10px;
}
.spectrum-container .spectrum-right {
  position: relative;
  margin-left: 20px;
  width: 40px;
  background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  cursor: pointer;
}
.spectrum-container .hue {
  -webkit-appearance: none;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  position: absolute;
  top: 20px;
  width: 140px;
  height: 40px;
  margin-top: -20px;
  z-index: 1;
  background: transparent;
}
.spectrum-container .hue::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  width: 1px;
  height: 46px;
  cursor: pointer;
  background: transparent;
}
.spectrum-container .hue::-webkit-slider-thumb::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 46px;
  margin-left: -10px;
  background: url(/web/20170304040406im_/https://webmaker.org/css/img/slider.png) no-repeat;
  background-size: 20px 46px;
}
/*********************************************************
* Positionables
*/
.element-group {
  position: relative;
  overflow: visible;
  height: 100%;
  width: 100%;
}
.loading {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease;
          transition: opacity 0.2s ease;
}
.loading.on {
  opacity: 1;
  visibility: visible;
}
.loading-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: #ccdfff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bar {
  content: "";
  display: inline;
  position: absolute;
  width: 0;
  height: 100%;
  left: 50%;
  text-align: center;
}
.bar:nth-child(1) {
  background-color: #99beff;
  -webkit-animation: loading 3s linear infinite;
          animation: loading 3s linear infinite;
}
.bar:nth-child(2) {
  background-color: #80aeff;
  -webkit-animation: loading 3s linear 1s infinite;
          animation: loading 3s linear 1s infinite;
}
.bar:nth-child(3) {
  background-color: #669eff;
  -webkit-animation: loading 3s linear 2s infinite;
          animation: loading 3s linear 2s infinite;
}
@-webkit-keyframes loading {
  from {
    left: 50%;
    width: 0;
    z-index: 100;
  }
  33.3333% {
    left: 0;
    width: 100%;
    z-index: 10;
  }
  to {
    left: 0;
    width: 100%;
  }
}
@keyframes loading {
  from {
    left: 50%;
    width: 0;
    z-index: 100;
  }
  33.3333% {
    left: 0;
    width: 100%;
    z-index: 10;
  }
  to {
    left: 0;
    width: 100%;
  }
}
.modal-confirm .window {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.modal-confirm .window header {
  padding: 5px 20px 0 20px;
  background: #31344f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-confirm .window header div {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  padding: 5px 0;
}
.modal-confirm .window header .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.modal-confirm .window header .icon img {
  width: 40px;
}
.modal-confirm .window .content {
  background: #ffffff;
  padding: 20px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.modal-confirm .window .content p {
  font-size: 16px;
  margin-top: 0;
  color: #333;
}
.modal-confirm .window .content button {
  background: #e9ebf0;
}
.modal-confirm .window .content .attribution {
  color: #cdd2dd;
  text-align: center;
}
.modal-confirm .window .content .attribution img {
  width: 18px;
  margin-right: 5px;
  opacity: 0.3;
  position: relative;
  top: 3px;
}
.modal-switch .window {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  background: #ffffff;
  border-radius: 5px;
  width: 100%;
}
.modal-switch .window button {
  display: block;
  background: none;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cdd2dd;
  text-align: left;
  line-height: 22px;
  padding: 20px;
  color: #3f464e;
}
.modal-switch .window button:last-child {
  border-bottom: 0;
}
.option-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.option-panel .label {
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #FFF;
  height: 44px;
  box-shadow: 0 2px 0 0 #CDCFD3;
  border-left: 1px solid rgba(205, 207, 211, 0.5);
}
.option-panel .label.selected {
  background: #69A0FC;
  box-shadow: 0 2px 0 0 #4881DF;
  border-left: 1px solid rgba(72, 129, 223, 0.5);
}
.option-panel .label:first-child {
  border-radius: 3px 0 0 3px;
}
.option-panel .label:last-child {
  border-radius: 0 3px 3px 0;
}
.option-panel .label .icon {
  height: 15px;
}
/*********************************************************
* Range
*/
.range {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.range input[type=range] {
  -webkit-appearance: none;
  padding: 0;
  height: 2px;
  background: #cdd2dd;
  margin: 20px 0;
}
.range input[type=range]::before {
  content: '';
}
.range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 30px;
  width: 30px;
  border-radius: 36px;
  background: #FFF;
  cursor: pointer;
  box-shadow: 0px 1px 0 1px #dde0e8;
}
.range .range-summary {
  width: 3.5em;
  text-align: right;
}
.range .range-summary.min {
  opacity: 0.3;
}
.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: center right 12px #ffffff url(/web/20170304040406im_/https://webmaker.org/css/img/caret-down.svg) no-repeat;
  background-size: 11px 7px;
}
.shim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 34, 55, 0.7);
  z-index: 2147483647;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.container div.snackbar {
  width: 100%;
  position: fixed;
  z-index: 2147483647;
  bottom: 0;
  left: 0;
  right: 0;
  background: #444;
  line-height: 5em;
  text-align: center;
  color: #EEE;
  height: 5em;
  min-height: 0;
  -webkit-transition: height 0.25s linear;
          transition: height 0.25s linear;
}
.container div.snackbar.hidden {
  height: 0;
}
#spindicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 22, 30, 0.75);
  -webkit-transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
          transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  z-index: 2147483647;
}
#spindicator .loader {
  position: relative;
  top: 43%;
  left: 41%;
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 5px solid white;
  border-radius: 50%;
  -webkit-animation: spin 0.5s infinite linear;
          animation: spin 0.5s infinite linear;
}
#spindicator .loader::before,
#spindicator .loader::after {
  left: -5px;
  top: -5px;
  display: none;
  position: absolute;
  content: '';
  width: inherit;
  height: inherit;
  border: inherit;
  border-radius: inherit;
}
#spindicator .spinner {
  border-color: transparent;
  border-top-color: rgba(0, 0, 0, 0.3);
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}
#spindicator .spinner::after {
  display: block;
  border-color: transparent;
  border-top-color: #E9EBF0;
  -webkit-animation: spin 1.5s infinite ease-in-out;
          animation: spin 1.5s infinite ease-in-out;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*********************************************************
* Tabs
*/
.tabs .tab-menu {
  margin: 0 0 20px -20px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #31344f;
  position: fixed;
  width: 100%;
}
.tabs .tab-menu li {
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  box-shadow: inset -2px 0 0 #404467;
}
.tabs .tab-menu li:last-child {
  box-shadow: none;
}
.tabs .tab-menu .tab-btn {
  background: none;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  width: 100%;
  box-shadow: 0 2px 0 #404467;
}
.tabs .tab-menu .tab-btn.selected {
  box-shadow: 0 2px 0 #ffffff;
}
.tabs .tab-menu .tab-btn.selected .icon {
  opacity: 1;
}
.tabs .tab-menu .tab-btn .icon {
  opacity: 0.3;
  display: block;
  height: 24px;
}
.tabs .tab-body {
  display: none;
}
.tabs .tab-body.selected {
  display: block;
}
.tabs .tab-body .editor-scroll {
  padding-top: 0;
  padding-bottom: 50px;
}
.text-input label {
  font-size: 16px;
  color: #6d7886;
  margin-bottom: 0.33333333em;
  display: block;
}
.text-input .input {
  display: block;
  border: 0;
  border-bottom: 2px solid #cdd2dd;
  font-size: 22px;
  width: 100%;
  background: none;
  padding: 0.2em 0;
  -webkit-text-fill-color: #000000;
  color: #669eff;
  margin-bottom: 0.33333333em;
}
.text-input .input:focus {
  outline: 0;
  border-bottom: 2px solid #669eff;
}
.text-input .input::-webkit-input-placeholder {
  -webkit-text-fill-color: #afb7c8;
}
.text-input .indicator {
  text-align: right;
  font-size: 14px;
  color: #6d7886;
}
.text-input.maxed .indicator {
  color: #eb5d52;
}
.text-input.maxed input {
  border-bottom: 2px solid #eb5d52;
}
.dPad button.moon {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: rgba(109, 120, 135, 0.9) url(/web/20170304040406im_/https://webmaker.org/css/img/nub-white.svg) no-repeat;
  background-position: center 40.425px;
  background-size: 17.325px;
  width: 66px;
  height: 66px;
}
.dPad button.moon.up {
  top: -35px;
  margin-left: -33px;
}
.dPad button.moon.down {
  bottom: -35px;
  margin-left: -33px;
}
.dPad button.moon.left {
  left: -35px;
  margin-top: -33px;
}
.dPad button.moon.right {
  right: -35px;
  margin-top: -33px;
}
.dPad button {
  position: absolute;
  display: block;
  z-index: 9999;
  background: url(/web/20170304040406im_/https://webmaker.org/css/img/nub.svg) no-repeat center center / 100%;
  border: 0;
  width: 30px;
  height: 30px;
}
.dPad button.up {
  left: 50%;
  margin-left: -15px;
}
.dPad button.down {
  left: 50%;
  margin-left: -15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dPad button.left {
  top: 50%;
  margin-top: -15px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.dPad button.right {
  top: 50%;
  margin-top: -15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.dPad.hidden,
.dPad .hidden {
  display: none;
}
/* Mixins */
/* ******* */
#map {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#map.play {
  background: #444;
}
#map .bounding {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: content-box;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
          transition: transform 0.3s ease-in-out;
}
#map .test-container {
  position: relative;
}
#map.play .page-container.selected {
  border: none;
  outline: none;
}
#map .page-container {
  position: relative;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
          transition: opacity 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  background: #f2f6fc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
#map .page-container.blurred {
  opacity: 0.1;
}
#map .page-container .block-interaction {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
#map .page-container .shim {
  display: none;
}
#map .page-container.source .shim,
#map .page-container.target .shim {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#map .page-container.source .shim .indicator,
#map .page-container.target .shim .indicator {
  width: 30%;
  height: 21.81818182%;
  border-radius: 50%;
}
#map .page-container.source {
  opacity: 0.75;
}
#map .page-container.source .shim .indicator {
  width: 50%;
  height: 36.36363636%;
  border-radius: 50%;
  background: url(/web/20170304040406im_/https://webmaker.org/css/img/oval-source.svg) no-repeat center center / 100%;
  opacity: 0.85;
}
#map .page-container.target .shim {
  background: none;
}
#map .page-container.target .shim .indicator {
  background: url(/web/20170304040406im_/https://webmaker.org/css/img/oval-flag.svg) no-repeat center center / 100%;
}
#map .page-container.selected {
  border: 8px solid #e9ebf0;
  outline: 6px solid #669eff;
}
#map .page-container.selected.target {
  border: none;
  outline: none;
}
#map .page-container.unselected {
  opacity: 0.3;
}
#map .page-container.add {
  background: #dde0e8;
  color: #acb4c7;
}
#map .page-container.add.off {
  opacity: 0;
}
#map .menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: 20px;
  width: 56px;
  margin-left: -28px;
  left: 50%;
  text-align: center;
}
#map .menu.active {
  opacity: 1;
  visibility: visible;
}
#map .menu button {
  margin: 5px 10px;
  border-radius: 50%;
  border: 0px solid rgba(35, 31, 32, 0.02);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  line-height: 0;
  width: 50px;
  height: 50px;
  background: #ffffff url('/web/20170304040406im_/https://webmaker.org/css/img/zoom-out.svg') center center / 50% no-repeat;
}
#map .btn-zoom-out {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 999;
  background: url('/web/20170304040406im_/https://webmaker.org/css/img/zoom-out.svg') #fafafa no-repeat center center / 60%;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16), 0px 3px 3px 0px rgba(0, 0, 0, 0.23);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 0;
}
#map .btn-zoom-out.hidden {
  display: none;
}
/**
 * Promo Banner
 */
.micro-modal {
  z-index: 999999;
  position: absolute;
  width: 280px;
  bottom: 20px;
  right: 20px;
  background: #718095;
  border: 0px solid rgba(35, 31, 32, 0.02);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16), 0px 3px 3px 0px rgba(0, 0, 0, 0.23);
  border-radius: 5px;
  padding: 20px;
  color: #ffffff;
}
.micro-modal.hidden {
  display: none;
}
header.app-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #414567;
  color: #f2f6fc;
  padding: 13px;
  font-size: 13px;
}
header.app-cta.hidden {
  display: none;
}
header.app-cta .open-loading {
  -webkit-animation: pulseOpacity 1s infinite;
          animation: pulseOpacity 1s infinite;
}
header.app-cta .left {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
header.app-cta .right {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
header.app-cta h3,
header.app-cta p {
  line-height: 1;
  margin: 0;
  display: inline-block;
}
header.app-cta h3 {
  font-weight: normal;
  margin-right: 8px;
}
header.app-cta p {
  color: rgba(242, 246, 252, 0.8);
}
header.app-cta button {
  outline: none;
  box-sizing: content-box;
  text-transform: uppercase;
  background: rgba(242, 246, 252, 0.05);
  color: #f2f6fc;
  border: 1px solid rgba(242, 246, 252, 0.9);
  height: 31px;
  line-height: 14px;
}
header.app-cta button:first-child {
  padding: 0 14px;
  border-radius: 20px;
  margin-right: 10px;
}
header.app-cta button:last-child {
  padding: 0;
  width: 31px;
  border-radius: 31px;
  margin-right: -5px;
}
header.app-cta button:last-child img {
  vertical-align: middle;
}
@-webkit-keyframes pulseOpacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulseOpacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**
 * Pages
 */
#project-player {
  height: 100%;
}
#project-player body {
  height: 100%;
}
#project-player #app {
  width: 100%;
  height: 100%;
}
#project-player #player-body {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
#project-player .btn.meta-button {
  display: none;
}
#project-player .primary-btn:focus {
  outline: 0;
}
#project-player header.main {
  background: #669eff;
  color: #ffffff;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#project-player header.main a {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
#project-player header.main img {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
#project-player header.main h1 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 400;
  margin: 0;
  font-size: 20px;
  color: #FCFCFC;
  line-height: 1.1;
}
#project-player .micro-modal {
  display: none;
}
@media (min-width: 960px) {
  #project-player .micro-modal {
    display: block;
  }
  #project-player .micro-modal.hidden {
    display: none;
  }
}
#project-player .micro-modal p {
  margin: 0 0 1em 0;
  font-size: 14px;
}
#project-player .micro-modal .buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#project-player .micro-modal .buttons a {
  display: block;
  margin-right: 10px;
  line-height: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
#project-player .micro-modal .buttons img {
  width: 140px;
}
#project-player .micro-modal .buttons .column {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#project-player .micro-modal .buttons button {
  background: #5a6779;
  border: 0;
  padding: 5px 10px;
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
}
#project-player .dPad button {
  background-image: url(/web/20170304040406im_/https://webmaker.org/img/nub.svg);
}
#project-player .dPad button:active,
#project-player .dPad button:focus {
  outline: 0;
}
#splash {
  /**
   * Masthead
   */
  /**
   * Mid
   */
  /**
   * Maker Party Promo
   */
  /**
   * Footer
   */
  /* ----------------------------- */
  /**
   * Utility
   */
  /* ----------------------------- */
  /**
   * Responsive
   */
}
#splash h1 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.28;
  font-weight: 400;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}
#splash h2 {
  margin: 0 0 1.4rem 0;
  font-size: 1.48rem;
  line-height: 2rem;
  font-weight: 200;
}
#splash h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
}
#splash p {
  margin: 0;
}
#splash button {
  display: inline-block;
  width: 88px;
  height: 48px;
  margin-left: 10px;
  line-height: 1em;
  border: none;
  outline: none;
  background: none;
  color: #4D95DF;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
#splash button:hover {
  background-color: #ffffff;
}
#splash input[type="text"] {
  display: inline-block;
  width: 244px;
  height: 40px;
  border: none;
  outline: none;
  background: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}
#splash input[type="checkbox"] {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: none;
  outline: none;
  background: none;
  vertical-align: middle;
  cursor: pointer;
}
#splash label {
  font-size: 0.8rem;
}
#splash form {
  margin-top: 25px;
}
#splash a:link {
  color: inherit;
  text-decoration: none;
}
#splash a( :not(.btn)):hover {
  text-decoration: underline;
}
#splash a:active {
  color: inherit;
}
#splash a:visited {
  color: inherit;
}
#splash #masthead {
  padding: 20px 0;
  color: white;
  border-bottom: 1px solid #4b80b7;
  background: #4c88ef;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #4c88ef), color-stop(100%, #17e4d9));
  background: -webkit-linear-gradient(-45deg, #4c88ef 0%, #17e4d9 100%);
  background: -webkit-linear-gradient(315deg, #4c88ef 0%, #17e4d9 100%);
  background: linear-gradient(135deg, #4c88ef 0%, #17e4d9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c88ef', endColorstr='#17e4d9', GradientType=1);
}
#splash #masthead a:link {
  color: white;
  font-weight: 500;
}
#splash #masthead #header {
  position: relative;
}
#splash #masthead #header img {
  margin-left: -6px;
}
#splash #masthead #signup {
  position: relative;
  margin: 150px 0px 160px;
}
#splash #masthead #signup #optin {
  margin-top: 10px;
}
#splash #masthead #signup form.hide {
  display: none;
}
#splash #masthead #signup #thanks {
  display: none;
  margin-top: 82px;
}
#splash #masthead #signup #thanks.show {
  display: block;
}
#splash #masthead #hero {
  position: absolute;
  top: 90px;
  left: calc(100% - 300px);
  -webkit-transition: -webkit-transform 0.7s ease-out;
          transition: transform 0.7s ease-out;
}
#splash #hero:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
#splash .google-play img {
  width: 150px;
}
#splash #signup .tooltip.email,
#splash #signup .tooltip.optin {
  position: relative;
  z-index: 98;
  width: 230px;
  left: 0;
  color: #3f505b;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 8px;
  font-size: .7em;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
}
#splash #signup .tooltip.email:before,
#splash #signup .tooltip.optin:before {
  border: solid;
  border-color: rgba(255, 255, 255, 0.85) transparent;
  border-width: 0px 6px 6px 6px;
  content: "";
  top: -6px;
  left: 50%;
  margin-left: -3px;
  position: absolute;
  z-index: 99;
}
#splash #signup .tooltip.optin:before {
  left: 6px;
}
#splash #signup form[data-errors*="email"] .tooltip.email {
  display: block;
}
#splash #signup form[data-errors*="optin"] .tooltip.optin {
  display: block;
}
#splash #mid {
  padding: 100px 0 100px 0;
  background-color: white;
}
#splash #mid .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#splash #mid .segment {
  display: inline-block;
  width: 296px;
  height: auto;
  color: #707c8c;
}
#splash #mid .quote {
  font-size: 1.3rem;
}
#splash #mid .quote .signature {
  display: block;
  font-size: 0.9rem;
  margin-top: 4px;
}
#splash #mid .feature h4 {
  color: #3f505b;
}
#splash #mid .feature p {
  font-size: 1.0rem;
  line-height: 1.65rem;
  margin-top: 6px;
}
#splash #mp-promo .promo {
  position: relative;
  padding: 50px 0 50px 0;
  color: #ffffff;
  background-color: #e5b41c;
  text-align: center;
  background-image: url('/web/20170304040406im_/https://webmaker.org/img/maker-party-pattern-tile@2x.png');
  background-repeat: repeat repeat;
  background-size: 171px 121.5px;
}
#splash #mp-promo .promo h3 {
  font-size: 2.25rem;
  font-weight: 400;
  margin: 20px 0 10px 0;
}
#splash #mp-promo .promo h4 {
  font-size: 1.375rem;
  line-height: 1.36;
  font-weight: 400;
}
#splash #mp-promo .promo .btn {
  background: #ffffff;
  border: 1px solid #a27f13;
  color: #e5b41c;
}
#splash #thimble-promo .promo {
  position: relative;
  padding: 50px 0 50px 0;
  color: #ffffff;
  background-color: #47ad66;
  text-align: center;
  background-image: url('/web/20170304040406im_/https://webmaker.org/img/thimble-pattern@2x.png');
  background-repeat: repeat repeat;
  background-size: 200px;
}
#splash #thimble-promo .promo h3 {
  font-size: 2.25rem;
  font-weight: 400;
  margin: 20px 0 10px 0;
}
#splash #thimble-promo .promo h4 {
  font-size: 1.375rem;
  line-height: 1.36;
  font-weight: 400;
}
#splash #thimble-promo .promo .btn {
  background: #ffffff;
  border: 1px solid #317746;
  color: #47ad66;
}
#splash #footer {
  display: block;
  text-align: center;
  border-top: 1px solid #d7d9de;
}
#splash #footer h2 {
  margin: 30px 0 0 0;
  color: #717990;
}
#splash #footer img {
  margin-bottom: 30px;
}
#splash #footer .icon {
  margin: 0 4px 0 0;
}
#splash #footer ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 500px;
  margin: 30px auto;
  padding: 0;
  list-style: none;
}
@media (max-width: 980px) {
  #splash #footer ul {
    display: block;
    text-align: left;
  }
}
#splash #footer ul li {
  width: auto;
  display: block;
  text-align: center;
  font-size: 0.9em;
  color: #aaafbd;
}
@media (min-width: 410px) {
  #splash #footer ul li {
    width: 33%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #splash #footer ul li a {
    padding: 10px;
  }
}
#splash #footer ul li a {
  white-space: nowrap;
  padding: 10px 20px;
  display: block;
}
#splash #footer ul li a.tools {
  background: #00be94;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 19px;
  width: 170px;
  color: white;
  margin: 10px auto 0 auto;
  text-align: center;
  -webkit-transition: background 0.3s ease-out;
          transition: background 0.3s ease-out;
}
@media (min-width: 410px) {
  #splash #footer ul li a.tools {
    margin: 0 0 0 20px;
    text-align: center;
    width: auto;
    display: inline-table;
  }
}
#splash #footer ul li a.tools:hover {
  text-decoration: none;
  background: #00cda0;
}
#splash .inner {
  position: relative;
  width: 966px;
  margin: 0 auto;
}
#splash ::-webkit-input-placeholder {
  color: white;
  opacity: 0.6;
}
#splash :-moz-placeholder {
  color: white;
  opacity: 0.6;
}
#splash ::-moz-placeholder {
  color: white;
  opacity: 0.6;
}
#splash :-ms-input-placeholder {
  color: white;
  opacity: 0.6;
}
@media (max-width: 980px) {
  #splash h1 {
    font-size: 2.4rem;
  }
  #splash h2 {
    margin-bottom: 1.5rem;
  }
  #splash input[type="text"] {
    font-size: 1rem;
    width: 200px;
  }
  #splash button {
    height: 40px;
    width: 70px;
  }
  #splash .inner {
    width: 600px;
    margin: 0 auto;
  }
  #splash #masthead #signup {
    margin: 60px 0 60px 0;
  }
  #splash #masthead #signup #optin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 260px;
  }
  #splash #hero {
    display: none;
  }
  #splash #optin label {
    margin-left: .5em;
  }
  #splash #mid {
    padding: 40px 0 10px;
  }
  #splash #mid .inner {
    display: block;
  }
  #splash #mid .segment {
    width: 100%;
    margin-bottom: 2em;
  }
}
@media (max-width: 768px) {
  #splash .inner {
    width: auto;
    margin: 0 1rem;
  }
  #splash h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
  }
  #splash h2 {
    font-size: 1.38rem;
  }
  #splash #mid .quote {
    font-size: 1.2rem;
  }
}
#thumbnail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #e9ebf0;
}
#thumbnail .container {
  position: relative;
  width: 320px;
  height: 440px;
}
#thumbnail .container .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#thumbnail .meta-button {
  display: none;
}
#splash .legal {
  display: block !important;
  margin: 40px auto;
  padding: 0 20px;
}
#splash .legal h1,
#splash .legal h2,
#splash .legal h3,
#splash .legal h4 {
  color: #6B7B8D;
  font-weight: 400;
}
#splash .legal h1 {
  font-size: 2rem;
  margin: 20px 0 0 0;
}
#splash .legal h2 {
  font-size: 1.6rem;
  margin: 20px 0;
}
#splash .legal h3 {
  font-size: 1.0rem;
}
#splash .legal h4 {
  font-size: 0.8rem;
  font-weight: normal;
}
#splash .legal p,
#splash .legal ol,
#splash .legal li {
  font-size: 1.0rem;
  font-weight: 300;
  color: #3F505B;
  line-height: 28px;
  margin-bottom: 1em;
}
#splash .legal li {
  margin-bottom: 0.33em;
}
#splash .legal a {
  color: #669EFF;
}
#splash.error {
  background: -webkit-linear-gradient(315deg, #4c88ef 0%, #17e4d9 100%);
  background: linear-gradient(135deg, #4c88ef 0%, #17e4d9 100%);
}
#splash.error #masthead {
  background: none;
  border-bottom: 0;
}
#splash.error #mid {
  background: none;
}
#splash.error #mid .inner.legal {
  margin-bottom: 100px;
}
#splash.error #mid .inner.legal h1,
#splash.error #mid .inner.legal h2,
#splash.error #mid .inner.legal p,
#splash.error #mid .inner.legal a {
  color: #ffffff;
}
#splash.error #mid .inner.legal h1 {
  font-weight: 100;
}
#splash.error #mid .inner.legal h2 {
  font-weight: 200;
  margin-bottom: 0;
}
#splash.error #mid .inner.legal a:not(.btn) {
  text-decoration: underline;
}
#splash.error #mid .inner.legal a.btn {
  color: #669eff;
  margin: 20px 0;
}
#splash.error #footer {
  background: #f0f2f7;
}
/**
 * General
 */
*,
*:after,
*:before {
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
html {
  font-family: "FiraSans", "Fira Sans", "Fira Sans OT", sans-serif;
  font-weight: normal;
  min-height: 100%;
  background-color: #f0f2f7;
}
body {
  display: block;
  min-height: 100%;
  margin: 0;
  padding: 0;
}
/**
 * Utility Classes
 */
.centered {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.btn-uppercase {
  background: #ffffff;
  border-radius: 40px;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 500;
  line-height: 15px;
  text-transform: uppercase;
  margin: 1rem 0;
  padding: 20px 50px;
  box-shadow: none;
}

/*
     FILE ARCHIVED ON 04:04:06 Mar 04, 2017 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 16:17:35 Jan 01, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.674
  exclusion.robots: 0.021
  exclusion.robots.policy: 0.01
  esindex: 0.01
  cdx.remote: 35.17
  LoadShardBlock: 174.635 (3)
  PetaboxLoader3.datanode: 111.776 (5)
  load_resource: 255.016 (2)
  PetaboxLoader3.resolve: 156.57 (2)
*/