/** Shopify CDN: Minification failed

Line 222:12 Expected identifier but found whitespace
Line 222:14 Unexpected "{"
Line 222:23 Expected ":"
Line 222:48 Expected ":"

**/
.product-information {
    padding: 60px 0;
}

.product-information .section-title  {
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0;
    color: #000;
}

.product-information .content-box {
    display: flex;
    gap: 60px;
    background-color: #FAFAFA;
    border: 1px solid #808080;
    border-radius: 12px;
    padding: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-information .left-box,
.product-information .right-box {
    flex: 1;max-width: 50%;
}

.product-information .title {
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0;
    color: #136268;
}

.product-information .specifications-content {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #E6E6E6;
}

.product-information .specifications-content table {
  width: 100%;
  border-collapse: collapse;
}

.product-information .hc-resources-pdf a {
    word-wrap: break-word;
    width: 100%;
    display: inline-block;
}

.product-information .specifications-box+.resources-box {
    margin-top: 30px;
}

.product-information .hc-resources-pdf a {
    display: flex;
    gap: 8px;
}

.product-information .hc-resources-pdf a span {
    word-break: break-all;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-decoration: underline;
    color: #1F2B3E;
}

.product-information .hc-resources-pdf a span:not(.svg-wrapper) {
    color: #1F2B3E;
    opacity: 0.6;
}

.product-information .hc-resources-pdf .svg-wrapper {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    max-width: 28px;
}

.product-information .description-text p,
.product-information .description-text li {
    font-weight: 400;
    line-height: 1.5;
}

.product-information .description-text *,
product-information .description-text {
    color: #333333;
}

.product-information .specifications-content td,
.product-information .specifications-content th {
    width: 50%;
}

.product-information .specifications-content .hc-title-cell {
    display: none;
}

.product-information .specifications-content .hc-title-cell+th {
    display: none;
}

th, .table__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    color: #000000;
    padding: 20px 16px;
}

th:not(:first-child) {
    color: #808080;
}

.product-information .description-text ul {
    margin-left: 0;
    list-style: none;
    margin-top: 20px;
}

.product-information .description-text>ul {
    margin-left: 20px;
}

.product-information .description-text ul>ul,
.product-information .description-text ul>ul>ul {
    margin-left: 10px;
    margin-bottom: 20px;
    list-style: disc;
    list-style-position: inside;
}

.product-information .description-text ul>ul>ul {
    list-style: circle;
}

.product-information .description-text ul>ul>ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-information .description-text ul>ul li,
.product-information .description-text ul>ul>ul li {
    padding-left: 0;
}

.product-information .description-text ul>ul li:before,
.product-information .description-text ul>ul>ul li:before {
    content: none;
}

.product-information .description-text ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 16px;
}

.product-information .description-text ul li:last-child {
    margin-bottom: 0;
}

.product-information .description-text ul li:before {
    position: absolute;
    top: 1px;
    content: '';
    left: 0;
    background-image: url('/cdn/shop/files/right-icon-round.svg');
    background-repeat: no-repeat;
    height: 18px;
    width: 18px;
    background-size: contain;
    margin: 0;
}
 
tbody>tr:nth-child(2n)>* {
    background-color: #F7F7F7;
}

@media screen and (max-width: 1199px) {
    .product-information .content-box {
        gap: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .product-information .left-box, .product-information .right-box {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-information .content-box {
        gap: 24px;
    }

    .product-information {
        padding: 30px 0;
    }
}

@media screen and (max-width: 768px) {
    .product-information {
        flex-direction: column;
        gap: {{ section.settings.mobile_gap }}px;
    }

    .product-information .left-box,
    .product-information .right-box {
        max-width: 100%;
    }

    .product-information .content-box {
        gap: 24px;
        padding: 16px;
    }

    .product-information .title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .product-information {
        padding: 16px 0 24px;
    }

    .product-information .description-text ul li:before {
        height: 16px;
        width: 16px;
    }

    .product-information .description-text ul li {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .product-information .description-text>ul {
        margin-left: 10px;
    }
}