

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: grey; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

.bet_button{
  font-size: 4vmin;
  text-align:center;
}

.wrapper .rate{
  width: 80%;
  color:white;
  text-align:center;
}
.wrapper .option{
  height: 4vh;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
/*   padding: 0 10px; */
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}
.wrapper .option .dot{
  height: 5px;
  width: 5px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.wrapper .option .dot::before{
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #0069d9;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}

.option-input-home:checked:checked ~ .option-home,
.option-input-away:checked:checked ~ .option-away{
  border-color: #0069d9;
  background: #0069d9;
}
.option-input-home:checked:checked ~ .option-home .dot,
.option-input-away:checked:checked ~ .option-away .dot{
  background: #fff;
}
.option-input-home:checked:checked ~ .option-home .dot::before,
.option-input-away:checked:checked ~ .option-away .dot::before{
  opacity: 1;
  transform: scale(1);
}
.wrapper .option span{
/*   font-size: 20px; */
  color: white;
}
.option-input-home:checked:checked ~ .option-home span,
.option-input-away:checked:checked ~ .option-away span{
  color: #fff;
}