﻿#nds #page #content .content-wrapper input[type=text],
#nds #page #content .content-wrapper input[type=tel],
#nds #page #content .content-wrapper input[type=date],
#nds #page #content .content-wrapper input[type=file],
#nds #page #content .content-wrapper textarea.abb {
    font-family: 'ABBvoice', sans-serif;
    font-weight: 400;
    font-size: 14px;
    box-shadow: none;
    color: #262626;
    padding: 3px 10px;
    margin: 5px 0;
    line-height: 32px;
    height: 37px;
    background-color: #ffffff;
    border: 1px solid #a9a9a9;
    border-radius: 2px;
    outline: none;
    width: 100%;
}

#nds #page #content .content-wrapper textarea.abb {
    height: initial;
    line-height: 18px;
    margin: 5px 0 0 0;
}

#nds #page #content .content-wrapper input[type=file] {
    height: 46px;
}


#nds #page #content .content-wrapper label {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}


#nds #page #content .content-wrapper input[type=text]:focus,
#nds #page #content .content-wrapper input[type=tel]:focus,
#nds #page #content .content-wrapper input[type=date]:focus,
#nds #page #content .content-wrapper input[type=file]:focus,
#nds #page #content .content-wrapper textarea.abb:focus {
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
}

#nds #page #content .content-wrapper input[type=text]:hover,
#nds #page #content .content-wrapper input[type=tel]:hover,
#nds #page #content .content-wrapper input[type=date]:hover,
#nds #page #content .content-wrapper input[type=file]:hover,
#nds #page #content .content-wrapper textarea.abb:hover {
    border-color: #6e6e6e;
}

#nds #page #content .content-wrapper input[type=text]:disabled,
#nds #page #content .content-wrapper input[type=tel]:disabled,
#nds #page #content .content-wrapper input[type=date]:disabled,
#nds #page #content .content-wrapper input[type=file]:disabled,
#nds #page #content .content-wrapper textarea.abb:disabled {
    background-color: #fafafa;
}

#nds #page #content .content-wrapper input[type=text]:required,
#nds #page #content .content-wrapper input[type=tel]:required,
#nds #page #content .content-wrapper input[type=date]:required,
#nds #page #content .content-wrapper input[type=file]:required,
#nds #page #content .content-wrapper .abb-select:required,
#nds #page #content .content-wrapper .abb-select:required:hover,
#nds #page #content .content-wrapper .abb-select:required:focus,
#nds #page #content .content-wrapper textarea.abb:required {
    border-right-color: #ec1b24;
    border-right-width: 2px;
}

#nds #page #content .content-wrapper input[type=text].valid + .spacer,
#nds #page #content .content-wrapper input[type=tel].valid + .spacer,
#nds #page #content .content-wrapper input[type=date].valid + .spacer,
#nds #page #content .content-wrapper input[type=file].valid + .spacer,
#nds #page #content .content-wrapper textarea.abb.valid + .spacer {
    display: block;
    height: 23px;
}

#nds #page #content .content-wrapper button,
#nds #page #content .content-wrapper a.button {
    box-sizing: border-box;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: 0;
    border: none;
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    text-align: center;
    margin: 0;
    min-width: 64px;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    overflow: visible;
    transform: translate3d(0,0,0);
    transition: background .2s cubic-bezier(.25,.8,.25,1),box-shadow 280ms cubic-bezier(.4,0,.2,1);
    background-color: #ff000f;
    color: #fff;
    font-family: 'ABBvoice', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

    #nds #page #content .content-wrapper button:disabled,
    #nds #page #content .content-wrapper a.button:disabled {
        background-color: #bb2924;
        opacity: .5;
        cursor: default;
    }

    #nds #page #content .content-wrapper button:hover,
    #nds #page #content .content-wrapper a.button:hover {
        background-color: #bb2924;
    }

    #nds #page #content .content-wrapper button:focus,
    #nds #page #content .content-wrapper a.button:focus {
        box-shadow: 0 2px 6px 0 rgb(0 0 0 / 40%);
    }

    #nds #page #content .content-wrapper button.icon-btn {
        background-color: #fff;
        color: #000;
        border: 1px solid transparent;
        padding: 0;
        min-width: 50px;
    }

        #nds #page #content .content-wrapper button.icon-btn > .fa-download {
            vertical-align: text-top;
        }

        #nds #page #content .content-wrapper button.icon-btn:hover {
            background-color: #fff;
            color: #000;
            border-color: #000;
        }

        #nds #page #content .content-wrapper button.icon-btn:focus {
            box-shadow: none;
        }

        #nds #page #content .content-wrapper button.icon-btn:active {
            background-color: #f5f5f5;
        }

