#re h2 {
  position: relative;
  background: #102A43;
  font-size: 21px;
  color: #FFF;
  padding: 10px 45px 10px 15px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  margin: 20px 0 0;
  cursor: pointer;
}

#re h2:after {
  content: '+';
  line-height: 1.1;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  transition: transform .2s;
  background: #F0B429;
  border: 1px solid #CB6E17;
  color: #8D2B0B;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

#re h2.attivo:after {
  content: '+';
  float: right;
  transform: rotate(45deg);
}

#re .filtri {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#re select.filtro-liga,
#re select.filtro-data {
  width: 49%;
  height: 32.72px;
  background: #B44D12;
  border: 1px solid #712f0a;
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  color: #FFF;
}

#re .lcslt {
  background: #B44D12;
  border: 1px solid #8D2B0B;
  border-radius: 5px;
}

#re .lcslt span,
#re .lcslt span:after {
  color: #FFF;
}

#re .lcslt:not(.lcslt-multiple):after {
  border-top: 6px solid #FFF;
  border-top-color: #FFF !important;
}

#re .lcslt-wrap.lcslt-f-filtro-liga,
.lcslt-wrap.lcslt-f-filtro-data {
  width: 49%;
}

#re .loader {
  animation: rotation 2s infinite linear;
  width: 50px;
  margin: 30px auto;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.dropdown {
  background: #D9E2EC;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
  transition: max-height .5s;
}

.dropdown .cd {
  padding: 10px;
  margin: 0;
}

@media(max-width:767px) {
  #re h2:first-child {
    margin-top: 0;
  }

  #atf .col-40 {
    display: none;
  }

}