﻿/* Product page*/
.product-grid-outer{
    margin-top:20px;
}

.product-container-outer{
    /*background: #fff;
    background: -moz-linear-gradient(45deg, #ddd 50%, #fff 100%);
    background: -webkit-linear-gradient(45deg, #ddd 50%, #fff 100%);
    background: linear-gradient(45deg, #ddd 50%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#ddd, endColorstr=#fff,GradientType=1 );*/
}


.product-list-view
{
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    /*border-style: solid;
    border-width: 1px;*/
    display: table;
    width: 100%;
    height: 100%;
}
.product-grid-view
{
    margin-top: 0;
    margin-left: -10px;
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    /*border-style: solid;
    border-width: 1px;*/
    display: table;
    width: 100%;
    height: 100%;
}


.product-caption
{
    caption-side:block-start; 
    display: table-caption; 
    /*text-align: center;*/ 
}

.product-row{
  display:table-row;
  /*width:auto;*/
  clear:both;
}
.product-col{
    /*float:left;*/
    font-size: 12px;
    display:table-cell;
}
.product-col-mid{
  width:150px;
  padding: 5px;
}
.product-col-long{
    min-width: 150px;
    padding: 5px;
}
.product-col-short{
  width: 75px;
  padding: 5px;
}

.product-img-small{
    width:25%;
    height:auto;
    max-width:50px;
}

.products-header-container
{
    margin: 0;
    padding: 0;
    display: table;
    width: 100%;
    height: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}


.header.product-row, .header.product-row a
{
    font-weight: bold;
    /*background-color:#8a90d5;*/
    background-color:#7ad98f;
    color:#fff;
}

/* alternate row styling */
@media only screen and (min-width: 760px) {
    .header { background-color: #9ca99b; }
    .product-row:not(.header):nth-child(odd)    { background-color:#eee; }
    .product-row:not(.header):nth-child(even)   { background-color:#fff; }
    .product-row:not(.header):hover {
        background-color: #3ac98f;
        /*cursor: pointer;*/
        color: #fff;
    }
}

.product-view-detail-text
{
    color:#fff;
    font-weight: bold;
}

/* #### Mobile Phones Portrait or Landscape (Galaxy Fold: 280 * 653) #### */
@media screen and (max-device-width: 280px) and (orientation: portrait) {
    /* some CSS here */
    .product-row {
        max-width: 250px;
        margin-left: 0px;
    }
}

/* #### Mobile Phones Portrait #### */
@media screen and (min-device-width: 300px) and (max-device-width: 320px) and (orientation: portrait) {
    /* some CSS here */
    .product-row {
        max-width: 300px;
        margin-left: 0px;
    }
}


/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
    /* some CSS here */
    .product-row {
        max-width: 300px;
        margin-left: 45px;
    }
}

/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (min-device-width: 320px) and (max-device-width: 640px) {
    /* some CSS here */
    .product-row {
        max-width: 300px;
        margin-left: 45px;
    }
}

/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    /* some CSS here */
    .product-row {
        max-width: 300px;
        margin-left: 25px;
    }
}

/* #### iPhone 5 Portrait or Landscape #### */
@media (device-height: 568px) and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    /* some CSS here */
    .product-row {
        max-width: 300px;
        margin-left: 0px;
    }
}

/* #### iPhone 6 and 6 plus Portrait or Landscape #### */
@media (min-device-height: 667px) and (min-device-width: 375px) and (-webkit-min-device-pixel-ratio: 3) {
    /* some CSS here */
    .product-row {
        max-width: 300px;
        margin-left: 45px;
    }
}

/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* some CSS here */
    .product-row {
        max-width: 300px;
        margin-left: 25px;
    }
}

