/*---- Global styling ----*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap ');

.font-stack-poppins{
    font-family: 'Roboto', sans-serif;
}
.font-stack-gothic{
    font-family: 'Roboto', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto', sans-serif;
}

p,a,li,span,strong,sub,sup,em{
    font-family: 'Roboto', sans-serif;
}
* , body, html {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    background: #fff;
    font-size: 16px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    font-weight: 400;
}
html,body{
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin:0;
    text-transform:inherit;
    color: #000000;
    font-weight: 700;
}
h1,
.heading-1 {
    font-size: 48px;
    font-weight: 700;
}
h2,
.heading-2{
    font-size: 42px;
    font-weight: 700;
}
h3,
.heading-3{
    font-size: 36px;
    font-weight: 700;
}
h4,
.heading-4{
    font-size: 32px;
    font-weight: 700;
}
h5,
.heading-5{
    font-size: 24px;
    font-weight: 700;
}
h6,
.heading-6{
    font-size: 20px;
    font-weight: 700;
}

p{
    font-size:16px;
    line-height: 1.6;
    margin: 10px 0;
    font-weight: 300;
}
a {
    text-decoration: none;
    text-transform: inherit;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;;
    -o-transition: all 0.3s ease 0s;;
    display: inline-block;
    color: #000;
}
a:visited, .alink:visited {
    color: #000;
    text-decoration: none;
}
a:hover, a:focus {
    text-decoration: none;
    color:#000;
    outline: none !important;
    cursor: pointer;
}
ul{
    padding: 0;
    margin: 0;
}
li{
/* list-style: none; */
}
/* img{
    width: auto;
    max-width: 100%;
} */
.section-wrapper{
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    width: auto;
}
.section-padding {
    padding: 75px 0;
}
.section-margin{
    margin: 75px 0 ;
}
.has-no-padding{
    padding:0 !important;
}
.has-no-margin{
    margin: 0 !important;
}
.custom-padding-15y{
    padding: 15px 0;
}
.custom-padding-15x{
    padding: 0 15px;
}
.custom-padding-15{
    padding: 15px;
}
.custom-margin-15y{
    margin: 15px 0;
}
.custom-margin-15x{
    margin: 0 15px;
}
.custom-margin-15{
    margin: 15px;
}
.span-block{
    display: block;
}
.breadcrumbs {
    margin: 15px;
}

/*---- Coloring ----*/

.white-text{
    color: #fff;
}
.black-text{
    color: #d70904;
}
.green-text{
    color: #6c9b1e;
}
.red-text{
    color: #174e65;
}
.blue-text{
    color: #6c9b1e;
}
.actionable-card-border-blue{
    border: 3px solid #174e65;
}
.actionable-card-border-green{
    border: 3px solid #6c9b1e;
}
.actionable-card-border-red {
    border: 3px solid #d70904;
}

/*---- Key frames ----*/

@keyframes arrowmove {
    0% {
        opacity: 0;
        top: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        top: 100%;
    }
}
@keyframes arrowmoveup {
    0% {
        opacity: 0;
        top: 100%;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        top: 0;
    }
}

/*---- table  Elements ----*/

table > thead > tr > th, table > tbody > tr > th, table > tfoot > tr > th, table > thead > tr > td, table > tbody > tr > td, table > tfoot > tr > td {
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 400;
    color:#000;
    border: 1px solid #d1d1d1;
}
table > tbody > tr:nth-child(even) {
    background:rgba(0,0,0,0.04);
}



/*---- Site Buttone Elements*/

button {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 14px;
    padding: 7px 15px;
}
.action.primary,
.action-primary{
    background: rgba(28,78,101, 1);
    border: 1px solid rgba(28,78,101, 1);
    color: #ffffff;
    transition: all 0.3s ease 0s ;
}
.action.primary:hover,
.action-primary:hover{
    background: rgba(28,78,101,0.8);
    transform: translateY(-5px);
    border: 1px solid rgba(28,78,101, 0.8);
    color: #fff;
}
.action.primary:focus,
.action-primary:focus,
.action.primary:active,
.action-primary:active{
    background: rgba(28,78,101,0.8);
    border: 1px solid rgba(28,78,101, 0.8);
    color: #fff;
}

.action.viewcart,
.action.update,
.action.multicheckout,
.action-secondary,
.action-secondary.action-dismiss{
    background: rgba(135, 165, 46,1);
    color: #fff;
    padding: 15px 15px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease 0s;
    border: 1px solid rgba(135, 165, 46,1);
}
.action.viewcart:hover,
.action.update:hover,
.action.multicheckout:hover,
.action-secondary:hover,
.action-secondary.action-dismiss:hover{
    background: rgba(135, 165, 46, 0.8);
    transform: translateY(-5px);
    border: 1px solid rgba(135, 165, 46, 0.8);
}

/*---- Form Elements ----*/

input[type=text],
input[type=password],
input[type=url],
input[type=tel],
input[type=search],
input[type=number],
input[type=datetime],
input[type=email],
textarea,
select{
    border: 1px solid #d1d1d1;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    height: auto;
    padding: 10px 15px;
    border-radius: 4px;
}
input[type=text]:hover,
input[type=password]:hover,
input[type=url]:hover,
input[type=tel]:hover,
input[type=search]:hover,
input[type=number]:hover,
input[type=datetime]:hover,
input[type=email]:hover,
textarea:hover,
select:hover{
    border: 1px solid #000;
}

