/* 
Tiktok Viral Page for UNIQLO
Created by John Wong Cheuk Bun(john.wong@uniqlo.eu)
Last Updated: 2025-03-18
*/
.flyer-container {
  margin-top: 2em;
  display: grid;
}
.flyer-container .full-width {
  margin: auto;
}
@media (min-width: 768px) {
  .flyer-container .full-width {
    width: 550px;
    height: auto;
  }
}
.flyer-container .full-width img {
  display: block;
  margin: auto;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.flyer-container .half-width {
  display: grid;
  margin: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
}
@media (min-width: 768px) {
  .flyer-container .half-width {
    width: 550px;
    height: auto;
  }
}
.flyer-container .left-half {
  grid-area: left;
}
.flyer-container .left-half img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.flyer-container .right-half {
  grid-area: right;
}
.flyer-container .right-half img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.flyer-container .three-col-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: auto;
}
@media (min-width: 768px) {
  .flyer-container .three-col-tiles {
    width: 550px;
  }
}
.flyer-container .three-col-tiles .tile-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.flyer-container .three-col-tiles .tile-item img {
  width: 100%;
  height: auto;
  display: block;
}
.flyer-container .three-col-tiles .tile-item .tile-content {
  text-align: left;
}
.flyer-container .anchors {
  margin-top: 2em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .flyer-container .anchors {
    width: 550px;
    margin: auto;
  }
}
.flyer-container .anchor-item {
  display: flex; /* Makes the item a flex container */
  align-items: center; /* Vertically centers the content */
  border: 1px solid #000;
  width: 100%;
}
.flyer-container .anchor-item .anchor-content:first-child {
  flex: 0 0 auto; /* Don't grow, don't shrink, auto basis */
  display: flex;
}
.flyer-container .anchor-item .anchor-content:first-child img {
  display: block;
  height: auto;
  max-width: 75px;
}
.flyer-container .anchor-item .anchor-content:last-child {
  flex: 1; /* Grow to fill remaining space */
  display: flex;
  justify-content: center; /* Horizontally center the text */
  align-items: center; /* Vertically center the text */
  color: #000;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}

.mt2 {
  margin-top: 2em !important;
}

.mt1 {
  margin-top: em !important;
}

.p1 {
  padding: 0 1rem !important;
}

#wp-shop-by-category {
  text-align: center;
}

#wp-shop-by-category .categories-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 auto;
  max-width: 550px;
  padding: 0;
}

@media only screen and (max-width: 768px) {
  #wp-shop-by-category .categories-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
#wp-shop-by-category .categories-wrapper p {
  font-weight: 600;
}

#wp-shop-by-category .categories-wrapper a {
  font-size: 12px;
}

#wp-shop-by-category .categories-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}/*# sourceMappingURL=john_flyer.css.map */