/* #### Desktops #### */
@media screen and (min-width: 1024px) {
    /* some CSS here */
    .product-row {
        max-width: 300px;
        margin-left: 25px;
    }
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    /* not able to make the color below product-row?*/
    /*.product-container-outer{
        background: #fff;
        background: -moz-linear-gradient(45deg, #ccc 50%, #fff 100%);
        background: -webkit-linear-gradient(45deg, #ccc 50%, #fff 100%);
        background: linear-gradient(45deg, #ccc 50%, #fff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#ccc, endColorstr=#fff,GradientType=1 );
    }*/
    /* alternate row styling */
    .header { background-color: #9ca99b; }
    .product-row:not(.header):nth-child(odd)    { background-color:#fff; }
    .product-row:not(.header):nth-child(even)   { background-color:#fff; }


    /* Force table to not be like tables anymore */
    .product-list-view, .product-caption, .header, .product-row, .product-col {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .header .product-row, .header .product-col {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .product-row:not(.header) {
        border: 1px solid #ccc;
        margin-bottom:10px;
    }
    
    .product-row:not(.header):hover
    {
        /*border: 1px solid rgb(0,120,186);*/
        border: 1px solid #3ac98f;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        cursor: pointer;
        /*background: rgb(0,120,186);
        background: -moz-linear-gradient(45deg, rgba(0,120,186,1) 0%, rgba(78,166,214,1) 100%);
        background: -webkit-linear-gradient(45deg, rgba(0,120,186,1) 0%,rgba(78,166,214,1) 100%);
        background: linear-gradient(45deg, rgba(0,120,186,1) 0%,rgba(78,166,214,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0078ba', endColorstr='#4ea6d6',GradientType=1 );*/
    }

    /*.product-col:nth-child(odd){
         background-color:#53dddd; 
    }*/
    /*.product-col:nth-child(even)   { background-color:#b1d10a; } */

    .product-col {
        /* Behave  like a "row" */
        border: none;
        /*border-bottom: 1px solid #eee;*/
        position: relative;
        padding-left: 40%;
        width:100%;
        display: inline-block;
    }

    .product-col:before {
        /*  Now like a table header  */
        position: absolute;
        /* Top/left values mimic padding  */
        top: 6px;
        left: 6px;
        /*width: 45%;*/
        padding-right: 10px;
        white-space: nowrap;
        color: rgba(0, 0, 0, 0.5);
        font-weight: bold;
    }
    /* Use for empty cell to take space */
    .product-col:after {
        content: ".";
        visibility: hidden;
    }

    /*
	Label the data
	*/
    .product-col-view-details {
        display: block;
        width: 100%;
        background-color: #3ac98f;
        color: #fff;
        padding: 1.125em 0;
        text-align: center;
        font-weight: bold;
    }
    .product-view-detail-text
    {
        visibility:visible;
    }
}


.product-caption input, .product-caption select
{
    width: 150px;
    margin-bottom:5px;
}

#submit-button
{
    width: 200px;
    margin: 5px;
}
#reset-button
{
    width: 150px;
    margin: 5px;
}



/* bootstrap 3 helpers */
#nav.affix {
    position: fixed;
    top: 68px;
    width: 100%;
    z-index:1000;
}

/*#product-toggle-caption {
    display: none;
}*/

/*.navbar-toggle-products {
    display: none;
}*/


.btn-submit.hover {
    color:#000;
    background-color: transparent;
}

.navbar-form {
    padding:0;
}

#products-category-dropdown
{
    margin-left: 50px; 
    margin-bottom:10px; 
    margin-top:10px; 
    display:inline-block;
}

#products-producttype-dropdown {
    margin-left:50px; 
    margin-bottom:10px; 
    margin-top:10px; 
    display:inline-block;
    height: 16px;
}

.btn-submit{
    background-size: 20px;
    border: 0 none;
    color:#000;
    background-color: transparent;
    cursor: pointer;
    height: 30px;
    min-width: 20px;
    padding: 0;
    position: absolute;
    right: 70px;
    top: 8px;
    width: 30px;
}

#product-form-control {
    display:inline-block;
    margin-bottom:10px; 
    margin-top:10px; 
    margin-left: 50px; 
    height:16px; 
    width:200px;
}


@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    #submit-button
    {
        width: 100px;
        margin: 5px;
    }
    #reset-button
    {
        width: 100px;
        margin: 5px;
    }
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    #nav.affix {
        top: 50px;
    }
}





/*************************/


/*#nav{
    margin-top:-50px;
}*/

#products-plus-sign
{
    color:#fff;
}
#products-minus-sign
{
    color:#fff;
}

#products-image-caption {
    top:150px;
    left:110px;
    position: absolute; 
    font-size:36px;
    color:#fff; 
    font-weight: bold;
    display: none;
}

.navbar-toggle-products
{
    display: none;
}

#products-toggle-caption {
    display: none;
}

#nav {
    /*display: none;*/
}
.product-img-link:after
{
    font-family: 'Glyphicons Halflings';
    content: '\e060';
    padding: 2px;
}

.product-img-link-solid:after
{
    color:#2a6429;
}