#nds #page #content .content-wrapper .abb-button.secondary {
    background-color: #a9a9a9;
}

    #nds #page #content .content-wrapper .abb-button.secondary.light {
        border-color: #a9a9a9;
        color: #696969;
        background-color: #fff;
    }

        #nds #page #content .content-wrapper .abb-button.secondary.light:focus {
            box-shadow: none;
        }

        #nds #page #content .content-wrapper .abb-button.secondary.light:not(:disabled):hover {
            border-color: #262626;
            color: #262626;
            background-color: #fff;
        }

#nds #page #content .content-wrapper .abb-button.secondary.dark {
    background-color: #696969;
}

    #nds #page #content .content-wrapper .abb-button.secondary.dark:not(:disabled):hover {
        background-color: #000000;
    }

    #nds #page #content .content-wrapper .abb-button.secondary:not(:disabled):hover {
        background-color: #919191;
    }

#nds #page #content .content-wrapper ul.validation-errors,
#nds #page #content .content-wrapper .validation-message {
    font-family: 'ABBvoice', sans-serif;
    font-weight: 200;
    font-size: 18px;
    line-height: 22px !important;
    margin-bottom: 10px
}

#nds #page #content .content-wrapper ul.validation-errors {
    margin-top: 20px;
}

#nds #page #content .content-wrapper .validation-message {
    font-size: 16px;
    line-height: 16px;
}

#nds #page #content .content-wrapper .checkbox-group {
    position: relative;
    line-height: 24px;
    vertical-align: middle;
}

    #nds #page #content .content-wrapper .checkbox-group label {
        display: inline-block;
        width: initial;
        cursor: pointer;
        user-select: none;
        font-size: 15px;
        line-height: 24px;
        vertical-align: middle;
    }

        #nds #page #content .content-wrapper .checkbox-group label input[type=checkbox],
        #nds #page #content .content-wrapper .checkbox-group label span.label-text {
            cursor: pointer;
            user-select: none;
            line-height: 24px;
            vertical-align: middle;
        }

        #nds #page #content .content-wrapper .checkbox-group label span.label-text {
            margin-left: 5px;
        }

#nds #page #content .content-wrapper .radio-group {
    position: relative;
    font-size: 0;
}

    #nds #page #content .content-wrapper .radio-group label {
        display: inline-block;
        width: initial;
        margin-left: 15px;
        cursor: pointer;
        user-select: none;
        font-size: 14px !important;
    }

        #nds #page #content .content-wrapper .radio-group label input[type=radio],
        #nds #page #content .content-wrapper .radio-group label span {
            cursor: pointer;
            user-select: none;
            line-height: 28px;
            vertical-align: middle;
        }

    #nds #page #content .content-wrapper .radio-group label:nth-child(1) {
        margin-left: 0;
    }

#nds #page #content .content-wrapper .abb-select {
    position: relative;
    display: block;
    color: #262626;
    border: 1px solid #a9a9a9;
    width: 100%;
    height: 37px;
    padding: 0 17px 0 7px;
    margin: 5px 0 0 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    font-size: 14px;
    font-family: 'ABBvoice', sans-serif;
    line-height: 32px;
    border-radius: 2px;
    min-width: 200px;
    background-image: none;
    background-image: none, -webkit-linear-gradient(top, rgba(255, 255, 255, 0.6) 0px, rgba(255, 255, 255, 0) 100%);
    background-image: none, -moz-linear-gradient(top, rgba(255, 255, 255, 0.6) 0px, rgba(255, 255, 255, 0) 100%);
    background-image: none, -o-linear-gradient(top, rgba(255, 255, 255, 0.6) 0px, rgba(255, 255, 255, 0) 100%);
    background-image: none, linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0px, rgba(255, 255, 255, 0) 100%);
    background-repeat: repeat;
    background-position: 50% 50%;
    background-color: #fff;
    white-space: nowrap;
    cursor: pointer;
    -moz-appearance: textfield;
    z-index: 1;
}

    #nds #page #content .content-wrapper .abb-select.highlight,
    #nds #page #content .content-wrapper .abb-select.highlight:focus,
    #nds #page #content .content-wrapper .abb-select.highlight:hover,
    #nds #page #content .content-wrapper motion-input .component.highlight input {
        background-color: #fffadd;
    }

        #nds #page #content .content-wrapper motion-input .component.highlight-total input:disabled {
            background-color: #fffadd !important;
            font-weight: bold;
        }

    #nds #page #content .content-wrapper .abb-select:hover,
    #nds #page #content .content-wrapper .abb-select:focus {
        background-color: #fff;
        background-image: none;
        background-position: 50% 50%;
        border-color: #6e6e6e;
    }

    #nds #page #content .content-wrapper .abb-select:focus {
        outline: none;
        border-color: #555;
        -moz-box-shadow: 0px 0px 5px 0px #a9a9a9;
        -webkit-box-shadow: 0px 0px 5px 0px #a9a9a9;
        box-shadow: 0px 0px 5px 0px #a9a9a9;
    }

    #nds #page #content .content-wrapper .abb-select:disabled {
        opacity: .5;
        cursor: default;
    }


    #nds #page #content .content-wrapper motion-input .component .control input[type=text] {
        margin-bottom: 0;
    }

