/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer; }

/*
 * Mixins mostly for UI elements
 */
* {
  box-sizing: border-box; }

body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #252525; }

pre {
  white-space: pre-wrap; }

strong {
  font-weight: 700; }

em {
  font-style: italic; }

p, li, a, button {
  color: inherit;
  font-size: 1rem; }

input[type=text],
textarea {
  border: 1px solid #ccc;
  display: block;
  font-size: 1rem;
  padding: 5px;
  outline: none; }

input[type=text]:focus,
textarea:focus {
  border-color: #2980b9; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ccc;
  text-transform: capitalize; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #ccc;
  text-transform: capitalize; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #ccc;
  text-transform: capitalize; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #ccc;
  text-transform: capitalize; }

input.background-focus:focus {
  border-color: #ccc;
  background: #a9d1ec; }

input.background-focus[type=text]:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #2980b9; }

input.background-focus[type=text]:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: #2980b9; }

input.background-focus[type=text]:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #2980b9; }

input.background-focus[type=text]:focus:-moz-placeholder {
  /* Firefox 18- */
  color: #2980b9; }

a {
  text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400; }

h1 {
  font-size: 3rem; }

h2 {
  font-size: 2.5rem; }

h3 {
  font-size: 2rem; }

h4 {
  font-size: 1.75rem; }

h5 {
  font-size: 1.5rem; }

h6 {
  font-size: 1.25rem; }

/*
 * Layout
 */
.container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: auto;
  max-width: 1200px;
  padding: 10px 15px; }

.vertical-wrap {
  height: 100%;
  justify-content: center; }

.vertical-wrap > * {
  align-self: center; }

/*
 * Typography
 */
.bold {
  font-weight: 700; }

/*
 * XHR loading animation
 */
.spinner {
  height: 40px;
  margin: 15px;
  position: relative;
  width: 40px; }

.double-bounce1, .double-bounce2 {
  animation: xhr-bounce 2.0s infinite ease-in-out;
  -webkit-animation: xhr-bounce 2.0s infinite ease-in-out;
  background-color: #e67e22;
  border-radius: 50%;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%; }

.double-bounce2 {
  animation-delay: -1.0s;
  -webkit-animation-delay: -1.0s; }

@keyframes xhr-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes xhr-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

/*
 * Buttons
 */
.toggle-buttons {
  display: flex; }

.toggle-buttons button {
  cursor: pointer;
  padding: 5px 10px; }

.toggle-buttons .off {
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px; }

.toggle-buttons .off:not(.active) {
  border-right: none; }

.toggle-buttons .off.active {
  border-color: #e74c3c;
  background: #e74c3c;
  color: #fff; }

.toggle-buttons .on {
  border: 1px solid #ccc;
  border-radius: 0 6px 6px 0; }

.toggle-buttons .on:not(.active) {
  border-left: none; }

.toggle-buttons .on.active {
  border-color: #2ecc71;
  background: #2ecc71;
  color: #fff; }

/*
 * Mixins mostly for UI elements
 */
.form {
  background: #fff;
  box-shadow: 0 5px 25px -1px #bebebe;
  display: inline-block;
  padding: 15px;
  padding: 0; }

/*
     * Layout
     */
.form__header,
.form__footer {
  padding: 15px; }

.form__header {
  border-bottom: 1px solid #ccc; }

/*
     * Labels
     */
.form__error-wrap p {
  color: #ff0000; }

.form__input-label {
  text-transform: capitalize; }

/*
     * Inputs
     */
.form__inputs {
  border-bottom: 1px solid #ccc; }

.form__input-wrap {
  padding: 15px; }

.form__input-wrap:not(:last-of-type) {
  border-bottom: 1px solid #ccc; }

.form__input-wrap > *:not(:last-child) {
  margin-right: 15px; }

.form__input-wrap--error input {
  border-color: #e74c3c; }

/*
     * Buttons
     */
.form__button {
  background: #e67e22;
  border-radius: 0px;
  box-shadow: 0 2px 5px -2px #000;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  display: block; }