@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    #products-image-caption
    {
        display: none;
    }
    #products-toggle-caption
    {
        width:  100%;
        padding: 10px; 
        margin: 0 auto;
        position: relative; 
        color:#fff; 
        display:inline-block;
        font-weight:bold;
    }

    #nav{
        display: inline-block;
    }

    .navbar-toggle-products
    {
        display:inline-block;
        padding: 0; 
        margin-top: 0;
        margin-right: 0;
    }

    .navbar-toggle:hover, .navbar-toggle:active, navbar-toggle:visited {
        background-color: transparent !important;
    }

    #product-image-caption
    {
        display: none;
    }

    .btn-submit {
        top: 8px;
        left:236px;
    }
    .navbar-toggle{
        margin: 0;
    }

    .navbar-products-container{
       padding: 0 !important;
       margin: 0 !important;
       width: 100%;
    }
}


/* gird view-list view */
/*#view-text
{
    float: left;
    margin: 5px;
}*/


/* #### Mobile Phones Portrait or Landscape (Galaxy Fold: 280 * 653) #### */
@media screen and (max-device-width: 280px) and (orientation: portrait) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 0 !important;
        margin-bottom: 10px;
    }
}

/* #### Mobile Phones Portrait #### */
@media screen and (min-device-width: 300px) and (max-device-width: 320px) and (orientation: portrait) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 20px !important;
        margin-bottom: 10px;
    }
}


/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 20px !important;
        margin-bottom: 10px;
    }
}

/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (min-device-width: 320px) and (max-device-width: 640px) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 20px !important;
        margin-bottom: 10px;
    }
}

/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 20px !important;
        margin-bottom: 10px;
    }
}

/* #### iPhone 5 Portrait or Landscape #### */
@media (device-height: 568px) and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 0px !important;
        margin-bottom: 10px;
    }
}

/* #### iPhone 6 and 6 plus Portrait or Landscape #### */
@media (min-device-height: 667px) and (min-device-width: 375px) and (-webkit-min-device-pixel-ratio: 3) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 20px !important;
        margin-bottom: 10px;
    }
}

/* #### Tablets Portrait or Landscape (ipad) #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 20px !important;
    }
}

/* #### Desktops #### */
@media screen and (min-width: 1024px) {
    /* some CSS here */
    #view-switch-container {
        margin-top: 10px;
        display: inline;
        margin-left: 0px !important;
        padding-left: 0 !important;
    }
}

.view-switch
{
    /*border: 1px solid #8a90d5;*/
    border: 1px solid #7ad98f;
    margin-right:-4px;
    /*color:#8a90d5;*/
    color: #7ad98f;
    background-color:#fff;
}
.view-switch.active
{
    /*background-color:#8a90d5;*/
    background-color: #7ad98f;
    /*border: 1px solid #8a90d5;*/
    border: 1px solid #7ad98f;
    margin-right:-4px;
}

#list-view-button:after
{
    font-family: 'Glyphicons Halflings';
    content: '\e012';
    padding: 2px;
    /*background-color:#8a90d5;*/
}

#grid-view-button:after
{
    font-family: 'Glyphicons Halflings';
    content: '\e011';
    padding: 2px;
    /*background-color:#8a90d5;*/
}
.view-switch:after{
    /*color: #8a90d5;*/
    color: #7ad98f;
}
.view-switch.active:after{
    color: #fff;
    /*background-color:#fff;*/
}


.product-grid-view-item {
    text-align:center;
    /*float: left;*/
    /*width: 16%;*/
    height: 100%;
    border: 1px solid #ccc;
    /*border-radius: 10px;*/
    /*margin-right: 15px;*/
    margin-bottom: 35px;
    /*border-right: 1px dotted #CCC;*/ 
    /*border-bottom: 1px dotted #CCC;*/ 
    /*padding: 20px;*/
    padding-top: 20px;
    /*max-width: 300px;*/
    min-width: 150px;
}

.product-grid-view-ul {
    position: relative;
    max-width: 300px;
    /*list-style-type: none;*/
    /*padding: 7px 0 7px 0;*/
    /*border-bottom: 1px solid #CDCDCD;*/
    font-size: 11px;
    /*cursor: pointer;*/
}

.product-grid-view-li {
    padding: 2px 0 2px 0px;
    width: 85%;
    text-align: left;
    font-size: 12px;
}

.product-grid-view-li-right {
    float: right;
    font-weight: bold;
    /*color: #5ACFC9;*/
}

.product-img-mid{
    width: 80%;
    height:auto;
    max-width:180px;
}

