﻿/* Site Typography
----------------------------------------------------------*/
html {
    background-color: #fff;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    background-color: #dcdcdc;
    color: #333;
    font-size: .8em;
    font-family: Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

header {
    margin-top: -13px;
}

h1, h2, h3, h4, h5, h6 {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
    color: #000;
}

h3 {
    font-size: 1em;
    color: #000;
}

h4 {
    font-size: .9em;
    color: #002c76;
}

h5 {
    font-size: 1.5em;
    color: #000;
    padding-left: 10%;
    padding-right: 5%;
    text-align: left;
}

    h5 a:link, h5 a:visited, h5 a:active {
        padding: 0;
        text-decoration: none;
    }

h6 {
    font-size: .6em;
}

header, footer, hgroup, nav, section {
    display: block;
}

a {
    color: #333;
    outline: none;
    text-decoration: underline;
}

    a:link, a:visited, a:active, a:hover {
        color: #000;
    }

img {
    vertical-align: middle;
}

select {
    background-color: #fff;
    color: #333;
    font-size: 1.1em;
    font-family: Verdana, Helvetica, Sans-Serif;
    margin: 1px;
    padding: 1px;
}

mark {
    background-color: #a6dbed;
    padding-left: 5px;
    padding-right: 5px;
}

.borderless {
    margin: 0px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* Site layout
----------------------------------------------------------*/

.content-wrapper {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
    height: 100%;
}

@media (min-width: 1200px) {
    .content-wrapper {
        width: 1150px;
    }
}

/******************************/

#menuToggle {
    display: block;
    position: relative;
    top: 25px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

    #menuToggle a {
        text-decoration: none;
        color: #232323;
        transition: color 0.3s ease;
        font-size: 15px;
        padding: 5px;
        word-break: break-all;
    }

        #menuToggle a:hover {
            color: tomato;
        }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0; /* hide this */
        z-index: 2; /* and place it over the hamburger */
        -webkit-touch-callout: none;
    }

    /* Just a quick hamburger */
    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #004b8d;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
    }

        #menuToggle span:first-child {
            transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2) {
            transform-origin: 0% 100%;
        }

/* Make this absolute positioned at the top left of the screen */
#mobile-menu {
    position: absolute;
    width: auto;
    background: white;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(-110%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

    #mobile-menu li {
        font-size: 18px;
    }

/* And let's slide it in from the left */
#menuToggle input:checked ~ ul {
    transform: none;
}

#menuToggle input:checked ~ #arrow {
    display: block !important;
}

#menuToggle > ul#mobile-menu {
    padding: 10px 0;
    text-align: left;
    border: 1px solid #004b8d;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 0px;
    top: 15px;
}

.mobile-sub-menu {
    list-style-type: none;
    font-weight: normal;
    text-transform: capitalize;
}

#arrow {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 12px solid gray;
    margin: 0px !important;
    background: unset !important;
    left: 4px;
}

#menu-title {
    padding-left: 45px;
    margin-top: -10px;
}

/*****************************/

@media (min-width: 1024px) {
    #menu-mobile-view {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    #menu-desktop-view {
        display: none;
    }

    .divider {
        display: none !important;
    }
}

.main-content {
    padding-left: 0px;
    padding-top: 0px;
}

#body {
    padding: 0 15px;
}

/* FOOTER layout
----------------------------------------------------------*/
footer {
    display: inline-block;
    padding: 15px 0;
}

/* Site MENU - UPDATED BY ALKA ----------------------------------------------------------*/
nav {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
}

.menu-wrapper ul {
    display: inline-flex;
    z-index: 999999;
}

    .menu-wrapper ul#project-menu {
        padding: 0px;
    }

    .menu-wrapper ul#main-menu {
        float: right;
        padding: 0 15px 0 0;
    }

    .menu-wrapper ul li {
        display: inline-flex;
        padding: 10px;
        position: relative;
        /*transition-duration: 0.5s;*/
    }

.menu-wrapper ul li a:link, .menu-wrapper ul li a:visited {
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.menu-wrapper ul li a:hover, .menu-wrapper ul li a:active {
    color: #004b8d;
}

.menu-wrapper ul li.current {
    border-bottom: 2px solid #004b8d;
}

    .menu-wrapper ul li.current a {
        color: #004b8d;
    }

.menu-wrapper ul#main-menu li:last-child {
    padding-right: 0;
}

.menu-wrapper ul#project-menu li span {
    text-transform: uppercase;
}

