.aguarde {
    text-align: center;
    padding-top: 20px;
 }

.ver-tabela {
  text-align: center;
}

.widget_classificacao {
  overflow: scroll;
  overflow-x: hidden;
  height: 200px;
}

.widget {
  min-height: 300px;
}

.custom-select-campeonatos-wrapper {
  display: inherit;
  box-shadow: 0 0 10px #eee;
  margin: -10px auto 0 auto;
  width: 80%;
  cursor: pointer;
  font-family: "Oswald",impact,sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 8px;
  background-color: #fff;
}

.custom-select-campeonatos {
  position: relative;
  display: flex;
  flex-direction: column;
  }

.custom-select-campeonatos__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 300;
  color: #3b3b3b;
  height: 60px;
  line-height: 60px;
  background: #ffffff;
  cursor: pointer;
  border: 1px solid #F5F5F5;
  border-radius: 4px;
  outline: none;
}

.custom-options-campeonatos {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #F5F5F5;
  border-top: 0;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99999;
  overflow-y: scroll; 
  height:300px;
}

.custom-select-campeonatos.open-select-campeonatos .custom-options-campeonatos {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-option-campeonatos {
  position: relative;
  display: block;
  padding: 20px 25px;
  font-size: 15px;
  font-weight: 300;
  color: #3b3b3b;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.5s;
}

.custom-option-campeonatos:hover {
  cursor: pointer;
  background-color: #00B0A8;
  color: #fff;
}

.custom-option-campeonatos.selected {
  color: #ffffff;
  background-color: #01676E;
}

.custom-select-campeonatos__trigger span, span.custom-option-campeonatos.selected {
  line-height: 20px;
}

.arrow-select-campeonatos {
  position: relative;
  height: 15px;
  width: 15px;
}

.arrow-select-campeonatos::before, .arrow-select-campeonatos::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.5s;
}

.arrow-select-campeonatos::before {
  left: -5px;
  transform: rotate(45deg);
  background-color: #01676E;
}

.arrow-select-campeonatos::after {
  left: 5px;
  transform: rotate(-45deg);
  background-color: #01676E;
}

.open-select-campeonatos .arrow-select-campeonatos::before {
  left: -5px;
  transform: rotate(-45deg);
}

.open-select-campeonatos .arrow-select-campeonatos::after {
  left: 5px;
  transform: rotate(45deg);
}