.product-grid-view-item:hover
{
    /*border: 1px solid rgb(0,120,186);*/
    border: 1px solid #3ac98f;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /*background: rgb(0,120,186);
    background: -moz-linear-gradient(45deg, rgba(0,120,186,1) 0%, rgba(78,166,214,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,120,186,1) 0%,rgba(78,166,214,1) 100%);
    background: linear-gradient(45deg, rgba(0,120,186,1) 0%,rgba(78,166,214,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0078ba', endColorstr='#4ea6d6',GradientType=1 );*/
}

.fullwidthbtn{
    display: block;
    width: 100%;
    /*background-color: #0096d6;*/
    background-color: #7ad98f;
    color: #fff;
    padding: 1.125em 0;
    text-align: center;
    font-weight: bold;
}
.fullwidthbtn:hover {
    color:#fff;
    /*background-color: #006699;*/
    background-color: #3ac98f;
}



@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    .product-img-mid{
        width: 60%;
        height:auto;
        max-width:250px;
    }
    .product-grid-view-item {
        padding-top: 20px;
        /*max-width: 278px;*/
        /*margin-left: 45px;*/
        min-width: 130px;

        height: 100%;
        /*margin-right: 15px;*/
        margin-bottom: 25px;
    }
}

/* filter */
#filter-section{
    margin-top: 0;
    padding-top: 0;
}
/*.btn-search {
    width: 150px;
}*/

.filter-checkbox
{
    margin-right: 4px !important;

}


.checkbox-wrapper
{
    font-size: 10px;
}

/* sub menu bar */
#navbar-collapse-products>ul>li>a:focus, #navbar-collapse-products>ul>li>a:hover {
    color: #7ad98f;
    border-bottom: 3px solid #7ad98f;
    background-color: transparent;
}

#navbar-collapse-products>ul>li:not(.disabled).active>a{
    color: #7ad98f;
}

@media(max-width:738px) {
    #navbar-collapse-products>ul>li>a:focus, #navbar-collapse-products>ul>li>a:hover
    {
        border-left: 3px solid #7ad98f;
        border-bottom: 0;
        color: #7ad98f;
        padding-left: 10px;
    }
}


.download-catelog-link, .download-catelog-link:visited{
    margin-left: 10px;
    color: #7ad98f;
}
.download-catelog-link:hover, .download-catelog-link:active{
    margin-left: 10px;
    color: #3ac98f;
}


@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    /*#CategoryId{
        width: 250px;
        height:auto;
        max-width:250px;
    }
    #ProductTypeId{
        width: 250px;
        height:auto;
        max-width:250px;
    }*/

    /*#SearchPartId{
        width: 250px;
        height:auto;
        max-width:250px;
    }*/
}

/* product detail modal*/
.product-modal-header-primary {
    color: #fff;
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    background-color: #3ac98f;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}


/* Slick Slider */
#product-image-container-outer{
    margin: 60px auto 30px auto;
}
#product-image-container
{
    margin: 60px auto 10px auto; 
    width: 75%;
    max-width: 300px;
}

.slick-slider {
    margin: 0 auto; 
    margin-top: 20px;
    width: 60%;
    max-width: 350px;
}

.product-detail-slick-item:hover {
    cursor: pointer;
}
                                
#product-img-large{
    width: 75%;
    height:auto;
    max-width: 300px;
}

.product-slick-image                 
{
    width:80px; 
    height:60px;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    #product-image-container
    {
        margin: 50px auto 10px auto; 
        /*margin: 0 auto;*/ 
        width: 80%;
        max-width: 300px;
    }
    #product-img-large{
        width: 75%;
        height:auto;
        max-width: 300px;
    }
    .slick-slider {
        margin: 50px auto; 
        margin-top: 20px;
        width: 80%;
    }
    .product-slick-image
    {
        width: 80px; 
        height: 60px;
    }
}

/* tab */
#features, #specs, #reviews {
    min-height: 200px;
    margin-bottom:0;
}

#spec-list-ul
{
    list-style-type: none;
}

.spec-col{
    border-bottom: 1px #888 solid;
    padding:2px;
}
#specs{
    margin-top: 30px;
}

.spec-col:before{
    content: ".";
    visibility: hidden;
}





/* #### Mobile Phones Portrait or Landscape (Galaxy Fold: 280 * 653) #### */
@media screen and (max-device-width: 280px) and (orientation: portrait) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 0px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}

/* #### Mobile Phones Portrait #### */
@media screen and (min-device-width: 300px) and (max-device-width: 320px) and (orientation: portrait) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 0px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}


/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 0px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}

/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (min-device-width: 320px) and (max-device-width: 640px) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 0px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}

