/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 25:3 Unexpected "{"
Line 73:0 Unexpected "<"

**/
<styale>
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .toy-box-section {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Ensures even height for all child items */
    gap: 0;
  }

  .toy-full-jc,
  .toy-sided-jc,

   {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .toy-sided-jc {
    display: flex;
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
  }

  .toy-sided-jc .toy-image-left,
  .toy-sided-jc .toy-image-right {
    flex: 0 0 50%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


.toy-centre-jc {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
  width: 100%; /* Full-width container */
  box-sizing: border-box;
  margin: 0 auto; /* Centers the block itself */
  padding: 0 10%; /* Adds gaps on both sides of the container */
}

.toy-centre-jc img {
  max-width: 70%; /* Shrinks the image to 80% of the container's width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Prevent extra space around the image */
  object-fit: contain; /* Ensures the image fits within the reduced size */
}



  .toy-image-jc {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image takes the full width of its container while maintaining aspect ratio */
  }


</style>
