﻿/** NORMALIZE */
html {
  font-family: "Open Sans", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.875em;
  color: #363545;
}
body{
    background: #F3F3F7;
    color: #363545;
    font-size: 14px;
    margin: 0;
}

/*** LINKS ***/
a:link, a:visited {
	color: #197cb6;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #005f9e;
}
a:active {
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: none;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}
b,
strong {
  font-weight: bold;
}
h1{font-size: 220%; margin-bottom: 24px; line-height: 120%; }
h1, h2, h3, h4, h5, h6{font-weight: normal;}
.element-invisible{
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
}
/*FORMS*/
input[type=text],
select,
textarea,
input[type=Password]{
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
    max-width: 100%; /* 5 */
    background: #fff;
	border: #AEAEB6 1px solid !important;
    border-radius: unset !important;
	width: 100%;
}
input[type=text], input[type=Password]{
    padding: 6px 0;
}
input[type=text]:disabled {
    border: #EAEAEF 1px solid !important;
}
input[type=text]:focus{
    outline: none !important;
    border: #005f9e 1px solid !important;
}
select{
    background-image: url('../Images/rebrand/select-list-chevron.png');
    background-repeat: no-repeat;
    background-position: 100% 3px;
    padding: 6px 5px;
    padding-right: 24px;
	-webkit-appearance: none;  /*Removes default chrome and safari style*/
	-moz-appearance: none; /* Removes Default Firefox style*/
	text-indent: 0.01px; /* Removes default arrow from firefox*/
	text-overflow: "";  /*Removes default arrow from firefox*/
}
select::-ms-expand {
    display: none;
}
.form-elements{
    display: block;
    position: relative;
}
    .form-elements.checkboxes{
        overflow: hidden;
        margin-top: 32px;
    }
    .form-elements.checkboxes .form-item-wrapper{
        position: relative;
        display: inline-block;
        width: auto;
        padding-right: 20px;
        overflow: hidden;
    }
        .form-elements.checkboxes .form-item-wrapper .form-element, .form-elements.checkboxes .form-item-wrapper .form-label{
            display: inline-block;
            position: relative;
            width: auto;
        }
            .form-elements.checkboxes .form-item-wrapper .form-element.checkbox {
                padding-top: 5px;
                padding-right: 2px;
            }
