.setup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.setup .toolbar {
  background-color: coral;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.setup input[type=text] {
  color: #fff;
  background-color: transparent;
  border: none;
}

.setup .toolbar input[type=text] {
  flex: 100 100 0;
  font-size: 32px;
  padding: 8px;
}

.setup .play {
  color: #fff;
  padding: 8px 16px;
  border: none;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 20px;
}

.setup .swatch, .setup .delete {
  border: none;
  height: 30px;
  width: 30px;
  color: transparent;
  overflow: hidden;
}

.setup .swatch {
  margin: 10px 10px 10px 20px;
}

.setup .delete {
  margin: 10px 20px 10px 10px;
  background-color: transparent;
  background-image: url("delete30x30.svg");
}

.setup h1 {
  margin: 0;
  padding: 30px 20px 4px 66px;
  color: #444444;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
}

/*
 * All content entries are positioned at 0 in the DOM, then translated to an appropriate position.
 * This is necessary to animate moves.
 */
.setup .content {
  position: relative;
}

.setup .entry {
  width: 100%;
  position: absolute;
}

.setup .sortedEntry {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.setup .animated {
  transition: transform 300ms ease-in;
}

.setup .duckFade {
  transition: opacity 300ms ease-in;
  z-index: -1;
  opacity: 0;
}

.setup .sortedEntry:hover {
  background-color: #2a2a2a;
}

.setup .sortedEntry input[type=text] {
  flex: 100 100 0;
  padding: 0 8px;
  font-size: 18px;
}

.setup .swatch, .setup .delete {
  cursor: pointer;
}

.setup .quickAdd, .setup .quickAdd .name {
  cursor: pointer;
}

.setup .newPlayer .delete {
  visibility: hidden;
}
