@import url("font-awesome-4.6.3/css/font-awesome.min.css");
:root {
  --primary: #3663a9;
  line-height: 1.5;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #ecf0f3;
  padding: 0;
  margin: 0;
  color: #586269;
}

hr {
  border: none;
  border-top: 1px dashed #bcc9cd;
  background: none;
  margin: 1.25rem 0;
}

a {
  color: var(--primary);
}

.code {
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", monospace;
}

code.code {
  background: #f5f7ff;
  color: #5a6281;
  box-shadow: 0 0 0 1px rgba(90, 98, 129, 0.15);
  padding: 0.15rem 0.3rem;
  border-radius: 0.2rem;
  font-size: 0.9em;
}

.input {
  border: 1px solid #bdc9ce;
  padding: 0.75rem 1rem;
  border-radius: 0.2rem;
  position: relative;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
  color: inherit;
  resize: vertical;
}
.input::placeholder {
  color: #969fa2;
}
.input.code {
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono", "Droid Sans Mono", "Source Code Pro", monospace;
}

.button {
  border: 1px solid #bdc9ce;
  padding: 0.6rem 1rem;
  border-radius: 0.2rem;
  position: relative;
  background: transparent;
  color: var(--primary);
  font: inherit;
  border-color: #75a4ec;
  cursor: pointer;
  background: transparent;
}

.seamless {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.input, .button {
  transition: box-shadow 150ms;
}
.input:focus, .button:focus {
  outline: none;
}
.input:focus-visible, .button:focus-visible {
  box-shadow: 0 0 0 3px #75a4ec7a;
}

.label {
  color: #6a7c82;
  margin-top: 0.65rem;
  margin-left: 0.75rem;
  margin-bottom: -1rem;
  background: #fff;
  border: 1px solid #bcc9cd;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  line-height: 1;
  position: relative;
  bottom: -0.725em;
  z-index: 1;
  border-radius: 99rem;
  font-size: 0.85rem;
}
.label + .input {
  padding-top: 1rem;
}

.fieldset {
  border-radius: 0.25rem;
  border: 1px solid #bdc9ce;
}

body > header {
  display: flex;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  z-index: 20;
  position: relative;
}

.home-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  white-space: nowrap;
}
.home-link img {
  max-width: 50px;
  height: auto;
}

.card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  border-radius: 0.2rem;
  background: white;
  padding: 2rem;
  overflow: hidden;
  box-sizing: border-box;
}
.card > header {
  margin: -2rem -2rem 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px dashed #bdc9ce;
}
.card > footer {
  margin: 1rem -2rem -2rem;
  padding: 1rem 2rem;
  border-top: 1px dashed #bdc9ce;
}
.card > hr {
  margin: 1.25rem -0.5rem;
}

@keyframes toolbrowser {
  0% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 1;
  }
}
.tool-browser {
  vertical-align: middle;
  display: inline-block;
  height: 74px;
  position: relative;
}
.tool-browser .toggle-button {
  display: table-cell;
  height: inherit;
  vertical-align: middle;
  transition: background-color ease 50ms;
  padding: 0 10px;
  background-color: transparent;
  border: none;
  margin: 0;
  color: inherit;
}
.tool-browser .toggle-button:hover {
  background-color: #ecf0f3;
}
.tool-browser .wrap {
  background-color: #fff;
  padding: 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  display: none;
  padding: 0;
  margin: 0;
}
.tool-browser .wrap li {
  transition: background-color ease 50ms;
  white-space: nowrap;
}
.tool-browser .wrap li img {
  max-height: 30px;
  width: auto;
  margin-right: 12px;
}
.tool-browser .wrap li a {
  text-decoration: none;
  color: #586269;
  display: flex;
  align-items: center;
  padding: 10px 10px;
}
.tool-browser .wrap li a:hover {
  background-color: #ecf0f3;
}
.tool-browser.active .wrap {
  animation: toolbrowser 200ms;
  display: block;
}
.auto-resize-wrapper {
  display: grid;
  min-height: 3rem;
}
.auto-resize-wrapper .auto-resize, .auto-resize-wrapper .auto-resize-ghost {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
.auto-resize-wrapper .auto-resize {
  resize: none;
  height: 100%;
}
.auto-resize-wrapper .auto-resize-ghost {
  visibility: hidden;
  white-space: pre-wrap;
}
.auto-resize-wrapper .auto-resize-ghost::before {
  content: attr(data-value) " ";
}

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