/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 0px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}

/* #### iPhone 5 Portrait or Landscape #### */
@media (device-height: 568px) and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 0px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}

/* #### iPhone 6 and 6 plus Portrait or Landscape #### */
@media (min-device-height: 667px) and (min-device-width: 375px) and (-webkit-min-device-pixel-ratio: 3) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 0px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}

/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 36px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}

/* #### Desktops #### */
@media screen and (min-width: 1024px) {
    /* some CSS here */
    #products-catalog-download-text {
        font-size: 12px;
        font-weight: bold;
        margin-right: 5px;
    }

    .products-catalog-download-icon {
        vertical-align: middle;
        margin-right: 36px;
    }

    #products-catalog-download-badge {
        margin-right: 2px;
    }
}



.buttons                 
{
    display:inline;
    margin-left:0 !important;
    padding-left:0 !important;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    .buttons {
        margin-left: -12px !important;
    }

    .download-product-catalog-container {
        margin-right:20px;
    }
}



.col-5ths,
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
   position: relative;
   min-height: 1px;
   padding-right: 15px;
   padding-left: 15px; 
   float: left;
}

.col-5ths {
   -webkit-box-flex: 0;
   -webkit-flex: 0 0 20%;
   -ms-flex: 0 0 20%;
   flex: 0 0 20%;
   width: 20%;
   float: left;
}

@media (max-width: 576px) {
  .col-xs-5ths {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      width: 100%;
      max-width: 300px;
      margin-left: 15%;
      float: left;
   } 
}

@media (min-width: 576px) {
  .col-sm-5ths {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      width: 20%;
      float: left;
   } 
}

@media (min-width: 768px) {
  .col-md-5ths {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      width: 20%;
      float: left;
   } 
}

@media (min-width: 992px) {
  .col-lg-5ths {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      width: 20%;
      float: left;
   } 
}




@media screen and (min-width: 769px){
    .products-img-header {
        background: url(../../images/products_bg_001.jpg) no-repeat;
        width: 100%;
        height: 400px;
        max-height: 400px;
        background-size:100% 100%;
    }
}

@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    .products-img-header
    {
        background: url(../../images/products_bg_001_sm.jpg) no-repeat;
        min-height:200px;
        width: 100%;
        background-size:100% 100%;
        max-height: 300px;
    }
}

#ShowHideAdvancedSearch{
    color: #0e255b;
    font-size: 10px;
    font-weight: 400;
    margin-left: 10px;
    /*text-decoration:underline;*/
}
#ShowHideAdvancedSearch:hover{
    color: #96b53b;
}

/*#ShowHideAdvancedSearch:before{
    font-family: 'Glyphicons Halflings';
    content: attr(data-content);
    color:#0e255b;
    padding-right: 4px;
    padding-left: 2px;
    font-size: 14px;
    vertical-align:middle;
}*/

.UpArrow:after {
    font-family: 'Glyphicons Halflings';
    content: '\e253';
    padding-right: 4px;
    font-size: 14px;
    vertical-align:middle;
}

.DownArrow:after{
    font-family: 'Glyphicons Halflings';
    content: '\e252';
    padding-right: 4px;
    font-size: 14px;
    vertical-align:middle;
}
#ShowHideAdvancedSearch:hover:before{
    color: #96b53b;
}



#sort-column-bubble {
    position: absolute;
    margin-top: 90px;
    width: 320px;
    height: 60px;
    text-align: center;
    line-height: 20px;
    background-color: #333;
    border: 8px solid #333;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #333;
    -moz-box-shadow: 2px 2px 4px #333;
    box-shadow: 2px 2px 4px #333;
    opacity: 0.78;
    transition: all 1s;
    -webkit-transition: all 1s;
    color: #ead918;
    font-family: 'Helvetica Neue', sans-serif; 
    pointer-events:none;
}
#sort-column-bubble:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 38px;
    top: -38px;
    border: 15px solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.96) rgba(0, 0, 0, 0.96);
    opacity: 0.6;
}


#view-details-bubble {
    position: absolute;
    margin-top: 190px;
    /*margin-left: 600px;*/
    width: 440px;
    height: 60px;
    text-align: center;
    line-height: 20px;
    background-color: #333;
    border: 8px solid #333;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #333;
    -moz-box-shadow: 2px 2px 4px #333;
    box-shadow: 2px 2px 4px #333;
    opacity: 0.78;
    transition: all 1s;
    -webkit-transition: all 1s;
    color: #ead918;
    font-family: 'Helvetica Neue', sans-serif; 
    pointer-events:none;
}
#view-details-bubble:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 338px;
    top: -38px;
    border: 15px solid;
    border-color:  transparent rgba(0, 0, 0, 0.96) rgba(0, 0, 0, 0.96)   transparent ;
    opacity: 0.6;
}


