.search_input {
  width: 100%;
  background-color: #0000;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid grey;
}



.search_input::-webkit-input-placeholder {
  color: white;
}


.search_input::placeholder {
  color: white;
}



/* 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;
}

.poy-wrapper{
 width: 100%;
  height: 98%;
  margin-right:5%;
/*   display: flex; */
  flex-wrap: wrap;
 overflow-y: scroll;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  padding:8px;
  color:white;
  
}
.poy-wrapper .rate{
  width: 100%;
  color:white;
  padding-left:18px;
  text-align:center;
}
.poy-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;
}
.poy-wrapper .option .dot{
  height: 5px;
  width: 5px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.poy-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;
}