/** BUTTONS */
button, .button, input[type="button"]{
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0;
    border: 0 !important;
    border-radius: 4px;
    background-color: #197cb6;
    height: auto;
    padding: 8px 12px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
button, input[type="button"], .button, .btninactive{
    background-color: #197cb6 !important;
}
button:hover, html input:hover[type="button"], input:hover[type="submit"]{
    background-color: #005f9e !important;
}
a.button:hover{background-color: #005f9e !important;}
.button a, a.button{color: #fff;}

.button.secondary, button.secondary {
    border: #197cb6 1px solid !important;
    background-color: #fff !important;
    color: #197cb6 !important;
}
.button.secondary:hover, button.secondary:hover {
    background-color: #005f9e !important;
    border: #005f9e 1px solid !important;
    color: #fff !important;
}

.button.yellow, button.yellow{
    background-color: #FFBE00 !important;
    color: #363545 !important;
}
    .button.yellow:hover, button.yellow:hover {
        background-color: #ffa500 !important;
    }
.button.btninactive{
    opacity: 0.4;
    cursor: default;
}
.button.btninactive:hover {
    background-color: #197cb6 !important;
}    
.button.btninactive.secondary:hover {
    background-color: #fff !important;
    border: #197cb6 1px solid !important;
    color: #197cb6 !important;
}    

/*MESSAGES*/
.message{
    display: block;
    padding: 24px 12px 24px 24px;
    line-height: 150%;
    margin: 24px 0;
    border-width: 0px 0px 0px 10px;
}
.message.info-message{
    background-color: #CFE1EE;
    border-left: #005F9E 8px solid;
}
.message .login-msg, .message a{
    color: #005f9e;
    font-weight: bold;
    cursor: pointer;
}
    .message .login-msg:hover, .message a:hover {
        text-decoration: underline;
    }


/*COLUMNS*/
.two-column, .three-column{
    overflow: hidden;
}
/* TWO COLS*/
.two-column .column{
    float: left;
    width: 50%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.two-column .column:nth-child(2n+1){
    margin-left: 0%;
    margin-right: -50%;
}
.two-column .column:nth-child(2n){
    margin-left: 50%;
    margin-right: -100%;
}
/*THREE COLS*/
.three-column .column{
    float: left;
    width: 33.33333%;
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.three-column .column:nth-child(3n+1){
    margin-left: 0%;
    margin-right: -33.33333%;
}
.three-column .column:nth-child(3n+2) {
    margin-left: 33.33333%;
    margin-right: -66.66667%;
}
.three-column .column:nth-child(3n) {
    margin-left: 66.66667%;
    margin-right: -100%;
}

/** ACCORDIONS */
.accordionButton, .accordion-header{
    background: #fff !important;
    background-image: url('../Images/rebrand/select-list-chevron.png') !important;
    padding: 10px 5px;
    padding-right: 24px;
    background-repeat: no-repeat !important;
    background-position: 100% 12px !important;
    text-transform: uppercase;
    border-bottom: #eaeaef 2px solid !important;
    cursor: pointer;
}
.accordionButton:hover, .accordion-header:hover{
    border-bottom: #005f9e 2px solid !important;
    color: #005f9e;
}
    .accordionButton.on, .accordion-header.active-header {
        border-bottom: #009ad9 2px solid !important;
        background-position: 100% -36px !important;
    }
.accordionContent{
    position: relative;
    background-color: #fff;
    border: #d0d0d7 1px solid;
    padding: 12px;
    width: auto;
}
.accordionContent.accordion-dropdown{
    position: absolute;
    width: 100%;
    z-index: 2;
    right: 0;
}
.wraper{
    width: 100%;
    height: auto;
    background: #fff;
    -moz-box-shadow: 1px 1px 12px #BFBFC6;
    -webkit-box-shadow: 1px 1px 12px #BFBFC6;
    box-shadow: 1px 1px 12px #BFBFC6;
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#BFBFC6')";
    /* For IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#BFBFC6');
}
.header{
    width: 100%;
    min-width: 640px;
    background-color: #fff;
}
.header .branding{
    clear: left;
    padding-left: 0;
    padding-right: 0;
}
    .header .branding a{
        display: block;
        position: relative;
        padding-left: 10px;
    }
        .header .branding a #LOGO{
            float: left;
        }
        .header .branding a .app-name{
            float: left;
            display: block;
            color: #363545;
            text-transform: uppercase;
            font-size: 150%;
            padding: 24px 10px;
        }
        .header .branding a:hover .app-name {
            color: #005f9e;
        }
.header .actions{
    position: relative;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
}
    .header .actions .action-items{
        float: right;
        list-style-type: none;
        padding-right: 10px;
    }
        .header .actions .action-items li{
            float: left;
            margin-left: 12px;
            margin-right: 12px;
            min-width: 32px;
            min-height: 32px;
        }
            .header .actions .action-items li .icon-24{
                background-repeat: no-repeat;
                background-position: center 0;
                padding-top: 20px;
                color: #363545;
                font-size: 70%;
                text-transform: uppercase;
                display: block;
                cursor: pointer;
            }
            .header .actions .action-items li .icon-24.request{background-image: url('../Images/rebrand/icons/request-24.png');}
            .header .actions .action-items li .icon-24.cart{background-image: url('../Images/rebrand/icons/cart-24.png');}
            .header .actions .action-items li .icon-24.user{background-image: url('../Images/rebrand/icons/user-24.png');}
            .header .actions .action-items li .icon-24:hover{
                color: #005f9e;
                background-position: center -48px;
            }
   
/** FRONT MENU **/
    .header-wrapper .overlay{
        display: none;
        z-index: 1;
        top: 80px;
    }
    .header.header-front .branding {
        padding-top: 5px;
        width: 450px;
        margin-right: -60%;
    }
    .header .branding .header-trimble-logo {
        float: left;
        padding: 0 12px;
        border-right: #e2e2e7 1px solid;
        margin-top: 24px;
        margin-right: 12px;
    }
    .header.header-front .menu-links{
        width: 60%;
        margin-left: 40%;
        margin-right: 0;
    }
    .header .menu-links .menu-wrapper{float: right;}
        .header.header-front .menu-switch{
            display: none;
        }
        .header .menu-links .menu{
            float: left;
            padding: 24px 0;
            margin: 0;
        }
            .header .menu-links .menu li {
                float: left;
                display: block;
                margin: 0px 10px;
            }
            .header .menu-links .menu li.signin-menu-item{display: none;}
            .header .menu-links .menu li.trimble-menu-logo{
                display: none;
                background-color: #005f9e;
            }
                .header .menu-links .menu li a {
                    font-weight: bold;
                }
                .header .menu-links .menu li .button{
                    padding: 5px 32px;
                    font-weight: bold;
                    display: inline-block;
                }
                .header .menu-links .menu li .button.yellow{
                    border: #FFBE00 1px solid !important;
                }
            /*LOGIN BUTTON*/
           .header .menu-links .signin-wrapper{
                float: left;
                display: inline-block;
            }
            .header .menu-links .signin-wrapper .ButtonLogin {
                margin-top: 24px;
                margin-right: 12px;
                /* display: block; */
                font-weight: bold;
                padding: 5px 32px;
                border: #FFBE00 1px solid !important;
            }
         /*SUB MENU*/
            .header .menu-links .menu .content-menu {
                float: left;
            }
            .header .menu-links .menu .content-menu a.content-menu-handler {
                display: inline-block;
                padding: 5px 0;
                border-bottom: #fff 2px solid;
            }
                .header .menu-links .menu .content-menu:hover a {
                    border-bottom: #009ad9 2px solid;
                    color: #009ad9;
                }
                .header .menu-links .menu .content-menu .content-sub-menu{
                    display: none;
                    z-index: 2;
                    background: #fff;
                    border: #d0d0d7 1px solid;
                    overflow: hidden;
                    position: absolute;
                    margin: 0;
                    padding: 0;
                }
                    .header .menu-links .menu .content-menu .content-sub-menu li {
                        clear: left;
                        margin: 0;
                        padding: 0;
                        display: block;
                        width: 100%;
                    }
                        .header .menu-links .menu .content-menu .content-sub-menu li a{
                            display: block;
                            padding: 10px;
                            width: 100%;
                            border-bottom: #d0d0d7 1px solid;
                        }
                            .header .menu-links .menu .content-menu .content-sub-menu li a:hover {
                                background-color: #005f9e;
                                color: #fff;
                            }
                        .header .menu-links .menu .content-menu .content-sub-menu li:last-child a {
                            border: 0;
                        }
                        .header .menu-links .menu .signin-menu-item a{
                            background-color: #FFBE00 !important;
                            color: #363545 !important;
                        }
                            .header .menu-links .menu .signin-menu-item a:hover{
                                background-color: #FFA500 !important;
                                color: #363545 !important;
                            }
/*NAV BREAKPOINTS*/
@media all and (max-width:1100px) {
.header .branding .header-trimble-logo {
        display: none;
    }
    .header.header-front .menu-links {
        width: 70%;
        margin-left: 30%;
        margin-right: 0;
    }
}
@media all and (max-width:960px) {
    .header.header-front{
        min-width: 100%;
        width: 100%;
    }
    .header.header-front .menu-links {
        
    }
    .header.header-front .menu-wrapper{
        overflow: hidden;
        padding: 12px;
    }
    .header.header-front .branding{
        width: 320px;
        font-size: 80%;
        padding: 0;
    }
        .header.header-front .menu-switch{
                background-image: url('../Images/rebrand/icons/hamburger.png');
                background-repeat: no-repeat;
                background-position: 0 0;
                width: 30px;
                height: 30px;
                display: inline-block;
                text-indent: -9999px;
                top: -40px;
                position: relative;
                left: 10px;
                cursor: pointer;
                margin-right: 10px;
            }
            .header.header-front .menu-switch.active-menu {
                background-image: url('../Images/close_pop.png');
            }
        .header .branding a{
                display: inline-block;
            }
            .header.header-front .menu-links .menu {
                display: none;
                position: absolute;
                z-index: 3;
                background: #fff;
                left: 0;
                top: 80px;
                width: 100%;
                padding: 0;
            }
            .header .menu-links .menu li{
                float: none !important;
                display: block;
                margin: 0;
                border-bottom: #d0d0d7 1px solid;
            }
            .header.header-front .menu-links .menu  .content-menu{
                border: 0;
            }
            .header.header-front .menu-links .menu  .content-menu .content-menu-handler{
                display: none !important;
            }
                .header.header-front .menu-links .menu  .content-menu .content-sub-menu{
                    display: block !important;
                    position: relative;
                }
                .header.header-front .menu-links .menu .content-sub-menu li{
                    border: 0;
                }
                .header .menu-links .menu .nav-subscription-button a{
                    background-color: #197cb6 !important;
                    color: #fff !important;
                }
                    .header .menu-links .menu .nav-subscription-button a:hover{
                        background-color: #005f9e !important;
                    }
            .header .menu-links .signin-wrapper .ButtonLogin{margin-top:10px;}
    .header .menu-links .menu li > a{
        padding: 10px !important;
        text-align: left;
        width: auto;
        display: block;
    }
        .header .menu-links .menu li > a:hover {
            background-color: #005f9e;
            color: #fff;
        }
    .header .menu-links .menu li .button {
        padding: 10px !important;
        border: 0px !important;
        border-radius: unset;
        display: block;
        width: auto;
    }
    .header .menu-links .menu li.trimble-menu-logo{display: block;}
}

@media all and (max-width:599px) {
    .header .menu-links .menu li.signin-menu-item {
        display: block;
    }
    .header.header-front .menu-links{
        height: 0px;
    } 
    .header .menu-links .signin-wrapper{
        display: none;
    }
}

    /**ACTIVE CART**/
   .cart-wrapper{display: none;}
   .cart-wrapper.cart-visible{
       position: relative;
       width: 48px;
       text-align: center;
       display: block;
   }
       .cart-wrapper.cart-visible .cart-count{
            background: #F4D1D3;
            padding: 5px;
            border-radius: 50%;
            top: 0px;
            width: 10px;
            height: 10px;
            text-align: center;
            right: 0px;
            color: #A51D25;
            line-height: 10px;
            font-size: 110%;
            font-weight: bold;
            display: block;
            position: absolute;
       }



/**HERO**/
#hero{
	background-size:cover;
	background-position: center top;
	background-repeat: no-repeat;
	position:relative;
	height:100vh;
	}
    #hero .hero-content{
		position: relative;
		min-height: 400px;
		height: auto; 
		color: #fff;
		margin: auto;
		max-width: 770px;
        font-size: 140%;
        text-align: center;
        padding: 80px 12px 12px 12px;
	}
    #hero.hero-signin .hero-content {
        min-height: 320px;
    }
        #hero .hero-content h1 {
            font-weight: normal;
            width: 60%;
            margin: auto;
        }

        #hero .hero-content .user-options{
            margin: auto;
            margin-top: 64px;
            font-size: 75%;
            font-weight: bold;
            display: block;
        }
            #hero .hero-content .user-options a {
                display: inline-block;
            }
            #hero .hero-content .user-options span{margin: 10px;}