/*---- Generic Styling ----*/
.banner-item.banner-slider .item-image a.owl-image {
    width: 100%;
    height: auto;
}
.full-width-banner {
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.full-width-banner .section-wrapper{
    display: flex;
    align-items: center;
    /* max-width: 100%; */
    min-height: 100vh;
    /*margin-bottom: 10px;*/
    position: relative;
}
.actionable-card {
    color: #000;
    padding: 15px 50px;
    background: rgba(255,255,2555,0.8);
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    min-height: 220px;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
    flex-wrap: wrap;
    text-decoration: none;
    display: flex;
    cursor: pointer;
}
.actionable-card.actionable-card:hover{
    background: rgba(255,255,2555,1);
    /*transform: translateY(-10px);*/
}
.actionable-card.actionable-card-border-blue:hover{
    color: #174e65;
}
.actionable-card.actionable-card-border-green:hover{

    color: #6c9b1e;
}
.actionable-card.actionable-card-border-red:hover{
    color: #d70904;
}
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    z-index: 2;
    top: auto;
}
.scroll-down.upward-arrow{
    bottom: auto;
    top: 0;
}
.scroll-down-link {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0;
    position: relative;
}
.scroll-down-link img {
    position: absolute;
}
.arrow-up-animation {
    -webkit-animation-name: arrowmoveup;
    -webkit-animation-duration: 2s;
    animation-name: arrowmoveup;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.arrow-down-animation {
    -webkit-animation-name: arrowmove;
    -webkit-animation-duration: 2s;
    animation-name: arrowmove;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.backtotop {
    position: fixed;
    bottom: 30px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    background: #7EA52E;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
}
.backtotop.show {
    opacity: 1;
    visibility: visible;
    right: 30px;
}
.backtotop i{
    font-size: 18px;
    transition: all 0.3s ease 0s;
}
.backtotop:hover i{
    transform: translateY(-5px);
}

/*---- Header CSS ----*/

.page-header .panel.wrapper{
    background: #000 !important;
    border-bottom: none !important;
}
.page-header .header.content{
    position: relative;
}
.header-bottom-breadcrumb {
    padding: 15px;
    background: rgba(153,153,153,0.8);
}
.header-bottom-breadcrumb p {
    font-size: 18px;
    color: #fff;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    font-weight: 600;
    font-style: italic;
}
.navigation {
    margin-top: 58px;
    background: none;
}
.owl-theme .owl-nav{
    margin-top: 0 !important;
}
nav.desktop-header-nav {
    display: inline-block;
    vertical-align: bottom;
}
nav.desktop-header-nav ul li {
    display: inline-block;
}
nav.desktop-header-nav ul li>a{
    color: #fff;
    font-weight: 600;
    margin-left: 20px;
}
nav.desktop-header-nav ul li>a#nav-rebuilt:hover {
    text-decoration: none;
    color: #6c9b1e;
}
nav.desktop-header-nav ul li>a#nav-service:hover {
    text-decoration: none;
    color: #d70904;
}
nav.desktop-header-nav ul li>a#nav-new:hover {
    text-decoration: none;
    color: #174e65;
}
.block-search {
    margin-top: 65px;
}
.minicart-wrapper {
    margin-left: 20px;
    margin-top: 35px;
}
.header-contact a, .header-contact a i{
    color: #fff;
}
.header-contact a:hover, .header-contact a i:hover{
    color: #eee;
}
.header-contact {
    float: right;
    margin-top: 39px;
    margin-left: 15px;
}
.header-top-links {
    display: inline-block;
    vertical-align: middle;
}
.header-top-links li{
    display: inline-block;
    margin: 0 5px 0 0;
}
.header-top-links li a{
    color:#fff;
    padding-right:15px;
    font-size:14px;
}
.header.content .lof-autosearch {
    margin-top: 26px !important;
}

/*---- Homepage CSS ----*/

.logo img {
    width: auto;
    max-width:100px;
}
.cms-home .nav-sections {
    margin-bottom: 0;
}
.cms-home.page-layout-1column .column.main {
    padding:0
}
.cms-index-index #maincontent.page-main {
    max-width: 100%;
    padding: 0;
    margin: -22px 0 0;
}
.actionable-card .desc p , .actionable-card .desc{
    font-size: 24px;
    margin-top: 5px;
}
.quote-wraper{
    padding: 15px ;
    text-align:center
}
.quote-wraper h4 {
    font-style: oblique;
}
.quote-wraper h4 sup {
    font-weight: 300;
    margin-left: 15px;
    font-style: normal;
}

/*---- Footer CSS ----*/

.footer.content .links li {
    background: transparent;
    border: none;
    font-size: 14px;
    margin: 0 0 8px;
    padding: 0;
    width: 100%;
}
.footer-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0;
}
.footer-links {
    flex: 0 0 20%;
    max-width: 20%;
}
.footer-links h6{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}
.footer-links ul {
    padding: 0 !important;
}
.footer-links ul li a{
    font-size: 14px;
    padding-bottom: 7px;
    cursor: pointer;
    color: #fff;
}
.footer-links ul li a:hover{
    transform:translateX(5px);
    text-decoration:underline
}
.footer-links ul li a i{
    width:20px;
    display:inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 30px 0 0;
    color: #fff;
}
.copyright {
    background-color: transparent;
    color: #fff;
    box-sizing: border-box;
    display: block;
    padding: 0;
}

/*---- Sub Category Page ----*/

.catalog-category-view.page-layout-1column .page-wrapper > .breadcrumbs,
.catalog-category-view.page-layout-1column .nav-sections,
.catalog-category-view.page-layout-1column .sidebar.sidebar-additional,
.catalog-category-view.page-layout-1column .column.main,
.catalog-category-view.page-layout-1column.page-products .columns{
    display: none !important;
}

.catalog-category-view.page-layout-1column #maincontent.page-main {
    max-width: 100%;
    padding: 0;
    margin: -22px 0 0;
}

.custom-title-wrapper {
    padding: 15px;
    background: rgba(153,153,153,0.8);
}
.custom-title-wrapper .category-custom-title {
    font-size: 18px;
    color: #fff;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    font-weight: 600;
}

