/* _font.css */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");
/* _root.css */
:root {
  --font-mono: 400 normal 16px/1.6 Monaco, Consolas, Andale Mono, Ubuntu Mono, monospace;
  --font-google: 400 normal 16px/1.6 Source Sans Pro, sans-serif;
  --primary-color: #d65bd1;
  --secondary-color: #845ec2;
  --error-color: #fc4444;
  --success-color: #008f7a;
  --warning-color: #ff9671;
  --info-color: #0081cf;
  --white: #fafafa;
  --black: #191919;
  --space: 1rem; }

/* _global.css */
*,
*:before,
*:after {
  box-sizing: none;
  -moz-box-sizing: none;
  -webkit-box-sizing: none;
  margin: 0;
  padding: 0; }

body {
  font: 400 normal 16px/1.6 "Monaco", "Consolas", "Andale Mono", "Ubuntu Mono", monospace; }

fieldset.forma {
  border: 0; }

fieldset.forma legend {
  background-color: rgba(25, 25, 25, 0.05);
  font-size: 110%;
  margin-left: 1rem;
  padding: 1rem;
  position: relative;
  width: 100%; }

fieldset.forma legend:after { 
  border-left: 40rem solid transparent;
  border-right: 40rem solid transparent;
  border-top: 40rem solid rgba(25, 25, 25, 0.03);
  bottom: -40rem;
  content: ' ';
  display: block; 
  height: 0; 
  height: 0;
  position: absolute;
  right: 0;
  width: 0;
  z-index: -1;
}

/* _forma-docs.css */
.forma .forma-control,
.forma [type="submit"] {
  font: 400 normal 16px/1.6 "Monaco", "Consolas", "Andale Mono", "Ubuntu Mono", monospace;
  padding: 1rem; }
.forma label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative; }
.forma .forma-label {
  background-color: rgba(25, 25, 25, 0.15);
  border-bottom: 1px solid #fafafa;
  border-right: 1px solid #fafafa;
  flex: 0 0 30%;
  order: 1;
  padding: 1rem; }
.forma .forma-valid {
  color: #008f7a; }
.forma .forma-invalid {
  color: #fc4444; }
.forma .forma-description {
  color: rgba(25, 25, 25, 0.5); }
.forma .forma-invalid .forma-message {
  display: block; }
.forma .forma-message {
  background-color: #fafafa;
  border: 1px solid rgba(25, 25, 25, 0.2);
  color: #191919;
  display: none;
  font-size: 85%;
  padding: .25rem .5rem;
  position: absolute;
  right: 1rem;
  top: 1rem; }
.forma .forma-invalid .forma-message:before {
  content: 'Hint: '; }
.forma .forma-fieldset {
  background-color: rgba(25, 25, 25, 0.05);
  display: none;
  flex: 1 1 auto;
  order: 2;
  padding: 1rem;
  position: relative; }
.forma .forma-open .forma-fieldset {
  align-items: center;
  display: flex; }
.forma .forma-open .forma-fieldset:after {
  align-items: center;
  background-color: #fafafa;
  border: 1px solid rgba(25, 25, 25, 0.1);
  content: 'Hit tab';
  display: flex;
  font-size: 85%;
  padding: .3rem;
  position: absolute;
  right: 2rem;
  z-index: 10; }
.forma .forma-open .forma-manual:before {
  background-color: rgba(25, 25, 25, 0.05);
  content: '-'; }
.forma .forma-manual:before {
  align-items: center;
  background-color: rgba(25, 25, 25, 0.05);
  background-color: rgba(25, 25, 25, 0.15);
  bottom: 0;
  content: '+';
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  order: 99;
  padding: 0;
  position: absolute;
  right: -2rem;
  top: 0;
  width: 2rem; }
.forma .forma-fieldset * {
  width: calc(100%); }
.forma .forma-fieldset .forma-control {
  border: 1px solid rgba(25, 25, 25, 0.1);
  outline: 4px solid transparent; }
.forma .forma-fieldset .forma-control:focus {
  outline: 4px solid rgba(25, 25, 25, 0.1); }
.forma .forma-fieldset .forma-control:focus:valid {
  outline: 4px solid #008f7a; }
.forma .forma-fieldset .forma-control:focus:invalid {
  outline: 4px solid #fc4444; }
.forma .forma-fieldset select {
  bottom: 0;
  height: inherit;
  height: 4rem;
  top: 0;
  width: 100%; }
.forma [type="submit"] {
  background-color: #845ec2;
  border: 0;
  color: #fafafa;
  cursor: pointer;
  outline: 0;
  width: 100%; }
.forma [type="submit"]:focus,
.forma [type="submit"]:active,
.forma [type="submit"]:hover {
  background-color: #d65bd1; }
.forma [type="submit"]:disabled {
  background-color: rgba(25, 25, 25, 0.2);
  color: rgba(25, 25, 25, 0.4);
  cursor: not-allowed; }