.grid-item{
	max-width: 770px;
    margin: auto;
    padding: 12px;
}
.block-item{
    padding: 60px 0;
}
/*CONTENT SECTION*/
.content{
    text-align: center;
    background-image: url('../Images/rebrand/cable-tray-background.png');
    background-repeat: no-repeat;
    background-position: 50% -120px;
}
.content .grid-item{
    margin-bottom: 48px;
}
.content .content-squares{
    margin: 0;
    padding: 0;
}
    .content .content-squares .square {
        display: inline-block;
        margin: 12px;
        height: 200px;
        position: relative;
        width: 320px;
        vertical-align: middle;
        background-color: #fff;
        border: #d0d0d7 1px solid;
        color: #005F9E;
    }
        .content .content-squares .square .square-label {
            position: absolute;
            top: 50%;
            left: 50%;
	        -webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
            width: 80%;
            padding-right: 32px;
            font-size: 150%;
            line-height: 150%;
        }
            .content .content-squares .square:hover {
                background-color: #005f9e;
                color: #ffbe00;
            }
            .content .content-squares .square a{
                display: block;
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                z-index: 1;
                text-indent: -9999px;
                background-image: url(../Images/rebrand/icons/chevron-yellow.png);
                background-repeat: no-repeat;
                background-position: right center;
            }