.section-navigation {
    position: fixed;
    z-index: 9;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.section-navigation a {
    display: block;
    position: relative;
    border-right: 3px solid #BFF270;
    padding: 10px 20px 10px 10px;
    transition: all 0.3s ease 0s;
    color: #BFF270;
}
.section-navigation a .trigger-sec-name {
    text-align: center;
    display: inline-block;
    position: absolute;
    right: 50px;
    width: auto;
    min-width: 115px;
    padding: 5px 15px;
    color: #fff;
    transform: translateY(-50%);
    top: 50%;
    visibility: hidden;
    opacity: 0;
    border-radius: 3px;
    transition: all .2s ease;
    background: #6c9b1e;
    font-size: 12px;
}
.section-navigation a.active{
    border-right: 3px solid #6c9b1e;
    color: #6c9b1e;
}
.section-navigation a:hover{
    color: #6c9b1e;
}
.section-navigation a:hover .trigger-sec-name,
.section-navigation a.active .trigger-sec-name{
    visibility: visible;
    opacity: 1;
}
.section-navigation a .trigger-sec-name:before {
    position: absolute;
    display: block;
    content: ' ';
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5.5px 0 5.5px 7px;
    border-color: transparent transparent transparent #6c9b1e;
}
.section-navigation a.bg-blue {
    border-right: 3px solid #7394a2;
    color: #7394a2;
}
.section-navigation a.bg-red {
    border-right: 3px solid #fc6c68;
    color: #fc6c68;
}
.section-navigation a.active.bg-blue{
    border-right: 3px solid #174e65;
    color: #174e65;
}
.section-navigation a.active.bg-red{
    border-right: 3px solid #d70904;
    color: #d70904;
}
.section-navigation a.bg-blue:hover{
    color: #174e65;
}
.section-navigation a.bg-red:hover{
    color: #d70904;
}
.section-navigation a .trigger-sec-name.bg-green {
    background: #6c9b1e;
}
.section-navigation a .trigger-sec-name.bg-green:before {
    border-color: transparent transparent transparent #6c9b1e;
}
.section-navigation a .trigger-sec-name.bg-blue {
    background: #174e65;
}
.section-navigation a .trigger-sec-name.bg-blue:before {
    border-color: transparent transparent transparent #174e65;
}
.section-navigation a .trigger-sec-name.bg-red {
    background: #d70904;
}
.section-navigation a .trigger-sec-name.bg-red:before {
    border-color: transparent transparent transparent #d70904;
}

/*---- Product Listing Page ----*/

.products.list.items.product-items .product-item-info{
    text-align: center;
}
.products.list.items.product-items .product-item-info .product.details.product-item-details {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
}
.page-products.page-layout-2columns-left .products-grid .product-item {
    width: calc((100% - 6%)/3);
}
.page-products.page-layout-2columns-left .product-item-info {
    width: 100%;
}
.page-products.page-layout-2columns-left .actions-primary form{
    display:inline-block;
}
.page-products.page-layout-2columns-left .product-item .tocart {
    margin-top:0 !important;
}

.page-products.page-layout-2columns-left .products-grid .product-item-info:hover,
.page-products.page-layout-2columns-left .products-grid .product-item-info.active {
    box-shadow: none;
}

.page-products.page-layout-2columns-left .products-grid .product-item-inner {
    box-shadow: none;
}

.products-grid .product-item-info{
    padding: 9px;
    margin: -10px;
    border: 1px solid transparent;
}
.stock.available {
    display: none;
}
.category-cms, .category-image, .category-description {
    position: relative;
}
.category-image{
    min-height: 50px;
}
.category-image .image {
    width: 100%;
    background: #000;
    opacity: 0.4;
}
.category-top-content{
    position: absolute;
    max-width: 620px;
    margin: 0 auto;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
.category-top-content .page-title-wrapper h1.page-title{
    margin-bottom: 5px;
}
.category-top-content .category-description p {
    font-size: 15px;
    margin: 5px 0 0;
    font-weight: 400;
}
.catalog-category-view .modes-mode{
    background: transparent;
    color: #fff;
    padding: 5px 8px;
    border: 1px solid #d1d1d1;
    border-radius: 0 !important;
    box-shadow: none;
    margin-right: 5px
}
.catalog-category-view .modes-mode.active{
    background: #8EB14A;
    border: 1px solid #8EB14A;
}
.catalog-category-view .modes-mode.active:before{
    color: #8EB14A;
}
.catalog-category-view .modes-mode.active:before {
    color: #fff
}
.toolbar-sorter #sorter {
    padding-right: 25px;
}
.toolbar select {
    background-color: transparent;
    box-shadow: none;
    border-radius: 4px;
    border: 1px solid #d1d1d1 !important;
}
.toolbar.toolbar-products select.limiter-options {
    width: 75px;
}
.page-products .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
}
.block.related .title strong {
    font-weight: 700;
    line-height: 1.1;
    font-size: 24px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.block.related .products-grid .product-item-info {
    padding: 10px;
    margin: auto;
    border: 1px solid transparent;
    width: 100%;
    max-width: 100%;
}
.block.related .product-item-info .product-image-container {
    width: 130px !important;
}
.block.related .products.list.items.product-items .product-item-info .product.details.product-item-details {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}
.block.related .product-item-name, .block.related .product.name a {
    font-weight: 700;
    font-size: 16px;
}
.block.related .product-item-name {
    margin: 0 0 10px;
}
.block.related .products-grid .product-item-actions {
    margin: 0;
}
.block.related  .products-grid .product-item-info:hover, .block.related  .products-grid .product-item-info.active {
    border: 1px solid #bbb;
}
._keyfocus *:focus, input:not([disabled]):focus, textarea:not([disabled]):focus, select:not([disabled]):focus {
    box-shadow: none;
    border: 1px solid #000 !important;
}
.sorter-action:before {
    color: #8EB14A;
}
.pages .pages-item-next .action {
    box-shadow: none;
    border-radius: 4px;
    padding: 0 8px;
    background: #7EA52E;
    border: none;
}
.pages .pages-item-next .action.next:before {
    color: #fff;
}
.pages strong.page {
    color: #7EA52E;
    font-size: 16px;
    text-decoration: underline;
    background: transparent;
}
.product-item .tocart {
    font-size: 12px;
    padding: 8px 10px;
    font-weight: 400;
}
.product-item-actions .actions-secondary > .action {
    color: rgba(28,78,101, 1) !important;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
}
.product-item-actions .actions-primary + .actions-secondary > .action {
    line-height: 25px;
    text-align: center;
    width: 25px;
}
.page-products.page-layout-2columns-left .product-item #rfq-button.tocart {
    margin-top: 0 !important;
}
.minicart-wrapper .action.showcart:hover:before {
    color: #eee;
}
.minicart-wrapper .action.showcart:before {
    color: #fff;
}
.minicart-wrapper .action.showcart .counter.qty {
    background: #87a52e;
    height: 20px;
    line-height: 20px;
    margin:0;
    min-width: 20px;
    padding: 0;
    font-size: 10px;
    position: absolute;
    right: -7px;
    top: -7px;
    border-radius: 100%;
}
.field.qty .control{
    display: inline-block;
    margin-left: 10px;
}
.box-tocart .action.tocart:not(:last-child) {
    margin-bottom: 0;
}
.box-tocart .action.tocart {
    width: 100% !important;
}
.action.multicheckout,
.action.viewcart{
    width: 100%;
}
.action.multicheckout {
    padding: 0;
    font-size: 16px;
    background: transparent;
    color: rgba(135, 165, 46,1);
    border: none;
    text-decoration: underline;
}
.category-top-content {
    max-width: 1270px;
    text-align: left;
    z-index: 9;
    padding: 0 15px;
    width: 100%;
    height: 100%;
}
.category-description {
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.category-top-content .page-title-wrapper h1.page-title {
    margin-bottom: 15px;
}
.catalog-category-view .page-title-wrapper{
    padding: 15px;
    background: rgba(153,153,153,0.8);
}
.catalog-category-view .page-title-wrapper h1{
    font-size: 18px;
    color: #fff;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding-left: 25px;
    font-weight: 600;
}
.category-top-content .breadcrumbs{
    padding-left: 0;
}
.category-image .image {
    height: 250px;
    object-fit: cover;
}
.block.related .product-item-info .product-image-container {
    width: 100px !important;
}
.page-products .products.list.items.product-items .product-item-info {
    border: 1px solid #d1d1d1;
    margin-bottom: 15px;
}
.page-products .products.wrapper .product-item-name, .page-products .products.wrapper .product.name a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    text-decoration: none !important;
    min-height: 55px;
}
.page-products .price-container .price-wrapper .price{
    background: #f8f8f8;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    font-size: 14px;
}
.page-products .products-grid .product-item-inner {
    border: none;
    border-top: none;
    width: 100%;
}
.catalog-category-view .product-item-actions .action-secondary, .product-item-actions .action.tocart.primary{
    display: none;
}
.page-products .product-item-actions .actions-primary,
.page-products .product-item-actions .actions-secondary  {
    display: block;
}
.page-products .products-grid .product-item-inner:before {
    display: none;
}
.page-products .product-item-actions .actions-primary form {
    display: block;
}
.product-item-actions .action-secondary, .product-item-actions .action.tocart.primary {
    max-width: 120px;
    padding: 8px 15px;
    outline: none !important;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff !important;
    border: none !important;
}
#layer-product-list .product-image-container {
    width: 180px !important;
}
#layer-product-list .products.wrapper .product-item-name, 
#layer-product-list.products.wrapper .product.name a {
    font-weight: 400;
    font-size: 16px;
    text-decoration: none !important;
}
#layer-product-list .product-item-actions .actions-primary+.actions-secondary {
    margin-left: 10px;
}

