/** Shopify CDN: Minification failed

Line 149:19 Expected identifier but found whitespace
Line 149:21 Unexpected "{"
Line 149:30 Expected ":"
Line 191:19 Expected identifier but found whitespace
Line 191:21 Unexpected "{"
Line 191:30 Expected ":"

**/
.instagram-gallery {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    width: 100%;
    white-space: nowrap;
    scrollbar-width: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.instagram-gallery::-webkit-scrollbar {
    display: none;
}
.instagram-post {
  flex: 0 0 auto;
  width: 400px;
  height: 400px;
  position: relative;
  cursor: pointer;
  z-index: 200;
}

.ig-img {
  width: 400px;
  height: 400px;
  object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 16px;
    z-index: 3000;
    white-space: normal;
    overflow-wrap: break-word;
    visibility: hidden;
}

.instagram-post:hover .caption {
  visibility: visible;
}

.ig-pop-up {
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 500;
  width: 800px;
}

.thing-maybe {
  position: relative;
  display: flex;
  overflow: auto;
  flex-direction: row;
}

.product-list {
  display: flex;
  flex-direction: row;
  overflow: auto;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  color: black;
  background-color: white;
  border: solid;
  border-width: 1px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  z-index: 600;
}

.product-thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
  
.ig-img-in-popup {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
}
  
.popup-content {
    display: flex;
    flex-direction: column;
    overflow: auto;
    position: relative;
    overflow: auto;
    width: 100%;
    padding: 10px;
}

.we-gone-overflo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.bottom-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    overflow-x: auto;
    background-color: white;
}
  
.product-info {
  display: flex;
  flex-direction: row;
  flex: 0 0 auto;
  align-items: center;
  width: 100%;
  background-color: {{ section.settings.background-color }};
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hello-class {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 5px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  min-height: 100px;
}

.hello-class::-webkit-scrollbar {
    display: none;
}

.popup-title {
  padding-top: 5px;
  font-size: 20px;
}

.btw-follow-button {
  width: 70px;
  height: 70px;
  opacity: 0.5;
}

.btw {
  display: flex;
  flex-direction: row;
  flex: 0 0 auto;
  align-items: center;
  padding: 5px;
  justify-content: space-evenly;
  width: 100%;
  background-color: {{ section.settings.background-color }};
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
}
.btw-2 {
  display: flex;
  flex-direction: row;
  flex: 0 0 auto;
  align-items: center;
  padding: 5px;
  justify-content: space-evenly;
  width: 100%;
  background-color: white;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  border: 1px solid;
}

  
@media (max-width: 768px) {
  .ig-pop-up {
    width: 90%;
    max-height: 80vh;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    overflow: auto;
  }

  .thing-maybe {
    display: flex;
    flex-direction: column;
  }

  .product-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
  }

  .ig-img-in-popup {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    z-index: 9999;
  }

  .bottom-container {
    display: flex;
    flex-direction: column;
    width: 100%;    
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: white;
    overflow: visible;
  }

  .close-popup {
  position: absolute;
  top: 10px;
  left: 10px;
  color: black;
  background-color: white;
  border: solid;
  border-width: 1px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  z-index: 600;
  }

  .popup-content {
    display: flex;
    flex-direction: column;
    overflow: auto;
    position: relative;
    display: flex;
    width: 100%;
    padding: 10px;
    min-height: 400px;
  }
}