/** Shopify CDN: Minification failed

Line 278:43 Expected ":"

**/
.mach3 .doc-body h1.h2:before,
.doc-body h2:before {
    display:none;
}

.doc-body {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
    gap:60px;
}
 .doc-body p {
    color: var(--doc-text-color);
 }
#doc-nav {
    position: sticky;
    top: 90px;
    margin-bottom: 50px;
}
.doc-menu {
    max-height: 80vh;
    list-style: none;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 0;
    width: 330px;
}
.doc-menu > li {
    border-bottom: 1px solid var(--white-color);
    position: relative;
}
.doc-sub-menu > li > a:hover {
    color:var(--brand-color);
}
.doc-sub-menu > li > a {
    color: var(--heading-color);
    font-size:14px;
    font-weight:600;
}
.doc-menu > li > a:hover {
    color:var(--brand-color);
}
.doc-menu > li > a {
    background-color:var(--gray-color);
    font-size: 16px;
    display:block;
    font-weight: 600;
    padding: 15px 30px 15px 20px;
    color: var(--heading-color);
    
}
li.has-sub-menu.on > a,
.doc-sub-menu li.active > a,
.doc-menu > li.active > a{
    color:var(--brand-color);
}


.doc-menu > li.has-sub-menu.on .toggle {
    transform: rotate(180deg);
}
.doc-menu > li .toggle {
    align-items: center;
    display: flex;
    height: 50px;
    justify-content: center;
    padding: 5px 10px;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.2s ease-in-out;
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.section-block__heading {
    margin-bottom: 25px;
}
.section-block {
    counter-reset: group-index;
}
.section-block-shadow {
    background-color: var(--white-color);
    box-shadow:var(--card-shadow);
    display: inline-block;
    width:100%;
    margin: 10px 0;
}
.section-block__heading .section-title {
    color: var(--heading-color);
    margin-bottom: 20px;
}
.embed-responsive {
    padding-bottom: 56.25%;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
}
.embed-responsive .embed-responsive-item, 
.embed-responsive embed, .embed-responsive iframe, 
.embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.gap-lg-top {
    margin-top: clamp(16px, 5vw, 40px);
}
.assembly-step-instructions {
    flex-direction: column;
}
.section-block__row {
    background-color: var(--white-color);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px 0;
    padding: 30px 20px;
}

.assembly-group {
    counter-increment: group-index;
    counter-reset: step-counter;
}
.assembly-step-instructions ol {
    list-style:none;
    counter-increment: group-index;
    counter-reset: step-counter;
    display: table;
}
.assembly-step-instructions ol > li {
    counter-increment: step-counter;
    font-size: 14px;
    padding-bottom: 20px;
    padding-left:10px;
    list-style:none;
}
.gap-md-top {
    margin-top: clamp(20px, 5vw, 40px);
}
.assembly-step-instructions ol > li:before {
    color: var(--primary-color);
    content: counter(group-index, upper-alpha) counter(step-counter) ". "; 
    /* content: "A" counter(step-counter) ". "; */
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-right: 10px;
    text-align: right;
    vertical-align: baseline;
}
.assembly-step-instructions ol > li img {
    margin-bottom: 10px;
    margin-top: 10px;
    display: block;
    max-width: 100%;
    height: auto;
}
.section-block__row ol > li {
    padding-bottom: 20px;
    position: relative;
    font-size: 14px;
}
.blue-heading {
    color: var(--primary-color);
}
ul.dots-light-gray li {
    color: var(--heading-color);
    line-height: 1.75;
    margin-bottom: 15px;
    position: relative;
}
ul.dots-light-gray li:before {
    background-color: #ecf0f5;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 12px;
    left: -22px;
    margin-right: 10px;
    position: absolute;
    top: 5px;
    width: 12px;
}
ul.dots-light-gray {
    list-style-type: none;
    padding-left: 22px;
}
.gap-md {
    margin-bottom: clamp(16px, 5vw, 24px);
    margin-top: clamp(16px, 5vw, 24px);
}
.section-block h3 {
    color:var(--primary-color);
}
.doc-body .row {
    display: flex;
    flex-wrap: wrap;
}
.doc-content p a {
    font-weight: 600;
}
.doc-content {
    padding-bottom:clamp(40px, 5vw, 80px);
    max-width:100%;
}
.popup {
    display:none;
    position:fixed;
    inset:0;
    background:var(--black-color-80);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup img {
    max-width:90%;
    max-height:90%;
}

.close {
    position:absolute;
    right:30px;
    top:20px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}
.button.btn_bordered {
    background-color: transparent;
    color: var(--brand-color);
    border: 1px solid;
    box-shadow: none;
    padding: 10px 15px;
    text-wrap-mode:wrap;
}

.button.btn_bordered svg {
    fill: var(--brand-color);
}

.button.btn_bordered:hover {
    background-color: var(--brand-color);
    color: var(--white-color);
}

.button.btn_bordered:hover svg {
    fill: var(--white-color);
    transition:0.3s ease-in-out;
}
.doc-heading h1 {
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom:10px;
}
.doc-heading h1.h2:before {
    background-color:var(--primary-color);s
}

.doc-heading h1 strong {
    color: var(--heading-color);
}
.doc-sidebar {
    display: none;
}
.section-block-shadow .guide-caption {
    padding: 20px 30px;
}
.doc-content img {
    width:auto;
    max-width:100% !important;
    display:block;
}
.doc-content p {
    margin-bottom:16px;
}
.doc-content p img {
    width: auto !important;
    display: inline-block;
    vertical-align: middle;
}   
/* ================================ */

.callout-heading {
    padding: 10px 10px 10px 20px;
    text-transform: uppercase;
}
.callout-warning .callout-heading {
    background-color: rgba(255, 153, 0, 0.38);
}
.callout-block .content {
    background-color: var(--white-color);
    padding: 20px 10px 20px 20px;
    color:var(--body-text-color);
    line-height:1.6rem;
}
.callout-block {
    background-color: var(--white-color);
    box-shadow: var(--card-shadow);
    margin: 35px 0;
}

 .callout-heading svg  {
 position: relative;
    top: 4px;
    margin-right: 8px;
 }
.callout-block.callout-warning .callout-heading svg {
    fill: var(--yellow-color);
   
}
.callout-info .callout-heading svg {
    fill: var(--primary-color);
}
.callout-warning {
    border-left: 8px solid var(--yellow-color);
}

.callout-info .callout-heading {
    background-color: var(--primary-color-20);
}
.callout-info {
    border-left: 8px solid var(--primary-color);
}
.section-block__row ol {
    list-style-type: decimal;
    padding-left: 35px;
}
.section-block__row ol > li::marker {
    color: var(--primary-color);
    font-weight: 500;
}
.image-popup {
    margin-bottom:16px;
    display:inline-block;
    width:100%;
}
.section-block ul.light-blue-dots {
    list-style-type: none;
    padding-left: 22px;
}
.section-block ul.light-blue-dots li {
    line-height: 1.75;
    margin-bottom: 15px;
    position: relative;
}
.section-block ul.light-blue-dots li:before {
    background-color: var(--soft-steel-blue-color);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 10px;
    left: -22px;
    margin-right: 10px;
    position: absolute;
    top: 8px;
    width: 10px;
}
.doc-content a {
    word-wrap: break-word;
}
.gap-lg {
    margin-bottom: 45px;
    margin-top: clamp(40px, 5vw, 60px);
}
.callout-danger {
    background-color: #f1e2e5;
    border-left: 8px solid var(--red-color);
}
.callout-danger .callout-heading {
    background-color: #fcbdbf;
    color: var(--heading-color)

}
.text-center {
    text-align:center;
}
 a.btn {
        display:inline-block;
        border-radius:4px;
    }


.section-block__image {
    width: 180px;
}
.items-center {
    align-items: center;
}
.doc-content ul, .doc-content ol,
.section-block__content ul {
    padding-left: 28px;
}
.section-block.overview {
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 40px 20px;
}
.section-block.overview .numberCircle {
    align-items: center;
    background-color: var(--primary-color-20);
    border-radius: 50%;
    color: var(--primary-color);
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    justify-content: center;
    width: 40px;
}
.section-block .overview__numberCircle {
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}
.section-block .overview__item:not(:last-child) {
    margin-bottom: 35px;
}
.title-fullWidth {
    width:100%;
}
.flex-wrap {
    flex-wrap: wrap;
}
.callout-tool .callout-heading {
    background-color: var(--soft-steel-blue-color-40);
}
.callout-tool {
    border-left: 8px solid var(--soft-steel-blue-color);
}
.callout-block {
    background-color: var(--white-color);
    box-shadow:var(--card-shadow);
    margin: 35px 0;
}
.callout-block .row-flex {
    flex-wrap: wrap;
}
.row-flex {
    display: flex;
}
.section-block .col-3 {
    padding: 0 10px;
}

.callout-tool .content h4, .callout-tool .content .title {
    color:var(--primary-color);
    font-weight:600;
    margin-bottom: 20px;
}
.assembly-step-instructions {
    flex-direction: column !important;
}
.width-auto {
    width: auto !important;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.callout-block .content a {
    font-weight: 600;
}
.d-flex {
    display: flex !important;
}
.text-blue {
    color:var(--primary-color);
}
.text-black {
    color:var(--heading-color);
}
.bg-gray {
    box-shadow: 0 1px 0 #b4b3b3;
    background-color: #ccc;
}
.doc-content .danger-block {
    text-align: center;
    background: #ffbbbc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 20px 0;
    gap: 0 10px;
}
.doc-content .danger-block h3 {
    color:var(--heading-color);
    margin:0;
}
.section-table {
    background-color: var(--gray-color);
    border: none;
    display: block;
    padding: 20px 1px 15px;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

table {
    background-color: transparent;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
.section-table .table > thead > tr > th {
    background-color: transparent;
    border: none;
    color: var(--grey);
    font-weight: 600;
    padding-bottom: 20px;
    text-align:left;
    min-width:160px;
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid var(--soft-steel-blue-color);
}
.section-table .table > tbody {
    border-bottom: 10px solid var(--gray-color);
    box-shadow: var(--card-shadow);
}
.table>tbody+tbody {
    border-top: 2px solid var(--doc-text-color);
}
.table tr td {
    border-top: 1px solid var(--soft-steel-blue-color) !important;
    font-weight: 300;
    line-height: 1.42857143;
    padding: 15px !important;
    vertical-align: top;
}
.section-table .table > tbody > tr {
    border: none;
}
.section-table .table > tbody > tr > td:first-child {
    background-color: var(--white-color);
    font-weight: 600;
    vertical-align: top;
}
.section-table .table tr td {
    border-top-color: transparent !important;
}
.section-table .table > tbody > tr > td {
    border: none;
    white-space: normal;
}
.section-table .table > tbody > tr > td:last-child {
    background-color: var(--white-color);
}
.section-table .table > tbody > tr > td:not(:first-child) {
    border-bottom: 1px solid var(--soft-steel-blue-color);
}
.section-table .table tr td:first-child {
    padding-left: 40px !important;
    position: relative;
    color:var(--brand-color);
}

.section-table .table tr td:first-child svg {
    position: absolute;
    left: 16px;
    fill: var(--brand-color);
}
.form-control {
    font-weight: 400;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--soft-steel-blue-color);
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    height: auto;
    line-height: 1.75;
    padding: 9px 0;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
form.shimcalc label {
    font-weight: 600;
}
form.shimcalc .h4 {
    font-weight: 600;
}
.button.form_btn {box-shadow: none;background-color: transparent;border-color: var(--brand-color);border-width: 1px;border-style: solid;color: var(--brand-color);padding: 10px 16px;}

.button.form_btn:hover {
    background-color: var(--brand-color);
    color: var(--white-color);
}

.doc-content .danger-block .h3 {
    margin: 0 !important;
    color: var(--heading-color);
    font-weight: 600;
}
.section-block__content > strong {
    line-height: 150%;
}
.mb-15 {
    margin-bottom: 15px;
}
.cut-parameters-block .secondary__title {
    max-width: none !important;
    margin-bottom: 30px;
}
.secondary__title.center {
    text-align: center;
}
.cut-parameters-block .secondary__title strong{
    color:var(--heading-color);
}
.cut-parameters-block .secondary__title:before {
    display:block;
    left:50%;
    transform: translateX(-50%);
    background-color:var(--brand-color);
}
.cut-parameters-block {
    padding-top: clamp(40px, 5vw, 80px);
}
.section-block .col-3 {
    width:100%;
}
.table-specification th, .table-specification td {
    text-align: center;
    padding: 5px 10px;
    border-color: gray;
    border: 2px solid gray;
}
.my {
    margin:24px 0;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width:1200px) {
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
    }
}



@media (min-width: 992px) {
    .doc-sidebar {
        display: block;
        width: 330px;
    }
    .doc-content {
       width: calc(100% - 370px);
    }
    .col-md-6 {
        width: 50%;
        padding-right: 15px;
        padding-left: 15px;
    }
    .doc-sidebar {
        display: block;
        width: 330px;
    }
    .col-md-9 {
        width: 75%;
        padding-right: 15px;
        padding-left: 15px;
    }
    .col-md-3 {
        width: 25%;
        padding-right: 15px;
        padding-left: 15px;
    }
   
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }
    
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }

}
@media (min-width: 768px) {
    .ml-15 {
        margin-left: 15px;
    }
    .mr-15 {
        margin-right: 15px;
    }
    .doc-header {
        display:flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
    .doc-wrapper .secondary__title {
        max-width: 345px;
    }
    .doc-header .meta {
        margin-bottom: 0;
    }
    .callout-heading {
        padding: 10px 10px 10px 40px;
    }
    .callout-block .content {
        padding: 20px 10px 20px 40px;
        line-height:1.6rem;
    }
    .section-block__row {
        flex-direction: row;
        padding: 30px 40px;
    }
    
    .section-block .col-6 {
        width: 50%;
        padding-right: 15px;
        padding-left: 15px;
    }
    .section-block__image {
       padding-right: 30px;
    }
    .section-block__content {
       width: calc(100% - 180px);
    }
    .section-block.overview {
       padding: 40px;
    }
    .section-block .col-3 {
        width: 33.3333333333%;
    }
    .section-table {
        padding: 20px 20px 15px;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }
}
@media (min-width:480px) {
     .assembly-step-instructions ol {
        padding-left: 35px;
    }
    .assembly-step-instructions ol > li:before {
        left: -33px;
        margin-bottom: 0;
        position: absolute;
        top: 0px;
    }
    .section-block .overview__numberCircle:after {
        background: repeating-linear-gradient(180deg, transparent 0 4px, #e8e8f2 4px 8px) 80% / 2px 100% no-repeat;
        content: "";
        height: 100%;
        left: 50%;
        position: absolute;
        top: 35px;
        transform: translate(-50%);
        width: 2px;
        z-index: -1;
    }
    .section-block .overview__item:last-child .overview__numberCircle:after {
        display:none;
    }
    .section-block .overview__numberCircle {
        margin-bottom: 0;
    }
    .section-block .overview__item {
        align-items: stretch;
        display: inline-flex;
        justify-content: space-between;
    }
    .section-block .overview__content {
        padding-left: 35px;
        width: calc(100% - 40px);
    }
}
@media (max-width:767px) {
    .doc-content .danger-block .image-block:last-child {
        display: none;
    }
     .doc-content .danger-block .image-block {
        min-width: 50px;
    }
    .section-block__image,
    .doc-heading {
        margin-bottom: 20px;
    }
    .d-flex {
        flex-wrap:wrap;
    }
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
    .callout-block.callout-info a.width-auto img {
        margin-top: 16px;
    }
}
@media (max-width:480px) {
     .assembly-step-instructions ol {
        padding-left: 0px;
    }
}

@media print {

    body * {
        visibility: hidden;
    }

    .doc-content,
    .doc-content * {
        visibility: visible;
    }

    .doc-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .print-link,
    header,.embed-responsive,
    .breadcrumb_section {
        display: none;
    }
    .doc-wrapper {
        padding:20px 0px;
    }
}
