.mixer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  max-width: 1000px;
  min-width: 290px;
  border: 1px solid #212121;
  padding: 30px;
  padding-top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.mixer__yesno {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.mixer .vubor {
  position: relative;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  margin: 20px;
  border: 1px solid #212121;
}

.mixer .vubor div {
  margin-top: 13px;
  font-size: 20px;
  text-transform: uppercase;
}

.mixer button {
  cursor: pointer;
  min-width: 200px;
  font-size: 20px;
  padding: 10px;
  border: 1px solid #fafafa;
  color: black;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: rgba(173, 173, 173, 0.8);
  text-transform: uppercase;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
}

.mixer button:focus {
  outline: none;
}

.mixer button:hover {
  color: #fafafa;
  background-color: rgba(0, 0, 0, 0.657);
}

.mixer .sel {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  color: #fafafa;
  border: none;
  font-weight: 700;
  background-color: #26aa5a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
