  #etsy-loading, #etsy-error {
    text-align: center;
  }
  #etsy-loading::after { display: inline-block;
    animation: dots steps(1,end) 3s infinite;
    content: '';
  }

  @keyframes dots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }

    100% {
        content: '';
    }
  }

  .etsy-featured {
    flex: 1 1 auto;
    margin: 10px;
    color: black;
    text-decoration: none;
    &:hover {
      & h5 {
        text-decoration: underline;
      }
      & img {
        filter: invert(25%) hue-rotate(-90deg);
      }
    }
    & img {
      width: 100%;
    }
  }
  .etsy-gallery-small {
    display: none;
  }
  .etsy-gallery-cols {
    display: flex;
  }
  .col-0, .col-1, .col-2 {
    display: flex;
    flex-direction: column;
    max-width: 33.3333%;
  }

  @media screen and (max-width: 800px) {
    .etsy-gallery-small {
      display: flex;
      flex-direction: column;
    }
    .etsy-gallery-cols {
      display: none;
    }
  }
