

.userprofilechooser{
  display: none;
}

.swal2-actions {
    padding: 0px;
    margin: 0px;
}


.profile_button{
	color: white;
    font-size: 13px;
    border: white solid 2px;
    background: green;
}

/* Modals */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal {
  justify-content:center;
  align-items: center;
  background-color: transparent;
  overflow: hidden;
}
.modal.modal-show {
  animation: none;
}
.modal.modal-hide {
  animation: none;
}

.bet-details-summary {
    width: 99%;
    border-collapse: collapse;
	font-size: x-small
}

.bet-details-summary tbody td .highlight {
	background-color: transparent !important;
}


.bet-details-summary thead th {
/*     background-color: #4CAF50; */
    color: black;
    padding: 4px 0px;
    text-align: center;
}

.bet-details-summary tbody td {
    border: 1px solid #ddd;
    padding: 4px 4px;
    text-align: center;
}

.bet-details-summary tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.bet-details-summary tbody tr:hover {
/*     background-color: #f5f5f5; */
}



input::placeholder {
  font-size: 1.3em;
  font-style: italic;
}

.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;
  font-size:2vh;
}



.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: 3vmin;
  text-align:center;
}
dot {
    display: none;
}

span.team-name {
    padding: 3px;
}



.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{
  min-height: 4vh;
	height:auto;
  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 orange;
  transition: all 0.3s ease;
}
.poy-wrapper .option .dot{
/*   height: 5px;
  width: 5px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative; */
	    display: none;
}
.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;
}