

/* Output ==================================================================== 

Livello 0, solitamente sport */
.matcher-level-0 {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Livello 1, solitamente league o market */
.matcher-level-1 {
    color:  #1c2e4a;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Livello , solitamente selections o ultimi sotto livelli */
.matcher-level-2 {
            color:  #1c2e4a;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
}


/* league name all'interno di ogni riga */
.matcher-entry-book-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: unset;               
  min-width: 100px;         
  font-size: 12px;
  margin-right: 0px;         
}

/* league name all'interno di ogni riga */
.matcher-entry-league-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: unset;               
  min-width: 200px;         
  font-size: 12px;
  margin-right: 0px;         
}

/* team name all'interno di ogni riga */
.matcher-entry-team-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: unset;               
  min-width: 225px;         
  font-size: 12px;
  margin-right: 0px;         
}


/* market name all'interno di ogni riga */
.matcher-entry-market-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: unset;               
  min-width: 300px;         
  font-size: 12px;
  margin-right: 0px;         
}

/* selection name all'interno di ogni riga */

.matcher-entry-selection-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: unset;               
  min-width: 150px;         
  font-size: 12px;
  margin-right: 0px;         
}

/* dettagli all'interno di ogni riga */
.matcher-entry-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: unset;               
    min-width: 50px;         
    font-size: 12px;
    margin-right: 0px;         
}


/* Per selection e market */ 
.matcher-action {
  display: flex;
  align-items: center;
  gap: 8px;
}

.switch-input {
  height: 0;
  width: 0;
  visibility: hidden;
}

.switch-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 50px;
  height: 25px;
  background: grey;
  display: block;
  border-radius: 100px;
  position: relative;
}

.switch-label:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  background: white;
  border-radius: 90px;
  transition: 0.3s;
}

.switch-input:checked + .switch-label {
  background: #4CAF50;
}

.switch-input:checked + .switch-label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.switch-label:active:after {
  width: 28px;
}

.matcher-events {
     max-height: 450px;
     overflow-y: auto;
  }






















