/** Shopify CDN: Minification failed

Line 51:3 Unexpected ","

**/


/* CSS from section stylesheet tags */
.html-checkbox ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 15px;
    column-gap: 15px;
    text-align: left;
    width: 100%;
    max-width: 495px;
    margin-top: 20px;
  }
  .html-checkbox ul li {
    display: flex;
    gap: 10px;
  }
  .html-checkbox-desktop ul {
    display: flex;
    row-gap: 15px;
    column-gap: 100px;
    text-align: left;
    width: 100%;
    margin-top: 40px;
  }
  .html-checkbox-desktop ul li {
    display: flex;
    gap: 10px;
  }
  .product-image-button {
    font-size: 16px !important;
    display: flex;
    margin: auto;
    width: auto;
    padding: 11px 15px;
    height: auto;
    justify-content: center;
    align-items: center;
    font-weight: 700 !important;
    text-align: center;
    text-transform: uppercase;
    font-family: Jost;
    text-wrap: nowrap;
    gap: 10px;
    background-color: #ffb802 !important;
  },
  .icons-width {
    min-width: 100px;
  }
.two-images-container {
    max-width: 602px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    /* grid-template-columns: 1fr 1fr 1fr; */
    gap: 60px;
    padding: 10px 15px;
  }

.two-images-container img {
  max-height: 90px;
  width: 100%;
  aspect-ratio: 2;
}

@media screen and (max-width: 991px) {
  .two-images-container  {
    gap: 20px;
  }
}

@media screen and (max-width: 575px) {
  .two-images-container img {
    max-height: 54px;
  }
}
@media screen and (max-width: 430px) {
  .two-images-container img {
    max-height: 42px;
  }

}