/*===== sub_menu Style =======*/
.menu-wrapper ul li ul.sub_menu {
    position: absolute;
    top: 30px;
    left: 20px;
    background: #fff;
    border: 1px solid #004b8d;
    border-top: 5px solid #004b8d;
    /*display: none;*/
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
    -moz-box-shadow: 0px 1px 1px #121012;
    -webkit-box-shadow: 0px 1px 1px #121012;
    box-shadow: 0px 1px 1px #121012;
    padding: 0 10px;
    /*transition: all 0.5s ease;*/
}

    .menu-wrapper ul li ul.sub_menu li {
        display: inline;
        padding: 0;
        border-bottom: 1px solid #ececec;
    }

        .menu-wrapper ul li ul.sub_menu li a {
            white-space: nowrap;
            width: 99%;
            padding: 10px 0;
            font: 12px Arial, tahoma, sans-serif;
            text-transform: capitalize;
            color: #000;
        }

            .menu-wrapper ul li ul.sub_menu li a:hover {
                color: #004b8d;
            }

            .menu-wrapper ul li ul.sub_menu li a.subCurrent {
                color: #e25d29;
                cursor: default;
            }

                .menu-wrapper ul li ul.sub_menu li a.subCurrent:hover {
                    background: none;
                }

    .menu-wrapper ul li:hover > ul.sub_menu, .menu-wrapper ul li ul.sub_menu:hover {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .menu-wrapper ul li ul.sub_menu li {
        clear: both;
        width: 100%;
    }
.lblsuffix {
    text-align: center;
    color: #b0b0b0;
}
/* PSG/Index page CSS - ADDED BY ALKA
-----------------------------------------------------------*/
.brand-list {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}

.gallery {
    position: relative;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

.brand-img-row {
    display: inherit;
}

.brand-list img {
    width: 460px;
    height: 85px;
    margin-right: 20px;
    margin-left: 20px;
}

.divider {
    display: inline-block;
    border-left: 1px solid #dcdcdc;
    height: 586px;
    vertical-align: top;
}

/* My Info CSS
----------------------------------------------------------*/
#user-info {
    font-size: 12px;
}

/* Abaque Brand Index page CSS
----------------------------------------------------------*/
.brand-homeImg img {
    width: 100%;
}

/* Select/About page CSS
----------------------------------------------------------*/
.contact {
    padding: 0 20px;
}

    .contact h3 {
        font-size: 1.2em;
    }

    .contact p {
        margin: 0;
        padding: 5px;
    }

/* page elements ----------------------------------------------------------*/
/* featured */
.featured {
    background-color: #fff;
}

    .featured .content-wrapper .content-wrapper-magnum {
        background-color: #fff;
        color: #fff;
        padding: 0px 0px 0px 0px;
    }

    .featured hgroup.title h1, .featured hgroup.title h2 {
        color: #fff;
    }

    .featured p {
        font-size: 1.1em;
    }

/* page titles */
hgroup.title {
    margin-bottom: 10px;
}

    hgroup.title h1, hgroup.title h2 {
        display: inline;
    }

    hgroup.title h2 {
        font-weight: normal;
        margin-left: 3px;
    }

/* features */
section.feature {
    width: 300px;
    float: left;
    padding: 0px;
}

/* ordered list */
ol.round {
    list-style-type: none;
    padding-left: 0;
}

    ol.round li {
        margin: 25px 0;
        padding-left: 45px;
    }

        ol.round li.zero {
            background: url("../Images/orderedList0.png") no-repeat;
        }

        ol.round li.one {
            background: url("../Images/orderedList1.png") no-repeat;
        }

        ol.round li.two {
            background: url("../Images/orderedList2.png") no-repeat;
        }

        ol.round li.three {
            background: url("../Images/orderedList3.png") no-repeat;
        }

        ol.round li.four {
            background: url("../Images/orderedList4.png") no-repeat;
        }

        ol.round li.five {
            background: url("../Images/orderedList5.png") no-repeat;
        }

        ol.round li.six {
            background: url("../Images/orderedList6.png") no-repeat;
        }

        ol.round li.seven {
            background: url("../Images/orderedList7.png") no-repeat;
        }

        ol.round li.eight {
            background: url("../Images/orderedList8.png") no-repeat;
        }

        ol.round li.nine {
            background: url("../Images/orderedList9.png") no-repeat;
        }

/* content */
article {
    float: left;
    width: 70%;
}

aside {
    float: right;
    width: 25%;
}

    aside ul {
        list-style: none;
        padding: 0;
    }

        aside ul li {
            background: url("../Images/bullet.png") no-repeat 0 50%;
            padding: 2px 0 2px 20px;
        }

.label {
    font-weight: 700;
}

.labelBland {
    font-size: 1em;
    font-family: Verdana, Helvetica, Sans-Serif;
    font-weight: normal;
}

/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        display: none;
    }

    fieldset ol {
        padding: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }

.wrapline {
    display: block;
}

label {
    display: inline-block;
    font-size: 1.2em;
    font-weight: 600;
}

    label.checkbox {
        display: inline;
    }

input, textarea {
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #333;
    font-size: 1.2em;
    margin: 5px 0 6px 0;
    padding: 5px;
    width: 300px;
}

.inputB {
    border: 2px solid #000;
    background: #F5F5DC;
    color: #000;
    font-size: 1.2em;
    margin: 5px 0 6px 0;
    padding: 5px;
    width: 300px;
}

textarea {
    font-family: inherit;
    width: 500px;
}

    input:focus, textarea:focus {
        border: 1px solid #7ac0da;
    }

input[type="checkbox"] {
    background: transparent;
    border: inherit;
    width: auto;
}

input[type="radio"] {
    margin: 1px;
    padding: 2px;
    width: auto;
}

input[type="submit"], input[type="button"], button, .ui-dialog .ui-dialog-buttonpane button {
    font-size: 12px;
    text-transform: Capitalize;
    background-color: #1f92c8;
    border: 1px solid #1f92c8;
    color: #fff;
    cursor: pointer;
    border-radius: 0;
    padding: 10px 15px;
    width: 150px;
    overflow-wrap: break-word;
}

