*::-webkit-scrollbar {
  display: none;
}

.m-client {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial;
  background: #90292E;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.m-client__footer {
  padding: 10px;
  background: #761519;
  border-radius: 10px;
  width: fit-content;
}

.m-client__fine-print {
  font-size: 10px;
  font-weight: normal;
  font-style: italic;
  color: #fdecd4;
}

.m-client__big-button {
  outline: none;
  border: none;
  background: #fdecd4;
  color: #c2272d;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 10px;
  padding: 14px 62px;
  border-radius: 10px;
  box-shadow: -4px 4px 8px 5px #00000042;
  cursor: pointer;
}

.m-client__big-button:disabled {
  background: #b9ab97;
  color: #c15256;
  cursor: no-drop;
}

.m-client__big-button:active {
  box-shadow: -2px 2px 4px 2px #00000042;
  transform: scale(0.98);
}

.m-client__logout-button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 8px;
}

.m-client__logout-button {
  font-size: 12px;
  color: gold;
  text-transform: uppercase;
  cursor: pointer;
}

.m-client__winner-info {
  background: #fdecd4;
  border-radius: 10px;
  min-height: 240px;
  width: -webkit-fill-available;
  padding: 10px 14px;
  height: fit-content;
  overflow: auto;
}

/* helpers */
.h-hide {
  display: none;
}