/** Shopify CDN: Minification failed

Line 117:20 Unexpected "{"
Line 117:31 Expected ":"
Line 117:35 Unexpected "{"
Line 118:10 Expected identifier but found whitespace
Line 118:12 Unexpected "{"
Line 118:14 Expected identifier but found "320"
Line 118:35 Expected ":"

**/
.ig-parent-container {
  position: relative;
}

.ig-handles {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 80rem;
  display: block;
  margin: auto;
}

.ig-handles .h1{
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
}

@media(min-width: 990px){
  .ig-handles .h1{
    font-size: 4rem;
  }
}

.ig-handles .h3{
  padding: 0 2rem;
  border-radius: .5rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  font-size: 1.2rem;
  margin: 0;
  background: -webkit-linear-gradient(180deg,#e53e7b,#3bb4c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ig-handles a {
  font-size: 28px;
  background: #833ab4;
  background: linear-gradient(to right, #e53e7b, #3bb4c1);
}

.ig-section {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 990px){
  .ig-section{
    padding: 8rem;
  }
}

.layout-container {
  display: inline-flex;
  gap: 24px;
  animation: ai-marquee-scroll 75s linear infinite;
  margin-bottom: 20px;
}

@media (max-width: 1200px){
  .layout{
    max-width: 100%;
  }

  .layout-container {
    width: calc(100vw - 100px);
    max-width: 100%;
  }
}

@media (max-width: 750px){
  .layout-container {
    width: calc(100vw - 50px);
  }
}

@media (max-width: 425px){
  .layout-container {
    width: calc(100vw - 40px);
  }
}

@keyframes ai-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-3200px - 240px));
  }
}

@media screen and (max-width: 749px) {
  .ai-marquee-item-{{ ai_gen_id }} {
    width: {{ 320 | times: 0.8 }}px;
  }

  @keyframes ai-marquee-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-2560.0px - 240px));
    }
  }
}


.post {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}

.post-box {
  overflow: hidden;
  position: relative;

  cursor: pointer;
  flex-shrink: 0;
  width: 320px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.follow-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
  padding: 1rem 2rem;
  border-radius: var(--buttons-radius);
  background: linear-gradient(to left, #e53e7b, #3bb4c1);
  box-shadow: #0000003d 0 3px 8px;
  color: #fff;
  justify-content: center;
}

@media (min-width: 750px){
  .follow-btn{
    width: fit-content;
    margin: auto;
  }
}

.ig-icon {
  width: 20px;
  height: auto;
}

.follow-word {
  margin: 0 !important;
  font-size: 1.3rem;
  color:#ffffff;
  font-weight: 700
}

@media (min-width: 750px){
  .follow-btn {
    padding: 10px 3rem;
    gap: 8px;
  }

  .ig-icon {
    width: 30px;
  }

  .follow-word{
    font-size: 1.5rem;
  }
}

.modal-section {
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.5);
  z-index: 1000;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.modal-section.active {
  display: flex;
}

.img-post {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.modal-container {
  display: flex;
  max-width: 1300px;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
  max-height: 90%;
  position: relative;
}

.modal-pic-container {
  width: 50%;
}

.modal-post-video{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.img-post {
  width: 100%;
}

.desc-container {
  width: 50%;
}

.post-desc {
  padding: 20px;
  color: rgba(70, 70, 70, 0.8);
  font-size: 18px;
  margin: auto 0;
}

.post-footer {
  height: fit-content;
  margin-top: auto;
  border-top: 1px solid rgba(70, 70, 70, 0.8);
  padding: 10px;
  display: flex;
  gap: 10px;
  color: rgba(70, 70, 70, 0.8);
  justify-content: space-between;
}

.post-link {
  text-decoration: none;
  color: rgba(70, 70, 70, 0.8);
  cursor: pointer;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-bottom: 1px solid rgba(70, 70, 70, 0.5);
  font-weight: 600;
}

.desc-container {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 776px) {
  .layout-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ig-handles h1 {
    font-size: 18px;
  }

  .ig-handles a {
    font-size: 16px;
  }

  .modal-container {
    flex-direction: column;
    max-width: 90%;
    overflow: visible;
    border-radius: 0px;
  }

  .desc-container {
    width: 100%;
  }

  .modal-pic-container {
    width: 100%;
    max-height: 320px;
    overflow:hidden;
  }

  .modal-pic-container > *{
    max-height: 300px;
    height: 100%;
  }

  .img-post {
    object-fit: cover;
  }

  .post-desc p {
    font-size: 12px;
  }

  .post-desc {
    padding: 10px
  }

  .post-header {
    padding: 10px
  }

  .post-footer {
    font-size: 12px;
  }
}

.modal-close{
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4.4rem;
  height: 4.4rem;
  z-index: 1001;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.modal-close svg{
  color: #fff;
  height: 100%;
  width: 100%;
}

@media (min-width: 769px){
  .modal-close{
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .modal-close svg{
    color: #000000;
  }
}

.header-left{
  display: flex;
  align-items: center;
  gap: 0;
}

@media (min-width: 750px){
  .header-left{
    gap: 10px;
  }
}

.profile-img{
  max-width: 40px;
  max-height: 40px;
  height: 100%;
  width: 100%;
}

@media (min-width: 750px){
  .profile-img{
    max-width: 60px;
    max-height: 60px;
  }
}

.handles {
  display: flex;
  flex-direction: column;
}

.handles h3{
  font-size: 1.4rem;
  margin: 0;
}

.handles p{
  margin: 0;
}

@media (min-width: 750px){
  .handles h3{
    font-size: 1.7rem;
  }
}

.ig-subtext{
  font-size: 1.2rem;
  display: block;
  text-align: center;
  margin-top: 1rem;
}

.ig-information{
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #eee;
  align-items: center;
}

.ig-information .gri-logo{
  max-width: 50px;
  height: 50px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ig-information > div h3{
  margin-top: 0;
  margin-bottom: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 16px;
}

.ig-information > div span{
  display: block;
  font-size: 12px;
  line-height: 12px;
}

.ig-information > div span a{
  font-size: 12px;
  line-height: 12px;
  color: rgb(0 0 0 / 75%);
  text-decoration: none;
}