.project-modal-btns > button {
    display: block;
    width: auto !important;
    float: none;
}

.sortButton {
    background-color: #d3d3d3;
    border: 1px solid #A0A0A0;
    color: #000000;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 10px;
    width: auto;
}

.button_HLight {
    background-color: #004B8D;
}

.button_G {
    background-color: #7E868C;
    border: 0px;
    cursor: default;
}

.button_G_menu {
    background-color: #7E868C;
    border: 0px;
    cursor: default;
}

.button_HLight_Menu {
    background-color: #004B8D;
}

.compRefreshButton {
    background-color: #de0622;
    border: 0px;
    color: #fff;
    padding: 5px 5px 5px 5px;
    width: 150px;
    margin: 5px 5px 5px 85px;
}


.compRefreshButton_hidden {
    visibility: hidden;
}


.button_B_Menu_XL {
    background-image: -ms-linear-gradient(bottom, #002c76 0%, #006DD0 100%);
    background-image: -o-linear-gradient(bottom, #002c76 0%, #006DD0 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #006DD0), color-stop(1, #7ac0da));
    background-image: -webkit-linear-gradient(bottom, #002c76 0%, #006DD0 100%);
    background-image: linear-gradient(bottom, #006DD0 0%, #7ac0da 100%);
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border: 1px solid #7E868C;
    color: white;
    cursor: pointer;
    font-size: 1.4em;
    font-weight: 600;
    padding: 7px;
    margin-right: 8px;
    width: 250px;
}

.button_B_small {
    font-size: 12px;
    padding: 5px 10px;
    margin-top: 5px;
    width: auto;
}

.button_Gray_Menu {
    background-color: #7E868C !important;
    border: 0px !important;
    cursor: default;
}

.indexPageButton {
    background-size: cover;
    border: none !important;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-weight: lighter;
    font-size: 24px !important;
    padding: 16px 31px;
    width: 320px !important;
    text-align: center;
    height: 146px !important;
}

    .indexPageButton.bySystem {
        background-image: url(../../Images/SearchPump.png);
    }

    .indexPageButton.bySize {
        background-image: url(../../Images/SelectPumpSize.png);
    }

    .indexPageButton.byDesc {
        background-image: url(../../Images/SelectPumpDesc.png);
    }

    .indexPageButton.myProject {
        background-image: url(../../Images/MyProject.png);
    }

    .indexPageButton.newQuote {
        background-image: url(../../Images/NewQuote.png);
    }

    .indexPageButton.crossReference {
        background-image: url(../../Images/CrossReference.png);
    }

    .indexPageButton.myProfile {
        background-image: url(../../Images/MyProfile.png);
    }

.btnreset {
    width: auto;
    margin-bottom: 5px !important;
}

.btnSuctionFLreset, .btnDischargeFLreset, .btnBackToSearch {
    width: auto !important;
    margin-bottom: 5px !important;
    padding: 10px 20px !important;
    margin-right: 38px;
}

/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 1px 2px;
    font-size: .7em;
}

.message-info-P {
    border: 1px solid;
    clear: both;
    padding: 3px 5px;
    font-size: .6em;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-help {
    color: #000;
    font-size: .8em;
    margin: 5px 0 5px 0;
}

.error {
    color: #ff0526;
}

.comp_error {
    color: #ff0526;
    font-size: .9em;
}

.comp_warning {
    color: black;
    font-size: .9em;
}


.Abort {
    clear: both;
    color: #FF0000;
    font-size: .9em;
    font-weight: bold;
    margin: 3px 0 2px 0;
}

.Warning {
    clear: both;
    color: #daa520;
    font-size: .9em;
    font-weight: bold;
    margin: 3px 0 2px 0;
}

.Note {
    clear: both;
    color: #002c76;
    font-size: .9em;
    font-weight: bold;
    margin: 3px 0 2px 0;
}

.BigNote {
    clear: both;
    color: #002c76;
    font-size: 1.2em;
    font-weight: bold;
    margin: 3px 0 2px 0;
    text-align: center;
}

.GreyNote {
    clear: both;
    color: darkgray;
    font-size: .9em;
    font-weight: bold;
    margin: 3px 0 2px 0;
}

/* styles for validation helpers */
.field-validation-error {
    color: #FFFFFF;
    font-size: .75em;
    font-weight: bold;
    background-color: #FF0000;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #FF0000;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #FF0000;
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}

/* tables
----------------------------------------------------------*/
table {
    border: 1px solid;
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 0em;
    border: 0 none;
}

._withborderSmallFont {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: darkgray;
    text-align: center;
    font-size: .8em;
}

._withborder {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    border-color: darkgray;
    color: black;
    text-align: center;
}

._withborder_red {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    border-color: darkgray;
    color: red;
    text-align: center;
}

._withborder_shade {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    border-color: darkgray;
    color: black;
    background-color: #E3E3E3;
    text-align: center;
}

._withborder_shade_red {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    border-color: darkgray;
    color: red;
    background-color: #E3E3E3;
    text-align: center;
}

._noborder {
    margin-top: 1.1em;
    border: none;
    text-align: center;
}

._withborder_color {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: darkgray;
    text-align: center;
    background-color: gainsboro;
}

._withborder_vert_middle {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    border-color: darkgray;
    color: black;
    text-align: center;
    vertical-align: middle;
}

._withborder_noWrap {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: darkgray;
    text-align: center;
    white-space: nowrap;
    width: 100px;
}

._withborder_Thick {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: black;
    text-align: center;
    white-space: nowrap;
    width: 100px;
}

._withborder_Header {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: black;
    background-color: LightGray;
    text-align: center;
    vertical-align: bottom;
}

._withborder_Header_Bottom {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    background-color: LightGray;
    border-color: darkgray darkgray Black darkgray;
    text-align: center;
    vertical-align: bottom;
}

._withborder_Header_Top {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    background-color: LightGray;
    border-color: Black darkgray darkgray darkgray;
    text-align: center;
    vertical-align: bottom;
}

._withborder_Header_vert_middle {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: black;
    background-color: LightGray;
    text-align: center;
    vertical-align: middle;
}

._withborder_Header_Blue_vert_middle {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: white;
    border-color: black;
    background-color: darkblue;
    text-align: center;
    vertical-align: middle;
}

._withborder_Header_Thick {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: black;
    background-color: LightGray;
    text-align: center;
    vertical-align: bottom;
}

._withborder_Header_Y {
    /*border-spacing: 2px;
    margin-top: 1.1em;*/
    border: 1px solid;
    color: #fff;
    border-color: #000;
    /*background-color: #23c0eb;*/
    background-color: #1f92c8;
    text-align: center;
    /*vertical-align: bottom;*/
    vertical-align: middle;
}

._withborder_topline {
    border-top: 1px solid;
    border-color: black;
    text-align: left;
}

._withborder_L {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: DarkGray;
    text-align: left;
    width: 300px;
    font-size: .9em;
}

._withborder_L_Color {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: DarkGray;
    text-align: left;
    width: 200px;
    font-size: .9em;
    background-color: gainsboro;
}

._withborder_Header_L {
    border-spacing: 2px;
    margin-top: 1.1em;
    border: 1px solid;
    color: black;
    border-color: black;
    background-color: LightGray;
    text-align: left;
    vertical-align: bottom;
    width: 300px;
    font-size: .9em;
}

._withborder_P {
    border-spacing: 1px;
    margin-top: .8em;
    border: 1px solid;
    color: black;
    border-color: DarkGray;
    text-align: left;
    font-size: .7em;
    font-family: Verdana, Helvetica, Sans-Serif;
}

._withborder_Header_P {
    border-spacing: 1px;
    margin-top: .8em;
    border: 1px solid;
    color: black;
    border-color: black;
    background-color: LightGray;
    text-align: left;
    vertical-align: bottom;
    font-size: .7em;
}

._withborder_P_lg_font {
    border-spacing: 1px;
    margin-top: .8em;
    border: 1px solid;
    color: black;
    border-color: DarkGray;
    text-align: left;
    font-size: .9em;
    font-family: Verdana, Helvetica, Sans-Serif;
}

._withborder_Header_P_lg_font {
    border-spacing: 1px;
    margin-top: .8em;
    border: 1px solid;
    color: black;
    border-color: black;
    background-color: LightGray;
    text-align: left;
    vertical-align: bottom;
    font-size: .9em;
}

th {
    font-size: 1.2em;
    text-align: left;
    border: none 0px;
    padding-left: 0;
}

    th a {
        display: block;
        position: relative;
    }

        th a:link, th a:visited, th a:active, th a:hover {
            color: #333;
            font-weight: 600;
            text-decoration: none;
            padding: 0;
        }

        th a:hover {
            color: #000;
        }

    th.asc a, th.desc a {
        margin-right: .75em;
    }

        th.asc a:after, th.desc a:after {
            display: block;
            position: absolute;
            right: 0em;
            top: 0;
            font-size: 0.75em;
        }

        th.asc a:after {
            content: '▲';
        }

        th.desc a:after {
            content: '▼';
        }

td {
    padding: .10em .25em .10em .25em;
    border: 0 none;
    vertical-align: top;
}

tr.pager td {
    padding: 0em 0em 0em 0em;
}

#tblCookiePolicy th, #tblCookiePolicy td {
    border: 1px solid black;
}

/*** ESSENTIAL STYLES ***/

.a1 {
    left: 0em;
    width: 0em;
    float: left;
    margin-bottom: .1em;
    padding: 7px 30px 0px 10px !important;
    background: none !important;
    text-decoration: none;
    line-height: 21px;
}

.a2 {
    left: 0em;
    width: 0em;
    float: left;
    margin-bottom: .1em;
    background: url(../images/menu-divider.jpg) no-repeat right 10px !important;
    padding: 7px 40px 0px 10px !important;
    text-decoration: none;
    line-height: 21px;
}

/********************
*   Mobile Styles   *
********************/
@media only screen and (max-width: 850px) {

    /* header ----------------------------------------------------------*/
    header .float-left, header .float-right {
        float: none;
    }

    /* logo */
    header .site-title {
        margin: 10px;
        text-align: center;
    }

    /* menu */
    nav {
        margin-bottom: 5px;
    }

    ul#menu {
        margin: 0;
        padding: 0;
        text-align: center;
    }

        ul#menu li {
            margin: 0;
            padding: 0;
        }

    /* main layout ----------------------------------------------------------*/
    .main-content, .featured + .main-content {
        background-position: 10px 0;
    }

    .content-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }

    .content-wrapper-magnum {
        padding-right: 1px;
        padding-left: 1px;
    }

    .featured .content-wrapper {
        padding: 10px;
    }

    .featured content-wrapper-magnum {
        padding: 1px;
    }

    /* page content */
    article, aside {
        float: none;
        width: 100%;
    }

    /* ordered list */
    ol.round {
        list-style-type: none;
        padding-left: 0;
    }

        ol.round li {
            padding-left: 10px;
            margin: 25px 0;
        }

            ol.round li.zero, ol.round li.one, ol.round li.two, ol.round li.three, ol.round li.four, ol.round li.five, ol.round li.six, ol.round li.seven, ol.round li.eight, ol.round li.nine {
                background: none;
            }

    /* features */
    section.feature {
        float: none;
        padding: 10px;
        width: auto;
    }

        section.feature img {
            color: #999;
            content: attr(alt);
            font-size: 1.5em;
            font-weight: 600;
        }

    /* forms */
    input {
        width: 90%;
    }

    .a1 {
        float: left;
        margin-bottom: 1em;
        background: none !important;
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        line-height: 21px;
    }

    /* Auto complete 
	----------------------------------------------------------*/
    .ui-autocomplete {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        float: left;
        display: none;
        min-width: 160px;
        padding: 4px 0;
        margin: 0 0 10px 25px;
        list-style: none;
        background-color: #ffffff;
        border-color: #ccc;
        border-color: rgba(0, 0, 0, 0.2);
        border-style: solid;
        border-width: 1px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        *border-right-width: 2px;
        *border-bottom-width: 2px;
    }

    .ui-menu-item > a.ui-corner-all {
        display: block;
        padding: 3px 15px;
        clear: both;
        font-weight: normal;
        line-height: 18px;
        color: #555555;
        white-space: nowrap;
        text-decoration: none;
    }

    .ui-state-hover, .ui-state-active {
        color: #ffffff;
        text-decoration: none;
        background-color: #0088cc;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        background-image: none;
    }

    /*Impersonation styles- Start*/
    #topBorder, #bottomBorder, #leftBorder, #rightBorder {
        background: #ff0000;
        position: fixed;
    }

    #leftBorder, #rightBorder {
        top: 0;
        bottom: 0;
        width: 2px;
    }

    #leftBorder {
        left: 0;
    }

    #rightBorder {
        right: 0;
    }

    #topBorder, #bottomBorder {
        left: 0;
        right: 0;
        height: 2px;
    }

    #topBorder {
        top: 0;
    }

    #bottomBorder {
        bottom: 0;
    }
    /*Impersonation styles- End*/
}