/*---- Product Single Page ----*/

.gallery-placeholder{
    width: 100% !important;
}

.product-dimensions{
    text-align:center;
}
.product-dimensions .img {
    width: auto;
    max-width: 100%;
}
.product.data.items > .item.title {
    margin: 0;
    position: relative;
}
.product.data.items > .item.title.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: -2px;
    left: 0;
    z-index: 9;
}
.product-info-main .stock{
    display:none
}
.product-info-main .product.sku{
    display:none
}

.product-reviews-summary{
    display: none;
}

/*---- Cart page table ----*/

.checkout-cart-index table > tbody > tr:nth-child(even) {
    background: transparent;
}
.cart.table-wrapper .cart thead tr th.col {
    padding: 10px 15px;
    border: 1px solid #d1d1d1;
    font-weight: 700;
}
.cart.table-wrapper .cart > .item {
    border: 1px solid #d1d1d1;
}
.cart.table-wrapper .cart .product-image-container{
    width: 110px !important;
}
.cart.table-wrapper .actions-toolbar {
    min-height: auto;
    padding: 10px 15px;
    text-align: right;
}
.cart.table-wrapper .actions-toolbar > .action-edit, .cart.table-wrapper .actions-toolbar > .action-delete {
    position: static;
}
.checkout-cart-index table > tbody > tr.item-actions{
    background: rgba(0,0,0,0.04);
}
.cart-summary .checkout-methods-items .item {
    margin-bottom: 15px;
}
.product-add-form .product-options-wrapper .field .control {
    width: 100% !important;
}
.box-tocart .input-text.qty{
    padding: 10px 15px;
    width: 70px;
}
.product.detailed .data.content a {
    color: #7EA52E;
    text-decoration: underline;
    padding: 0 5px;
    font-weight: 700;
    transition: all 0.3s ease 0s;
}
.product.detailed .data.content a:hover{
    transform: translateY(-5px);
}
.product.detailed .data.content ul,
.product.detailed .data.content ol{
    padding-left: 25px;
}
.product.detailed .data.content ul>li,
.product.detailed .data.content ol>li {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 300;
}
.action-secondary.action-dismiss{
    padding: 7px 10px;
}
.cart.table-wrapper .item .col.item {
    padding: 15px !important;
}
.cart.table-wrapper .col.price,
.order-items.table-wrapper .col.price,
.cart.table-wrapper .col.qty,
.order-items.table-wrapper .col.qty,
.cart.table-wrapper .col.subtotal,
.order-items.table-wrapper .col.subtotal,
.cart.table-wrapper .col.msrp,
.order-items.table-wrapper .col.msrp {
    text-align: center;
}

/*!*---- Sub category section ----*!*/

/*.category-holder{*/
/*    padding: 50px 0;*/
/*    border-bottom: 1px solid #d1d1d1;*/
/*}*/
/*.category-holder:last-child{*/
/*    border-bottom: none;*/
/*}*/
/*.category-holder .title{*/
/*    margin-bottom: 50px;*/
/*    display: inline-block;*/
/*    padding: 0 15px ;*/
/*}*/
/*.category-holder .title h2{*/
/*    border-bottom: 2px solid #174e65;*/
/*    padding:0 5px 15px;*/
/*    color:#174e65;*/
/*    font-size:32px;*/
/*}*/
/*.sub-category-holder {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/
/*.each-sub-category {*/
/*    margin-bottom: 30px;*/
/*    flex: 0 0 20%;*/
/*    max-width: 20%;*/
/*    width: auto;*/
/*    padding: 0 15px;*/
/*}*/
/*.category-card {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    width: 100%;*/
/*    display: block;*/
/*    margin: 0;*/
/*    min-height: 100%;*/
/*    padding: 0;*/
/*    transition: all 0.5s ease 0s;*/
/*}*/
/*.category-card img{*/
/*    width: 100%;*/
/*    transition: all 0.3s ease 0s;*/
/*}*/
/*.category-card:hover img{*/
/*    opacity: 0.8;*/
/*    transform: scale(1.2);*/
/*}*/
/*.category-card span.category-name {*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    display: block;*/
/*    padding: 5px 10px;*/
/*    background: rgba(0,0,0,0.5);*/
/*    width: 100%;*/
/*    color: #fff;*/
/*    text-align: center;*/
/*    font-size: 18px;*/
/*    font-weight: 400;*/
/*}*/
/*.category-card.green-card span.category-name{*/
/*    background: rgba(78, 112, 22, 1);*/
/*}*/
/*.category-card.blue-card span.category-name{*/
/*    background: rgba(23, 78, 101, 1);*/
/*}*/
/*.category-card.red-card span.category-name{*/
/*    background: rgba(215, 9, 4, 1);*/
/*}*/

/*.category-card.green-card:hover span.category-name{*/
/*    background: rgba(78, 112, 22, 0.8);*/
/*}*/
/*.category-card.blue-card:hover span.category-name{*/
/*    background: rgba(23, 78, 101, 0.8);*/
/*}*/
/*.category-card.red-card:hover span.category-name{*/
/*    background: rgba(215, 9, 4, 0.8);*/
/*}*/

/*---- Checkout Page ----*/

#delivery-method-selector .action.selected {
    background: #6c9b1e;
    color: #fff;
    outline: none !important;
}

#delivery-method-selector .action-select-store-pickup,
#delivery-method-selector .action-select-shipping {
    background: #fff;
    outline: none !important;
}
.store-selector-popup-table tbody .col-location-details,
.store-selector-popup-table tbody .col-location-actions {
    padding: 15px;
}
.store-selector-popup-table tbody .col-location-actions {
    padding: 30px 15px 15px;
}
#opc-store-selector-popup .block-search {
    margin: 20px 0 20px;
    padding: 0 0 20px;
}

#store-selector .form-continue .actions-toolbar .action.primary{
    line-height: 1.4;
    padding: 7px 25px;
    font-size: 14px;
    font-weight: 400;
}

/*---- Discount Card ----*/

.checkout-cart-index .cart-discount {
    width: 100%;
    padding: 0;
    background: transparent;
    float: none;
}
.checkout-cart-index .cart-discount .block.discount {
    width: 100%;
    background: #f5f5f5;
    padding: 15px;
    max-width: 350px;
}
.checkout-cart-index .cart-discount .block.discount {
    width: 100%;
}
.checkout-cart-index .cart-discount .block>.title{
    padding: 0;
}
.checkout-cart-index .cart-discount .block.active>.title {
    padding: 0 0 15px;
}
.checkout-cart-index .cart-discount .block>.title:after {
    float: right;
    color: #000;
}
.checkout-cart-index .cart-discount .block>.title #block-discount-heading {
    font-family: 'Roboto', sans-serif !important;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}
