        @import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
    outline: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}
body {
    line-height: 1;
    font-family: 'Lato', sans-serif;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
} */


textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */



audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */

[hidden] {
    display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-size: 100%; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

figure {
    margin: 0;
}


form {
    margin: 0;
}


fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0; /* 1 */
    padding: 0;
    white-space: normal; /* 2 */
    *margin-left: -7px; /* 3 */
}


button,
select {
    text-transform: none;
}



button[disabled],
html input[disabled] {
    cursor: default;
}


input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    vertical-align: middle;
}



.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex.nowrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;     
    }

.flex.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.flex.space-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .flex.space-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .flex.space-around {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .flex.space-evenly {
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

    .flex.space-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .flex.direction{
        flex-direction: column;
    }

 
    .flex.align-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .flex.align-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .flex.align-start {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .flex.align-end{
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .container{
        max-width: 1265px;
        padding:0px 50px;
        margin:0 auto;
    }

    header{
        background-color: #000;
        padding:30px 24px;  
    }
    header .header.content{
        padding-top:0px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    header .header.content .block-search{
        order:-1;
        width: auto;
        float: none;
        margin: 0px;
        padding: 0px;
        position: inherit;
        margin-left:55px;
    }
    header .header.content .block-search form{
         width:440px;
        position: relative;
        height:44px;
    }
    header .header.content .block-search form .actions{
        position: absolute;
        right:0;
        top:0;
        width:44px;
        height: 44px;
        cursor: pointer;
    }
    header .header.content .block-search .search input{
       width:91%;
        height: 100%;
        padding: 10px 20px 12px 20px;
        color:#fff;
        font-size:18px;
        font-weight: 400;
         background-color: #7a828c;
         border:none;
         font-family: 'Lato', sans-serif !important;
    }
    .logo{
        margin-right: 97px;
        margin-bottom:0px;
        order:-2;
    }
    header .header.content .social-account{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    header .header.content .social-account .social-icons ul li{
        margin-bottom: 0px;

    }
    header .header.content .block-search .search input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
        color:#fff;
        font-size:18px;
        font-weight: 400;
        font-family: 'Lato', sans-serif !important;
      }
      
      header .header.content .block-search .search input:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color:#fff;
        font-size:18px;
        font-weight: 400;
        font-family: 'Lato', sans-serif !important;
      }
      
      header .header.content .block-search .search input::-ms-input-placeholder { /* Microsoft Edge */
        color:#fff;
        font-size:18px;
        font-weight: 400;
        font-family: 'Lato', sans-serif !important;
      }

    header .header.content .block-search .actions button{
        position: absolute;
        right:0;
        top:0;
        width:100%;
        height: 100%;
        background-color: #ff0000;
        display: flex;
        align-items: center;
        justify-content: center;
        border:none;
        cursor: pointer;
        opacity: 1;
    }
    header .header.content .block-search .actions button:before{
        font-size:26px !important;
        color:#fff !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 16px;
        line-height: 32px;
        color: #757575;
        content: '\e615';
        font-family: 'luma-icons';
        margin: 0;
        vertical-align: top;
        display: inline-block;
        font-weight: normal;
        overflow: hidden;
        speak: none;
        text-align: center;
    }
    header .header.content .block-search form .actions:hover button{
        background-color: #cd2b2b;
    }


    .social-icons ul li a i{
        color:#fff;
        font-size: 26px;
        margin: 0px 5px;
        transition: 0.5s ease-in-out;
    }
    .social-icons ul li a:hover i{
     color:#ff0000;   
    }
    .social-icons{
        margin-right: 25px;
        margin-left: 0px;
    }
    header .header.content .minicart-wrapper{
        position: absolute;
        right:0;
    }
    header .header.content .minicart-wrapper a:before{
        font-size:45px;
        line-height: inherit;
        color:#ff0000;
        display: none;
    }
    header .header.content .minicart-wrapper .action.showcart.active:before{
        display: none;
    }
    header .header.content .minicart-wrapper a.showcart{
        width:58px;
        height: 46px;
        background-image: url(../images/cart-icon.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .my-account a{
        text-decoration: none;
        color:#fff;
        font-family: 'Bebas Neue';
        font-weight: 400;
        border-right:1px solid #fff;
        line-height: 43px;
        padding-right: 15px;
        margin-right: 24px;
        font-size: 18px;
        display: inline-block;
    }
    .cart-icon{
        position: relative;
    }
    .cart-icon span{
        position: absolute;
        left:60%;
        top:50%;
        transform: translate(-50%, -50%);
        color:#fff;
        font-family: 'Bebas Neue';
        font-size:18px;
        font-weight: 400;
    }
    .nav-sections-item-content,
    .navigation{
        background-color: #a3acb2;
    }
    .cms-home #maincontent{
        max-width: 100%;
        padding:0px;
        margin:0px;
    }
    .nav-sections{
        margin-bottom: 0px;
    }
    nav.navigation ul li a{
        color: #000000 !important;
        font-family: 'Bebas Neue';
        font-weight: 700 !important;;
        text-transform: uppercase;
        transition: 0.5s ease-in-out;
        text-decoration: none !important;
        text-align: center;
        display: inline-block !important;;
        letter-spacing: 0.70px !important;;
        font-size: 15px;
        line-height: inherit !important;
        position: relative !important;
        padding:0px !important;

    }
    nav.navigation ul > li > a > span{
        display: table-cell;
        height: 41px;
        vertical-align: middle;
        padding: 10px 10px;
        white-space: normal;
        word-break: break-word;
        width: 110px;
    }
    nav.navigation ul > li > a span.ui-menu-icon {
            text-decoration: none;
            top: 50%;
            transform: translateY(-50%);
            height: auto !important;
            width: auto !important;
            padding: 0px !important;
            right:-2px !important;
    }
    nav.navigation ul li ul li a{
        text-align: left;
        display: block !important;
        padding:10px;
    }
    nav.navigation ul li ul li a span{
        height: auto !important;
        width:100% !important;
    }
    nav.navigation ul li a:hover{
        background-color: #7a828c;
        color:#fff !important;
    }
    .image-wrapper{
        margin-top: 55px;
    }

    .group-image .img-box{
        width:48.5%;
        height: 320px;
        position: relative;
    }
    .group-image .img-box:before{
        content: "";
        position: absolute;
        left:0;
        top:0;
        width:100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .text-center{
        text-align: center;
    }
    .mp-banner-slider .banner-slider{
        position: relative;
    }
    .mp-banner-slider .banner-slider .container{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }

    .group-image .img-box .img-content{
        position: absolute;
        left:50%;
        top:50%;
        transform: translate(-50%, -50%);
        width:90%;
    }
    .group-image .img-box .img-content h2{
        color:#fff;
    }
    .group-image .img-box img{
        width:100%;
        height:100%;
        object-fit: cover;
    }

    .slide-item-banner{
        position: relative;
    }
    /*.slide-item-banner .banner-slide-item{
        position: absolute;
        left:0;
        top:100px;
        width:100%;
    }*/
    .mp-banner-slider .banner-slider .banner-details{
        margin-left: auto;
        max-width: 475px;
        background-color: #808080;
        padding:30px 15px;
    }
    .mp-banner-slider .owl-prev span,
    .mp-banner-slider .owl-next span{
        width:80px;
        height: 80px;
        border-radius: 50%;
        background-color: #ddd;
        line-height: 72px;
        opacity: 0.6;
        color: #cd2b2b !important;
        font-size: 58px !important;
        position: relative;
        font-size:0px;
    }
    .mp-banner-slider .owl-prev span:before,
    .mp-banner-slider .owl-next span:before{
        content: "";
        position: absolute;
        font-family: 'FontAwesome';
        left:50%;
        top:50%;
        transform: translate(-50%, -50%);
        color: #cd2b2b !important;
        font-size: 58px !important;
    }
    .mp-banner-slider .owl-prev span:before{
        content: "\f104";
    }
    .mp-banner-slider .owl-next span:before{
        content: "\f105";
    }
    .mp-banner-slider .owl-dots{
        display: none;
    }
    .slide-item-banner .img-box img{
        width:100%;
        height: 560px;
        object-fit: cover;
    }
    .mp-banner-slider .banner-slider .banner-details .banner-title{
        color:#fff;
        text-transform: uppercase;
    }
    .mp-banner-slider .banner-slider .banner-details .banner-title sup{
        font-size: 35px;
         margin-left: 2px;
    }
    .banner-inner-content h1 sup{
        font-size: 27px;
    }
    h1, h2, h3, h4, h5, h6{
        font-family: 'Bebas Neue' !important;
        font-weight: 400;
    }
    
    h1{
        font-size:55px;
        line-height: 50px;
        font-family: 'Bebas Neue';
        font-weight: 400;
    }
    h2{
        font-size:40px!important;
    }
    p{
        margin-bottom: 20px;
    }
    .btn{
        color:#fff;
        font-size: 28px !important;
        font-weight: 400;
        font-family: 'Bebas Neue';
        padding:7px 10px;
        text-decoration: none;
        background-color:#ff0000;
        border:1px solid #fff;
        display: inline-block;
        margin-top: 7px;
        transition: 0.5s ease-in-out;
    }
    .btn:hover{
        background-color: #000;
        color:#fff;
        text-decoration: none;
    }
    .axel-group{
        background-color: #eaeff2; 
        position: relative; 
        margin-top: 55px;
    }
    .axel-group:before{
        content: "";
        position: absolute;
        left:0;
        top:0;
        width:100%;
        height: 100%;
        background: rgb(165,173,178);
        background: linear-gradient(0deg, rgba(165,173,178,1) 0%, rgba(0,0,0,0.011642156862745057) 90%);
    }
    .axel-group .axel-img{
        position: absolute;
        left: -47px;
        top: 30px;
        z-index: 9;
    }
    .axel-content{
        padding:60px 40px;
        background-color: #000;
        width:470px;
        margin-left: auto;
        clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
        position: relative;
    }
    .axel-content:before{
        content: "";
        position: absolute;
        left: 17px;
        top: 14px;
        clip-path: polygon(7% 0, 0% 100%, 42% 100%);
        width: 30px;
        height: 100%;
        background-color:#ff0000;
        z-index: 99;
        transform: rotate(7deg);
    }
    .axel-content h3{
        font-size:45px;
        line-height: 45px;
        color:#fff;
        letter-spacing: 3px;
    }
    .axel-content a{
        margin-top: 20px;
    }
    .heading-group{
        text-align: center;
        margin-bottom: 40px;
    }
    .heading-group h2{
        color:#000;
        font-family: 'Bebas Neue';
        position: relative;
    }
    .heading-group.border-line h2:before{
        content: "";
        position: absolute;
        left:50%;
        bottom:-5px;
        transform: translateX(-50%);
        width:120px;
        height: 4px;
        background-color: #000;
    }
    .product-list ul li{
        width:31%;
    }
    .product-item .product-img{
        width:100%;
        height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }
    .product-item .product-img img{
        width:100%;
    }
    .product-item .product-detial a{
        font-size:22px;
        font-weight: 700;
        color:#ff0000;
        text-decoration: none;
        font-family: 'Bebas Neue';
    }
    .product-item .product-detial h3{
        font-size:22px;
        color:#000;
        font-family: 'Lato', sans-serif;
        margin-bottom: 15px;
        line-height: 27px;

    }
    .featured-products{
        margin:70px 0px;
    }
    .single-img{
        background-image: url(../images/full-img.jpg);
        background-repeat: no-repeat;
        background-size:cover;
        background-position: center;
        height:420px;
        position: relative;
    }
    .single-img.full-img2{
        background-image: url(../images/full-img2.jpg);
    }
    .single-img:before{
        content: "";
        position: absolute;
        left:0;
        top:0;
        width:100%;
        height:100%;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .single-img .heading-group{
        position: absolute;
        left:50%;
        top:50%;
        transform: translate(-50%, -50%);
        width:90%;
    }

    .heading-group h4{
        font-size: 24px; 
        font-weight: 400;
        text-transform: capitalize;
        font-family: 'Lato', sans-serif !important;
        margin-bottom:15px;
    }
    .heading-group.white{
        color:#fff;
    }
    .heading-group.white h2{
        color:#fff;
    }
    .single-img .heading-group h2 {
        margin-bottom: 30px;
        font-weight: 400;
    }
    .footer-container {
        padding: 0px 0 30px;
        position: relative;
        background: #000000;
        
    }
    .inner-footer{
        padding-top: 30px;
    }
    .inner-footer .block-subscribe {
        margin: 0 0 30px 0;
    }
    .inner-footer .block-subscribe .block-content {
        position: relative;
    }
    .inner-footer .block-subscribe .nwl-title {
        position: absolute;
        top: 0;
        left: 20px;
        text-transform: uppercase;
        line-height: 37px;
        font-size: 16px;
        color: #ffffff;
        z-index: 9;
        font-weight: 400;
    }
    .inner-footer .block-subscribe .newsletter{
        max-width: 100% !important;
        width:100%;
        margin-bottom: 50px;
    }
    .inner-footer .block-subscribe .newsletter form{
        position: relative;
    }
    .inner-footer .block-subscribe .newsletter form .block-subscribe{
        width:100%;
        max-width: 100% !important;
    }

    .inner-footer .block-subscribe .newsletter form .actions{
        position: absolute;
        right:0;
        top:0;
    }
    .inner-footer .block-subscribe .newsletter form .actions button{
        border-radius: 0;
        background: #CD2B2B;
        display: inline-block;
        padding: 8px 18px;
        color: #ffffff;
        border: none;
        font-size: 16px;
        font-weight: 400;
        font-family: "Roboto", sans-serif;
        line-height: 21px;
        text-align: center;
        text-transform: uppercase;
        vertical-align: middle;
    }
    .inner-footer .block-subscribe .newsletter form input {
        float: left;
        width: 100%;
        background: #191919;
        border: 1px solid #fff;
        padding: 0 150px 0 20px;
        padding-top: 0;
        height:37px;
        color:#fff !important;
    }
    .inner-footer .block-subscribe .newsletter .control:before{
        display: none;
    }
    .input-box {
        position: relative;
    }
    /*.inner-footer .block-subscribe .input-text {
        width: 100%;
        border-right: 0;
        height: 37px;
        background: none;
        border: none;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        font-family: roboto,sans-serif;
        color: #fff;
        font-size: 14px;
        padding: 0 8px;
    }*/
    .inner-footer .block-subscribe .actions {
        float: left;
        width: auto;
        margin: 0;
    }
    .inner-footer .block-subscribe .actions .button {
        line-height: 17px;
        position: absolute;
        top: 1px;
        right: 0;
    }
    .button.button-secondary span, .button span, 
    .cart-table .product-cart-actions .button span, 
    #co-shipping-method-form .buttons-set .button span, 
    .footer .button span {
        z-index: 9;
        position: relative;
    }
    .inner-footer .footer-cols-wrapper {
        padding-bottom: 25px;
        position: relative;
    }
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .footer-cols-wrapper h4{
        font-family: 'Lato', sans-serif !important;
        color: #ffffff;
        font-size: 16px;
        display: block;
        padding: 0 0 20px;
        margin: 0;
        text-transform: uppercase;
        font-weight: 400;
    }
    .footer-col-content ul li{
        word-break: break-all;
        line-height: 1.4;
        padding: 4px 0; 
        margin-bottom: 0px;
    }
    .cms-home p, .footer p {
        color: #8b8b8b;
    }
    .footer-col-content ul li a{
        color: #CD2B2B;
        text-decoration: none;
        transition: 0.5s ease-in-out;
        font-size:14px;
    }
    .footer-col-content ul li a:hover{
        color:#fff;
    }
    .inner-footer .contact-f-block p {
        line-height: 20px;
    }
    
    .footer-cols-wrapper .col-3{
        padding-left:15px;
        padding-right:15px;
        width:25%;
    }
    .material-icons-location_on:before {
        content: "\e0c8";
    }
    .material-icons-ico, [class*=material-icons-]:before {
        font-family: material icons;
        font-weight: 400;
        font-style: normal;
        font-size: inherit;
    }
    .inner-footer p {
        color: #8b8b8b;
        line-height: 20px;
        margin-bottom:15px;
    }
    .inner-footer a{
        text-decoration: none;
        color:#777;
    }
    .inner-footer .block-subscribe .actions .button {
        line-height: 17px;
        position: absolute;
        top: 1px;
        right: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        background: #cd2b2b;
        display: inline-block;
        padding: 10px 18px;
        color: #fff;
        border: none;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
        text-transform: uppercase;
        vertical-align: middle;
        overflow: hidden;
        cursor: pointer;
    }
    .inner-footer .block-subscribe .actions .button span{
        z-index: 9;
        position: relative;
    }
    .video-box{
        width:48%;
    }
    .video-box .video-cover{
        height:320px;
        width:100%;
        position: relative;
    }
    .video-box .video-cover img{
        width:100%;
        height:100%;
        object-fit: cover;
    }
    .play-btn{
        position: absolute;
        left:50%;
        top:50%;
        transform: translate(-50%, -50%);
        z-index: 9;
    }
    .about-video h5{
        font-size:22px;
        color:#000;
        font-family: 'Lato', sans-serif !important;
        padding:15px 0px;

    }
    .video-sec{
        margin:70px 0px;
    }
    .other-video{
        background-color: #7a828c;
    }
    .other-video .video-box{
        width:23%;
    }
    
    .other-video .video-cover{
        width:100%;
        height:150px;
        position: relative;
    }
    .other-video .video-cover img{
        width:100%;
        height:100%;
        object-fit: cover;
    }
    .other-video .video-box.all-video {
        background-color: #000;
        clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .other-video .video-box.all-video .video-cover:before{
        content: "";
        position: absolute;
        left: 6px;
        top: 0;
        clip-path: polygon(20% -25%, 5% 100%, 55% 100%);
        width: 30px;
        height: 100%;
        background-color: #ff0000;
        z-index: 99;
        transform: rotate( 7deg);
    }
    .toggle-button{
        display: none;
        position: absolute;
        right: 50px;
        top: 25px;
    }
    .toggle-button i{
        font-size: 30px;
        color:#fff;
    }
    .close-nav{
        position: absolute;
        right:20px;
        top:20px;
        font-size: 30px;
        color:#fff;
        z-index: 999;
        cursor: pointer;
    }
    .mp-product-slider-content{
        max-width: 1280px;
        margin:0 auto;
        padding:0px 20px;
    }

    .mp-product-slider-content .slider-product-item-info{
        margin:0 auto;
    }
    .mp-product-slider-content .slider-product-item-details strong a{
        font-size: 22px;
        color: #000;
        font-family: 'Lato', sans-serif;
        margin-bottom: 15px;
        line-height: 27px;
        font-weight: 700;

    }
    .mp-product-slider-content .slider-product-item-details .view-more{
       font-size: 22px !important;
    font-weight: 400;
    font-family: 'Bebas Neue';
    padding: 7px 10px;
    text-decoration: none;
    background-color: #ff0000;
    border: 1px solid #fff;
    display: inline-block;
    margin-top: 7px;
    transition: 0.5s ease-in-out;
    color: #fff !important;
    }
    .mp-product-slider-content .slider-product-item-details .view-more:hover{
        background-color:#000 ;
    }
    footer .field-error, div.mage-error[generated]{
        margin-top:0;
    }
    /*.field-error, div.mage-error[generated]{
        padding-top:15px;
    }*/
    .breadcrumbs ul{
        max-width: 1280px;
        padding-left:20px !important;
        padding-right: 20px !important;
        margin:0 auto !important;
    }
    .breadcrumbs ul li a, .breadcrumbs ul li strong{
        color: #8b8b8b;
        font-weight: normal;
        font-size:15px;
        vertical-align: inherit;
    }
    .breadcrumbs{
        overflow: hidden;
        background-color: #f5f5f5;
        padding: 14px 0 13px;
        max-width: 100%;  
    }
    .category-view p{
        font-size: 16px;
        padding-top: 0px;
        line-height: 22px;
    }
    .page-title-wrapper{
        margin-top:30px;
    }
    .product-info-main .page-title{
        margin-bottom: 15px;
        font-size: 34px;
        line-height: 1.382em;
        border: 0;
        display: block;
        text-transform: none;
        font-family: 'Lato', sans-serif !important;
    }
    .product-info-main .value{
        font-size: 16px;
        line-height: 27px;
        color:#333;
    }
    .price{
       /* font-size: 45px !important;*/
        font-weight: 500 !important;
        color: #191919 !important;
    }
    .tocart{
        font-size: 18px !important;
        line-height: 28px !important;
        padding: 10px 15px !important;
        float: left !important;
        white-space: normal !important;
        background-color: #CD2B2B !important;
        border:none !important;
         font-family: 'Lato', sans-serif !important;
    }
    .product-info-main .box-tocart .fieldset .qty{
        margin-right: 20px;
        float: left;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .product-info-main .box-tocart .fieldset .qty label{
       margin-bottom: 0px;
       margin-right: 10px;
    }
    .product-info-main .box-tocart .fieldset .qty .control input{
        margin-bottom: 0px;
    }
    .qty label span{
        line-height: 50px;
        color: #333333;
        font-size: 14px;
    }
    .qty input{
        height: 50px;
        width: 3em;
        text-align: center;
        vertical-align: middle;
        padding: 0 8px;
        border: solid 1px #dfdfdf;
        background: #f5f5f5;
        font-size: 14px;
        width:3em !important;
    }
    .towishlist, .tocompare{
        padding: 2px 15px 2px 0px !important;
        margin-left: 15px;
        border-right: 1px solid #ccc;
        display: inline-block !important;
        padding: 0 3px 3px !important;
        font-weight: 300;
        color: #191919 !important;
        text-decoration: underline !important;
        font-size: 17px !important;
        text-transform: capitalize !important;
        margin-top:15px !important;
    }
    .towishlist{
        margin-right: 10px !important;
        padding-right: 20px !important;
    }
    .towishlist:before, .tocompare:before{
        font-size: 16px;
        padding-right: 5px;
        color: #191919;
        opacity: .2;
    }
    .tocompare{
        margin-left: 0px !important;
    }

    .customer-account-login .page-title-wrapper .page-title,
    .customer-account-create .page-title,
    .customer-account-forgotpassword .page-title,
    .customer-account-index .page-title,
    .page-title{
        font-size: 24px;
        font-weight: 500;
        color: #000000;
        padding-bottom: 0;
        margin-bottom: 23px;
        text-transform: uppercase;
        font-family: 'Lato', sans-serif !important;
        line-height: 30px;
    }
    .customer-account-login .block-customer-login,
    .customer-account-login .block-new-customer{
        border: solid 1px #dfdfdf;
        border-top: solid 2px #CD2B2B;
        padding: 30px 29px;
        margin-bottom: 60px;
    }
 .customer-account-login .block-customer-login .block-title strong{
    margin: 0;
    color: #000000;
    font-family: 'Lato', sans-serif !important;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 17px;
 }
 .customer-account-login .block-new-customer .block-title strong{
    text-transform: lowercase;
 }
 .customer-account-login .block-customer-login .block-title{
    border-bottom:none;
 }
 .customer-account-login .block-customer-login form .label,
.customer-account-create .form-create-account .required .label,
.customer-account-forgotpassword .forget .required .label{
        text-transform: uppercase;
    color: #333333;
    font-weight: normal;
    margin-bottom: 8px;
    font-size:14px;
 }
 .customer-account-login .block-customer-login form .control{
    width:100% !important;
 }
 .customer-account-login .block-customer-login form input,
 .customer-account-create .form-create-account .required input,
 .customer-account-forgotpassword .forget .required input{
    height: 40px;
    padding: 0 8px;
    border: solid 1px #dfdfdf;
    background: #f5f5f5;
    font-size: 14px;
    color: #8b8b8b;
    font-family: 'Lato', sans-serif !important;
    width: 100%;
 }
 .customer-account-login .block-customer-login form button.login,
 .customer-account-login a.create.primary,
 .customer-account-create .form-create-account .submit,
 .customer-account-forgotpassword .forget .submit,
 .customer-address-index .actions-toolbar button,
 .form-edit-account .actions-toolbar button,
 .newsletter-manage-index button.save,
 .actions-toolbar button.checkout,
 .wishlist-index-share button.submit,
 .customer-address-form button.save,
 .testimonials-index-index .page-title-wrapper .submit,
 form.testimonial .actions-toolbar button{
    font-size: 18px !important;
    padding: 14px 28px !important;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #CD2B2B;
    display: inline-block;
    border: none;
    font-weight: 400;
     font-family: 'Lato', sans-serif !important;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
 }
  form.testimonial .actions-toolbar button{
    color:#fff !important;
  }
 a.remind{
    line-height: 20px;
    display: inline-block;
    padding: 5px;
        color: #777777;
 }
 .message.error{
    margin-bottom: 0px;
 }
.catalog-category-view .page-title,
.catalog-category-view .sidebar .title strong,
.shop-by-heading{
    font-size: 24px !important;
    font-weight: 500 !important;
    font-style: normal;
    line-height: 1.4 !important;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    color: #333333 !important;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif !important;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.filter-current-subtitle{
    display: block;
    margin: 0;
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    color: #CD2B2B;
    font-weight: 500;
    margin-bottom: 20px;
}
.filter-current ol li .filter-label{
    font-weight: bold;
    text-transform: capitalize;
    color: #333333 !important;
    font-size: 1em;
}
.filter-current ol li{
    padding-left:0px !important;
}
.filter-current ol li .filter-value{
    color: #333 !important;
}
.filter-current ol li .remove{
    padding: 0px !important;
    display: inline-block !important;
    width: 20px;
    height: 20px;
    text-align: center;
    font: 0/0 a;
    text-shadow: none;
    color: transparent !important;
    position: relative !important;
    float: right;
    margin-left: 6px;
    margin-top: 4px;
}
.filter-current ol li .remove:before{
    color: #CD2B2B !important;
    line-height: 20px;
    width: 100%;
    font-size: 18px;
}

a.filter-clear{
    font-size: 14px;
    text-transform: none;
    float: left;
    background: #CD2B2B;
    display: inline-block;
    padding: 10px 18px;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif !important;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
    margin: 20px 0px;
}
.catalog-category-view .sidebar .title strong,
.shop-by-heading{
    position: relative;
    padding: 0 0 14px;
    margin-bottom: 20px;
    border-bottom: solid 2px #dfdfdf;
    display: block;
    margin-top: 0px;
}
.catalog-category-view .sidebar .content{
    padding: 20px 30px 30px;
    background-color: #f5f5f5;
}
.catalog-category-view .sidebar .content dl dt{
    font-size: 16px;
    font-style: normal;
    line-height: 1.4;
    color: #CD2B2B;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.catalog-category-view .sidebar ol li a{
    padding: 12px 0px;
    display: inline-block;
    color: #777777;
}
.catalog-category-view .sidebar ol li a:hover{
    background-color: transparent;
}
.catalog-category-view .sidebar ol li{
    margin-bottom: 0px;
}
.catalog-category-view .sidebar ol li span{
     color: #CD2B2B;
}
.catalog-category-view .product-items li{
    width: calc((100% - 6%)/3) !important;
}
.checkout-cart-index .product-items li{
    width:30%;
}
.checkout-cart-index .product-items li .product-item-info {
    width:100%;
    padding:20px;
}

.checkout-cart-index .product-items li .product-item-info .product-image-container,
.checkout-cart-index .product-items li .product-item-info .product-item-details{
    width:100% !important;
}
.checkout-cart-index .product-items li .product-item-info .product-image-container img{
    position: static;
}
.catalog-category-view .products-list .product-items li,
.checkout-cart-index .product-items li a.product-item-link{
    width:100% !important;
}
.catalog-category-view .products-list .product-items li .product-item-info,
.checkout-cart-index .product-items li .product-item-info{
    box-shadow: none;
    width:100% !important;
    border-bottom: 1px solid #ddd !important;
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
}

.catalog-category-view .products-list .product-items li
.product-item-info a.product-item-photo{
    width:248px;
    padding-bottom: 0px !important;
}
.catalog-category-view .products-list .product-items li 
.product-item-info .product-item-details{
    width:40%;
    padding-right: 20px;
}
.catalog-category-view .products-list .product-items li 
.product-item-info .product-item-actions{
    width:26%;
    padding-left: 30px;
    border-left: solid 1px #dfdfdf;
    padding-bottom: 30px;
}
.catalog-category-view .products-list .product-items li 
.product-item-info .product-item-actions .actions-secondary{
    display: block;

}
.catalog-category-view .products-list .product-items li .product-item-info:hover{
     border-bottom: 1px solid #ddd !important;
}
.catalog-category-view .products-list .product-items li .product-item-info:hover{
    box-shadow: none !important;
}
.catalog-category-view .product-items li .product-item-info{
    width:300px !important;
    transition: 0.5s ease-in-out;
    padding:20px 20px !important;
}
.catalog-category-view .product-items li .product-item-inner{
    transition: 0.5s ease-in-out;
    position: static !important;
    display: block !important;
    padding:0px !important;
    box-shadow: none !important;
}
.catalog-category-view .product-items li .product-item-inner:before{
    display: none !important;
}
.catalog-category-view .product-items li .product-item-inner .product-item-actions{
    display: flex;
    flex-direction: column;
    margin:0px;
}
.catalog-category-view .product-items li .product-item-info:hover,
.checkout-cart-index .product-items li .product-item-info:hover,
.catalog-category-view .product-items li .product-item-info:hover .product-item-inner{
    box-shadow: 0px 1px 12px 0 rgba(0, 0, 0, 0.2) !important;
    border:none !important;
    margin:0px !important;
}
.catalog-category-view .product-items li .product-item-info:hover .product-item-inner{
    box-shadow: none !important;
    margin:0px !important;
}


.catalog-category-view .product-items li .product-item-name a{
    font-weight: 400;
    margin-bottom: 10px;
   font-family: 'Lato', sans-serif !important;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 1.56em;
    text-decoration: underline;
}
.catalog-category-view .product-items li span.prod-desc p,
.catalog-category-view .product-items li span.prod-desc,
.checkout-cart-index .product-items li a.product-item-link,
.form-wishlist-items .wishlist ol li a.product-item-link{
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
    color: #777;
    font-weight: 300;
    text-align: left;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    white-space: nowrap;
    width: 250px;
    display: inline-block;
}
.catalog-category-view .product-items li .product-reviews-summary a.view{
    margin-bottom: 0px;
}
.catalog-category-view .product-items li .price-box .price,
.checkout-cart-index .product-items li .price-box .price{
    color: #191919 !important;
    font-size: 24px !important;
     font-family: 'Lato', sans-serif !important;
}
.catalog-category-view .product-items li .product-item-inner button.tocart{
    text-transform: uppercase;
}
.catalog-category-view .products-list .product-items li .product-item-inner .description{
    font-size: 14px;
    color: #333;
}
.catalog-category-view .products-list .product-items li .product-item-inner .description a{
    text-decoration: underline;
    font-size:14px;
    color: #777777;
    transition: 0.5s ease-in-out;
    display: block;
}

.catalog-category-view .field.limiter{
    display: none !important;
}
.toolbar-products ul li a, .toolbar-products ul li strong{
    color: #8b8b8b !important;
    background-color: #f5f5f5;
    display: inline-block !important;
    border: 0;
    font-size: 14px !important;
    text-align: center;
    position: relative;
    line-height: 50px;
    width: 50px;
    height: 50px;
    padding: 0;
    overflow: hidden;
    border-right: 1px solid #dfdfdf;
    -webkit-transition: all, 0.3s, ease-in-out;
    -o-transition: all, 0.3s, ease-in-out;
    transition: all, 0.3s, ease-in-out;
}
.toolbar-products ul li strong{
    color: #333333;
    background-color: #EDEDED;
}
.toolbar-products{
    background-color: #f5f5f5;
}
    
.toolbar-products ul li{
    margin:0px !important;
}
.toolbar-products ul li a.next,
.toolbar-products ul li a.next{
    margin-left:0px !important;
    border:none;
}
.toolbar-products ul li a.next{
    margin-right: 0px;
}

.toolbar-amount{
    white-space: nowrap;
    color: #CD2B2B;
    font-size: 14px;
    margin-top:9px;
}

.toolbar-sorter .sorter-label{
    font-size: 14px;
    color: #333333;
}
.toolbar-sorter .sorter-options{
    height: 50px;
    color: #333333;
    font-size: 14px;
        border: none;
    border-left: 1px solid #ddd;
}
.mode-grid, .mode-list{
    border-right: solid 1px #dfdfdf !important;
    background-color: #f5f5f5 !important;
    padding: 14px 17px 16px 17px;
    height: 50px;
    border:none;
    box-shadow: none !important;
}
.mode-grid:before{
    color:#CD2B2B;
}
.customer-account-create .form-create-account .legend span{
    font-size:24px;
}
.customer-account-create .form-create-account .legend{
    border-bottom-color: #CD2B2B;
}

 
.customer-account-create .form-create-account{
    width:100% !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.customer-account-create .form-create-account .create.info,
.customer-account-create .form-create-account .create.account{
    width:45%;
}

.category-description h3{
       margin: 0;
    margin-bottom: 10px;
    color: #000000;
    font-family: 'Lato', sans-serif !important;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
}
.category-description p a{
    text-decoration: underline;
    color: #777777;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Lato', sans-serif !important;
    transition: 0.5s ease-in-out;
}
.category-description p a:hover{
    color:#ff0000;
}
.category-ford-trucks .sidebar .price{
    font-size:14px !important;
    color: #777777 !important;
}
.category-ford-trucks .sidebar{
    padding: 5px 18px 30px;
}
.category-ford-trucks .sidebar ol li a{
    text-decoration: underline;
    padding:0px;
}
.category-ford-trucks .sidebar ol li{
    margin-bottom: 0px;
}
.filter-content .filter-subtitle{
    font-size:24px;
    color:#333;
    padding-top:20px;
}
.filter-content .filter-options .filter-options-title{
    font-size:16px;
    color: #CD2B2B;
    font-weight: 600;
}
.filter-content ol li a .price{
    padding: 0px;
    display: inline-block;
    color: #777777 !important;
    font-size:14px !important;
}


/* cart css */
.products-related ol li,
.products-upsell ol li{
    width:25% !important;
}
.products-related ol li .product-item-info,
.products-upsell ol li .product-item-info{
    width:100%;
    transition: 0.5s ease-in-out;
    padding:15px !important;
}
.products-related ol li .product-item-info:hover,
.products-upsell ol li .product-item-info:hover{
     box-shadow: 0px 0px 13px 0 rgb(0 0 0 / 20%);
    border: none;
    margin:0px;
}
.products-related ol li .product-item-info .price,
.products-upsell ol li .product-item-info .price{
    font-size:24px !important;

}
.minicart-wrapper .action.showcart{
    position: relative;
}
.counter.qty{
    position: absolute;
    border-radius: 50%;
    font-size: 18px;
    line-height: 6px;
    padding: 9px;
    box-sizing: border-box;
    left: 45%;
    top: 7px;
    font-family: 'Bebas Neue';
    background-color: transparent !important;
}
.catalog-category-view .towishlist,
.catalog-category-view .tocompare{
    text-align: left;
    align-items: center;
    margin: 10px 0px !important;
    padding-left: 30px !important;
    overflow: inherit !important;
    display: block !important;
    width:100% !important;
    text-align: left;
    position: relative;
    border:none;
    transition: 0.5s ease-in-out;
}
.catalog-category-view .towishlist:before,
.catalog-category-view .tocompare:before{
    position: absolute;
    left:0px;
    top:2px;
}
.catalog-category-view .towishlist{
    margin-top:25px !important;
}
.catalog-category-view .towishlist:hover,
.catalog-category-view .tocompare:hover{
    text-decoration: none;
}
.catalog-category-view .towishlist:hover span,
.catalog-category-view .tocompare:hover span{
    color: #CD2B2B;
}
.catalog-category-view .towishlist span,
.catalog-category-view .tocompare span{
    clip: inherit !important;
    overflow: inherit !important;
    display: block;
    width: 100% !important;
    position: static !important;
    height: auto !important;
    text-align: left;
    line-height: 16px;
    color: #191919;
    text-transform: initial;
}

.catalog-category-view .product-item .tocart{
    position: relative;
    padding: 10px 20px 10px 60px !important;
}
.catalog-category-view .product-item .tocart:before{
    content: "\f217";
    font-family: FontAwesome;
    top:50%;
    position: absolute;
    left:20px;
    transform: translateY(-50%);
    color:#fff;
    font-size: 28px;
}

.cms-page-view .page-title{
    border-bottom: solid 2px #dfdfdf;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif !important;
    text-align: center;
    display: block !important;
}
.cms-page-view .columns p{
    color: #8b8b8b;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 1.5em;
}
.cms-page-view .columns p strong{
    color: #8b8b8b;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.cms-page-view .columns h1{
    margin: 0;
    margin-bottom: 0.7em;
    color: #000000;
     font-family: 'Lato', sans-serif !important;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    text-rendering: optimizeLegibility;
    text-transform: uppercase;
}

.cms-page-view .columns ul, .cms-page-view .columns ol{
    list-style: decimal outside;
    margin-bottom: 1.5em;
}
.cms-page-view .columns ul li, .cms-page-view .columns ol li{
    color: #8b8b8b;
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
    line-height: 24px;
}
.cms-page-view .columns ul{
    list-style: disc outside;
}
.sort-asc:before{
    color:#ff0000;

}
.catalog-category-view .products-grid .product-items li .product-item-name a{
    white-space: nowrap;
    width: 250px;
    display: inline-block;
        overflow: hidden;
    text-overflow: ellipsis;
}

.scroll-up{
    position: fixed;
    bottom: 30px;
    z-index: 999;
    right: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #cd2b2b;
    -webkit-transition: all,.2s,ease-in-out;
    -o-transition: all,.2s,ease-in-out;
    transition: all,.2s,ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.scroll-up.show{
    opacity: 1;
    visibility: visible;
}
.scroll-up:hover{
    text-decoration: none;
}
.scroll-up i{
    color:#fff;
    font-size:20px;
}

.prod-sku{
    margin: 0 10px 5px 0;
    text-transform: uppercase;
    color: #333;
}
.prod-sku span{
    color: #CD2B2B;
    text-transform: none;
    font-weight: 500;
    display: inline-block;
    padding: 1px 9px;
    background: #f5f5f5;
}
.prod-sku span span{
    display: none;
}
.catalog-category-view .sidebar-main{
    width:24%;
}
.catalog-category-view .columns .column.main{
    width:76%;
}
.block-content.filter-content{
    background-color: #f5f5f5;
    padding: 20px;
}
.reviews-actions a.action{
    text-decoration: underline;
    color: #777;
    font-size:14px;
    margin-bottom: 20px;
    display: block;
}
.catalog-product-view .product.detailed .content{
    border-top:none !important;
}
.catalog-product-view .product.detailed .content iframe{
    width:100%;
}

.catalog-product-view .product.detailed .content .video-in-tab iframe{
    width:100%;
}
.catalog-product-view .product.detailed .content p{
    margin: 0 0 1.5em;
    color: #333;
    line-height: 24px;
}
.catalog-product-view .product.detailed .title a{
    border: 1px solid #ccc !important;
    display: inline-block !important;
    padding: 14px 20px !important;
    line-height: 40px !important;
    cursor: pointer;
    text-transform: uppercase;
    color: #333 !important;
    font-size: 16px !important;
    line-height: normal !important;
    position: relative !important;
    bottom: -1px;
    font-weight: 500 !important;
    height: auto !important;
    transition: 0.5s ease-in-out;
}
.catalog-product-view .product.detailed .title a:focus{
    outline: none;
}
.catalog-product-view .product.detailed .title.active a{
    color: #cd2b2b !important;
    border-bottom:none !important;
}
.catalog-product-view .product.detailed .title:hover{
     color: #cd2b2b !important;
}
.catalog-product-view .product.detailed .review-form{
    max-width: 770px;
}
.catalog-product-view .product.detailed .review-legend span,
.catalog-product-view .product.detailed .review-legend strong{
    float:left;
    margin-right: 5px;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    text-transform: uppercase;
}
.catalog-product-view .product.detailed .review-legend strong{
    color: #CD2B2B;
    text-transform: none;
    float:left;
    margin-left: 5px;
}
#Overall span{
    padding: 7px 20px;
    line-height: 1.4;
    font-size: 14px;
    color: #8b8b8b;
}
.catalog-product-view .product.detailed .review-form .field .label,
.form-edit-account .field .label{
    color: #333333;
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 12px;
}
.catalog-product-view .product.detailed .review-form .field input,
.form-edit-account .field.required input{
        border: 1px solid #CCCCCC;
    border-radius: 0;
        height: 40px;
    padding: 0 8px;
        background: #f5f5f5;
    font-size: 14px;
}
.catalog-product-view .product.detailed .review-form button.primary{
    font-size: 18px !important;
    line-height: 28px !important;
    padding: 10px 15px !important;
    float: left !important;
    white-space: normal !important;
    background-color: #CD2B2B !important;
    border: none !important;
    font-family: 'Lato', sans-serif !important;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

.customer-account-index .block-dashboard-info .block-title strong,
.customer-account-index .block-dashboard-addresses .block-title strong,
.customer-account-index .block-dashboard-orders .block-title strong,
.customer-account-index .block-addresses-default .block-title strong,
.customer-address-index .block-addresses-default .block-title strong{
    font-size:24px !important;
}
.customer-account-index .block-dashboard-addresses .block-title .edit,
.customer-account-index .block-dashboard-addresses .block-title .view{
    display: block;
    margin-left:0px !important;
    margin-top:20px;
}
.customer-account-index .block-content .box p,
.customer-account-index .block-content .box address,
.customer-address-index .block-content .box address{
    font-size:18px;
    margin:10px 0px 25px;
}
table.table-order-items td .price{
    font-size:15px !important;
}
a.edit, a.change-password{
    color:#cd2b2b;
}
#block-collapsible-nav ul li a{
    padding:10px !important;
}
.actions-toolbar > .secondary .action.back{
    display: block;
    color: #cd2b2b;
    margin-top: 14px;
    font-size: 20px;
}

.catalog-product-view .reviews-actions{
        display: flex;
    align-items: center;
    margin-top: 20px;
}
.catalog-product-view .product-options-wrapper .field label{
    margin-bottom: 10px;
    display: block;
}
.catalog-product-view .product-options-wrapper .field select{
    border: 1px solid #CCCCCC;
    border-radius: 0;
    height: 50px;
    padding: 0 8px;
    font-size: 14px;
    cursor: pointer;
}
.catalog-product-view .product-options-wrapper .field .control{
    width:100%;
}
.stock.available{
    display: block;
    margin-top:15px;
}
.product.info.detailed{
    margin-top:50px;
}

.catalog-product-view .product.detailed .content .review-list .block-title strong{
    font-size:30px;
}
.catalog-product-view .product.detailed .content .rating-result span:before{
    color:#cd2b2b;
}
.catalog-product-view .product.detailed .content .review-content{
    font-size: 16px;
    padding-top: 0px;
    line-height: 22px;
}
.catalog-product-view .product.detailed .content .value h1{
    font-size:30px;
     font-family: 'Lato', sans-serif !important;
}
.catalog-product-view .product.detailed .content .value p,
.catalog-product-view .product.detailed .content .value ul li{
    font-size: 16px;
    line-height: 22px; 
     font-family: 'Lato', sans-serif !important; 
}
.block-minicart .subtotal .amount .price{
    font-size: 25px !important;
    margin-top: 13px;
    display: block;
    font-weight: 600 !important;
}
.block-minicart #top-cart-btn-checkout,
.block-minicart .viewcart{
    background: #cd2b2b;
    border: none;
    padding: 8px;
    font-size: 19px;
    border-radius: 46px;
    height: auto;
    display: block;
    width:100%;
    color: #fff;
}
.block-minicart .viewcart{
    padding:16px;
}
.minicart-items-wrapper ol li .product-item-details strong a{
    color: #333;
    font-size: 17px;
}
.minicart-items-wrapper ol li .product-item-details .minicart-price .price{
    font-size: 25px !important;
    font-weight: 600 !important;
}
.minicart-items-wrapper ol li .product-item-details a.edit,
.minicart-items-wrapper ol li .product-item-details a.delete{
    position: relative;
}
.minicart-items-wrapper ol li .product-item-details a.edit:before,
.minicart-items-wrapper ol li .product-item-details a.delete:before{
    content: '\e604';
    position: absolute;
    font-size:20px;
    right:0;
    color:#CD2B2B !important;
    font-family: 'luma-icons';
    display: block !important;
}
.minicart-items-wrapper ol li .product-item-details a.edit:before{
        content: '\e601';
        right:10px;
}
.minicart-items-wrapper{
    height: 382px !important;
    overflow-y: auto;
}

#shopping-cart-table thead th{
    font-size:24px !important;
    color:#000 !important;
    font-weight: 600 !important;
}
#shopping-cart-table tbody tr .product-item-details strong{
    font-size:18px;
    margin:0px;
}
#shopping-cart-table tbody tr .price{
    font-size:20px !important;
}
.cart.table-wrapper .actions-toolbar > .action-edit, 
.cart.table-wrapper .actions-toolbar > .action-delete{
    top:10px;
}
.checkout-cart-index .cart.table-wrapper .actions-toolbar > .action-edit,
.checkout-cart-index .cart.table-wrapper .actions-toolbar > .action-delete{
    top:-10px;
}
.cart-summary .summary{
    font-size:35px;
    font-weight: 400;
}
.cart-summary table tbody th,
.cart-summary table tbody th.mark strong{
    font-size:20px;
}
.cart-summary table tbody th.mark strong{
    color:#CD2B2B !important;
}
.cart-summary table tbody td .price{
    font-size:20px !important;
}
.cart-summary ul li button, .cart-summary ul li .multicheckout,
.form-cart button.update{
    font-size: 18px !important;
    line-height: 28px !important;
    padding: 10px 15px !important;
    float: left !important;
    white-space: normal !important;
    background-color: #CD2B2B !important;
    border: none !important;
    font-family: 'Lato', sans-serif !important;
    border-radius: 50px;
    color:#fff !important;
}
.form-cart button.update{
    float:right !important;
}
.cart-summary ul li .multicheckout{
    margin-top:20px;

}
.cart-summary #block-shipping-heading{
    font-size:18px;
}
.cart-summary #co-shipping-method-form .price{
    font-size: 20px !important;
    float:right;
}
.cart-summary #co-shipping-method-form .item-title{
    margin-bottom: 15px;
    display: block;
}
.cart-discount .discount form .control input{
    height: 40px;
}
.cart-discount .discount form{
    margin-top:30px;
}
.cart-discount .discount form button.apply{
    font-size: 18px;
    height: 40px;
    background: #cd2b2b;
    border: none;
    color: #fff;
}
.cart-discount .discount .title{
    padding-bottom: 0px;
}
.cart-discount .discount .title strong{
    font-size:22px;
    color:#000;
}
.product-reviews-summary{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.prod-availability .available{
    color: #cd2b2b;
}
.product-info-main .product-info-price{
    border-bottom:none;
}
.is-blog .columns .column.main .post-list-wrapper ol li{
    width:100%;
}
.is-blog .columns .column.main .post-list-wrapper ol li h2 a{
    margin: 0;
    margin-bottom: 1.5em;
        color: #777777;
     font-family: 'Lato', sans-serif !important;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}
.is-blog .columns .column.main .post-list-wrapper ol li .post-image img{
    width:150px;
    height: 150px;
    object-fit: cover;
    margin:30px 0px;
}
.is-blog .columns .column.main .post-list-wrapper ol li .post-excerpt,
.post-content p,
.post-content{
    color: #333;
    font-size:110%;
    line-height: 1.5;
}
.post-content a img{
    margin:20px 20px 20px 0px;
}
.is-blog .columns .column.main .post-list-wrapper ol li  .post-meta{
        font-style: italic;
        color: #333;
}
.is-blog .columns .column.main .post-list-wrapper ol li  .post-meta a{
    text-decoration: underline;
        color: #777777;
        font-style: italic;
}
.is-blog .post-view .post-image a img{
    width:150px;
    height: 150px;
    object-fit: cover;
}
.block-blog .block-title{
    position: relative;
    padding: 0 0 14px;
    margin-bottom: 20px;
    border-bottom: solid 2px #dfdfdf;
}
.block-blog .block-title strong{
    margin: 0;
    margin-bottom: 10px;
    color: #000000;
   font-family: 'Lato', sans-serif !important;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    margin-bottom: 0;
    text-transform: uppercase;
}
.block-blog  .block-content form input{
     width: 230px;
    max-width: 100%;
    height: 40px;
    padding: 0 8px;
    border: solid 1px #dfdfdf;
        background: #f5f5f5;
    font-size: 14px
}
.block-blog  .block-content form button{
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #CD2B2B;
    display: inline-block;
    padding: 10px 18px;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', sans-serif !important;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
    margin-top:10px;
}
.block-blog .block-content ul li a{
    color: #777777;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: underline;
}
.block-blog .block-content ul li{
    margin-bottom: 25px;
}

a.logo img{
    width: 100%;
}
.my-account{
    position: relative;
}
.my-account:hover .account-dropdown{
    opacity: 1;
    visibility: visible;
}

.account-dropdown{
    position: absolute;
    left: -30px;
    top: 80%;
    width: 140px;
    background-color: #fff;
    padding: 15px;
    z-index: 99;
    box-shadow:0px 0px 24px 0px rgb(0, 0, 0, 0.2);
    opacity:0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
    border-radius: 5px;
}
/*.account-dropdown.active-account{
    opacity: 1;
    visibility: visible;
}*/
.account-dropdown ul li{
    margin-bottom: 0px;
}
.account-dropdown ul li a{
    color:#000;
    font-size:18px;
    padding:5px 0px;
    line-height: 20px;
    text-decoration: none;
    border:none;
    margin:0px;
    text-align: center;
    display: block;
    transition: 0.5s ease-in-out;
}
.account-dropdown ul li a:hover{
    color:#f00;
}
.pager{
   display: flex;
    justify-content: flex-end;  
}
.pager .toolbar-amount{
    margin-right: 20px;
}

.pager .pages ul li{
    display: inline-block;
    margin: 0;
    float: left;
    position: relative;
}
.pager .pages ul li.current{
    color: #333333 !important;
    background-color: #EDEDED !important;
}
.pager .pages ul li a,
.pager .pages ul li.current{
    color: #8b8b8b;
    background-color: #f5f5f5;
    display: inline-block;
    border: 0;
    font-size: 14px;
    text-align: center;
    position: relative;
    line-height: 50px;
    width: 50px;
    height: 50px;
    padding: 0;
    overflow: hidden;
    border-right: 1px solid #dfdfdf;
}
.pager .pages ul li.current strong{
    color:inherit;
    background-color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.pager .pages .action.next{
    margin-left: 0px;
}
.pager .pages .action.next:before{
    color:#cd2b2b;
}
.footer-icons ul li a{
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 62px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #303030;
    color: #fff;
    margin-right: 7px;
    text-align: center;
    transition: 0.5s ease-in-out;
}
.footer-icons ul li a i{
    font-size: 25px;
    opacity: .3;
}
.footer-icons ul li a:hover i{
    opacity: 1;
}

.page-layout-checkout .checkout-container{
    margin-top:50px;
}
.authentication-wrapper{
    margin-top:0px;
}
.authentication-wrapper button.action-auth-toggle{
    opacity: 1;
    font-weight: 600;
    color:#cd2b2b;
    margin-bottom: 20px;
}
.checkout-shipping-address .step-title,
.checkout-shipping-method .step-title{
    font-size: 30px;
    font-weight: 600;
}
.checkout-shipping-address form .field .label,
.authentication-dropdown form .field .label,
.modal-popup form .field .label,
#contact-form .field .label{
    color: #333333;
    font-weight: normal;
    margin-bottom: 8px;
    font-size: 14px;
}
.checkout-shipping-address form .field input,
.checkout-shipping-address form .field select,
.authentication-dropdown form .field input,
.modal-popup form .field input,
.modal-popup form .field select,
#contact-form .field input,
#contact-form .field textarea{
    height: 40px;
    padding: 0 8px;
    border: solid 1px #dfdfdf;
    background: #f5f5f5;
    font-size: 14px;
    color: #8b8b8b;
    font-family: 'Lato', sans-serif !important;
    width: 100%;
}
#contact-form .field textarea{
    height: 150px;
}
#contact-form button.submit{
    background: #cd2b2b;
    border: none;
    padding: 8px;
    font-size: 19px;
    color: #fff;
}
.modal-popup form .field input.checkbox{
    width:auto;
    height: auto;
}
.table-checkout-shipping-method tr td .price{
    font-size: 20px !important;
}
#shipping-method-buttons-container button,
.authentication-dropdown form .action-login{
    background: #cd2b2b;
    border: none;
    font-size: 20px !important;
    padding: 5px 20px !important;
    color:#fff;
}
.opc-summary-wrapper .opc-block-summary .title{
    font-size:34px;
}
.opc-summary-wrapper .product-item-inner .subtotal .price{
    font-size:20px !important;
}
header.modal-header{
    background: #cd2b2b;
}
.opc-progress-bar{
    margin-bottom: 40px;
}
.opc-progress-bar li._active:before,
.opc-progress-bar li._active span:before{
    background: #cd2b2b !important;
    border-color: #cd2b2b !important;
}
.opc-progress-bar li span{
    font-size:22px;
}
.authentication-dropdown .block-customer-login .block-title strong{
    font-size:30px;
    font-weight: 500;
}
.authentication-dropdown header.modal-header{
    padding:0px !important;
    width:0px;
    height: 0px !important;
}
.opc-wrapper .shipping-address-item.selected-item {
    border-color: #cd2b2b;
}
.opc-wrapper .shipping-address-item.selected-item:after{
    background-color: #cd2b2b;
}
.modal-popup header.modal-header{
    background-color: transparent !important;
    padding-top:20px;
}
.modal-popup .modal-footer{
    padding:20px;
}
.modal-popup form{
    width:100%;
    max-width: 100% !important;
}
.modal-popup .modal-title{
    font-family: 'Lato', sans-serif !important;
}
.form-wishlist-items .wishlist ol{
    display: flex;
    flex-wrap: wrap;
}

.form-wishlist-items .wishlist ol li{
    width:30% !important;
}
.form-wishlist-items .wishlist ol li .box-tocart .fieldset{
    display: flex;
    flex-direction: column;
}
.form-wishlist-items .wishlist ol li .box-tocart .fieldset .qty{
    display: flex !important;
    margin-bottom: 5px;
}
.form-wishlist-items .wishlist ol li .box-tocart .fieldset .qty label{
    margin-right: 10px; 
}
.form-wishlist-items .wishlist ol li .box-tocart .fieldset button{
    display: block;
    width:100%;
}
.wishlist-index-index .pager .toolbar-amount,
.sales-order-history .pager .toolbar-amount{
    margin-top: 0px;
}
.wishlist-index-index .pager,
.sales-order-history .pager{
    background: #f5f5f5;
    padding: 10px 20px;
    align-items: center;
}
.wishlist-index-index .pager .limiter-options,
.sales-order-history .pager .limiter-options{
    width: 120px;
    padding: 14px 12px;
    color: #333333;
    font-size: 14px;
    overflow: inherit;
    height: auto;
}

.form-wishlist-items .actions-toolbar button{
    font-size: 18px !important;
    line-height: 28px !important;
    padding: 10px 15px !important;
    float: left !important;
    white-space: normal !important;
    background-color: #CD2B2B !important;
    border: none !important;
    font-family: 'Lato', sans-serif !important;
    color:#fff;
}
.form-wishlist-items .actions-toolbar{
    margin:30px 0px;
}

#discount-form .control input{
    padding: 9px 15px;
    height: auto;
}
.modal-popup .modal-footer button{
    background: #cd2b2b !important;
    border: none;
    font-size: 20px !important;
    padding: 5px 20px !important;
    color: #fff !important;
    margin-top:0px !important;

}
  
.order-details-items .table-order-items tr td .product-item-name{
    font-size:18px;
    line-height: 27px;
}
.block-order-details-view .block-content .box .box-title{
    font-size:18px;
}
.block-order-details-view .block-content address{
    line-height: 22px;
}
.compare.wrapper{
    display: none;
}
.minicart-wrapper .action.showcart .counter.qty.empty{
    display: block;
}
.nav-sections-item-title:last-child{
    display: none;
}
.footer-cols-wrapper.row{
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.testimonials blockquote:before,
.testimonials blockquote:after{
    color:#CD2B2B !important;
}

.dealer-item-popup{
   position: fixed;
   left:0;
   top:0;
   width:100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   display: none;
   z-index: 9999;
}
.dealer-item-popup .inner-deeler-popup{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding:20px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}
.dealers .col-md-6.open-popup .dealer-item-popup{
    display: block;
}
.close-dealer-popup{
    position: absolute;
    right:15px;
    top:0;
    font-size: 30px;
    color:#000;
    cursor: pointer;
}
.dealers .col-md-6{
    width:50%;
}
/*.dealers .col-md-6 figure,
.dealers .col-md-6 figure blockquote{
    width:100%;
    max-width: 100%;
}*/
.dealers .col-md-6 figure blockquote span{
    word-break: break-all;
}
.dealer-item-popup .inner-deeler-popup span strong{
    color:#000;
    font-weight: 700;
}
.dealer-item-popup .inner-deeler-popup span{
    line-height: 27px;
}
.dealer-item-popup .inner-deeler-popup span a{
    color:#999;
    text-decoration: none;
    display: inline-block;
}

#banner-slider-carousel .owl-image img{
    height: 100% !important;
    object-fit: cover;
}
.category-description h1 sup{
    font-size:25px;
    position: relative;
    top: -20px;
    left: 5px;
}
.category-description h1{
    margin-top: 20px;
}
.category-description ul li{
    line-height: 27px;
}
.post-excerpt a img{
    margin:30px 0px;
    margin-right: 20px;
}

.cms-no-route .page-title{
    margin-top: 50px;
}

.category-description p iframe{
    display: block;
    margin-top: 20px;
}
   
.cms-page-view .columns ul, .cms-page-view .columns ol{
    padding-left: 20px;
}

.cms-no-route .link-center li a{
    padding:10px;
    font-size: 15px;
    color:#000;
}
.cms-no-route .link-center{
    margin-top: 30px;
}
.cms-no-route h1.error-text{
    text-transform: lowercase;
}

.search-autocomplete ul li span{
    font-size: 18px;
}
.category-view .category-description ul{
    list-style: disc;
    padding-left: 20px;
}
.product.data.items > .item.content ul {
    list-style-type: disc;
    margin-left: 25px;
}


    





@media only screen and (max-width:1366px){
    header{
        padding:30px 0px;
    }
    .header.content,
    .navigation{
        max-width: 1200px;
    }
    header .header.content .block-search{
        margin-left: 0px;
    }
    .logo{
        margin-right: 64px;
    }
    nav.navigation ul li a{
        font-size:13px;
    }
    nav.navigation ul > li > a > span{
        width:108px;
    }
}
@media only screen and (max-width:1279px){
    .header.content,
    .navigation{
        max-width: 1130px;
    }
    .container{
        max-width: 980px;
    }
    .site-header{
        justify-content: space-between;
    }
    header .header.content .block-search form{
        width:375px;
    }
    nav.navigation ul > li > a > span {
        width: 100px;
    }
    nav ul li a{
        font-size:14px;
        padding:5px 15px;
    }
    .product-item .product-detial h3{
        font-size:16px;
    }
    .btn{
        font-size:22px;
    }
    .axel-group .axel-img{
        top:84px;
    }
    .axel-group .axel-img img{
        width:64%;
    }
    .catalog-category-view .sidebar-main{
        width:30%;
    }
    .catalog-category-view .columns .column.main{
        width:70%;
    }
    .catalog-category-view .product-items li{
        width: calc((100% - 6%)/2) !important;
    }
    .product-info-main .page-title{
        font-size:24px;
    }
    .catalog-category-view .products-list .product-items li 
    .product-item-info .product-item-actions{
        padding-left:20px;
    }
    .towishlist, .tocompare{
        font-size: 15px !important;
    }
    
}
@media only screen and (max-width: 1199px){
    .header.content,
    .navigation{
        max-width: 1000px;
    }
    .catalog-category-view .products-list .product-items li .product-item-info a.product-item-photo,
    .catalog-category-view .products-list .product-items li .product-item-info .product-item-details,
    .catalog-category-view .products-list .product-items li .product-item-info .product-item-actions{
        width:100% !important;
        padding-left: 20px;
    }
    .catalog-category-view .products-list .product-items li .product-item-info .product-item-actions{
        padding-left:20px;
    }
    .catalog-category-view .products-list .product-items li .product-item-info{
        flex-direction: column;
    }
    .logo{
        max-width: 20%;
        margin-right: 10px;
    }
    header .header.content .block-search form {
        width: 330px;
    }
    header .header.content .block-search {
        margin-left: 58px;
    }
    nav.navigation ul > li > a > span {
        width: 87px;
    }
    .catalog-category-view .products-list .product-items li .product-item-info a.product-item-photo{
        width:200px;
    }
    .catalog-category-view .products-list .product-items li .product-item-info .product-item-details{
        width:35%;
    }
    .catalog-category-view .products-list .product-items li .product-item-info .product-item-actions{
        width:33%;
    }
    .catalog-category-view .products-list .product-items li .product-item-info{
        padding:20px 0px !important;
    }
    .wishlist-index-index .sidebar.sidebar-main,
    .customer-account-index .sidebar.sidebar-main,
    .customer-address-index .sidebar.sidebar-main{
        width:29%;
    }
    .wishlist-index-index .column.main,
    .customer-account-index .column.main,
    .customer-address-index .column.main{
        width:70% !important;
    }
    .form-wishlist-items .wishlist ol li{
        width:48% !important;
    }
}
@media only screen and (max-width:1024px){

    .catalog-category-view .product-items li .product-item-inner{
        width:100% !important;
        height: auto !important;
        clip:inherit !important;
    }

    .mp-banner-slider .banner-slider .container{
        transform: translate(-58%, -50%);
    }
    .mp-banner-slider .banner-slider .banner-details .banner-title sup {
        font-size: 27px;
        margin-left: 7px;
    }
    .mp-banner-slider .banner-slider .banner-details .banner-title{
        font-size:35px;
    }
    .header.content,
    .navigation{
        max-width: 950px;
    }
    .checkout-cart-index .form-cart{
        width:70%;
    }
    .cart-summary{
        width:30%;
    }
    header .header.content .block-search {
        margin-left: 20px;
    }
    nav.navigation ul > li > a > span {
        width: 83px;
    }
    nav.navigation ul li a{
        font-size: 11px;
    }
    .sub-header{
        position: fixed;
        right:0;
        top:0;
        transform: translateX(100%);
        transition: 0.5s ease-in-out;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        height: 100%;
        z-index: 999;
        overflow-y: auto;
    }
    .mp-banner-slider .banner-slider .banner-details .banner-title{
        color:#fff ;
    }

    nav ul{
        flex-direction: column;
    }
    nav ul li a{
        padding:15px 20px;
        font-size: 20px;
    }
    .sub-header.side-menu{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .site-header{
        flex-direction: column;
        align-items: flex-start !important;
    }
    .toggle-button{
        display: block;

    }
    header{
        padding:18px 0px;
    }
    .search-bar{
        width:323px;
    }
    h1{
        font-size: 45px;
        line-height: 50px;
        color:#000 !important;
    }
    h2{
        font-size: 32px;
    }
    .axel-content h3{
        font-size: 32px;
        line-height: 35px;
    }
    .right-header{
        width:100%;
        justify-content: space-between;
    }
    .axel-content{
        width:350px;
    }
    .axel-group .axel-img img{
        width:55%;
        
    }
    .axel-group .axel-img{
        left:0;
    }
    .footer-cols-wrapper .col-3{
        width:50%;
        margin-bottom: 50px;
    }
    .checkout-index-index .opc-summary-wrapper .opc-block-summary .title,
    .checkout-index-index .opc-block-summary .items-in-cart > .title strong{
        font-size:24px;
    }
    .checkout-index-index .opc-block-summary{
        padding:22px 10px;
    }
    .minicart-items .product-item-name{
        font-size: 16px;
    }
    .is-blog .sidebar.sidebar-main{
        width:30%;
    }
    .is-blog .column.main{
        width:70%;
    }
}
@media only screen and (max-width: 992px){ 
    .category-accessories .columns{
        display: flex;
    }
    .toolbar-amount{
        padding-left: 20px;
    }
    .dealers .col-md-6{
        width:100%;
    }
    .header.content, .navigation {
        max-width: 730px;
    }
    header .header.content .block-search form {
        width: 220px;
    }
    header .header.content .block-search {
        margin-left: 0;
    }
    .social-icons {
        margin-right: 10px;
        margin-left: 0px;
    }
    .navigation .level0{
        margin:0px;
    }
    nav.navigation ul > li > a > span {
        width: 70px;
    }
    nav.navigation ul li a{
        font-size:10px;
    }
    .catalog-category-view .sidebar-main{
        width:100%;
    }
    .catalog-category-view .columns .column.main{
        width:100%;
    }
    .catalog-category-view .product-items li .product-item-info{
        width:100% !important;
    }
    .towishlist{
        width:100%;
        margin-right: 0px !important;
        padding-right: 0px !important;
    }
    .towishlist, .tocompare{
        border:none;
        margin-left:0px;
    }
    .checkout-cart-index .form-cart{
        width:100%;
    }
    .cart-summary{
        width:100%;
        position: static;
    }
    .cart-discount .discount .title{
        padding-bottom: 12px;
    }
    .wishlist-index-index .sidebar.sidebar-main,
    .wishlist-index-index .column.main,
    .customer-account-index .sidebar.sidebar-main,
    .customer-account-index .column.main,
    .customer-address-index .sidebar.sidebar-main,
    .customer-address-index .column.main,
    .sales-order-view .column.main,
    .sales-order-view .sidebar.sidebar-main,
    .customer-address-form .sidebar.sidebar-main,
    .customer-address-form  .column.main{
        width:100%!important;
    }
    .products-related ol li, .products-upsell ol li{
        width:50% !important;
    }

    
}
@media only screen and (max-width:767px){
    .block-title.filter-title{
        display: none;
    }
   nav.navigation ul li ul li a{
    color:#808080 !important;
   }
    .mp-banner-slider .banner-slider .container{
        transform: translate(-50%, -50%);
    }
    .container{
        padding:0px 0px;
        max-width: 100%;
    }
    header{
        padding:18px 20px;
        height: 170px;
    }
    header .header.content .block-search form{
        width:300px;
    }
    .cart-summary{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .slide-item-banner .banner-slide-item,
    .product-detial{
        padding:0px 20px;
    }
    .mp-banner-slider .banner-slider .banner-details{
        margin-left: auto;
        max-width: 90%;
        text-align: left;
        margin: 0 auto;
    }
    header .header.content{
        display: block;
    }
    .nav-toggle{
        left:5px;
        top:0;
    }
    .nav-toggle:before{
        color: #757575 !important;
    }
    .checkout-index-index .minicart-wrapper{
        position: absolute;
        right: 30px;
        top: 10px;
    }
    .checkout-index-index .minicart-wrapper button:before {
        color: #f00 !important;
        font-size: 34px !important;
    }
    .checkout-index-index header{
        height: auto;
    }
    .checkout-index-index header.modal-header{
        padding:0px;
    }
    .mp-banner-slider .owl-nav .owl-prev span{
        left:20px;
    }
    .mp-banner-slider .owl-nav .owl-next span{
        right:20px;
    }
    header .header.content .minicart-wrapper{
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0px;
        right: 0;
        z-index: 9;
    }
    header .header.content .minicart-wrapper a.showcart{
        transform: scale(0.7);
    }
    .logo{
        max-width: 200px;
        margin:0px;
        margin-left: 50px;
    }
    header .header.content .block-search .actions button:before{
        font-size:14px !important;
    }
    header .header.content .block-search .label{
        display: none;
    }
    header .header.content .block-search .search input{
        margin:0px;

    }
    
    .block-search .label:before{
        margin-right:0px;
    }
    .mp-banner-slider .owl-prev span, .mp-banner-slider .owl-next span{
        font-size: 0px !important;
        width:50px;
        height: 50px;
    }
    .page-header{
        margin-bottom: 0px;
    }
    header .header.content .social-account{
        position: absolute;
        right: 0;
        top: 66px;
    }
    .block-search input{
        left:0;
    }
    header .header.content .block-search .actions button span{
        display: none;
    }
    .my-account a{
        border-right: none;
    }
    .account-dropdown{
        left:-63%;
    }

    header .header.content .block-search{
        position: absolute;
        left: 0;
        float: inherit;
        width: 13%;
        font-size:0px;
        top:66px;
    }
    .modal-popup .modal-footer button{
        display: block;
        width: 100%;
        margin: 10px 0px;
    }
    .modal-popup .modal-title{
        padding-left: 20px;
    }
    .form-wishlist-items .wishlist ol li .product-item-name{
        margin-left: 0px;
    }
    .block-collapsible-nav{
        top:10px !important;
    }
    .block-search .control{
        border-top:none !important;
    }
    .is-blog .sidebar.sidebar-main{
        width:100%;
    }
    .is-blog .column.main{
        width:100%;
    }
    .is-blog .columns .column.main .post-list-wrapper ol li h2 a{
        line-height: 30px;
        font-size:18px;
    }
    .about-video h5{
        padding:15px 20px !important;
        font-size: 20px;
    }
    .right-header{
        justify-content: space-between;
        width:100%;
    }
    .toggle-button{
        right:20px;
    }
    .search-bar input{
        font-size:12px;
    }
    .search-bar{
        width:225px;
    }
    .search-bar input{
        font-size:12px;
    }
    .search-bar input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
        font-size:12px;
      }
      
      .search-bar input:-ms-input-placeholder { /* Internet Explorer 10-11 */
        font-size:12px;
      }
      
      .search-bar input::-ms-input-placeholder { /* Microsoft Edge */
        font-size:12px;
      }
      .search-bar button{
          width:19px;
      }
      .search-bar button img{
          width:12px;
      }
      .search-bar{
          height: 24px;
      }
      .my-account a{
        padding-right: 8px;
        margin-right: 8px;
      }
      .search-bar input{
        padding: 12px 24px 12px 10px;
      }
      .search-bar {
        width: 200px;
    }
    h2{
        font-size: 40px;
    }
    .group-image .img-box{
        width:100%;
        height: 320px;
        margin-bottom: 20px;
    }
    .group-image .img-box .img-content{
        width:70%;
    }
    .group-image .img-box .img-content a{
        margin-top: 20px;
    }
    .axel-content h3 {
        font-size: 36px;
        line-height: 40px;
        letter-spacing: inherit;
    }
    .slide-item-banner .banner-slide-item{
        top:50px;
    } 
    .axel-content{
        padding: 70px 15px 20px;
    }
    .slide-item-banner .banner-slide-item .banner-inner-content .btn{
        border:none;
        font-size:28px;
    }
    .product-list ul li{
        width:100%;
        margin-bottom: 20px;
    }
    .product-item .product-img{
        height: auto;
    }
    .axel-group .axel-img{
        position: static;
        width:100%;
    }
    .axel-group .axel-img img, .axel-content{
        width:100%;
    }
    .axel-content{
        clip-path: polygon(0 11%, 100% 0, 100% 100%, 0% 100%);
    }
    .axel-content:before {
        left: -40px;
        top: -3px;
        clip-path: polygon(0% 0, 0% 100%, 100% 100%);
        width: 100%;
        height: 45px;
        background-color: #d3d9dc;
        z-index: 99;
        transform: rotate(-4deg);
    }
    .featured-products{
        margin:30px 0px;
    }
    .single-img .heading-group h2{
        font-size:44px;
    }
    .video-box{
        width:100%;
    }
    .other-video .video-box{
        display: none;
    }
    .other-video .video-box.all-video{
        display: block;
        width:100%;
        background-color: transparent;
        clip-path:inherit;
    }
    .other-video .video-cover{
        background-color: transparent;
        height: auto;
    }
    .other-video .video-box.all-video .video-cover:before{
        display: none;
    }
    .other-video .video-box.all-video .video-cover .play-btn{
        top:20px;
    }
    .inner-footer .footer-cols-wrapper{
        padding:0px 20px;
    }
    .footer-cols-wrapper .col-3{
        width:100%;
    }
    .inner-footer .block-subscribe .nwl-title{
        display: none;
    }
    .inner-footer .block-subscribe .input-box{
        padding: 0px 150px 0px 15px;
    }
    .footer-container{
        padding:30px 0px;
    }
    .footer-cols-wrapper .col-3{
        margin-bottom: 30px;
    }

    .catalog-category-view .product-items li{
        width:100% !important;
    }
    .catalog-category-view .product-items li .product-item-info{
        width:50% !important;
        margin:0 auto 30px !important;
        box-shadow: 0px 1px 12px 0 rgba(0, 0, 0, 0.2) !important;
    }
    .catalog-category-view .product-items li .product-item-info:hover{
        margin:0 auto 30px !important;
    }
    .is-blog .pager{
        flex-direction: column;
    }
    .is-blog .pager .toolbar-amount{
        text-align: center;
    }
    .is-blog .pager .pages ul{
        display: flex;
        justify-content: center;
    }
    .block-blog .block-content form button{
        margin-top:0px;
    }
    .catalog-product-view .product.detailed .title a{
        width:100%;
    }
    .catalog-product-view .product.detailed .title a:after{
        top:17px !important;
    }
    .product-addto-links .action{
        margin-right: 0px;
    }
    .navigation{
        background-color: #000;
    }
    nav.navigation ul li a{
        color:#fff !important;
        width:100% !important;
        font-size: 18px;
        letter-spacing: 2px !important;
        padding: 25px 20px !important;
        text-align: left;
    }
    nav.navigation ul li ul li a{
         padding: 12px 20px !important;
    }
    nav.navigation ul li a span{
        width:100% !important;
        height: auto;
        display: block;
        padding:0px;
    }
    .navigation .parent .level-top:after{
        top:28px;
        right:20px;
    }
    .nav-sections-item-content{
        padding:0px;
    }
    .nav-sections-items .nav-sections-item-title:nth-child(2){
        display: none !important;
    }
    .inner-footer .block-subscribe .newsletter form input{
        margin-right: 0px !important;
    }
    .dealer-item-popup .inner-deeler-popup{
        max-width: 100%;
    }
    .video-sec{
        margin:30px 0px 70px;
    }
    .axel-group{
        margin-top: 20px;
    }
    .footer-icons{
        padding-left: 35px;
        padding-right: 35px;
    }
    .block.newsletter .form.subscribe{
        width:90%;
        margin:0 auto;
    }
    .category-description p iframe{
        width:100%;
    }
    .post-meta .post-meta-item{
        line-height: 30px;
    }

    .cms-no-route .error-text{
        font-size: 30px;
    }

 
}
@media only screen and (max-width: 639px){
    .pages-item-next{
        position: static;
    }
    .product-item-actions .actions-primary{
        display: inline-block !important;
    }
    .product-reviews-summary{
        flex-direction: column;
        align-items: flex-start;
    }
    .column.main{
        padding-bottom: 30px !important;
        margin-bottom: 20px !important;
    }
}
@media only screen and (max-width: 576px){
    header .header.content .block-search .search input{
        width:100%;
    }
/*#banner-slider-carousel .owl-image img{
    height: auto;
}*/
   .catalog-category-view .product-items li .product-item-info{
    width:100% !important;
   } 
   .catalog-category-view .product-items li{
    margin-left: 0px !important;
   }
  header .header.content .block-search form{
    width: 100%;
    top:47px;
  }
   .my-account a{
    padding-right: 0px;
   }
   header .header.content .block-search{
    width:100%;
   }
   .logo{
    max-width: 145px;
   }
   header .header.content .block-search form .field.search{
        position: absolute;
        width: 100%;
        max-width: 100%;
        height: 100%;
        top: 0px;
   }
   header .header.content .block-search .search input{
        padding: 5px 10px 5px 20px;
   }
   header .header.content .block-search .search input{
    margin:0px !important;
   }
   header .header.content .social-account,
   header .header.content .block-search{
    top:45px;
   }
   
   header .header.content .block-search form .field.search.active-search{
    display: block;
   }
   header{
    height: 175px;
   }
   /*header .header.content .block-search form{
    width:270px;
   }*/
   .form-wishlist-items .wishlist ol li{
    width:100% !important;
   }
   .wishlist-index-index .pager .limiter-options,
   .sales-order-history .pager .limiter-options{
    width:90px;
   }
   .wishlist-index-index .pager,
   .sales-order-history .pager{
    padding:10px 4px;
   }
   .mp-banner-slider .owl-prev span, .mp-banner-slider .owl-next span{
    width:35px;
    height: 35px;
   }
   .mp-banner-slider .owl-prev span:before, 
   .mp-banner-slider .owl-next span:before{
    font-size: 30px !important;
   }
   .products-related ol li, .products-upsell ol li{
        width:100% !important;
    }
    .banner-item.banner-slider{
        height: 655px;
    }
    .banner-item.banner-slider .item-image,
    .banner-item.banner-slider .item-image .owl-image,
    .banner-item.banner-slider .item-image .owl-image img{
        height: 100%;
        object-fit: cover;
    }
    .mp-banner-slider .banner-slider .container{
        top:22%;
    }
    .mp-banner-slider .owl-nav button span{
        top:45%;
    }
     header .header.content .block-search .search input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
        font-size:16px;
      }
      
      header .header.content .block-search .search input:-ms-input-placeholder { /* Internet Explorer 10-11 */
       font-size:16px;
      }
      
      header .header.content .block-search .search input::-ms-input-placeholder { /* Microsoft Edge */
        font-size:16px;
      }
      header .header.content .block-search form{
        height: 20px;
      }
      header .header.content .block-search .actions button:before{
        font-size: 10px;
      }
      header .header.content .block-search .actions button{
        /*width:19px;*/
        padding:0px;
      }
      header .header.content .block-search .search input{
        padding: 3px 10px 5px 20px;
      }
      .image-wrapper{
        margin-top:0px;
      }
      .slider-product-item-info{
        width:100% !important;
      }
      .single-img .heading-group{
        width:100%;
      }
      .my-account a{
        font-size: 14px;
      }
      header .header.content .block-search .search input{
        font-size:16px;
        padding: 0px 20px;
        height: 44px;
      }
      /*header .header.content .block-search form .actions{
        height: 20px;
      }*/
      .category-description p a{
        word-break: break-all;
      }
      .cms-page-view .page-title{
        font-size: 18px;
      }
    .category-description p iframe{
      height: 250px !important;  
    }

}

sup {
    top: -0.2em;
}
.full-img sup {
    top: -0.2em !important;
}
.banner-title sup {
    top: -0.6em !important;
}

.fieldset.fieldset.amexfee-fieldset .field.amexfee-item-element._required .label:after{
display:none;
}
.checkout-index-index .payment-method #co-transparent-form-braintree #braintree_expirationDate {
    width: 180px;
}
.video-cover .play-btn {
color: #fff !important;
}
.heading-group.white .btn ,.axel-content.text-center .btn, .img-content.text-center .btn ,.banner-details .btn{
    color: #fff !important;
}
.cookie-div .m-button.m-decline {
    display: none !important;
}