.td-Quantity > input:first-child {
    width: 20px;
    text-align: center;
    font-size: .9em;
}

/*Configuration Spare Parts*/

#td-SpareParts {
    height: 525px;
    width: 540px;
    font-size: 10px;
}

    #td-SpareParts > div {
        height: 525px;
        overflow-y: scroll;
    }

#td-SparePartsImage {
    width: 540px;
    border: 1px solid #dedede;
}

@supports not (-ms-high-contrast: none) {
    #tblSpareParts > thead > tr > th {
        position: sticky;
        top: 0;
    }
}

#tblSpareParts > thead > tr > th {
    font-size: 10px;
    background-color: lightgray !important;
    font-weight: normal;
    border-color: darkgray !important;
    border-bottom-color: transparent !important;
    border-top-color: transparent !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #tblSpareParts {
        overflow: hidden;
    }

        #tblSpareParts > thead > tr > th {
            position: relative;
            border: 1px solid darkgray !important;
        }

            #tblSpareParts > thead > tr > th:after, #tblSpareParts > thead > tr > th:before {
                border: 1px solid darkgray !important;
                top: -1px !important;
                height: 48px !important;
            }

        #tblSpareParts > thead > tr {
            border: 1px solid darkgray !important;
        }
}

@-moz-document url-prefix() {
    #tblSpareParts > thead > tr > th:after, #tblSpareParts > thead > tr > th:before {
        border: 1px solid darkgray !important;
        top: 0px !important;
        border-left: 0px;
        left: 0px;
    }

    #tblSpareParts > thead > tr {
        border: 0px !important;
    }
}