.checkout-cart-index .cart-discount .field {
    margin: 0 0 10px;
    display: block;
    width: 100%;
}
.checkout-cart-index .cart-discount .actions-toolbar {
    display: block;
    vertical-align: top;
    width: 100%;
}
.checkout-cart-index .cart-discount .fieldset:last-child {
    margin-bottom: 0;
}

.checkout-cart-index .cart-discount .actions-toolbar .action.primary{
    background: rgba(28,78,101, 1);
    border: 1px solid rgba(28,78,101, 1);
    color: #ffffff;
    transition: all 0.3s ease 0s;
    box-shadow: none;
    border-radius: 0 !important;
}
.checkout-cart-index .cart-discount .actions-toolbar .action.primary:hover{
    background: rgba(28,78,101,0.8);
    transform: translateY(-5px);
    border: 1px solid rgba(28,78,101, 0.8);
    color: #fff;
}

/*---- Checkout Page  ----*/

.checkout-index-index .opc-progress-bar-item._active:before ,
.checkout-index-index .opc-progress-bar-item._active>span:before {
    background: #87a52e;
    border-color: #87a52e;
}
.checkout-index-index .opc-wrapper .form-login {
    border-bottom: 1px solid #d1d1d1;
}
.checkout-index-index .opc-wrapper .form-login,
.checkout-index-index .opc-wrapper .form-shipping-address {
    max-width: 100%;
}
.page-main>.page-title-wrapper .page-title{
    border-bottom: 2px solid #174e65;
    padding: 0 10px 15px;
    color: #174e65;
    font-size: 32px;
}
.block-search input {
    font-size: 13px !important;
    height: 32px !important;
}

/*---- CMS Pages  ----*/

.cms-page-view #maincontent h1,
.cms-page-view #maincontent h2,
.cms-page-view #maincontent h3,
.cms-page-view #maincontent h4,
.cms-page-view #maincontent h5,
.cms-page-view #maincontent h6,
.cms-page-view #maincontent p,
.cms-page-view #maincontent img,
.cms-page-view #maincontent ul,
.cms-page-view #maincontent ol,
.cms-page-view #maincontent video{
    margin-bottom: 25px;
}
.cms-page-view #maincontent img.full-width {
    width: 100%;
}
.cms-page-view.cms-shipping-procedures #maincontent img {
    width: auto;
    margin-right: 15px;
}
.cms-page-view #maincontent p{
    font-weight: 400;
}
.cms-page-view #maincontent ol{
    margin: 0;
    padding-left: 25px;
    border-bottom-left-radius: 0;
    list-style: decimal;
}
.cms-page-view #maincontent ol li{
    list-style: decimal;
}
.cms-page-view #maincontent ul li, .cms-page-view #maincontent ol li {
    margin-top: 0;
    margin-bottom: 10px;
    position: relative;
    /* padding-left: 20px; */
}
.cms-page-view #maincontent ul li:before {
    position: absolute;
    /* content: ''; */
    top: 7px;
    left: 0;
    font-size: 6px;
    color: #7EA52E;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.cms-page-view #maincontent ul li ul {
    margin-top: 10px;
}
.cms-page-view #maincontent a {
    color: #7EA52E;
    margin: 0 5px;
}
.cms-page-view #maincontent #maincontent .rebuild-stock-components a {
    margin: 0;
    text-decoration: underline;
}
.cms-page-view #maincontent .rebuild-stock-components a:hover {
    transform: translateX(10px);
}
.contact-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -15px 0;
}
.each-card-holder {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
    margin:0 0 30px
}
.contact-card-content {
    text-align: center;
    padding: 30px 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100%;
    border-radius: 4px;
    position: relative;
    background: #fff;
}
.contact-card-content h6{
    margin-bottom: 6px !important;
    font-size: 16px;
}
.contact-card-content a,
.contact-card-content p {
    margin: 5px 0 !important;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
}
.contact-card-content::before {
    position: absolute;
    background:#174e65;
    content: "";
    height: 3px;
    width: 80px;
    top: 0;
    left: 0;
    z-index: 2;
}
.contact-card-content::after {
    position: absolute;
    background:#174e65;
    content: "";
    height: 60px;
    width: 3px;
    top: 0;
    left: 0;
    z-index: 2;
}
.contact-card-wrapper .each-card-holder:nth-child(even) .contact-card-content::before {
    background:#87a52e;
}
.contact-card-wrapper .each-card-holder:nth-child(even) .contact-card-content::after {
    background:#87a52e;
}
.block-widget-contact-form .block-title{
    padding: 0 15px;
    font-weight: 700;
    font-size: 20px;
    margin: 10px 0;
}
.block-widget-contact-form .fieldset {
    display: flex;
    flex-wrap: wrap;
}
.block-widget-contact-form .field {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}
.block-widget-contact-form .field.note.no-label {
    flex: 0 0 100%;
    max-width: 100%;
}
.block-widget-contact-form .actions-toolbar {
    padding: 0px 15px;
}
.cms-page-view #maincontent pre {
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 25px;
    background: #fff;
    padding: 30px 15px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.cms-page-view #maincontent pre::before {
    position: absolute;
    background: #174e65;
    content: "";
    height: 3px;
    width: 180px;
    top: 0;
    left: 0;
    z-index: 2;
}
.cms-page-view #maincontent pre::after {
    position: absolute;
    background:#174e65;
    content: "";
    height: 160px;
    width: 3px;
    top: 0;
    left: 0;
    z-index: 2;
}

/*---- RFQ CMS Page ----*/

.cms-page-view .category-holder{
    padding: 50px 0;
    border-bottom: 1px solid #d1d1d1;
}
.cms-page-view .category-holder:last-child{
    border-bottom: none;
}
.cms-page-view .category-holder .title{
    margin-bottom: 50px;
    display: inline-block;
    padding: 0 15px ;
}
.cms-page-view .category-holder .title h2{
    border-bottom: 2px solid #174e65;
    padding:0 5px 15px;
    color:#174e65;
    font-size:32px;
}
.cms-page-view .sub-category-holder {
    display: flex;
    flex-wrap: wrap;
}
.cms-page-view .each-sub-category {
    margin-bottom: 30px;
    flex: 0 0 20%;
    max-width: 20%;
    width: auto;
    padding: 0 15px;
}
.cms-page-view .category-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
    margin: 0;
    min-height: 100%;
    padding: 0;
    transition: all 0.5s ease 0s;
}
.cms-page-view .category-card img{
    width: 100%;
    transition: all 0.3s ease 0s;
}
.cms-page-view .category-card:hover img{
    opacity: 0.8;
    transform: scale(1.2);
}
.cms-page-view .category-card span.category-name {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    padding: 5px 10px;
    background: rgba(0,0,0,0.5);
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}
.cms-page-view .category-card.green-card span.category-name{
    background: rgba(78, 112, 22, 1);
}
.cms-page-view .category-card.blue-card span.category-name{
    background: rgba(23, 78, 101, 1);
}
.cms-page-view .category-card.red-card span.category-name{
    background: rgba(215, 9, 4, 1);
}

