<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 107:5 Expected ":"

**/
/* add-measure-wire.css */
/* CSS for Measuring Wire Rope */

.measure-wire, 
.measure-wire * {
    box-sizing: border-box;   /* Applies to parent and all child elements */
}


.measure-wire {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    grid-template-rows: repeat(4, auto); /* 4 rows */
    gap: 0 24px;
    width: 100%;
    max-width: 1200px;
    margin: 25px auto;
    padding: 0;
    grid-auto-flow: column; /* Fill columns first */
}
/* Mobile: Convert to a single column */
@media (max-width: 768px) {
    .measure-wire {
        grid-template-columns: 1fr; /* 1 column layout */
        grid-template-rows: repeat(8, auto); /* 8 rows */
        grid-auto-flow: row; /* Stack normally */
    	max-width: 900px;
    }
}

.block {
    width: 100%;
    max-width: 600px;
    min-height: 100px;
	text-align: center;
	margin: 0 auto;
}


.measure-wire .nominal {
    background-color: #009900;
	border: 2px solid #006600;
	border-top: 0;
    color: white;
	padding-bottom: 20px;
}

.measure-wire .go-nogo {
    background-color: #cc0000;
	border: 2px solid #770000;
	border-top: 0;
    color: white;
	padding-bottom: 20px;
}

.measure-wire .content {
    background-color: #E4E6E7;
	border: 0;
    color: black;
	padding: 10px 16px 24px 16px;
}
.measure-wire .content p {
    text-align: left;
}

/* Headings */
.measure-wire h3,
.measure-wire h4,
.measure-wire h5 {
    font-family: "Inter", sans-serif;
    margin: 0;
    width: 100%;
	text-align: center;
}

.measure-wire h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    padding: 12px 0 ;
}

.measure-wire .nominal h3 {
    background-color: #006600;
}
.measure-wire .go-nogo h3 {
    background-color: #770000;
}

.measure-wire h4 {
   font-size: 20px;
   font-weight: 700;
   text-transform: uppercase;
   color: black;
   padding: 6px 0;
}
.measure-wire h5 {
   font-size: 18px;
   font-weight: 600;
   color: white;
   padding: 4px 0 0 0;
   te
}

/* Text */
.measure-wire p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Images */
.measure-wire img {
    width: 75%;
    max-width: 300px;
	margin-top: 2px;
}

/* Lists */
.measure-wire ol {
    text-align: left;
    padding-left: 20px;
    margin: 10px 0;
}

.measure-wire li {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    padding-left: 8px;
    margin: 4px 0;
}


/* Medium screens: Between 768px and 1200px */
@media (min-width: 768px) and (max-width: 1200px) {
  .responsive-table {
    width: 100%; /* Expand to full screen width */
    max-width: none; /* Remove the width limit */
  }
}</pre></body></html>