#tblSpareParts > tbody > tr > td {
    padding: 0px !important;
}

#tblSpareParts > thead > tr > th:after, #tblSpareParts > thead > tr > th:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
}

#tblSpareParts > thead > tr > th:before {
    top: -1px;
    border-top: 1px solid darkgray;
}

#tblSpareParts > thead > tr > th:after {
    bottom: 0;
    border-bottom: 1px solid darkgray;
}

#th-Description, .td-Description {
    width: 350px;
}

#th-ListPrice, .td-ListPrice {
    width: 140px;
}

#td-SparePartsImage > img {
    width: 100%;
    border: groove;
    height: 525px;
}

#td-SparePartsImage > div > a img {
    width: 100%;
    border: groove;
    height: 525px;
}

.easyzoom-flyout {
    border: groove;
}

#dv-No-SparePart-Drawing {
    border: groove;
    height: 525px;
    text-align: center;
    line-height: 525px;
}

    #dv-No-SparePart-Drawing > span {
        font-weight: 800;
        display: inline-block;
        vertical-align: middle;
        line-height: normal;
    }

#btnSelectRecommendedParts {
    width: auto !important;
}

#td-SparePartsImage > div.tabcontent > img {
    height: 458px;
    width: 540px;
}

#td-SparePartsImage > div.tabcontent > div > a img, #td-SparePartsImage > div.tabcontent > div > div {
    height: 458px;
    width: 100%;
}

    #td-SparePartsImage > div.tabcontent > div > div.easyzoom-flyout {
        border: none !important;
    }

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid darkgray;
    background-color: #f1f1f1;
}

    /* Style the buttons inside the tab */
    .tab button {
        background-color: #f1f1f1;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 17px 30px;
        transition: 0.3s;
        color: black;
        margin-right: 0px;
        font-weight: normal;
        width: auto;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: lightgray;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid darkgray;
    border-top: none;
}

