.colorpicker-container {
  display: flex;
}

.colorpicker {
  height: 40px;
  width: 40px;
  background-color: #F4511E;
  border-radius: 100%;
  border: 4px solid #03ad91;
  cursor: pointer;
}

#container {
  width: 370px;
  max-width: 370px;
  height: 410px;
  position: relative;
  border: 4px solid #03ad91;
}

.flow {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#key {
  display: flex;
  position: absolute;
  flex-direction: column;
  height: 60px;
  width: 80px;
  right: 0;
  bottom: 0;
}

#key > div {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

#tooltip {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: fixed;
  min-width: 150px;
  height: 40px;
  top: 0;
  left: 0;
  padding: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  z-index: 2;
}

#clipboard {
  position: fixed;
  z-index: -1;
  top: -370px;
}

#controls {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #263238;
  height: 30px;
  font-size: 18px;
  padding: 2px;
  border-radius: 5px 5px 0 0;
}

#controls .col {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#controls .col * {
  margin: 0 2px;
}

#pin-state {
  display: none;
}

#pin-state:checked ~ label {
  color: #00b8d4;
}

#pin:hover {
  color: #84ffff;
}

#hide:hover {
  color: #ffea00;
}

#close:hover {
  color: #ff1744;
}

#mode-selector {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#mode-selector:hover {
  color: #00e5ff;
}

#current-output {
  font-size: 18px;
}

.cell {
  width: 20px;
  height: 20px;
  border: 0px solid rgba(0, 0, 0, 0.25);
  line-height: 1.5em;
}

.cell:hover {
  z-index: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.row {
  display: flex;
  width: 100%;
}

.gutter.cell {
  width: 90px;
  text-align: center;
}

.color {
  cursor: pointer;
}

.arrow {
  width: 0;
  height: 0;
  cursor: pointer;
  -webkit-user-select: none;
}

.arrow.left {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid white;
}

.arrow.right {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid white;
}

.arrow.left:hover {
  border-left: 10px solid #00e5ff;
}

.arrow.right:hover {
  border-right: 10px solid #00e5ff;
}

.clickable {
  cursor: pointer;
}

.hidden {
  opacity: 0;
  z-index: -1 !important;
}

h1, h3 {
  font-weight: 200;
  color: #222;
}
section h3 {
  margin: 0 0 2em;
  text-align: center;
}
a, a:visited {
  color: #2196f3;
}
