/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption,
figure,
main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

@keyframes pulse-highlight-green {
  0% {
    background-color: #79b51c;
  }

  25% {
    background-color: #91d821;
  }

  50% {
    background-color: #79b51c;
  }

  75% {
    background-color: #619217;
  }

  100% {
    background-color: #79b51c;
  }
}

.md-input {
  position: relative;
}

.md-input input {
  outline: none;
  display: block;
  box-sizing: border-box;
  padding: .875rem;
  border: none;
  width: 100%;
  margin: 0 0 1.75rem;
  font-size: 1.3rem;
  color: #8a8a8a;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(10,10,10,0.1);
  -webkit-appearance: none;
  height: 3.5625rem;
}

.md-input label {
  font-size: 1.3rem;
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  color: #999;
  transition: .2s ease all;
  pointer-events: none;
}

.md-input input:focus+label {
  color: #00a7e3;
}

.md-input input:focus+label,
.md-input input.has-value+label {
  font-size: .875rem;
  top: -1.3125rem;
  left: .25rem;
}

.md-input input:focus ~ .bar:before,
.md-input input:focus ~ .bar:after {
  width: 50%;
}

.md-input .bar {
  position: relative;
  top: -1.25rem;
  display: block;
  width: 100%;
}

.md-input .bar:before,
.md-input .bar:after {
  position: absolute;
  bottom: 1px;
  width: 0;
  height: .125rem;
  content: '';
  transition: .2s ease all;
  background-color: #00a7e3;
}

.md-input .bar:before {
  left: 50%;
}

.md-input .bar:after {
  right: 50%;
}

.popup_background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 50;
  background: rgba(35,35,35,0.2);
  transition: visibility 0.3s, opacity 0.3s ease-out;
  visibility: hidden;
  opacity: 0;
}

.popup_background.active {
  transition: visibility 0s, opacity 0.3s ease-out;
  visibility: visible;
  opacity: 1;
}

body>.content {
  display: none;
}

.popup_wrapper {
  z-index: 50;
  position: absolute;
  top: 48%;
  left: 50%;
  min-width: 760px;
  max-width: 950px;
  background: #f1f1f1;
  margin: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19),0 6px 6px rgba(0,0,0,0.23);
  transition: visibility 0.3s, opacity 0.3s, transform 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.popup_wrapper .color_code {
  display: flex;
  flex-direction: column;
  width: 272px;
  margin: 0 auto;
}

.popup_wrapper .color_code .selection {
  display: flex;
  flex-wrap: wrap;
}

.popup_wrapper .color_code .selection .color {
  cursor: pointer;
  margin: 4px;
  width: 128px;
  height: 128px;
  box-sizing: border-box;
}

.popup_wrapper .color_code .selection .color:hover,
.popup_wrapper .color_code .selection .color.active {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19),0 6px 6px rgba(0,0,0,0.23);
}

.popup_wrapper .color_code .selection .color.grid-white {
  background-size: 64px 64px;
  background-position: 25% 25%;
  background-image: linear-gradient(0deg, transparent 22.9%, rgba(255,255,255,0.4) 23%, rgba(255,255,255,0.4) 27%, transparent 27.1%, transparent 72.9%, rgba(255,255,255,0.4) 73%, rgba(255,255,255,0.4) 77%, transparent 77.1%, transparent),linear-gradient(90deg, transparent 22.9%, rgba(255,255,255,0.4) 23%, rgba(255,255,255,0.4) 27%, transparent 27.1%, transparent 72.9%, rgba(255,255,255,0.4) 73%, rgba(255,255,255,0.4) 77%, transparent 77.1%, transparent);
}

.popup_wrapper .color_code .selection .color.grid-black {
  background-size: 64px 64px;
  background-position: 25% 25%;
  background-image: linear-gradient(0deg, transparent 22.9%, rgba(0,0,0,0.15) 23%, rgba(0,0,0,0.15) 27%, transparent 27.1%, transparent 72.9%, rgba(0,0,0,0.15) 73%, rgba(0,0,0,0.15) 77%, transparent 77.1%, transparent),linear-gradient(90deg, transparent 22.9%, rgba(0,0,0,0.15) 23%, rgba(0,0,0,0.15) 27%, transparent 27.1%, transparent 72.9%, rgba(0,0,0,0.15) 73%, rgba(0,0,0,0.15) 77%, transparent 77.1%, transparent);
}

.popup_wrapper .color_code .choices {
  margin-top: 8px;
  display: flex;
  padding: 0;
}

.popup_wrapper .color_code .choices .color {
  width: 25%;
  margin: 4px;
  cursor: pointer;
}

.popup_wrapper .color_code .choices .color:hover,
.popup_wrapper .color_code .choices .color.active {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);
}