.cms-page-view .category-card.green-card:hover span.category-name{
    background: rgba(78, 112, 22, 0.8);
}
.cms-page-view .category-card.blue-card:hover span.category-name{
    background: rgba(23, 78, 101, 0.8);
}
.cms-page-view .category-card.red-card:hover span.category-name{
    background: rgba(215, 9, 4, 0.8);
}

/*---- Newsletter CMS Page ----*/

.newsletter-wrapper {
    position: relative;
}
.newsletter-wrapper a img {
    opacity: 1;
    height: auto !important;
}
.newsletter-wrapper .block.newsletter{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(255,255,255,0.8);
    border-radius: 4px;
}
.newsletter-wrapper .block.newsletter .field.newsletter {
    max-width: 100%;
}
.newsletter-wrapper .block.newsletter input {
    margin-right: 0;
    padding: 7px 10px 7px 35px;
    outline: none !important;
    width: 100%;
}
.newsletter-wrapper .field.newsletter label {
    display: block;
    margin-bottom: 0;
}
.newsletter-wrapper .block.newsletter .field .control:before {
    margin: 0 0 0 10px;
    left: 0;
    top: 1px;
}
.newsletter-wrapper .block.newsletter .action.subscribe {
    margin-left: 15px;
    white-space: normal;
}
.newsletter-wrapper .action.primary:active,
.newsletter-wrapper .action.primary:hover{
    background: rgba(28,78,101,1);
    border: 1px solid rgba(28,78,101, 1);
}
.newsletter-wrapper .block.newsletter .form.subscribe>.field,
.newsletter-wrapper .block.newsletter .form.subscribe>.actions {
    float: none;
}
.newsletter-wrapper .block.newsletter .field .control {
    position: relative;
}

/*---- category or sub-category ----*/

.sub-category-bg{
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-bottom: 10px;
}
.category-sec-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 50px 20px;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}
.category-wrapper {
    position: absolute;
    margin: 0 auto;
    top: 50%;
    transform: translate(0, -50%);
    left: 20px;
    width: 100%;
    transition: all 1s ease 0s;
    overflow: hidden;
}
.category-wrapper.clicked {
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.child-category-trigger {
    color: #000;
    padding: 15px 25px;
    background: rgba(255,255,2555,0.8);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    border-radius: 4px;
    transition: all 1s ease 0s;
    border: 4px solid #6c9b1e;
    width: 100%;
    min-height: 220px;
    max-width: 600px;
    position: relative;
    transform: translate(0 , 0);
    left: 0;
}
.child-category-trigger .desc {
    font-size: 24px;
    margin-top: 5px;
}
.category-wrapper.clicked .child-category-trigger {
    left: 50%;
    transform: translate(-50% , 0);
}
.sub-category-container {
    display: flex;
    justify-content: center;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease 0s;
    flex-wrap: wrap;
    width: 100%;
}
.category-wrapper.clicked .sub-category-container {
    opacity: 1;
    visibility: visible;
}
.each-child-category {
    color: #000;
    padding: 15px;
    background: rgba(255, 255, 2555, 0.8);
    z-index: 2;
    border-radius: 4px;
    transition: all 1s ease 0s;
    text-decoration: none;
    border: 3px solid #6c9b1e;
    transform: translate(0,100%);
    flex: 0 0 300px;
    max-width: 300px;
    min-height: 110px;
    margin: 25px 10px 0;
    position: absolute;
}
.each-child-category:hover {
    color: #6c9b1e;
}
.category-wrapper.clicked .each-child-category {
    transform: translate(0,0);
    position: relative;
}
.category-wrapper.clicked .each-child-category:first-child {
    transition: all 1s ease 0s;
}
.category-wrapper.clicked .each-child-category:nth-child(2) {
    transition: all 1s ease 0.2s;
}
.category-wrapper.clicked .each-child-category:nth-child(3) {
    transition: all 1s ease 0.4s;
}
.category-wrapper.clicked .each-child-category:nth-child(4) {
    transition: all 1s ease 0.6s;
}
.category-wrapper.clicked .each-child-category:nth-child(5) {
    transition: all 1s ease 0.8s;
}
.category-wrapper.clicked .each-child-category:nth-child(6) {
    transition: all 1s ease 1s;
}
.child-category-name {
    font-size: 20px;
    font-weight: 700;
    display: block;
}
.child-category-desc {
    display: block;
    width: 100%;
    font-size: 14px;
}
.child-category-trigger.category-green {
    border: 4px solid #6c9b1e;
}
.child-category-trigger.category-green:hover {
    color: #6c9b1e;
}
.each-child-category.category-green{
    border: 3px solid #6c9b1e;
}
.each-child-category.category-green:hover {
    color: #6c9b1e;
}
.child-category-trigger.category-red {
    border: 4px solid #d70904;
}
.child-category-trigger.category-red:hover {
    color: #d70904;
}
.each-child-category.category-red{
    border: 3px solid #d70904;
}
.each-child-category.category-red:hover {
    color: #d70904;
}
.child-category-trigger.category-blue {
    border: 4px solid #174e65;
}
.child-category-trigger.category-blue:hover {
    color: #174e65;
}
.each-child-category.category-blue{
    border: 4px solid #174e65;
}
.each-child-category.category-blue:hover {
    color: #174e65;
}
.page-products .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 2% !important;
}
.column.main .list.products-list .product-item {
    padding: 15px;
    border: 1px solid #d1d1d1;
    margin-bottom: 15px;
}
.products-list .product-item-photo {
    padding: 0 30px 0 0;
}
.products.wrapper .product-item-name, .products.wrapper .product.name a {
    font-weight: 700;
    font-size: 18px;
}
.product-item .price-box {
    margin: 0;
}
.product-item .price-box .call-for-price {
    color: #7EA52E;
}
.product-item-details div[data-role="priceBox"] a {
    color: #7EA52E;
    font-size: 16px;
    text-decoration: underline;
    margin-top: 5px;
}
.product-info-main .page-title{
    font-size: 28px;
}
.box-tocart .action.tocart {
    border-radius: 3px !important;
}
.block-minicart .block-content > .actions > .primary .action.primary {
    border-radius: 4px;
}
.mark, mark {
    background-color: transparent;
}
.minicart-wrapper .block-minicart {
    padding: 20px 15px 0;
}
.cart-totals .grand .mark, .opc-block-summary .table-totals .grand .mark,
.cart-totals .grand .amount, .opc-block-summary .table-totals .grand .amount{
    font-size: 14px;
}
.block-minicart .block-content > .actions > .primary .action.primary,
.block-minicart .action.viewcart,
.checkout-cart-index .cart-summary .checkout-methods-items .action.primary.checkout{
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
}
.checkout-cart-index .cart-summary .checkout-methods-items .action.primary.checkout{
    border-radius: 4px;
}
.block-minicart .items-total,
.block-minicart .subtotal,
.block-minicart .block-content>.actions>.primary{
    margin: 0 !important;
}
.block-minicart .block-content>.actions>.primary{
    margin-bottom: 10px !important;
}
.table-checkout-shipping-method {
    min-width: 100% !important;
}
.table-checkout-shipping-method tr.row {
    margin-right: 0;
    margin-left: 0;
}
.opc-wrapper .shipping-address-item {
    border: 2px solid #d1d1d1;
    margin-right: 15px;
}
.opc-wrapper .action-select-shipping-item {
    float: left;
    margin: 5px 0 0;
    background: #1c4e65;
    color: #fff;
    border: none;
}
.opc-wrapper .edit-address-link {
    display: block;
    float: left;
    margin: 5px 10px 0  0;
    color: #fff;
    background: #87a52e;
    text-decoration: none;
    padding: 11px 20px;
}