/*QUOTE SECTION*/
.quote-wrapper{
    background-color: #fff;
}
#MainDiv1, #div2{
    width: 100%;
    margin: auto;
    display: block !important;
}
.header-title{
    min-width: 960px;
    max-width: 1080px;
    margin: auto;
    display: block;
    margin: 38px auto;
    font-weight: 500;
}
    #MainDiv1 .tab-wrapper{
        min-width: 960px;
        max-width: 1080px;
        margin: auto;
        overflow: hidden;
        position: relative;
        top: 1px;
    }
        #MainDiv1 .tab-wrapper .content-tabs{
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: block;
        }
            #MainDiv1 .tab-wrapper .content-tabs li{
                float: left;
            }
                #MainDiv1 .tab-wrapper .content-tabs li .tab{
                    display: block;
                    padding: 12px 24px;
                    color: #363545;
                    font-weight: 500;
                }
                #MainDiv1 .tab-wrapper .content-tabs li .tab:hover{
                    color: #005f9e;
                }
                #MainDiv1 .tab-wrapper .content-tabs li .tab.down{
                    background: #fff;
                    border: #d0d0d7 1px solid;
                    border-width: 1px 1px 0px 1px;
                    color: #003f87;
                }
    #MainDiv1 .bd-app-table {
        margin: auto;
        padding: 0;
        min-width: 1080px;
        border-collapse: collapse;
        border-spacing: 0;
    }