.popup_wrapper .color_code .choices .color:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.popup_wrapper.active {
  transition: visibility 0s, opacity 0.3s, transform 0.3s ease-in-out;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup_wrapper .popup_mascot_negative,
.popup_wrapper .popup_mascot_neutral,
.popup_wrapper .popup_mascot_positive {
  height: 100px;
  width: 100px;
  display: none;
  background-repeat: no-repeat;
}

.popup_wrapper .popup_mascot_positive {
  background-image: url(images/370048a32a4695e9b6471f2ce082e56a.svg);
}

.popup_wrapper .popup_mascot_neutral {
  background-image: url(images/e28311e912302249177d9dde1e046a02.svg);
}

.popup_wrapper .popup_mascot_negative {
  background-image: url(images/b2e2b28b486ffc570ca7311dc0eb91bc.svg);
}

.popup_wrapper .popup_flashing {
  width: 350px;
  height: 472px;
  margin-bottom: -35px;
  background: url(images/8130cefa559f67e6487b8c3953232086.gif);
  background-size: 100%;
  display: inline-block;
}

.popup_wrapper .popup_pairing {
  width: 350px;
  height: 472px;
  margin-bottom: -35px;
  background: url(images/c0a5fbabc47de46514a858120b9ead10.gif);
  background-size: 100%;
  display: inline-block;
}

.popup_wrapper ul {
  list-style-type: circle;
  padding-left: 30px;
  margin-bottom: 50px;
}

.popup_wrapper.positive header {
  background-color: #79b51c;
}

.popup_wrapper.positive .popup_mascot_positive {
  display: block;
}

.popup_wrapper.neutral header {
  background-color: #00a7e3;
}

.popup_wrapper.neutral .popup_mascot_neutral {
  display: block;
}

.popup_wrapper.negative header {
  background-color: #e3006a;
}

.popup_wrapper.negative .popup_mascot_negative {
  display: block;
}

.popup_wrapper header {
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup_wrapper header h1 {
  color: white;
  text-transform: uppercase;
  margin: 0;
  font-size: 1.5rem;
}

.popup_wrapper header svg {
  height: 64px;
  width: auto;
  fill: rgba(255,255,255,0.9);
  z-index: 55;
}

.popup_wrapper .popup_content {
  padding: 60px;
  font-size: 1.2rem;
}

.popup_wrapper .popup_content .robo_happy,
.popup_wrapper .popup_content .robo_sad {
  margin: 0 auto 80px auto;
  height: 400px;
  width: 400px;
  background: none;
  background-image: url(images/4f623f4ee669588d7f47efa2d6fcd57a.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.popup_wrapper .popup_content .robo_sad {
  background-image: url(images/ddde8a260a30f48718268f596ad02c73.svg);
}

.popup_wrapper .popup_content .robo_message,
.popup_wrapper .popup_content p.center {
  text-align: center;
}

.popup_wrapper .popup_content table {
  width: 100%;
}

.popup_wrapper button {
  font-size: 1.2rem;
  height: 40px;
  flex: 0;
  min-width: 200px;
  color: rgba(255,255,255,0.9);
  margin: 0 10px;
}

.popup_wrapper button:first-child {
  margin-left: 0;
}

.popup_wrapper button:last-child {
  margin-right: 0;
}

.popup_wrapper button.positive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background-image: none;
  background-color: #000;
  padding: 0px 10pt;
  line-height: 18px;
  border-radius: 0.5pt;
  text-align: center;
  vertical-align: middle;
  letter-spacing: .03em;
  position: relative;
  padding: 0 20pt;
}

.popup_wrapper button.positive:hover {
  background-color: #000;
}

.popup_wrapper button.positive.glowing {
  animation: pulse-highlight-green 1s linear infinite;
}

.popup_wrapper button.positive:disabled,
.popup_wrapper button.positive:disabled:hover,
.popup_wrapper button.positive:disabled:focus,
.popup_wrapper button.positive:disabled:active {
  cursor: default;
  background-color: rgba(0,0,0,0.12);
}

.popup_wrapper button.positive:hover {
  background-color: #232323;
}

.popup_wrapper button.negative {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background-image: none;
  background-color: #232323;
  padding: 0px 10pt;
  line-height: 18px;
  border-radius: 0.5pt;
  text-align: center;
  vertical-align: middle;
  letter-spacing: .03em;
  position: relative;
  padding: 0 20pt;
}

.popup_wrapper button.negative:hover {
  background-color: #0a0a0a;
}

.popup_wrapper button.negative.glowing {
  animation: pulse-highlight-green 1s linear infinite;
}

.popup_wrapper button.negative:disabled,
.popup_wrapper button.negative:disabled:hover,
.popup_wrapper button.negative:disabled:focus,
.popup_wrapper button.negative:disabled:active {
  cursor: default;
  background-color: rgba(0,0,0,0.12);
}

.popup_wrapper button.negative:hover {
  background-color: #0a0a0a;
}

.popup_wrapper footer {
  padding: 0 60px 60px 60px;
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}

.popup_wrapper footer .popup_checkbox_wrapper {
  width: 100%;
  padding: 0px 0 8px 0;
  height: 30px;
  line-height: 30px;
  margin-bottom: 20px;
}

.popup_wrapper footer .popup_checkbox_wrapper input {
  margin-right: 8px;
  float: left;
}

.popup_wrapper footer .popup_checkbox_wrapper span {
  font-size: 1.1rem;
  height: 30px;
}

.hand_gone {
  opacity: 0;
  transform: scale(1.5);
  -webkit-animation: opacity 1s ease-in-out, transform 1s ease-in-out;
  -o-animation: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  animation: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.hand_visible {
  opacity: 1;
  transform: scale(1);
  -webkit-animation: opacity 1s ease-in-out, transform 1s ease-in-out;
  -o-animation: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  animation: opacity 1s ease-in-out, transform 1s ease-in-out;
}

#set_name_input {
  width: 100%;
  margin-bottom: 20px;
}

.color_code {
  display: flex;
  flex-direction: column;
  width: 272px;
  margin: 0 auto;
}

.color_code .selection {
  display: flex;
  flex-wrap: wrap;
}

.color_code .selection .color {
  cursor: pointer;
  margin: 4px;
  width: 128px;
  height: 128px;
  box-sizing: border-box;
}

.color_code .selection .color:hover,
.color_code .selection .color.active {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19),0 6px 6px rgba(0,0,0,0.23);
}

.color_code .selection .color.grid-white {
  background-size: 64px 64px;
  background-position: 25% 25%;
  background-image: linear-gradient(0deg, transparent 22.9%, rgba(255,255,255,0.4) 23%, rgba(255,255,255,0.4) 27%, transparent 27.1%, transparent 72.9%, rgba(255,255,255,0.4) 73%, rgba(255,255,255,0.4) 77%, transparent 77.1%, transparent),linear-gradient(90deg, transparent 22.9%, rgba(255,255,255,0.4) 23%, rgba(255,255,255,0.4) 27%, transparent 27.1%, transparent 72.9%, rgba(255,255,255,0.4) 73%, rgba(255,255,255,0.4) 77%, transparent 77.1%, transparent);
}

.color_code .selection .color.grid-black {
  background-size: 64px 64px;
  background-position: 25% 25%;
  background-image: linear-gradient(0deg, transparent 22.9%, rgba(0,0,0,0.15) 23%, rgba(0,0,0,0.15) 27%, transparent 27.1%, transparent 72.9%, rgba(0,0,0,0.15) 73%, rgba(0,0,0,0.15) 77%, transparent 77.1%, transparent),linear-gradient(90deg, transparent 22.9%, rgba(0,0,0,0.15) 23%, rgba(0,0,0,0.15) 27%, transparent 27.1%, transparent 72.9%, rgba(0,0,0,0.15) 73%, rgba(0,0,0,0.15) 77%, transparent 77.1%, transparent);
}

.color_code .choices {
  margin-top: 8px;
  display: flex;
  padding: 0;
}

.color_code .choices .color {
  width: 25%;
  margin: 4px;
  cursor: pointer;
}

.color_code .choices .color:hover,
.color_code .choices .color.active {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);
}

.color_code .choices .color:after {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.dropdown {
  display: inline-block;
  height: 2rem;
}

.dropdown input {
  display: none;
}

.dropdown input ~ ul {
  position: relative;
  visibility: hidden;
  opacity: 0;
  top: -20px;
  z-index: 50;
}

.dropdown input:checked+label {
  background: #17c2ff;
  color: #ffffff;
}

.dropdown input:checked ~ ul {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.dropdown label,
.dropdown ul,
.dropdown ul li {
  text-align: left;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.dropdown label {
  display: block;
  width: 150px;
  background: #dedede;
  padding: 0.8rem;
  color: #00a7e3;
  position: relative;
  z-index: 51;
}

.dropdown label:hover {
  background: #00a7e3;
  color: white;
  cursor: pointer;
}

.dropdown label:after {
  content: "\25BC";
  font-size: 17px;
  color: #fff;
  right: 1rem;
  position: absolute;
  pointer-events: none;
}

.dropdown ul {
  padding: 0;
  margin: 0;
}

.dropdown ul li {
  display: block;
  width: 150px;
  background: #dedede;
  padding: 0.8rem;
  user-select: none;
  color: #00a7e3;
  position: relative;
  z-index: 51;
}

.dropdown ul li:hover {
  background: #00a7e3;
  color: white;
  cursor: pointer;
}


/*# sourceMappingURL=app.bundle.css.map*/