.cookie-div {
    width: 100%;
}

.cookie-div #m-cookienotice {
    width: 100%;
}

.cookie-div #message-custom-css {
    width: fit-content !important;
}

.cookie-div #action-custom-css a {
    margin-top: 0 !important;
}

.cookie-div .m-message.title {
    padding: 0 !important;
}

.footer-container .scroll-up.show {
    bottom: 50px;
}
#action-custom-css .m-button {
    line-height: 1.42857143;
}
.catalog-category-view .products-grid .product-items li .product-item-name a ,.catalogsearch-result-index .products-grid .product-items li .product-item-name a{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: unset;
    white-space: unset;
}
.catalog-category-view .message.info>*:first-child:before, .catalog-category-view .message.info{
    color: #CD2B2B !important;
}
.catalog-category-view .message.info{
    background: #fff !important;
}
@media only screen and (max-width: 1024px){
.mp-banner-slider .banner-slider .container {
    transform: translate(-58%, -50%);
}
.mp-banner-slider .banner-slider .container {
    position: unset;
    top: unset;
    left: unset;
    width: 100%;
    float: right;
    transform: unset;
    margin-top: 25px;
}
.mp-banner-slider .banner-slider .banner-details {
    margin:0 auto !important;
    margin-left: unset;
}
form#search_mini_form .field.search input#search::placeholder {
    font-size: 14px;
}
}
@media only screen and (max-width: 820px){
.section-items.nav-sections-items div#store\.menu nav.navigation {
    max-width: 760px !important;
}
}

@media only screen and (max-width: 500px){
.mp-banner-slider .banner-slider .banner-details {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
}