.card, #Commonbox, #CoverFlow{
    background: #fff;
    padding: 12px;
    width: 100%;
    border: #d0d0d7 1px solid;
    text-align: left;
}
#Commonbox{
    /*padding-bottom: 48px;*/
}
    #Commonbox, .filter-card{border-bottom: 0;}

#CoverFlow{
    padding:0;
    margin-top: 12px;
    border-top: #d0d0d7 1px solid;
}
.filter-table{
    padding-top: 24px;
    padding-bottom: 24px;
    overflow: visible;
}
    .filter-table .column{
        border-right: 1px solid #d0d0d7 !important;
        padding-left: 0;
        padding-right: 0;
        min-height: 100px;
    }
        .filter-table .column .col-wrapper{
            padding: 0 24px;
        }
        .filter-table .unit-col .col-wrapper #ddlFileType{
            position: absolute;
            width: 1px;
        }
        .filter-table .search-by-col{
            border: 0 !important;
            padding-top: 10px;
        }
            .filter-table .search-by-col .col-wrapper {
                position: relative;
            }
    .filter-table .defaults-col{
        font-size: 85%;
    }
/*ICONS*/
.industry-icons{
    list-style-type: none;
    margin: 0;
    padding: 0;
    min-width: 180px;
}
    .industry-icons .icon{
        min-height: 32px;
        padding: 4px;
        padding-left: 52px;
        border-bottom: #d0d0d7 1px solid;
        background-repeat: no-repeat;
        background-position: 12px 4px;
        color: #363545;
        cursor: pointer;
    }
    .industry-icons #lblAll {
        background-image: url('../Images/rebrand/icons/reload-32.png');
    }
    .industry-icons #lblElectrical {
        background-image: url('../Images/rebrand/icons/electrical-32.png');
    }
    .industry-icons #lblPiping {
        background-image: url('../Images/rebrand/icons/mechanical-32.png');
    }
    .industry-icons #lblSM {
        background-image: url('../Images/rebrand/icons/sheetmetal-32.png');
    }
        .industry-icons .icon:hover{
            background-position: 12px -60px;
            color: #005f9e;
        }
        .industry-icons .icon.active{
            background-color: #197cb6;
            background-position: 12px -92px;
            color: #fff;
        }

.industry-dependant-filters {
    padding: 12px;
    margin-top: 24px;
}

.industry-dependant-filters .label-disabled{
    color: #D0D0D7;
}