.spareParts-Qty {
    width: 35px;
    text-align: center;
    font-size: .9em;
}

.td-10-percentage {
    width: 10%;
}

.img-responsive {
    width: 100%;
    height: auto;
}

#img-company-logo {
    border: 1px solid #e2e2e2;
    margin-top: 2px;
}

#btnRemoveLogo {
    font-size: 14px;
}

#companyLogo {
    font-size: 0.9em;
    cursor: pointer;
}

input.input-validation-error:focus {
    border-color: red !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(255,0,0,0.3),0 0 6px red !important;
    box-shadow: inset 0 1px 1px rgba(255,0,0,0.3),0 0 6px red !important;
    outline-color: red !important;
}

/********************************/

#quoteFooter tbody {
    font-size: 0.8em;
}

/************* Addtional Styles for Domains-WhiteList ******************/
.domain-name {
    text-align: left;
    max-width: 175px !important;
}

/*Language Dropdown*/

#ddl-mobile-Language {
    margin-top: -48px;
    float: right;
    position: relative;
    z-index: 2;
    font-size: 16px;
}

    #ddl-mobile-Language > ul li {
        padding: 5px 10px;
        z-index: 2;
        display: block;
        list-style: none;
    }

        #ddl-mobile-Language > ul li a {
            text-decoration: none;
        }

        #ddl-mobile-Language > ul li:not(.init) {
            display: none;
            text-align: center;
            border: 1px solid black;
            border-bottom: none;
        }

            #ddl-mobile-Language > ul li:not(.init):last-child {
                border: 1px solid black;
            }

            #ddl-mobile-Language > ul li:not(.init):hover, ul li.selected:not(.init) {
                background: #09f;
            }

    #ddl-mobile-Language > ul > li.init {
        cursor: pointer;
    }


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #tblSpareParts {
        border: 2px solid gray !important;
    }
}

.ui-dialog .ui-dialog-title {
    white-space: pre-wrap;
}

/*Project Date Search*/

#customDateSpan > img, #dv-Exception-filter > img {
    border: 1px solid #e2e2e2;
    padding: 1px;
    padding-right: 4px;
    height: 26px;
    cursor: pointer;
}

#customDateSpan > input, #dv-Exception-filter > input {
    height: 18px;
}

#psgLogoLink {
    text-decoration: none !important;
}

/* Breadcrumbs*/

#dv-breadCrumb {
    display: inline-block; /* The menu will have width as needed, not 100% */
    position: relative;
    line-height: 1em;
    border-radius: 2px; /* Little curvature in the borders */
    margin-left: 35px;
    margin-top: -28px;
}

    #dv-breadCrumb > ul, #dv-breadCrumb > ul > li > ul {
        list-style: none !important;
        padding: 0px;
    }

        #dv-breadCrumb > ul > li {
            display: flex;
        }

            #dv-breadCrumb > ul > li > ul {
                display: flex;
                flex-direction: row-reverse;
            }

                #dv-breadCrumb > ul > li > ul > li > a {
                    display: inline-block;
                    font-family: sans-serif;
                    font-size: 0.9em;
                    font-weight: 600;
                    padding: 12px 30px 12px 45px; /* Adjusting padding to get the proper space */
                    margin-left: -20px; /* Pull the items to the left, so the rounded right side will get over them */
                    color: #fff;
                    background-color: #1F92C8;
                    text-decoration: none;
                    text-transform: uppercase;
                    border-radius: 0 100px 100px 0; /* Get the right side rounded */
                    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
                    position: relative;
                }

                    #dv-breadCrumb > ul > li > ul > li > a.active {
                        color: #1F92C8;
                        background-color: #fff;
                        cursor: default;
                        margin-right: 2px;
                        box-shadow: 0 0 2px rgba(0,0,0,0.4);
                    }

                #dv-breadCrumb > ul > li > ul > li:last-child a {
                    padding-left: 25px;
                }

                /* Hover event */
                #dv-breadCrumb > ul > li > ul > li:hover a {
                    color: #1F92C8;
                    background-color: #fff;
                }

/** Pump Selection and Quote Log Table CSS **/
.dv-PumpSelectionLog, .dv-QuoteLog, .dv-ErrorLog {
    border: 1px solid #dedede;
    max-height: 500px !important;
    width: 100%;
    display: inline-block;
    overflow: auto;
}

