/** Shopify CDN: Minification failed

Line 292:1 Expected "}" to go with "{"

**/
/* product and body buttons only start */


/* Styles for desktop (medium screens and larger) */
        @media (min-width: 768px) {
            .grid-container {
                display: grid;
                grid-template-columns: 1fr 2fr 1fr;
                grid-gap: 20px;
            }

            .left-grid {
                grid-column: 1 / 2;
            }

            .middle-grid {
                grid-column: 2 / 3;
            }

            .right-grid {
                grid-column: 3 / 4;
            }

            .image-container {
                text-align: center;
            }

            .image-container img {
                max-width: 100%;
            }
      















/* product and body buttons only start */
.size-chart-container {
                display: none;
            }



            .button-group {
                display: flex;
            }

            .button {
                cursor: pointer;
                color: black;
                background-color: LightGrey;
                box-shadow: 0px 0px 10px #cff0c5;
                border-radius: 4px;
                padding: 8px 16px;
                margin-right: 10px;
            }

            .button.active {
                color: white;
                background-color: #2375ff;
            }

            .slim-button {
                padding: 2px 8px;
                margin-right: 5px;
            }

            .slim-button.active {
                font-weight: bold;
            }

            .highlight {
                color: grey;
                background-color: #d3dcf6;
                box-shadow: 0px 0px 0px #884888;
            }

            .highlight:hover {
                color: white;
                background-color: #2375ff;
            }

            .placeholder-content-product {
                display: none;
                margin-top: 10px;
            }
            .placeholder-content-body {
                display: none;
                margin-top: 10px;
            }

            .show-placeholderword {
                display: block;
            }
            .show-placeholderword2 {
                display: block;
            }
              .hide-placeholderword {
                display: none;
            }
            .hide-placeholderword2 {
                display: none;
            }

            /* Style for the size chart container */
            .size-chart-container {
 /* Set the width */
                border: 4px solid #ccc;
                padding: 1px;
            }

            /* Style for the size chart table */
            .size-chart-container table {

                border-collapse: collapse;
            }

            /* Style for table headings */
            .size-chart-container th {
                background-color: #f2f2f2;
                text-align: left;
                padding: 10px;
            }

            /* Style for table rows */
            .size-chart-container td {
                padding: 10px;
                border: 0px solid #ccc;
            }
  
              .active {
                display: block;
            }

/* Add red highlight hover effect to buttons */
/* Add red highlight hover effect to buttons that are not active */
.button:not(.active):hover,
.slim-button:not(.active):hover {
    color: white;
    background-color: #FF0000; /* Red color on hover for non-active buttons */
}

/* product and body buttons only end */




/* Add this CSS to highlight the checkboxes in green when checked */
.inp-CBox_A:checked + label {
   
    color: grey;
}

.inp-CBox_A + label {

    color: black;
}

.ToggleMeasure-Container * {
  box-sizing: border-box;

}

.ToggleMeasure-Container .CBox_A {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
}

.ToggleMeasure-Container .CBox_A:not(:last-child) {
  margin-right: 6px;
}

.ToggleMeasure-Container .CBox_A:hover {
  background: rgba(0,119,255,0.06);
}

.ToggleMeasure-Container .CBox_A span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.ToggleMeasure-Container .CBox_A span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}

.ToggleMeasure-Container .CBox_A span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.ToggleMeasure-Container .CBox_A span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.ToggleMeasure-Container .CBox_A:hover span:first-child {
  border-color: #2F3AE6;
}

.ToggleMeasure-Container .inp-CBox_A {
  position: absolute;
  visibility: hidden;
}

.ToggleMeasure-Container .inp-CBox_A:checked + .CBox_A span:first-child {
  background: #07f;
  border-color: #07f;
  animation: wave-4 0.4s ease;
}

.ToggleMeasure-Container .inp-CBox_A:checked + .CBox_A span:first-child svg {
  stroke-dashoffset: 0;
}

.ToggleMeasure-Container .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 640px) {
  .ToggleMeasure-Container .CBox_A {
    width: 100%;
    display: inline-block;
  }
}

@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}