/***CAROUSEL***/
#tdCoverFlow{
    background-color: #197cb6;
    width: 100%;
}
    #tdCoverFlow #PnlImages{
        padding: 24px;
        background: -moz-radial-gradient(center, ellipse cover, rgba(25,124,182,1) 0%, rgba(90,161,203,1) 0%, rgba(25,124,182,1) 66%); /* FF3.6-15 */
        background: -webkit-radial-gradient(center, ellipse cover, rgba(25,124,182,1) 0%,rgba(90,161,203,1) 0%,rgba(25,124,182,1) 66%); /* Chrome10-25,Safari5.1-6 */
        background: radial-gradient(ellipse at center, rgba(25,124,182,1) 0%,rgba(90,161,203,1) 0%,rgba(25,124,182,1) 66%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#197cb6', endColorstr='#197cb6',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
        min-height: 380px;
        min-width: 730px;
        margin: auto !important;
    }
    #tdCoverFlow .coverflow.flipster{
        min-height: 350px !important;
        display: block !important;
        position: relative !important;
        margin-top: -120px !important;
        width: 100% !important;
    }
    .flipster li > div {
        height: 180px !important;
        overflow: hidden;
        -webkit-transition: all 500ms;
        -ms-transition: all 500ms;
        transition: all 500ms;
        background-color: none !important;
        width: 100%;
        border:  #d0d0d7 8px solid;
        cursor: pointer;
        background-color: #d0d0d7 !important;
    }
        .flipster li > div:hover {
            opacity: 0.8;
        }
    .flipster li img{
        margin-top: -10px;
    }
    .flipster-current div{border:  #FFBE00 8px solid !important;}
    .flipster-current div:hover{opacity: 1 !important; border-color: #ffa500 !important;}

    /*SLIDER*/
    #slider{
        background-color: #cfe1ee !important;
        border: 0;
        height: 3px;
        width: 100% !important;
        margin: auto !important;
        bottom: -80px;
    }
        #slider .ui-slider-handle{
            background: #FFBE00;
            border: 0;
            width: 20px !important;
            height: 20px !important;
            border-radius: 50%;
            cursor: pointer;
        }
            #slider .ui-slider-handle:hover {
                background: #ffa500;
            }

/***RESULTS CARD***/
.card.results-card{
    margin-top: 24px;
}
.manufacturer-data{
    overflow: hidden;
    width: auto;
    border-bottom: 1px solid #d0d0d7;
    padding: 12px 0;
    margin: 12px;
    margin-bottom: 24px;
}
    .manufacturer-data .manufacturer-image-wrapper {
        display: block;
        float: left;
        position: relative;
        padding: 12px;
    }
        .manufacturer-data .manufacturer-image-wrapper a{
            display: block;
            border: #d0d0d7 1px solid;
            padding: 12px;
            width: 225px;
            height: 125px;
        }
        .manufacturer-data .manufacturer-image-wrapper a .logoImage{
            text-align: center;
            margin: auto;
            position: relative;
            left: 50%;
            top: 50%;
	        -webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
            max-height: 100% !important;
            max-width: 100% !important;
            min-height: auto !important;
        }

    .manufacturer-data .manufacturer-details{
        display: block;
        float: left;
        position: relative;
        padding: 24px 12px;
    }
        .manufacturer-data .manufacturer-details .manufacturer-title{
            font-weight: normal;
            font-size: 200%;
            line-height: 150%;
        }
        .manufacturer-data .manufacturer-details #lblAvailItems{
            color: #6a6976;
            font-weight: bold;
        }
        .manufacturer-data .manufacturer-details .wordwrapIE {
            font-weight: bold;
        }
#DataGrid{
    width: 100%; 
    /*min-height: 600px;*/
    /*border-top: #d0d0d7 1px solid;*/
}
    #DataGrid .data-results{
        position: relative;
        overflow: hidden;
    }
        #DataGrid .data-results .result-filters {
            padding: 12px;
            float: left;
            width: 250px;
        }
        
            #DataGrid .data-results .result-filters .cart-actions {
                border-top: #d0d0d7 1px solid;
                display: block;
                position: relative;
                margin: 24px 0;
                padding: 12px 0;
            }
                #DataGrid .data-results .result-filters .cart-actions .button {
                    display: block;
                    position: relative;
                    margin: 12px 0;
                    padding: 0;
                }
                #DataGrid .data-results .result-filters .cart-actions .cart-count {
                    display: none;
                }
                #DataGrid .data-results .result-filters #btnAddToCart{display: none;}
                #DataGrid .data-results .result-filters #btnViewCart{display: none;}
            .cart-disabled{display: none;}

        #DataGrid .data-results .results-table {
            padding: 12px;
            float: left;
            width: 700px;
        }
            #DataGrid .data-results .results-table #pnlHTMLGrid {
                width: 100% !important;
            }
                #DataGrid .data-results .results-table #pnlHTMLGrid #demo, .dataTables_wrapper .dataTable{
                    width: 100% !important;
                    color: #595868;
                }
                #DataGrid .data-results .results-table #pnlHTMLGrid #demo .fg-toolbar, .dataTables_wrapper .fg-toolbar{
                    background: #fff;
                    border: 0;
                    color: #363545;
                    padding: 12px 24px !important;
                    border-radius: 0;
                }
                #DataGrid .data-results .results-table #pnlHTMLGrid .dataTable, .dataTables_wrapper .dataTable{border: 0;}
                    #DataGrid .data-results .results-table #pnlHTMLGrid .dataTable tr, .dataTables_wrapper .dataTable tr{
                        border: 0;
                        display: block;
                        padding: 12px;
                    }
                #DataGrid .data-results .results-table #pnlHTMLGrid .dataTable tr.odd, .dataTables_wrapper .dataTable tr.odd{
                    background: #EAEAEF;
                }
                #DataGrid .data-results .results-table #pnlHTMLGrid .dataTable tr.even, .dataTables_wrapper .dataTable tr.even{
                    background: #fff;
                }

