body {
  background-color: rgb(193, 252, 193);
}

input.colorpicker {
  background-color: none;
  border: 0px;
}

button.removewinner {
  float: right;
  border: 1px solid orangered;
  background-color: white;
  color: orangered;
  border-radius: 10px;
  transition-duration: 0.4s;
}

button.removewinner:hover {
  background-color: orangered;
  color: white;
  border-color: white;
}

div.popupbuttons {
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
  margin-left: -20px;
}

button.close {
  background-color: skyblue;
  border: 2px solid black;
  border-radius: 10px;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
}

button.close:hover {
  background-color: royalblue;
  color: white;
  border-color: white;
}

button.remove {
  background-color: indianred;
  border: 2px solid black;
  border-radius: 10px;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
}

button.remove:hover {
  background-color: orangered;
  color: white;
  border-color: white;
}

button.tab {
  background-color: transparent;
  border: none;
  color: black;
  padding: 15px 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 25px;
  transition-duration: 0.4s;
  margin: auto;
  width: 100%;
  border-color: none;
  border-top: 0px;
}

button.tab:hover {
  background-color: rgba(0, 0, 0, 0.315);
  border-color: none;
}

div.controlpanel {
  float: right;
  background: white;
  opacity: 0.6;
  border-radius: 20px;
  padding: 20px;
  padding-top: 0px;
}

div#popup {
  visibility: hidden;
}

div#winnerpopup {
  width: 400px;
  height: 300px;
  background: white;
  position: fixed;
  top: calc(50% - 25% + 50px);
  left: calc(50% - 25% - 84px);
  padding: 50px;
  z-index: 1;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

div#blackbackground {
  background-color: rgba(10, 10, 10, 0.86);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

div.manualcolors {
  visibility: hidden;
}

ul.winners {
  overflow: none;
  overflow-y: auto;
  height: 425px;
}

.checkcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  margin-top: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

body {
  padding: 32px;
}

body * {
  font-family: 'Allerta';
}

@media (min-width: 600px) {
  .controlpanel {
    margin: 1rem;
  }
}