.tblPumpSelectionLog, .tblQuoteLog, .tblErrorLogs {
    display: table;
    width: 100%;
    max-height: 500px;
    max-width: 1120px;
    border: 1px solid #dedede;
}

    .tblPumpSelectionLog > tbody, .tblQuoteLog > tbody, .tblErrorLogs > tbody {
        overflow-y: scroll;
        max-height: 500px;
    }

    .tblPumpSelectionLog > thead > tr > td, .tblQuoteLog > thead > tr > td, .tblErrorLogs > thead > tr > td {
        position: sticky;
        top: -1px;
    }

@-moz-document url-prefix() {
    .tblPumpSelectionLog > thead > tr > td, .tblQuoteLog > thead > tr > td, .tblErrorLogs > thead > tr > td {
        box-shadow: inset 1px 0px #000, 0 1px #000;
    }
}

/*Error Logs*/

.exceptionDate {
    width: 10% !important;
}

#errorLogEmail {
    float: right;
    margin-top: -20px;
}

/*Toggle checkbox*/
.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 25px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 6px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #1F92C8;
}

input:focus + .slider {
    box-shadow: 0 0 1px #1F92C8;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }


/*Error page*/

#body-errorPage {
    display: flex;
}

    #body-errorPage > div {
        position: relative;
    }

        #body-errorPage > div > div {
            text-align: center;
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

            #body-errorPage > div > div > h4 {
                color: black;
            }

            #body-errorPage > div > div > div > button {
                font-size: 13px;
            }

/*Table order*/

#chkSelectAll {
    width: 60px;
}

/*Index page buttons*/

.btn-index-darkBlue {
    background-color: #004B8D;
}

.btn-index-mobile-darkBlue {
    width: 100%;
    background-color: #004B8D;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
}

.btn-index-lightBlue {
    background-color: #1f92c8;
}

.btn-index-mobile-lightBlue {
    width: 100%;
    background-color: #1f92c8;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
}

    .btn-index-mobile-lightBlue > .fa-t:before {
        padding-left: 4px;
        padding-right: 4px;
        font-size: 12px;
        border: 2px solid white;
    }

.indexPageButton > .fa, .indexPageButton > .fas, .indexPageButton > .far {
    position: absolute;
    top: 20px;
    left: 16px;
}

.btn-index-mobile-lightBlue > .fa, .btn-index-mobile-lightBlue > .fas, .btn-index-mobile-lightBlue > .far, .btn-index-mobile-darkBlue > .fa, .btn-index-mobile-darkBlue > .fas, .btn-index-mobile-darkBlue > .far {
    position: absolute;
    left: 14px;
}

.indexPageButton {
    height: 142px !important;
    position: relative;
    margin: 0px -5px 9px 9px;
    width: 360px !important;
}

.btn-index-mobile-lightBlue > .fa-t {
    top: 9px !important;
}

.fa-t {
    top: 15px !important;
}

    .fa-t:before {
        font-family: monospace;
        font-weight: bold;
        content: 'T';
        border: 3px solid white;
        border-radius: 3px;
        padding-left: 6px;
        padding-right: 6px;
        font-size: 20px;
    }

/*Product Cross Reference*/

#tblMainProdCrossRef > tbody > tr > td > table {
    border: 1px solid black;
    margin: 2px;
}

#tblProdCrossReference > tbody > tr > td {
    padding: 15px;
}

.dv-inline {
    display: inline-flex;
}

#tblProdCrossReference > tbody > tr > td > div > p {
    width: 240px;
}

.dv-red-txt {
    color: red;
}

#competitorId {
    width: 215px;
    height: 35px;
}

#competitorModelId, #allFloPartNumber {
    width: 205px;
    font-size: 1em;
}

#allFloPartNumber {
    background-color: lightgray;
}

select:disabled {
    color: gray;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

#tblSparePartsPopup td, th {
    font-size: 10px;
}

#tblSparePartsPopup th {
    height: 20px;
    font-size: 11px;
}

.tblSparePartsPopup-header {
    margin-bottom: 5px;
}

.diplay-none {
    display: none;
}

.tr-testParameters {
    font-size: 11px !important;
}

#td-extendedDesc > li {
    margin-left: 20px;
    height: 0px;
}

.jump-mat-drop {
    width: 250px;
}

#jump-mat-drop-container .SealMaterial {
    width: 250px;
}

#seal-mat-hint span {
    font-size: 12px;
}

#seal-mat-hint .lbl {
    display: inline-block;
    width: 60%;
}

.font-wt-bld {
    font-weight: bold;
}

#jump-mat-drop-container #seal-mat-hint .lbl {
    width: 41%;
}

.material-tag {
    display: grid;
}

.jump-material-tag {
    margin-top: 12px;
}

.variable-speed-input {
    width: 50%;
    float: left;
    margin: 2px;
    font-size: 0.9em;
}

.div-variable-speed {
    display: flex;
}

.speed-range {
    font-size: 10px;
    font-weight: bold;
}

#calculation-mode-container {
    margin-top: 10px;
}

.display-none {
    display: none;
}

.btn-refresh:disabled {
    background-color: #7E868C;
    border: 0px;
    cursor: default;
}

input.invalid {
    border: 1px solid #FF0000;
}

    input.invalid:focus {
        border-color: red !important;
        -webkit-box-shadow: inset 0 1px 1px rgba(255,0,0,0.3),0 0 6px red !important;
        box-shadow: inset 0 1px 1px rgba(255,0,0,0.3),0 0 6px red !important;
        outline-color: red !important;
    }

