﻿/********** TOOLSHEADERS **********/
#toolsHeaders {
  
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
 
    background-color: white;
    padding: 20px 0px 5px 0px;
    min-height: 50px;
}

    #toolsHeaders .ordineInfo-inline {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        border-collapse: collapse;
    }

        #toolsHeaders .ordineInfo-inline.noActiveOrder .order-number,
        #toolsHeaders .ordineInfo-inline.noActiveOrder .totals,
        #toolsHeaders .ordineInfo-inline.noActiveOrder button[name="show-order"] {
            display: none;
        }

       

        #toolsHeaders .ordineInfo-inline .info-text {
            border: 1px solid #eeeeee;
            overflow: hidden;
            border-radius: 0px;
            padding: 5px 15px;
        }

            #toolsHeaders .ordineInfo-inline .info-text span.text-item {
                margin-right: 15px;
            }

            #toolsHeaders .ordineInfo-inline .info-text > .row > .col-xs-12 {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

        #toolsHeaders .ordineInfo-inline button[name="show-detail"] {
            color: #333;
            background-color: #eeeeee;
            padding: 7px 12px;
            border-radius: 0px 4px 4px 0px;
        }

        #toolsHeaders .ordineInfo-inline button[name="show-order"] {
            color: #333;
            background-color: #eeeeee;
            padding: 7px 12px;
            border-radius: 4px 0px 0px 4px;
        }

        #toolsHeaders .ordineInfo-inline button[name="show-home"] {
            color: #333;
            background-color: #eeeeee;
            padding: 7px 12px;
            border-radius: 4px 0px 0px 4px;
        }

    #toolsHeaders .ordineInfo-specs {
        position: absolute;
        display: block;
        width: 800px;
        background-color: white;
        right: 15px;
        top: 60px;
        z-index: 1000;
        border: 1px solid #000;
        display: block;
        height: 0px;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s;
        padding: 20px;
    }

        #toolsHeaders .ordineInfo-specs.show {
            visibility: visible;
            opacity: 1;
            height: 325px;
            max-height: 600px;
        }

        #toolsHeaders .ordineInfo-specs .noData {
            text-align: center;
            margin-top: 100px;
            font-weight: bold;
            font-size: 17px;
        }

    #toolsHeaders #search_panel #ResultSearch {
        z-index: 1000;
        position: absolute;
        width: 200px;
        top: 40px;
    }

        #toolsHeaders #search_panel #ResultSearch #search_table tr.f td:nth-child(2) {
            border-right: 1px solid #000;
        }