#advanced-options-bubble {
    position: absolute;
    margin-top: -105px;
    margin-left: 95px;
    width: 400px;
    height: 50px;
    text-align: center;
    line-height: 20px;
    background-color: #333;
    border: 8px solid #333;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #333;
    -moz-box-shadow: 2px 2px 4px #333;
    box-shadow: 2px 2px 4px #333;
    opacity: 0.78;
    transition: all 1s;
    -webkit-transition: all 1s;
    color: #ead918;
    font-family: 'Helvetica Neue', sans-serif; 
    pointer-events:none;
}
#advanced-options-bubble :after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 258px;
    top: 30px;
    border: 15px solid;
    border-color: rgba(0, 0, 0, 0.96) rgba(0, 0, 0, 0.96) transparent transparent  ;
    opacity: 0.6;
}

#view-options-bubble {
    position: absolute;
    margin-top: -82px;
    margin-left: 6px;
    width: 340px;
    height: 40px;
    text-align: center;
    line-height: 20px;
    background-color: #333;
    border: 8px solid #333;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #333;
    -moz-box-shadow: 2px 2px 4px #333;
    box-shadow: 2px 2px 4px #333;
    opacity: 0.78;
    transition: all 1s;
    -webkit-transition: all 1s;
    color: #ead918;
    font-family: 'Helvetica Neue', sans-serif; 
    pointer-events:none;
}
#view-options-bubble :after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 4px;
    top: 30px;
    border: 15px solid;
    border-color: rgba(0, 0, 0, 0.96) transparent transparent rgba(0, 0, 0, 0.96);
    opacity: 0.6;
}

#chrome-user-bubble {
    position: absolute;
    /*margin-top: -190px;
    margin-left: 50%;*/
    margin: 60px 0 100px 28%;
    width: 600px;
    height: 135px;
    text-align: center;
    line-height: 20px;
    background-color: #333;
    border: 8px solid #333;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #333;
    -moz-box-shadow: 2px 2px 4px #333;
    box-shadow: 2px 2px 4px #333;
    opacity: 0.78;
    transition: all 1s;
    -webkit-transition: all 1s;
    color: #ead918;
    font-family: 'Helvetica Neue', sans-serif;
    z-index:100;
    /*pointer-events: none;*/
}

    /*#close-tips-bubble:after {
        content: ' ';
        position: absolute;
        width: 0;
        height: 0;
        left: 38px;
        top: -38px;
        border: 15px solid;
        border-color: transparent transparent rgba(0, 0, 0, 0.96) rgba(0, 0, 0, 0.96);
        opacity: 0.6;
    }*/

#tolerance-options-bubble {
    position: absolute;
    margin-top: 0px;
    margin-left: 0px;
    width: 400px;
    height: 30px;
    text-align: center;
    line-height: 20px;
    background-color: #333;
    border: 8px solid #333;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #333;
    -moz-box-shadow: 2px 2px 4px #333;
    box-shadow: 2px 2px 4px #333;
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
    color: #ead918;
    font-family: 'Helvetica Neue', sans-serif; 
    pointer-events:none;
}
#tolerance-options-bubble :after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 180px;
    top:-24px;
    border: 8px solid;
    border-color:  transparent rgba(0, 0, 0, 0.96) rgba(0, 0, 0, 0.96)   transparent ;
    opacity: 0.6;
}



@media only screen and (device-width: 768px), only screen and (max-width: 768px) {
    #sort-column-bubble{
        display:none;
    }
    #view-options-bubble
    {
        display:none;
    }
    #view-details-bubble{
        display: none;
    }

    #advanced-options-bubble{
        display:none;
    }

    #chrome-user-bubble {
        display: none;
    }
    #tolerance-options-bubble {
        display: none;
    }    
}



#help-center-button{
    padding-left: 12px;
}
#help-center-button:hover{
    cursor:pointer;
}
#help-center-button:after
{
    font-family: 'Glyphicons Halflings';
    content: '\e085';
    font-size: 22px;
    padding: 2px;
    color: cornflowerblue;
}

#help-center-button:hover::after{
    color: #1a4479;
}


.wishlist-ico-main{
    color: orange;
}

.quotelist-ico-main{
    color: #339213;
}
