/* *, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
  } */

  .dg-btn {
    color: black;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin: 8px;
    background-color: #fff200;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .dg-btn__secondary {
    background-color: #adb5bd;
  }

  .dg-container {
    margin: 1em;
  }

  .dg-finder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .dg-finder__input {
    width: 100%;
    background-color: #adb5bd;
    padding: .5em;
    border: none;
  }

  .dg-finder__input::placeholder {
  font-size: 1em;
  color: white;
  font-weight: 300;
  }

  .dg-finder__input-filter {
    background-color: white;
  }

  .dg-finder__input-filter::placeholder {
  color: #adb5bd;
  font-size: .75rem;
  }

  .dg-main {
    display: flex;
  }

  .dg-filters__container {
    background-color: #f8f9fa;
    width: 200px;
    margin: 1em 0;
    padding: 1em;
  }

  .dg-filters__title {
    margin-bottom: .25em;
    margin-top: 1em;
    text-transform: uppercase;
  }

  .dg-filters__label{
    font-size: .8rem;
  }

  .dg-filters__resultados {
    flex-grow: 1;
    margin-top: 1em;
  }

  .dg-tags {
    padding: 0 1em;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .dg-contenedor-items {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 5px;
    margin-top: 1em;
  }


  .dg-card__title {
    font-weight: 300;
    font-size: .75rem;
    line-height: 1.4;
    margin-bottom: 1em;
    border-top: 1px solid #e7e7e7;
    padding-top: 0.7em;
 /* Estas tres lineas siguientes ponen el resto del titulo con ... */
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
  }

  .dg-card__pvp-ref {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  .dg-card__price {
    font-weight: 600;
    font-size: 18px;
  }

  .dg-card__reference {
    font-size: .65rem;
    color: grey;
  }

  .dg-card__delivery {
    margin-top: 1em;
    font-size: .7rem;
    line-height: 1.2;
    color: #36bb53 ;
  }
  .dg-card__content{
      width: 100%;;
  }
  .dg-card_stocks{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
  .dg-card_tallas{
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .dg-card__media{
    width: 100%;
    object-fit: contain;
    text-decoration: none;
    min-height: 180px;
    padding: 3px;
  }




