:root {
  --widget-header-background: #2d3844;
  --widget-header-color: #fff;
  --widget-header-border-bottom: 2px solid var(--main_color);
  --tabella-classifica-header-background: #343434;
  --tabella-classifica-header-color: #fff;
  --tabella-classifica-body-background: #343434;
  --tabella-classifica-body-color: #fff;
}

.tabella__classifica{
	width: 100%;
}

.tabella__classifica tbody{
	text-align: center;
}

.tabella__classifica thead > tr > * {
  padding: 8px 8px;
  background: var(--tabella-classifica-header-background);
  color: var(--tabella-classifica-header-color);
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.tabella__classifica tbody > tr > * {
  padding: 4px 8px;
  background: var(--tabella-classifica-body-background);
  color: var(--tabella-classifica-body-color);
  font-size: 14px;
}

.widget__header {
  padding: 8px 8px;
  border-radius: 4px 4px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #434343;
  color: var(--widget-header-color);
  border-bottom: var(--widget-header-border-bottom);
}
.widget__header__title {
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
}
.widget__header__statusContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.widget__header__statusContainer > * {
  margin: 0;
}
.widget__header__statusContainer > *:not(:last-child) {
  margin-right: 6px;
}

.rankingWidget-game__table_container, .rankingWidget-game__progress-bar_container{
    display: flex;
    flex-direction: column;
    align-items: center;
	--boxShadow:var(--rankingWidget__boxShadow);
    --borderRadius:var(--rankingWidget__borderRadius);
    box-shadow: var(--boxShadow);
    border-radius: var(--borderRadius);
}

.rankingWidget-game__table_container:not(:first-child), .rankingWidget-game__progress-bar_container:not(:first-child){
	margin-top:12px;
}

.rankingWidget-game__table_title, .rankingWidget-game__progress-bar_title{
    font-size: 16px;
    color: #fff;
    margin: 10px 0px;
    font-weight: 600;
}

.gameSide__body__section .rankingWidget__table__container{
	width:100%;
} 


/*.rankingWidget-game__table_container tbody tr{
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  
  to {
    opacity: 1;
  }
}