.td-lineItem-qty {
    border: none;
    border-bottom: 1px solid darkgray !important;
    margin-top: 0em;
}

    .td-lineItem-qty > input[type=number]::-webkit-outer-spin-button,
    .td-lineItem-qty > input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: inner-spin-button !important;
        opacity: 1;
    }

#tbladmin > tbody > tr > td > table > tbody > tr > td > button {
    width: 250px !important;
}

#admincontainer {
    padding: 5px 0;
    margin-bottom: 5px;
}

.dvAdminBtn {
    width: 100%;
}

#salesTeamInfoList, #quoteLogList, #pumpSelectionList, #ProjectQuoteLogList {
    border: 1px solid #dedede;
    max-height: 350px;
    overflow-y: auto;
}

    #salesTeamInfoList .row, #quoteLogList .row, #ManageUserRolesList .row, #pumpSelectionList .row, #ProjectQuoteLogFilters .row {
        padding: 0;
    }

#tblSalesInfo thead, #tblQuoteLog thead, #tblManageUserRoles thead, #tblPumpSelectionLog thead, #tblProjectQuoteLog thead {
    vertical-align: middle;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    background-color: #004B8D;
    border: 1px solid;
}

#tblSalesInfo tbody, #tblQuoteLog tbody, #tblManageUserRoles tbody, #tblPumpSelectionLog tbody, #tblProjectQuoteLog tbody {
    font-size: 11px;
}

#quotefilters .form-label, #ManageUserRolesList .form-label, #recentPumpSelectionFilters .form-label, #ProjectQuoteLogFilters .form-label {
    padding: 10px;
    font-size: 11px;
    font-weight: normal;
    text-align: right;
    display: block;
}

#recentPumpSelectionFilters .form-check-label, #quotefilters .form-check-label {
    padding: 5px;
    font-size: 11px;
    font-weight: normal;
}

#quotefilters .form-control, #ManageUserRolesList .form-control, #recentPumpSelectionFilters .form-control, #ProjectQuoteLogFilters .form-control {
    border-radius: 0;
    font-size: 12px;
}

#recentPumpSelectionFilters input[type="checkbox"], #quotefilters input[type="checkbox"] {
    border: 1px solid #dedede;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 0;
}

#RegionalMngrFilter input[type="radio"] {
    margin: 15px 0;
}

#ePortalPriceSheet > div {
    overflow-y: auto;
    max-height: 564px;
    display: inline-block;
    height: 564px;
    vertical-align: top;
    border: none;
}

#tblePortalPriceSheet > tbody > tr:first-child > td {
    font-size: 14px;
    height: 30px;
    vertical-align: middle;
    color: white;
    background-color: #004B8D;
}


#tblePortalPriceSheet > tr:first-child {
    height: 18px;
    border-bottom: 2px solid black;
}

#ProductTable thead {
    display: table-header-group;
}

#ProductTable tr {
    page-break-inside: avoid;
}

#ProductTable tfoot {
    display: table-row-group;
}

/***************************** Mouvex Search Page **********************/
#search-container > div > h3 {
    font-size: 1.5em;
    font-weight: bold !important;
}

.input-txt {
    width: 75px !important;
    margin: 10px 0;
}

.input-ddl {
    width: 50px;
}

.liquid-section, .conditions-section, .pumptype-section {
    padding-right: 10px;
    border-right: 1px solid #dcdcdc;
    border-color: #004b8d;
    border-width: 3px;
}

.ddlSeries {
    width: 100%;
}

.fa-info-circle {
    color: #1f92c8;
}

#dvUserSelection, #dvSelectedModelsList, #dvSearchInputVariations {
    border: 1px solid #d3d3d3;
    padding: 10px;
    height: 450px;
}

.selectedModelsList {
    overflow: auto;
    width: 100%;
    border: none;
}

    .selectedModelsList :disabled {
        color: #dedede;
    }

    .selectedModelsList option {
        padding: 5px 0;
        border: 1px solid #dedede;
        background-color: dimgray;
        color: whitesmoke;
    }

#dvAdvSearchResults {
    border: 1px solid #d3d3d3;
    margin-top: 10px;
    height: auto;
}

#dvUserSelection p, #dvUserSelection select {
    margin-bottom: 10px;
}

#dvSelectedModelsList ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    #dvSelectedModelsList ul li {
        padding: 5px 0;
        border: 1px solid #F5F5F5;
    }

#PumpSelectionMsg {
    font-size: 12px;
}

#dvSearchInputVariations input {
    width: 50px;
}

    #dvSearchInputVariations input[type="checkbox"] {
        width: auto;
    }

#dvSearchInputVariations label, #dvSearchInputVariations span, #dvSearchInputVariations p {
    padding: 5px;
    text-align: right;
    margin: 0;
}

#dvSearchInputVariations .txtRight {
    float: right;
}

#dvSearchInputVariations .row {
    margin-bottom: 5px;
}

/*************************** End User License Agreement *******************/
#eulaText {
    max-height: 300px;
    overflow-y: scroll;
}

#projectHeader, #lineHeader {
    width: 140px;
}

#menu-desktop-view > ul {
    margin-top: 12px;
}
