#providers a.providers_button{
  width: 50%;
}

.madv{
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  color: #000;
  font-size: 30pt;
  background-color: #000;
  text-align: center;
  padding: 0 20px;
  padding-bottom: 10px;
}
#providers{
  justify-content: center;        
  justify-content: space-evenly!important;
}

.ver_provider{
  max-width: 250px!important;
}

#providers a {        
  padding-left: 30px;
  padding-right: 30px;
}
#providers a img {
  border: 2px solid #000;
  background-color: #fff;
}
#gamesCasino_wrapper {
  width:100%;
}

#gamesCasino {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 10px;
  grid-auto-flow: dense;
  max-width:100%;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px;
}

#gamesCasino .gC_game {
  height:210px;
  max-width:200px;
  background-color:var(--color4);
  overflow:hidden;
  border-radius:10px;
  cursor:pointer;
}

#gamesCasino .gC_game .gC_picture img {
  width:100%;
}

#gamesCasino .gC_game .gC_info {
  padding: 5px 10px;
  color:#fff;
}

#gamesCasino .gC_game > .gC_info > .gC_data {
  font-size:8pt;
  font-weight:normal;
  margin-bottom:5px;
}

#gamesCasino .gC_game > .gC_info > .gC_title {
  font-size:12pt;
  font-weight:bold;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom:5px;
  border-bottom:1px solid rgba(255,255,255,0.2);
}

@media (max-width: 800px) {
  #gamesCasino{
      padding: 5px;
      margin: 0 auto;
      width: 100%;
      display: flex!important;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 5px;
  }

  .gC_game{
      min-width: 49%!important;
      height: 100%!important;
  }

  #di_busqueda form{
      display:none!important;
  }
}

@media (min-width: 768px){
  #gamesCasino .gC_game:hover {
      transform: scale(1.05);
      z-index: 5;
  }
}