/*---- Media Queries  ----*/

@media only screen and (min-width: 1024px){
    .page-layout-1column .block.related  .products-grid .product-item {
        width: 20%;
    }
}
@media only screen and (max-width: 1024px){
    .lof-autosearch.box.search_box {
        width: auto;
    }
    .cart-container {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .cart-container .form-cart {
        width: 100% !important;
        order: 1 !important;
        padding-right: 0 !important;
    }
    .cart-summary {
        width: 100% !important;
        float: none !important;
        padding: 25px !important;
        margin: 25px 0 !important;
    }
    .cart-summary._sticky {
        top:0 !important;
    }
    .cms-page-view .each-sub-category {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media (min-width: 768px){
    .header.content {
        padding: 15px 20px 15px 20px !important;
    }
    .page-header .header.content .logo {
        margin: 0 !important;
        float: none;
        display: inline-block;
    }
    .navigation {
        display: none !important;
    }
    .nav-sections{
        margin-bottom: 0 !important;
    }
    .product.data.items > .item.content {
        margin-top: 40px;
        height: 400px;
        overflow: auto;
    }
    .product.data.items > .item.content {
        margin-top: 40px !important;
        height: 450px;
        overflow: auto;
    }
}
@media only screen and (max-width: 991px){
    h1,
    .heading-1 {
        font-size: 42px;
    }
    h2,
    .heading-2{
        font-size: 36px;
    }
    h3,
    .heading-3{
        font-size: 32px;
    }
    h4,
    .heading-4{
        font-size: 34px;
    }
    h5,
    .heading-5{
        font-size: 20px;
    }
    h6,
    .heading-6{
        font-size: 18px;
    }

    .footer-links {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
    .footer-links h6 {
        margin-bottom: 10px;
    }
    .header-contact {
        font-size: 14px;
    }
    .block-search {
        width: 210px;
    }
    nav.desktop-header-nav ul li {
        padding-left: 10px;
    }
    nav.desktop-header-nav ul li>a {
        font-weight: 400;
    }
    .page-products.page-layout-2columns-left .products-grid .product-item {
        width: 33.33%;
        padding: 15px 15px 15px;
        margin: 0 ;
    }
    .page-layout-1column .block.related .products-grid .product-item{
        margin-bottom: 20px;
        width: calc(33.33% - 15px);
        margin-right: 15px;
    }
    .products.list.items.product-items .product-item-info {
        border: 1px solid #d1d1d1;
        margin: 0;
    }
    .products.list.items.product-items .product-item-info .product.details.product-item-details {
        text-align: center;
    }
    .product-item-info .product-image-container {
        width: 140px !important;
    }
    .each-card-holder {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .lof-autosearch.box.search_box {
        margin-top: 10px !important;
        width: 100%;
        margin-bottom: 10px;
    }
    .header.content .lof-search {
        width: 100%;
    }
    .page-products .products-grid .product-item:nth-child(4n + 1) {
        margin-left: 0 !important;
    }
    .products.list.items.product-items .product-item-info .product.details.product-item-details {
        padding-left: 0;
        padding-right: 0;
    }
    .product-item-details div[data-role="priceBox"] a,
    .products.wrapper .product-item-name,
    .products.wrapper .product.name a{
        font-size: 14px;
    }
    .each-child-category {
        margin: 15px 10px 0;
    }
    .cms-page-view .each-sub-category {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media only screen and (max-width: 767px) {
    h1,
    .heading-1 {
        font-size: 36px;
    }
    h2,
    .heading-2{
        font-size: 32px;
    }
    h3,
    .heading-3{
        font-size: 24px;
    }
    h4,
    .heading-4{
        font-size: 20px;
    }
    h5,
    .heading-5{
        font-size: 18px;
    }
    h6,
    .heading-6{
        font-size: 16px;
    }
    body,p{
        font-size:14px;
        font-weight: 400;
    }
    .page-header {
        margin-bottom: 0;
    }
    .full-width-banner {
        padding:50px 15px;
    }
    .full-width-banner .section-wrapper {
        padding: 0;
    }
    .header.content nav.desktop-header-nav,
    .panel.header .header-top-links{
        display: none;
    }
    .header-contact {
        float: right;
        margin-top: 6px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .message.notice dl.block {
        font-size: 20px;
    }
    .block-search,
    .minicart-wrapper {
        margin-top: 0;
        margin-left: 0;
    }
    .actionable-card {
        padding: 30px;
        min-height: 180px;
    }
    .actionable-card .desc p , .actionable-card .desc {
        font-size: 18px;
    }
    .copyright-content {
        margin-bottom: 10px;
    }
    .footer-bottom {
        flex-direction: column;
        padding: 0 0 30px;
        text-align: center;
    }
    .block-search {
        width: auto;
    }
    .product-item-info .product-image-container {
        width: 180px !important;
    }
    .page-products.page-layout-2columns-left .products-grid .product-item {
        width: 50%;
    }
    .category-image .image {
        height: 250px;
        max-height: 250px;
    }
    .cms-page-view #maincontent h1,
    .cms-page-view #maincontent h2,
    .cms-page-view #maincontent h3,
    .cms-page-view #maincontent h4,
    .cms-page-view #maincontent h5,
    .cms-page-view #maincontent h6,
    .cms-page-view #maincontent p,
    .cms-page-view #maincontent img,
    .cms-page-view #maincontent ul,
    .cms-page-view #maincontent ol,
    .cms-page-view #maincontent video{
        margin-bottom: 15px;
    }
    .each-card-holder {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 0 15px;
    }
    .cms-page-view.cms-shipping-procedures #maincontent img {
        width: 100%;
        margin-right: 0;
    }
    .newsletter-wrapper a img {
        height: 320px !important;
        object-fit: cover;
    }
    .newsletter-wrapper .block.newsletter {
        max-width: 450px;
        padding: 30px 15px;
    }
    .header.content .lof-search {
        width: 100% !important;
    }
    .page-layout-1column .block.related .products-grid .product-item{
        width: calc(50% - 15px);
        margin-left: 0 ;
    }
    .block.related .product-item-name, .block.related .product.name a {
        font-weight: 700;
        font-size: 13px;
    }
    .logo {
        margin-bottom: 0;
        margin-top: 5px;
        margin-left: 0;
    }
    .logo img {
        width: auto;
        max-width: 70px;
    }
    .header-contact {
        margin-top: 12px;
        margin-right: 45px;
    }
    .block-search, .minicart-wrapper {
        /* margin-top: 47px; */
        margin-left: 39px;
        margin-right: 2px;
    }
    .nav-toggle {
        left: auto;
        top: 12px;
        right: 15px;
    }
    .nav-toggle:before {
        color: #fff;
    }
    .sections.nav-sections .navigation {
        margin-top: 0;
    }
    .nav-sections .header.links li.greet.welcome {
        border-top: none;
        padding: 0 15px;
    }
    .page-footer {
        margin-top: 0;
    }
    .category-sec-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .category-wrapper {
        position: relative;
        margin: 0;
        top: auto;
        transform: none;
        left: auto;
        overflow: visible;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .category-wrapper.clicked {
        top: 0;
        left: 0;
        transform: none;
    }
    .child-category-trigger {
        min-height: 180px;
    }
    .child-category-trigger .desc {
        font-size: 18px;
    }
    .category-wrapper.clicked .child-category-trigger {
        left: 0;
        transform: translate(0 , 0);
    }
    .scroll-down-link {
        width: 32px;
        height: 32px;
    }
    .product-info-main .page-title{
        font-size: 28px;
    }
    .product-info-price .price-box .price-container .price {
        font-size: 28px;
        font-weight: 700;
        margin-top: 15px;
        display: inline-block;
    }
    .cart-container {
        padding: 0 15px;
    }
    .block-cart-failed, .cart-container .form-cart {
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .cart.table-wrapper {
        border-top:none;
        padding-right: 2px;
    }
    .cart.table-wrapper .product-item-name {
        font-size: 14px;
        display: block;
        margin: 0;
        font-weight: 700;
    }
    .cart-container .form-cart .product-item-details {
        padding-left: 75px;
    }
    .checkout-cart-index .cart-discount .block.discount {
        margin-bottom: 15px;
    }
    .checkout-cart-index .cart-discount .block>.title {
        border: none;
    }
    .cart-summary {
        padding: 15px !important;
        margin: 15px 0 !important;
        order: 2 !important;
    }
    .cart-discount {
        border-bottom: none !important;
        order: 3 !important;
    }
    .cms-page-view .category-card span.category-name {
        font-size: 14px;
    }
    .block-widget-contact-form .block-title{
        padding: 0;
    }
    .block-widget-contact-form .field {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 ;
    }
    .lof-autosearch.box.search_box {
        width: 80%;
        margin-bottom: 15px;
    }
    .header.content nav.desktop-header-nav,
    .panel.header .header-top-links {
        display: block;
    }
    .panel.header .header-top-links{
        padding: 5px 0;
    }
    .header-top-links li {
        margin: 0;
    }
    .header-top-links li a {
        color: #fff;
        font-size: 14px;
        background: #333;
        margin: 5px auto;
        padding: 5px;
        font-size: 11px;
        border-radius: 2px;
        transition: all 0.3s ease 0s;
    }
    .nav-toggle,
    .header-contact {
        display: none;
    }
    nav.desktop-header-nav ul li {
        padding-left: 0;
        margin-bottom: 0;
    }
    .header.content nav.desktop-header-nav {
        text-align: right;
        margin-top: 8px;
    }
    nav.desktop-header-nav ul li>a {
        font-weight: 600;
        margin-left: 20px;
    }
}
@media only screen and (max-width: 576px){
    .newsletter-wrapper .block.newsletter {
        max-width: 260px;
    }
    .block.newsletter .actions {
        display: block;
        width: 100%;
        margin-top: 15px;
    }
    .newsletter-wrapper a img {
        height: 320px !important;
    }
    .product-item-info .product-image-container {
        width: 140px !important;
    }
    .lof-autosearch .ui-autocomplete {
        width: 100% !important;
    }
    .each-child-category {
        border: 2px solid #6c9b1e;
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        margin: 15px 5px 0;
    }
    .cms-page-view .each-sub-category {
        margin-bottom: 5px;
        padding: 0 5px;
        max-width: 50%;
        flex: 0 0 50%;
    }
}
@media only screen and (max-width: 480px) {
    .footer-links {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .page-products.page-layout-2columns-left .products-grid .product-item {
        width: 100%;
        padding: 0 0 25px;
    }
    .page-products.page-layout-2columns-left .product-item-info {
        margin: 0;
    }
    .product-item-info .product-image-container {
        width: 190px !important;
    }
    .lof-autosearch.box.search_box {
        width: 75%;
    }
}
/*rma form fix*/
.page-products .columns {
    position: static !important;
}
.page-layout-1column.page-with-filter .column.main {
    position: static !important;
}
.catalog-category-view.page-layout-1column .column.main, .catalog-category-view.page-layout-1column.page-products .columns {
    padding: 0 !important;
    display: block !important;
}
@media only screen and (max-width: 767px){
.sidebar.sidebar-main {
    position: relative;
    bottom: 61px;
}
div#layer-product-list {
    position: relative;
}
.toolbar-sorter.sorter {
    top: -60px;
}
}
/*rma form fix end*/
/*cms page list style duplication start*/
.cms-page-view #maincontent .cms-pages-content ul li {
    /* list-style: none; */
}
.cms-page-view #maincontent .cms-pages-content ul {
    margin-left: 18px;
}
.cms-page-view #maincontent ul {
    margin-left: 18px;
}
/*cms page list style duplication end*/
/* compare product start*/
.page-wrapper ul.compare.wrapper {
    margin-right: -36%;
}
.compare.wrapper .counter.qty {
    color: #fff !important;
}
.compare.wrapper a.action.compare {
    color: #fff !important;
}
/* compare product end */
/*icons change start*/
.product-social-links .action.towishlist:before, .block-bundle-summary .action.towishlist:before, .product-item .action.towishlist:before, .table-comparison .action.towishlist:before {
    content: "";
    width: 25px;
    min-width: 25px;
    height: 25px;
    background-image: url(/pub/media/wysiwyg/list-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.product-item .tocompare:before, .product-social-links .action.tocompare:before {
    content: "";
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url(/pub/media/wysiwyg/compare-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* Part Number(OEM) label */
.field.configurable.required .label {
    display: none;
}
/*Footer overlay etc*/
.footer-links ul li a, .copyright-after a {
    font-size: 14px;
    padding-bottom: 7px;
    cursor: pointer;
    color: #fff;
}
.header.panel > .header.links > .authorization-link:after {
    display: none !important;
}

.page-footer{
    position:relative;
}
.footer.content {
    position: relative;
    z-index: 2;
}
.page-footer:before{
    content:"";
    position:absolute;
    background:rgba(0,0,0,0);
    width:100%;
    height:100%;
    top:0;
    left:0;
    transition:all 0.3s ease 0s;
}
.page-footer:hover:before{
    background:rgba(0,0,0,0.4);
}
/*CMS page out of stock*/
.cms-page-view .stock.unavailable {
    display: none;
}
.block.upsell button.action.tocart.primary {
    display: block;
    margin-top: 15px;
}
.block.upsell .product.name a {
    text-decoration: none;
}