/**LOADER**/
.bar{
    background-color: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 20px !important;
}
    .bar span {
        border: 1px solid #d0d0d7 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background-image: -webkit-linear-gradient(-45deg, rgba(0, 154, 217,255) 25%, transparent 25%, transparent 50%, rgba(0, 154, 217,255) 50%, rgba(0, 154, 217,255) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(-45deg, rgba(0, 154, 217,255) 25%, transparent 25%, transparent 50%, rgba(0, 154, 217,255) 50%, rgba(0, 154, 217,255) 75%, transparent 75%, transparent);
        background-image: -ms-linear-gradient(-45deg, #009ad9 25%, transparent 25%, transparent 50%, #009ad9 50%, #009ad9 75%, transparent 75%, transparent);
        background-image: linear-gradient(-45deg, #009ad9 25%, transparent 25%, transparent 50%, #009ad9 50%, #208DBD 75%, transparent 75%, transparent );
    }


/**** OVERLAYS ****/
.viewcartdivdisable, .dialogue-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
}
    .viewcartdivdisable .cart-data-wrapper {
        padding: 48px;
        width: auto;
    }
        .viewcartdivdisable .cart-data-wrapper .cart-data-summary, .viewcartdivdisable .cart-data-wrapper .cart-data-items {
            position: relative;
            display: block;
        }
.dialogue-overlay{display: none;}
.overlay, .web_dialog_overlay{
    background-color: #363545;
    z-index: 0;
    opacity: 0.5;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}
.web_dialog_overlay {
    z-index: 99999999999999;
    display: none;
}
.web_dialog
{
    display: none;
    z-index: 999999999999999;
}
.web_dialog, .dialogue-box{
    width: 30%;
    height: auto;
    left: 50%;
	top: 50%;
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
    background-color: #F3F3F7;
    border: #D0D0D7 1px solid;
    padding: 32px;
    text-align: center;
    z-index: 2147483647;
}
#requestContentform.web_dialog{
    width: auto;
}

/*.web_dialogForFittingIssueReport
{
    display: none;
    position: fixed;
    width: 510px;
    top: 30%;
    left: 50%;
    margin-left: -190px;
    margin-top: -90px;
    background-color: #ffffff;
    border: 2px solid #25729a;
    padding: 10px;
    z-index: 999999999999999;
    font-family: MS Sans Serif;
    font-size: 10pt;
    box-shadow: 0 5px 15px #25729a;
    border-radius:5px;
}*/
.web_dialogForFittingIssueReport .web_dialog_title{
    background: none;
}
    .dialogue-box .dialogue-header, .web_dialog .dialogue-header{
        font-size: 175%;
        margin: 24px 0;
        display: block;
    }
    .dialogue-box .form-elements, .web_dialog  .form-elements{
        width: 66%;
        margin: auto;
        text-align: left;
    }
        .dialogue-box .form-elements .button, .dialogue-box .form-elements input[type=button] {
            display: block;
        }
       .dialogue-box .form-elements input[type=button]{width: 100%;} 
       .dialogue-box .form-elements .siginin-wrapper{
           margin: 12px 0;
       }
        .dialogue-box .form-elements .siginin-wrapper #ForgetPassword {
            float: right;
            font-size: 80%;
        }
.web_dialogForgetPassword{
    left: 50%;
	top: 50%;
	position: fixed;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
    background-color: #F3F3F7;
    border: #D0D0D7 1px solid;
    display: none;
}



