* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
body.swal2-shown.swal2-height-auto {
  width: 100% !important;
  height: 100vh !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 !important;
  background: linear-gradient(to bottom, #e3afaf, #fba5a5) no-repeat !important;
}

#spin_the_wheel {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#wheel {
  display: block;
}

#spin {
  font: 1.5em/0 "Lato", sans-serif;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%;
  height: 10%;
  margin: -5%;
  background: #fff;
  color: #fff;
  box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: 0.8s;
  text-wrap: wrap;
}

#spin::after {
  content: "";
  position: absolute;
  top: -17px;
  border: 10px solid transparent;
  border-bottom-color: currentColor;
  border-top: none;
}

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

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}