/** Shopify CDN: Minification failed

Line 7:0 Unexpected "$"
Line 49:5 Cannot use type selector "-image" directly after nesting selector "&"

**/
$color-white: #ffffff;
$color-black: #000000;
$color-light: #f5f7f8;
$color-dark: #333333;
$box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);

.container,
.container2 {
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 68rem;
  width: 100%;
}

.main {
  margin: 10px;
  padding: 10px;
}

.main {
  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1px;
    justify-content: center;
    align-items: center;
  }

  .container2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1px;
    justify-content: center;
    align-items: center;
  }

  .card-lightbox {
    background: $color-white;
    box-shadow: $box-shadow;
    color: $color-dark;
    border-radius: 2px;

    &-image {
      background: $color-white;
      display: block;
      padding-top: 70%;
      position: relative;
      width: 100%;

      img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}

.img-length {
  width: -webkit-fill-available;
}

@media only screen and (max-width: 768px) {
  .main {
    .container,
    .container2 {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 5px;
    }
  }
}