/**SLIDER**/
#quote_slideshow {
    max-width: 770px;
    margin: auto;
    font-size: 120%;
    min-height: 250px;
    position: relative;
}
    #quote_slideshow .quotes{
        overflow: hidden;
        list-style-type: none;
        border-left: #ffbe00 12px solid;
        position: absolute;
        display: block;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
        #quote_slideshow .quotes .quote{
            display: block;
            display: none;
        }
            #quote_slideshow .quotes .quote.active-slide {
                display: block;
            }
    .slide-counter-wrapper{
        text-align: center;
    }
        .slide-counter{
            list-style-type: none;
            margin: auto;
            padding: 0;
            display: block;
            margin-top: 24px;
        }
            .slide-counter li {
                display: inline-block;
                width: 12px;
                height: 12px;
                background: #d0d0d7;
                margin: 5px;
                border: #d0d0d7 4px solid;
                border-radius: 50%;
                text-indent: -9999px;
                cursor: pointer;
            }
                .slide-counter li:hover {
                    border-color: #AEAEB6;
                }
            .slide-counter .active-key{
                background: #ffbe00;
            }

/**FOOTER**/
.footer-wrapper .footer-front {
    margin-top: 0;
}
.footer{
    background-color: #00437b;
    color: #fff;
    padding: 32px;
    margin-top: 80px;
}
    .footer a {
        color: #FFBE00;
    }
    .footer a:hover {
        color: #FFA500;
    }
    .footer .footer-logos{
        display: block;
        list-style-type: none;
        padding: 0;
        margin: 0;
        overflow: hidden;
        display: block;
        margin-bottom: 12px;
    }
        .footer .footer-logos li {
            float: left;
            margin-right: 24px;
        }
            .footer .footer-logos li a {
                display: block;
                color: #fff;
                background-repeat: no-repeat;
                background-position: 0 0;
                padding-left: 36px
            }
            .footer .footer-logos li a:hover {
                background-position: 0 -64px;
            }
                .footer .footer-logos li a.trimble-logo {
                    padding: 0;
                }
                .footer .footer-logos li a.trimble-mep-link {
                    background-image: url('../Images/rebrand/icons/arrow-white-32.png');
                }
                .footer .footer-logos li a.contact-mep {
                    background-image: url('../Images/rebrand/icons/email-white-32.png');
                }
                .footer .footer-logos li a:hover {
                    color: #FFA500;
                }
    .footer .trimble-copyright {}
        .footer .trimble-copyright a {
            margin-left: 12px;
        }
        
    .footer.footer-front {}
        .footer.footer-front .trimble-mep {
            margin-bottom: 48px;
        }
        .footer.footer-front .trimble-mep .about-mep {
            font-size: 90%;
            line-height: 180%;
        }
            .footer.footer-front .trimble-mep .about-mep h1 {
                font-size: 150%;
                margin-bottom: 0;
            }
            .footer.footer-front .trimble-mep .about-mep p {
                color: #cfe1ee;
            }

/*** MEDIA QUERIE BREAKPOINTS***/
@media all and (max-width:599px){
    #hero .hero-content {
        font-size: 110%;
        padding: 50px 12px;
    }
    #hero .hero-content h1{
        width: auto;
    }
    #hero .user-options{
        max-width: 60%;
    }
        #hero .user-options a, #hero .user-options span {
            width: auto;
            display: block !important;
            line-height: 150%;
        }
        #hero .user-options span {
            width: 100%;
        }
    #quote_slideshow {
        font-size: 100%;
        line-height: 150%;
        min-height: 350px;
    }
    
    .content .content-squares .square {
        width: 90%;
    }
        .content .content-squares .square:hover {
            color: #FFBE00;
        }
    .footer.footer-front .column{
        margin: 0;
        width: 100%;
        float: none;
    }
}
@media all and (min-width:599px) {
    #hero .hero-content .user-options a {
        display: inline-block;
        min-width: 200px;
    }
    .footer.footer-front .trimble-mep {}
        .footer.footer-front .trimble-mep .about-mep{
            border-right: #cfe1ee 1px solid;
            padding-right: 24px;
        }
        .footer.footer-front .trimble-mep .mep-links{
            padding-left: 24px;
        }
            .footer.footer-front .trimble-mep .mep-links .footer-logos {
                margin-top: 32px;
            }
                .footer.footer-front .trimble-mep .mep-links .footer-logos li {
                    float: none;
                    margin-bottom: 12px;
                }
}