#nds #page #content .content-wrapper .table-select {
    font-family: 'ABBvoice', sans-serif;
    border-collapse: separate;
    border-spacing: 0;
    page-break-inside: avoid;
    width: 100%;
    margin: 10px 0;
}

#nds #page #content .content-wrapper .table-select.no-margin {
    margin: 0;
}

    #nds #page #content .content-wrapper .table-select thead tr {
        line-height: 18px;
        text-align: center;
        background-color: #d2d2d2;
    }

    #nds #page #content .content-wrapper .table-select thead tr th.left {
        text-align: left;
    }

        #nds #page #content .content-wrapper .table-select thead tr th.upper {
            text-transform: uppercase;
        }

        #nds #page #content .content-wrapper .table-select thead tr th.uom-width {
            width: 60px;
        }

        #nds #page #content .content-wrapper .table-select thead tr th.data-width {
            width: 130px;
        }

        #nds #page #content .content-wrapper .table-select thead tr th.notes-width {
            width: 200px;
        }

        #nds #page #content .content-wrapper .table-select thead tr th {
            background: none;
            border-left: 1px solid #dadfe2;
            border-top: 1px solid #d2d2d2;
            color: #262626;
            font-size: 15px;
            font-weight: 700;
            padding: 5px 10px;
            text-align: center;
            vertical-align: bottom;
        }

            #nds #page #content .content-wrapper .table-select thead tr th.align-center {
                text-align: center;
            }

            #nds #page #content .content-wrapper .table-select thead tr th.align-left {
                text-align: left;
            }

            #nds #page #content .content-wrapper .table-select thead tr th:last-child,
            #nds #page #content .content-wrapper .table-select tbody tr td:last-child {
                border-right: 1px solid #d2d2d2;
            }

            #nds #page #content .content-wrapper .table-select thead tr th span {
                line-height: 15px;
            }

    #nds #page #content .content-wrapper .table-select tbody tr td {
        border-left: 1px solid #d2d2d2;
        border-top: 1px solid #d2d2d2;
        color: #262626;
        font-size: 15px;
        padding: 5px 10px;
        position: relative;
        text-align: center;
        vertical-align: middle;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td.left {
        text-align: left;
    }

    #nds #page #content .content-wrapper .table-select tbody tr:last-child td {
        border-bottom: 1px solid #d2d2d2;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td.align-center {
        text-align: center;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td.align-left {
        text-align: left;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td.rowspan {
        text-align: left;
        vertical-align: top;
    }

        #nds #page #content .content-wrapper .table-select tbody tr td.rowspan:last-child {
            border-bottom: 1px solid #d2d2d2;
        }

        #nds #page #content .content-wrapper .table-select tbody tr td.rowspan div {
            display: -webkit-box;
            white-space: initial;
            height: 170px;
            overflow: hidden;
            -webkit-line-clamp: 9;
            -webkit-box-orient: vertical;
        }

        #nds #page #content .content-wrapper .table-select tbody tr td.span-6 div {
            -webkit-line-clamp: 9;
        }

    #nds #page #content .content-wrapper .table-select tbody tr td.span-8 div {
        -webkit-line-clamp: 12;
        height: 230px;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td.span-7 div {
        -webkit-line-clamp: 10;
        height: 194px;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td div.no-wrap-label {
        width: 320px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td div.no-wrap-uom {
        width: 60px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td div.no-wrap-data {
        width: 130px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td div.no-wrap-notes {
        width: 130px;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td.prerowspan {
        border-right: none;
    }

        #nds #page #content .content-wrapper .table-select tbody tr td.prerowspan.subtotal,
        #nds #page #content .content-wrapper .table-select thead tr th.subtotal {
            background-color: #0eb38e;
        }

    #nds #page #content .content-wrapper .table-select thead tr.subtotal-row {
        height: 40px;
    }

        #nds #page #content .content-wrapper .table-select thead tr.subtotal-row th {
            vertical-align: middle;
            font-size: 16px;
        }

    #nds #page #content .content-wrapper .table-select tbody tr div {
        width: 100%;
        white-space: nowrap;
        height: 19px;
    }

    #nds #page #content .content-wrapper .table-select tbody tr.total {
        font-weight: bold;
        text-transform: uppercase;
        background-color: #f5f5f5;
    }

    #nds #page #content .content-wrapper .table-select tbody tr td.notes div {
        white-space: initial;
        height: initial;
        text-align: left;
    }

    #nds #page #content .content-wrapper .table-select a {
        color: #ff000f;
        text-decoration: initial;
    }