﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,700');

/* :: DEFAULT CSS :: =================================================== */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before, *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

body, html, form, section {
    height: 100%;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.32857143;
    color: #353535;
    background-color: #fff;
    /*padding-top: 160px;*/
    padding-top: 135px; /*aarti*/
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #353535;
    text-decoration: none;
    outline: none;
}

    a:hover, a:focus {
        color: #000;
        text-decoration: none;
    }

    a:focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

p {
    margin: 0 0 15px;
}

body {
    opacity: 0;
}

/* :: COMMON CSS :: =================================================== */

/* GO To Top Style  */
.scrollup {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    bottom: 10px;
    right: 20px;
    display: none;
    z-index: 1;
    font-size: 24px;
}

.scrollup {
    -webkit-animation: moveFromBottom 1000ms ease;
    -moz-animation: moveFromBottom 1000ms ease;
    -ms-animation: moveFromBottom 1000ms ease;
}

a.scrollup {
    border: 2px solid #994d11;
    background: #f9e6c8;
    color: #994d11;
}

    a.scrollup:hover {
        background: #994d11;
        color: #f9e6c8;
        box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
    }

/* List Styles */
.list li {
    margin: 0 0 15px;
}

.fa-icon {
    padding-left: 25px !important;
    position: relative;
}

    .fa-icon .fa {
        margin-left: -22px;
        position: absolute;
        top: 6px;
        bottom: 0px;
    }


/* Clear Styles */
.clear {
    clear: both;
}

.spacer1 {
    clear: both;
    width: 100%;
    height: 10px;
}

.spacer2 {
    clear: both;
    width: 100%;
    height: 20px;
}

.spacer3 {
    clear: both;
    width: 100%;
    height: 30px;
}

.spacer4 {
    clear: both;
    width: 100%;
    height: 40px;
}

.spacer5 {
    clear: both;
    width: 100%;
    height: 50px;
}


/* Spacing, Border, Shadow Styles */
.border {
    border: 1px solid #ccc !important;
}

.no-border {
    border: none !important;
}

.no-border-l {
    border-left: none !important;
}

.no-border-r {
    border-right: none !important;
}

.no-border-t {
    border-top: none !important;
}

.no-border-b {
    border-bottom: none !important;
}

.no-border-rad {
    border-radius: 0px !important;
}

.border-t {
    border-top: 1px solid #ccc !important;
}

.border-b {
    border-bottom: 1px solid #ccc !important;
}

.no-shadow {
    box-shadow: none !important;
}

.no-back {
    background: transparent !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-r {
    margin-right: 0 !important;
}

.no-margin-l {
    margin-left: 0 !important;
}

.no-margin-b {
    margin-bottom: 0 !important;
}

.no-margin-t {
    margin-top: 0 !important;
}

.no-margin-x {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.no-margin-y {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.marg-t {
    margin-top: 30px !important;
}

.marg-b {
    margin-bottom: 20px !important;
}

.marg-ftr-t {
    margin-top: 20px !important;
}

.no-pad {
    padding: 0 !important;
}

.no-pad-l {
    padding-left: 0 !important;
}

.no-pad-r {
    padding-right: 0 !important;
}

.no-pad-t {
    padding-top: 0 !important;
}

.no-pad-b {
    padding-bottom: 0 !important;
}

.no-pad-x {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.no-pad-y {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pad-t {
    padding-top: 40px !important;
}

.pad-b {
    padding-bottom: 40px !important;
}

.pad-t-nav {
    padding-top: 10px !important;
}


/* Hr Line Style  */
hr.solid {
    border: 0;
    border-top: 1px solid #ccc;
}

hr.dotted {
    border: 0;
    border-top: 1px dotted #666;
    background: #292929;
}

hr.dashed {
    border: 0;
    border-top: 1px dashed #ccc;
    background: #fff;
}

hr.double {
    border: 0;
    border-top: 1px dashed #ccc;
    background: #999;
}


.err {
    font-size: 12px;
    color: #c80000;
}

.red {
    color: #c80000;
}

/*  Transition style */
a, .btn {
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.btn {
    text-decoration: none;
}

.delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-06s {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.delay-07s {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.delay-08s {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.delay-09s {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay-15s {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay-25s {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}


/* Social Media Style */
ul.social_media {
    margin: 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
}

    ul.social_media li {
        display: inline-block;
        list-style-type: none;
        list-style-image: none;
        padding: 0px;
        margin: 0 5px 10px 0px;
        border: none;
        vertical-align: top;
    }

        ul.social_media li a {
            display: block;
            font-size: 15px;
            transition: none .6s ease-in-out;
            -webkit-transition: none .6s ease-in-out;
            -moz-transition: none .6s ease-in-out;
            -o-transition: none .6s ease-in-out;
            -ms-transition: none .6s ease-in-out;
        }

            ul.social_media li a:hover {
                display: block;
                font-size: 15px;
            }

    ul.social_media .fa {
        padding: 0px;
        margin: 0px;
        font-weight: 300;
        color: #fff;
        width: 35px;
        height: 35px;
        border-radius: 100%;
        line-height: 35px;
        text-align: center;
    }

        ul.social_media .fa:hover {
            color: #fff;
        }

.fa-facebook, .fa-google, .fa-google-plus, .fa-linkedin, .fa-youtube, .fa-youtube-play, .fa-tumblr, .fa-twitter, .fa-pinterest, .fa-instagram {
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
}

ul.social_media .fa-facebook:hover {
    background: #3b5998;
}

ul.social_media .fa-google:hover {
    background: #3f85f4;
}

ul.social_media .fa-google-plus:hover {
    background: #d13f2d;
}

ul.social_media .fa-linkedin:hover {
    background: #0275b5;
}

ul.social_media .fa-youtube:hover {
    background: #ce332d;
}

ul.social_media .fa-youtube-play:hover {
    background: #ce332d;
}

ul.social_media .fa-tumblr:hover {
    background: #274152;
}

ul.social_media .fa-twitter:hover {
    background: #4dc8f1;
}

ul.social_media .fa-pinterest:hover {
    background: #cb2028;
}

ul.social_media .fa-instagram:hover {
    background: #3e739d;
}

/*  Parallax Image CSS */
.parallax-container {
    min-height: 300px;
    width: 100%;
}

.parallax-banner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 100px 0;
    margin: 0px;
    overflow: hidden;
    clear: both;
    float: left;
}

/*  Breadcrumbs */
.breadcrumbs_panel {
    padding: 20px 0;
    border-top: 1px solid #ccc;
}

.breadcrumb {
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    text-align: center;
}

    .breadcrumb li {
        padding: 0;
        margin: 0;
        list-style: none;
        font-size: 13px;
        color: #333;
    }

        .breadcrumb li.active {
            color: #994d11;
        }

    .breadcrumb a {
        color: #333 !important;
        text-decoration: none;
        padding: 0;
    }

        .breadcrumb a:hover {
            color: #000;
            text-decoration: underline;
        }

    .breadcrumb > li + li:before {
        color: #333 !important;
    }

/* Google Map  */
.map-container {
    width: 100%;
    height: 300px;
    border: 0px;
    float: left;
    padding: 0;
    margin: 0 0 30px 0;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0px;
        pointer-events: none;
    }

/*  Form Control / Btn */
.form-control, .btn {
    border-radius: 0px !important;
    resize: none;
}

/*  Bootsratp Grid of 5 */
.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    width: 100%;
    float: left;
}

@media (min-width: 768px) {
    .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
        width: 100%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
        width: 20%;
        float: left;
    }
}

/*  Table Heads bg */
.th {
    background: #006a4e;
    color: #fff;
}

.tch {
    background: #999;
    color: #fff;
}

.tc {
    background: #f5f5f5;
}

/*  btn-outline */
.btn-outline {
    background: none;
    border: 1px solid #cccccc !important;
}

    .btn-outline:hover, .btn-outline:focus, .btn-outline:active, .btn-outline.active, .open > .dropdown-toggle.btn-outline {
    }

    .btn-outline:active, .btn-outline.active {
        box-shadow: none;
    }

    .btn-outline.btn-sm {
        border-radius: 0px;
    }

/*  fa width */
.fa-20 {
    width: 20px;
    text-align: center;
}

.fa-25 {
    width: 25px;
    text-align: center;
}

.fa-30 {
    width: 30px;
    text-align: center;
}

/*  text responsive align */
@media (min-width: 768px) {
    .text-sm-right {
        text-align: right;
    }
}

@media (min-width: 992px) {
    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }

    .text-md-center {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }
}


/* :: HEADINGS CSS :: =================================================== */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: normal;
    line-height: normal;
    color: inherit;
}

    .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
        font-weight: 400;
        line-height: 1;
        color: #777;
    }

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 0px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

    .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
        font-size: 65%;
    }

.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 5px;
}

    .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
        font-size: 75%;
    }

.h1, h1 {
    font-size: 24px;
    color: #dd0310;
}

.h2, h2 {
    font-size: 20px;
}

.h3, h3 {
    font-size: 18px;
}

.h4, h4 {
    font-size: 16px;
}

.h5, h5 {
    font-size: 14px;
}

.h6, h6 {
    font-size: 12px;
}

@media (min-width: 768px) {
    .lead {
        font-size: 18px !important;
    }
}

.lead a {
    color: #fff !important;
}

.heading {
    position: relative;
    margin: 0px 0px 15px;
}

.white, .white h2, .white h1 {
    color: #fff !important;
}

.heading h1, .heading h2 {
    color: #a58147;
    padding: 5px 0;
    margin: 0;
    font-size: 36px;
    text-transform: uppercase;
}


/* :: WRAPPER CSS :: =================================================== */
.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    float: none;
}

.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -330px;
}
/* the bottom margin is the negative value of the footer's height */
.footer {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.footer, .push {
    min-height: 330px;
    clear: both; /* .push must be the same height as .footer */
}

#headerpan, #footerpan, #bodypan {
    width: 100%;
    float: left;
    z-index: 9999999;
    box-shadow: 0 2px 4px 0 #555;
}

.header, .body, .footer {
    width: 100%;
    float: left;
    margin: 0px auto;
}


/*
=====================================================================================================================================================
HEADER STYLE
=====================================================================================================================================================
*/

/*  Header Top */
header {
    background: #fff;
}

.header-top {
    padding: 0px 0px;
    /*background: #7b5141;*/
    background: #994d11; /*Aarti*/
    color: #fff;
}


/*  Header middle */
.header-middle .logo {
    padding: 8px 0;
    margin: 0;
}

    .header-middle .logo h1 {
        line-height: 0px !important;
        padding: 0px 0;
        margin: 0;
        text-align: left;
    }

    .header-middle .logo img {
        max-width: 100%;
        /* height: 50px; */
        -webkit-transition: height 0.6s;
        -moz-transition: height 0.6s;
        transition: height 0.6s;
        /*width: 52%;*/
        width: 45%; /*Aarti*/
    }

.header-middle .mmenu {
    margin: 32px auto;
    padding: 0 8%;
}
/*  Header Right */
.hdr-list {
    text-align: inherit;
}

    .hdr-list > ul {
        display: block;
        padding: 0;
        margin: 0;
    }

        .hdr-list > ul > li {
            position: relative;
            list-style: none;
            padding: 0;
            margin: 0 0 0 1px;
            display: inline-block;
        }

            .hdr-list > ul > li > a {
                display: block;
                padding: 0 8px;
                color: #fff;
                line-height: 30px;
                position: relative;
                text-decoration: none;
                font-size: 13px;
            }

    .hdr-list ul > li span.head {
        padding-left: 8px;
        font-size: 13px; /*Aarti*/
    }

    .hdr-list ul > li > a:hover {
        color: #000;
        background: #fff;
    }

    .hdr-list ul > li:hover > a {
        color: #000;
        background: #fff;
    }

    .hdr-list li.dropdown > a {
        padding-right: 25px;
    }

        .hdr-list li.dropdown > a:after {
            position: absolute;
            top: 3px;
            right: 10px;
            display: block;
            content: "\f107";
            font-family: 'FontAwesome';
            -webkit-transition: all .50s ease;
            -moz-transition: all .50s ease;
            -ms-transition: all .50s ease;
            -o-transition: all .50s ease;
            transition: all .50s ease;
        }

    .hdr-list li.dropdown:hover > a:after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .hdr-list .dropdown-menu {
        background: #fff;
        color: #323232;
        border-radius: 0;
        top: auto;
        margin-top: -2px;
        min-width: 100px;
        border: 1px solid #d6d6d6 !important;
    }

    .hdr-list .dropdown-login {
        width: 280px !important;
        padding: 15px !important;
        font-size: 13px;
    }

        .hdr-list .dropdown-login .form-control {
            font-size: 13px;
        }


    .hdr-list ul .dropdown-menu {
        padding: 0;
        margin: 0;
    }

        .hdr-list ul .dropdown-menu li {
            border-bottom: 1px solid #f5f5f5;
        }

            .hdr-list ul .dropdown-menu li a {
                padding: 10px;
                box-shadow: none;
            }

                .hdr-list ul .dropdown-menu li a:hover {
                    background: transparent;
                }

@media (max-width:992px) {
    body {
        padding-top: 100px;
    }

    .hdr-list ul > li span.head {
        /*display: none !important;*/
    }
}


@media (max-width:767px) {
    body {
        padding-top: 120px;
    }

    .header-middle .col-sm-3, .header-top .col-sm-9 {
        padding: 0;
    }

    .header-middle .logo {
        text-align: center;
    }

    .hdr-list > ul {
        border-top: 1px solid #eeebe7;
        display: flex;
    }

    .hdr-list ul > li span.head {
        /*display: none !important;*/
    }

    .hdr-list > ul > li > a {
        line-height: 40px;
        padding: 0 15px;
    }

    .hdr-list {
        text-align: center;
    }

        .hdr-list .dropdown-menu.dropdown-login {
            right: 50% !important;
            left: auto !important;
            margin-right: -90px;
        }
}




@media (min-width: 992px) {
    .top-nav-collapse .header-middle .logo {
        /*padding: 5px 0;*/
        padding: 10px 0; /*aarti*/
        margin: 0;
    }

        .top-nav-collapse .header-middle .logo img {
            /*height: 40px;*/
        }

    .top-nav-collapse .hdr-list > ul > li > a {
        /*line-height: 35px;*/
        line-height: 30px; /*Aarti*/
    }

    .top-nav-collapse .header-search {
        margin-top: 7px;
    }
}

.searchpan {
    padding: 0 18px;
}

/*  Header Menu */
.header-menu {
    background: #002365;
}

    .header-menu .container {
        position: relative;
    }
/*.header-menu .col-md-9 { position:static !important;    }*/

/* Navbar */
.navbar {
    border: 0px !important;
    border-radius: 0px !important;
}

.navbar, .navbar-nav {
    border: none !important;
    margin-bottom: 0px !important;
}

.nav > li > a {
    font-size: 14px;
    color: #333;
    display: block !important;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
}

.nav li:hover > a {
    color: #994d11 !important;
    background: transparent !important;
}

.nav > li > a:hover, .nav > li > a:focus {
    /*color: #acb40a !important;*/
    color: #994d11 !important; /*aarti*/
    background: transparent !important;
}

/* Active Class */
.nav > li.active > a, .nav > li.active > a:hover {
    /*color: #acb40a !important;*/
    color: #994d11 !important; /*aarti*/
    background: transparent !important;
}

.nav > li.active:hover > a {
    color: #994d11 !important;
    background: transparent !important;
}

/* All Cat Class */
.navbar-nav > .liviewall {
    width: 100%;
    background: #000 !important;
}

    .navbar-nav > .liviewall > a {
        width: 100%;
        text-align: center;
    }

/*.img-menu { border:2px solid #fff; padding:1px; box-shadow: 0px 0px 3px #646464;}*/
/*.img-menu {  -webkit-filter: grayscale(100%);  filter: grayscale(100%);}*/

@media (min-width: 992px) {
    .navbar-nav {
        width: 100%;
    }

    .nav > li > a {
        /*font-size: 14px;
        display: inline-block !important;
        border-bottom: 0px;
        text-decoration: none;
        text-transform: uppercase;
        padding-top: 16px !important;
        padding-bottom: 16px !important;*/
        font-size: 18px;
        font-weight: 700;
        color: #0f0f0d;
        padding: 10px 18px !important;
        display: inline-block !important;
        text-decoration: none;
        text-transform: uppercase;
    }
    /*.nav > li.dropdown > a::after{ content:"\f107"; font-family: fontawesome;  padding: 0 5px;   }*/
    .nav > li > a {
        color: #333;
    }

    .nav > li.dropdown > a {
        padding-right: 30px;
    }

        .nav > li.dropdown > a:after {
            position: absolute;
            top: -5px;
            line-height: 52px;
            right: 0px;
            display: block;
            content: "\f107";
            font-family: 'FontAwesome';
            -webkit-transition: all .50s ease;
            -moz-transition: all .50s ease;
            -ms-transition: all .50s ease;
            -o-transition: all .50s ease;
            transition: all .50s ease;
        }

    .nav > li.dropdown:hover > a:after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

ul.products-navlist {
    margin: 0;
    padding: 0;
    display: table;
    width: 100%;
    table-layout: fixed;
}

.mega-dropdown-menu ul.products-navlist li {
    display: inline-block;
    margin: 10px 13px;
    width: 30%;
    vertical-align: top;
}

    .mega-dropdown-menu ul.products-navlist li a {
        border: 0 !important;
        background: none !important;
    }

        .mega-dropdown-menu ul.products-navlist li a img {
            margin: 0 auto 10px;
            border: 1px solid #994d11;
        }

    .mega-dropdown-menu ul.products-navlist li a {
        text-align: center;
        font-size: 11pt !important;
        color: #323232 !important;
    }

        .mega-dropdown-menu ul.products-navlist li a span {
            display: block;
            font-size: 21px;
            font-weight: 600;
        }

@media (min-width: 992px) {
    .dropdown .dropdown-menu {
        visibility: hidden !important;
        opacity: 0 !important;
        display: block;
        border: 5px solid #323232;
        border-width: 0px 1px 1px;
    }
    /* Make Navigation Toggle on Desktop Hover */
    .dropdown:hover .dropdown-menu {
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-animation: fadeIn 300ms ease;
        -moz-animation: fadeIn 300ms ease;
        -ms-animation: fadeIn 300ms ease;
    }
}

/* Mega Dropdown Custom Css */
.dropdown-menu.mega-dropdown-menu {
}

.navbar-nav .mega-dropdown {
    position: static !important;
    padding: 0;
    margin: 0;
}

.navbar-nav .dropdown-menu {
    padding: 15px !important;
    width: auto;
    left: auto !important;
    border-radius: 0px !important;
    min-width: 200px;
}

.navbar-nav .mega-dropdown-menu {
    padding: 15px !important;
    left: 0 !important;
    width: 100% !important;
    border-radius: 0px !important;
}

.mega-dropdown-menu li a {
    background: transparent !important;
    cursor: pointer;
}

.mega-dropdown-menu .menu_head {
    padding: 0px;
    font-size: 14px;
    color: #4b4b4b;
}

/*.mega-dropdown-menu ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}
.mega-dropdown-menu ul li {
    display: inline-block;
    width: 28%;
    vertical-align: top;
    height: 63px;
    margin: 0 2%;
}
.mega-dropdown-menu ul li a {
    font-size: 10.5pt;
    font-weight: normal;
    font-family: 'MyriadProRegular';
}*/
ul.pro_list .pic {
    min-width: 75px;
    width: 75px;
    vertical-align: middle;
    display: table-cell;
    height: 100%;
}

ul.pro_list img {
    width: 100%;
}

ul.pro_list .cat-text {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
}

.mega-dropdown-menu ul > li {
    list-style: none;
    width: 100%;
    display: block;
    vertical-align: top;
    padding: 0px;
    margin: 0;
}

    .mega-dropdown-menu ul > li > ul > li {
        list-style: none;
        width: 100%;
        display: inline-block;
        vertical-align: top;
        padding: 0px;
        margin: 0;
    }

    .mega-dropdown-menu ul > li.cap {
        color: #944f28;
        border-bottom: 1px solid #994d11;
        font-size: 20px;
    }

.navbar-nav .dropdown-menu a {
    display: block;
    padding: 4px 0px;
    text-decoration: none;
    color: #646464;
    line-height: normal;
}

    .navbar-nav .dropdown-menu a:hover {
        background: transparent !important;
        color: #000 !important;
    }

.navbar-nav .dropdown-menu a {
    position: relative;
}

    .navbar-nav .dropdown-menu a:before {
        content: "";
        float: left;
        /*height: 14px;*/
        height: 35px;
        margin-right: 0;
        position: relative;
        top: 4px;
        -webkit-transition: all 400ms ease 0s;
        transition: all 400ms ease 0s;
        width: 0;
        display: none;
    }

.navbar-nav .dropdown-menu li:hover > a:before {
    margin-right: 7px;
    width: 4px;
    background: #7b5141;
}

.linew {
    color: red;
    font-size: 12px;
    vertical-align: middle;
    -webkit-animation: newlabel 0.82s linear infinite;
    -moz-animation: newlabel 0.82s linear infinite;
    -ms-animation: newlabel 0.82s linear infinite;
    -o-animation: newlabel 0.82s linear infinite;
    animation: newlabel 0.82s linear infinite;
}

@keyframes newlabel {
    0% {
        color: #ff324e;
    }

    20% {
        color: #1fc67d;
    }

    40% {
        color: #17c8cc;
    }

    60% {
        color: #e00043;
    }

    80% {
        color: #db4039;
    }

    80% {
        color: #000000;
    }
}


.mega-dropdown-menu .col-md-15 {
    padding-bottom: 20px;
    display: inline-block;
}

/* Mega Dropdown Custom Css */

@media (max-width:992px) {
    .dropdown-menu.mega-dropdown-menu {
        border: 0px !important;
        background: #fff;
    }

    .navbar-nav .open .dropdown-menu {
        background-color: #fff !important;
    }

    .mega-dropdown-menu ul {
        margin: 0px 0 15px 0;
        padding: 0;
    }

    .dropdown-menu > li > a {
        white-space: normal !important;
    }
}


/*  Header Search */
.header-search {
    background: #fff;
    float: right;
    /*margin-top: 15px;*/
    margin-top: 37px;
    font-size: 12px !important;
    width: 219px;
}

    .header-search .input-group {
        border: 0px !important;
    }

    .header-search .search-dd {
        width: 40% !important;
    }

    .header-search .search-txt {
        width: 100% !important;
    }

    .header-search .input-group-addon {
        background: #994d11;
        border-radius: 0px;
        border: 0px !important;
    }

        .header-search .input-group-addon .fa {
            color: #fff;
            font-size: 16px;
            margin-right: 0px;
        }

        .header-search .input-group-addon a {
            color: #fff;
            text-decoration: none;
        }

    .header-search .form-control {
        font-size: 12px !important;
        float: left;
    }





/*MY ACCOUNT*/
.my-account:after {
    content: '\f107';
    font-family: FontAwesome;
    margin-left: 7px;
}

.my-account:hover ul.account-dropdown {
    top: 15px;
}

    .my-account:hover ul.account-dropdown li {
        display: block;
        opacity: 1;
    }

        .my-account:hover ul.account-dropdown li a {
            opacity: 1;
            margin: 0px 5px;
        }

ul.account-dropdown {
    position: absolute;
    width: 150px;
    top: 50px;
    background: rgba(0,0,0,0.8);
    z-index: 9;
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    -ms-transition: all .6s ease;
}

    ul.account-dropdown li {
        display: block;
        float: left;
        width: 100%;
        line-height: 15pt;
        display: none;
    }

        ul.account-dropdown li a {
            padding: 0px;
            margin: 8px 15px;
            color: #FFF !important;
            opacity: 0;
            font-size: 9.5pt;
            transition: all .6s ease;
            -webkit-transition: all 1s ease;
            -moz-transition: all 1s ease;
            -o-transition: all 1s ease;
            -ms-transition: all 1s ease;
        }

        ul.account-dropdown li:hover a {
            color: #ffde00 !important;
        }

.cart {
    display: inline-block;
}

    .cart a {
        /*display: inline-block;
        font-size: 16px;
        font-family: 'MyriadProSemibold';
        text-transform: uppercase;
        color: #eee;
        text-decoration: none;
        padding: 15px 10px;
        margin-top: -1px;
        position: relative;*/
        display: inline-block;
        font-size: 16px;
        /*font-family: 'MyriadProSemibold';*/
        text-transform: uppercase;
        color: #eee;
        text-decoration: none;
        padding: 10px 5px;
        margin-top: -1px;
        position: relative;
        font-weight: 700;
    }

#members-login:hover {
    background: none;
}

.cart a:hover {
    color: #fff !important;
}

.mobile-login, #nav-wrap .my-account {
    display: none;
}

.cart .active > a {
    color: #cc0000;
    background: #fff;
    border-top: 1px solid #cc0000;
}

.cart.active > ul > li:hover > a {
    color: #333;
    background: #eee;
}

.menu li > ul > li:hover > a {
    color: #333;
    background: #eee;
    border-top: none;
}


.shopping-cart {
    display: inline-block;
    background: url('images/cart.png') no-repeat 0 0;
    width: 20px;
    height: 20px;
    background-size: 100%;
    margin-right: 5px;
    float: left;
}

.cart a:hover .shopping-cart {
    background: url('images/cart-hover.png') no-repeat 0 0;
    width: 20px;
    height: 20px;
}

#members-login {
    position: relative;
    color: #000;
    cursor: pointer;
}

    #members-login:before {
        content: 'My Cart';
        margin: 0 2px;
    }

@media(max-width:1023px) {
    .shopping-cart, .cart a:hover .shopping-cart {
        width: 16px;
        height: 17px;
    }
}

.cartopen {
    /*background: #cc0000;*/
    border: 3px solid #94502b;
}

#cart-box {
    background: #fff;
    text-align: center;
    color: #666;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    text-transform: uppercase;
    z-index: 99;
    margin: 0;
    padding: 0px;
    width: 500px;
    box-shadow: 0px 2px 7px 0px #ADA9A9;
    border: #a58147 1px solid;
}

.close-cart {
    float: left;
    margin: 9px 8px;
    padding: 5.5px;
    background: #816338;
    color: #FFF;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
    font-family: 'MyriadProSemibold';
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    -ms-transition: all .6s ease;
}

    .close-cart:after {
        content: 'Continue Shopping';
    }

#cart-box i {
    font-size: 9pt;
    color: #cc0000;
    font-family: 'MyriadProRegular';
    text-transform: initial;
}

#cart-box .cnt-shpng {
    float: left;
    margin-left: 8px;
}

#cart-box .checkout {
    float: right;
}

#cart-box .btnlink:hover, .close-cart:hover {
    background: #cc0000;
    color: #FFF;
}

.rate {
    display: table;
    float: left;
    width: 100%;
    height: 40px;
    border-bottom: solid #934f29c9 1px;
    background: #934f29;
}

    .rate span {
        display: table-cell;
        font-family: 'MyriadProRegular';
        vertical-align: middle;
        font-size: 9.5pt;
        text-align: left;
        text-indent: 2%;
        color: #FFF;
    }

        .rate span.item-name {
            width: 37%;
        }

        .rate span.item-rate {
            width: 12%;
            text-align: right;
        }

        .rate span.item-qnty {
            width: 12%;
            text-align: center;
        }

        .rate span.item-amount {
            width: 12%;
            text-align: left;
        }



#cart-box ul.cart-list {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    max-height: 250px;
    overflow-y: auto !important;
    overflow-x: hidden;
    position: relative !important;
    display: block !important;
    box-shadow: none !important;
}

    #cart-box ul.cart-list li {
        height: auto;
        margin: 0;
        display: block;
        width: 100%;
        padding: 10px 0 10px 0 !important;
        border-bottom: solid #f5e0a8 1px !important;
        float: left;
        text-align: left;
    }

        #cart-box ul.cart-list li:last-child {
            border-bottom: 0 !important;
        }

        #cart-box ul.cart-list li:hover {
        }


        #cart-box ul.cart-list li .cart-item {
            display: table;
            width: 100% !important;
            float: left;
        }

#cart-box .cart-thumb {
    padding: 0;
}

#cart-box .cart-thumb {
    width: 120px;
    display: table-cell;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
}

    #cart-box .cart-thumb img {
        width: 100%;
    }

#cart-box .cart-pro-info {
    vertical-align: middle;
    display: table-cell;
    padding: 0 2%;
}

#cart-box ul.cart-list li b {
    text-transform: capitalize;
}

#cart-box ul.cart-list li .pro-info-list {
    font-size: 10.2pt;
    font-weight: normal;
    text-transform: initial;
    margin: 2px 0 0 0;
    font-family: 'MyriadProRegular';
    display: table;
    width: 100%;
}

    #cart-box ul.cart-list li .pro-info-list div {
        display: table-cell;
        width: 14%;
        text-align: right;
    }


#cart-box ul.cart-list li .qty_wrap {
    width: 58% !important;
    margin: 0;
    text-align: left !important;
    vertical-align: middle;
}

ul.cart-list li input[type="Text"] {
    margin: 0 5px;
    border: #DDD solid 1px;
    height: 22px;
    color: #cc0000;
    vertical-align: middle;
    margin: 0;
    width: 30px;
    text-align: center;
}

#cart-box ul.cart-list li .prod-price {
    padding: 0;
    margin: 0;
    font-size: 12pt;
    text-align: right !important;
    padding-left: 5px;
    width: inherit;
}

#cart-box ul.cart-list li .cart-pro-info a {
    padding: 0 5px 0 10px !important;
    margin: 0;
    display: inline-block;
    color: #B7B7B7;
    position: relative;
    font-size: 14px;
    vertical-align: middle;
}

    #cart-box ul.cart-list li .cart-pro-info a:hover {
        color: #999;
    }
/*#cart-box ul.cart-list li .cart-pro-info a:hover:after{content:'Remove'; background:#333; color:#FFF; position:absolute; left:0; right:0; top:-15px; width:100px; padding:5px; margin:0 auto;}*/


ul.cart-list li:first-child {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

ul.cart-list li:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

ul.cart-list li:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

ul.cart-list li:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

ul.cart-list li:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

ul.cart-list li:nth-child(6) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

ul.cart-list li:nth-child(7) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

ul.cart-list li:nth-child(8) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

#cart-box ul.cart-list li.low_sugar {
    display: none;
}

#cart-box ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 6px;
    background-color: #DDD;
}

#cart-box ul::-webkit-scrollbar {
    width: 6px;
    cursor: pointer;
}

#cart-box ul::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #FC2B2B;
}

#cart-box ul.mini_cart_total {
    padding: 0;
    margin: 10px 0px;
    width: 100%;
    display: table;
    position: relative;
    box-shadow: none;
}

    #cart-box ul.mini_cart_total li {
        width: 78%;
    }

    #cart-box ul.mini_cart_total li {
        padding: 2%;
        margin: 5px;
        text-align: right;
        list-style: none;
        vertical-align: top;
        display: table-cell;
        font-size: 14px;
        border: solid #E8E8E8;
        border-width: 1px 0px;
    }

    #cart-box ul.mini_cart_total .prod-price {
        color: #cc0000;
        width: auto;
        padding: 0px;
        font-size: 16pt;
        text-align: right;
        margin: 0;
    }
/* Search Expand ================================================================================*/
/*#content {
    position: absolute;
    height: 50px;
    width: 245px;
    margin-left: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 75px;
}

    #content.on {
        -webkit-animation-name: in-out;
        animation-name: in-out;
        -webkit-animation-duration: 0.7s;
        animation-duration: 0.7s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
    }

input {
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    border: 4px solid #333;
    border-radius: 50%;
    background: none;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto;
    outline: 0;
    -webkit-transition: width 0.4s ease-in-out, border-radius 0.8s ease-in-out, padding 0.2s;
    transition: width 0.4s ease-in-out, border-radius 0.8s ease-in-out, padding 0.2s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

.search {
    background: none;
    position: absolute;
    top: 0px;
    left: 0;
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 100%;
    outline: 0;
    border: 0;
    color: inherit;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

    .search:before {
        content: "";
        position: absolute;
        width: 20px;
        height: 4px;
        background-color: #333;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-top: 12px;
        margin-left: 16px;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
    }

.close {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

    .close:before {
        content: "";
        position: absolute;
        width: 27px;
        height: 4px;
        margin-top: -1px;
        margin-left: -13px;
        background-color: #333;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
    }

    .close:after {
        content: "";
        position: absolute;
        width: 27px;
        height: 4px;
        background-color: #333;
        margin-top: -1px;
        margin-left: -13px;
        cursor: pointer;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.square {
    box-sizing: border-box;
    padding: 0 40px 0 10px;
    width: 300px;
    height: 50px;
    border: 4px solid #333;
    border-radius: 0;
    background: none;
    color: #333;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    outline: 0;
    -webkit-transition: width 0.4s ease-in-out, border-radius 0.4s ease-in-out, padding 0.2s;
    transition: width 0.4s ease-in-out, border-radius 0.4s ease-in-out, padding 0.2s;
    -webkit-transition-delay: 0.4s, 0s, 0.4s;
    transition-delay: 0.4s, 0s, 0.4s;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}*/
.search-box {
    background: #E8E8E4;
    position: absolute;
    top: 54px;
    right: -24.7%;
    width: 650px;
    height: 60px;
    line-height: 60px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-top: 4px solid #7b5141;
    display: none;
}

    .search-box:before {
        content: "";
        position: absolute;
        top: -32px;
        right: 26px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 14px solid transparent;
        border-bottom: 14px solid #7b5141;
    }

    .search-box input[type="text"] {
        width: 500px;
        padding: 5px 10px;
        margin-left: 23px;
        border: 1px solid #7b5141;
        outline: none;
    }

    .search-box input[type="button"] {
        width: 80px;
        padding: 5px 0;
        background: #7b5141;
        color: #fff;
        margin-left: -6px;
        border: 1px solid #7b5141;
        outline: none;
        cursor: pointer;
    }

.ser-icon {
    margin-top: 12px;
}

/* Media Queries */
@media screen and (max-width: 700px) {
    .items_container ul {
        width: 200px;
    }

    /*ul li {
            width: 100px;
        }*/

    ul li.active {
        text-align: right;
    }

    ul li.mob {
        display: none;
    }

    .search-box {
        width: 270px;
        right: -16%;
    }

        .search-box input[type="text"] {
            width: 140px;
            margin-left: 15px;
        }

        .search-box input[type="button"] {
            margin-right: 12px;
        }
}


/* Cart Header Mini */
.cart .hdr-list li.dropdown > a {
    /*padding-right: 25px;*/
}

.cart .hdr-list .dropdown-login {
    width: 450px !important;
    padding: 10px !important;
    font-size: 13px;
    margin-top: 14px;
}

.cart .hdr-list > ul {
    list-style: none;
}

    .cart .hdr-list > ul > li > a {
        display: block;
        padding: 0 8px;
        color: #323232;
        line-height: 40px;
        position: relative;
        text-decoration: none;
        width: 100%;
        height: 70px;
        text-align: right;
        /*background: #E2E2E2;*/
        /*border-left: 1px solid #C9C9C9;
        border-right: 1px solid #C9C9C9;*/
        padding: 35px 15px;
        background-image: url('../images/secure.png');
        /*background-image: url(https://www.bathwaredirect.com.au/skin/frontend/bathware/default/images/secure_ico.png);*/
        background-repeat: no-repeat;
        background-position: 30px 22px;
    }

.cart .hdr-list li.dropdown > a:after {
    position: absolute;
    top: 0;
    right: 10px;
    display: none;
    content: "\f107";
    font-family: 'FontAwesome';
    -webkit-transition: all .50s ease;
    -moz-transition: all .50s ease;
    -ms-transition: all .50s ease;
    -o-transition: all .50s ease;
    transition: all .50s ease;
}

.cart .hdr-list > ul > li > a .icon {
    background: url('../images/mini-cart.png');
    background-repeat: no-repeat;
    background-size: 50px;
    height: 50px;
    width: 50px;
    margin: -1px 0 0 10px;
    display: block;
    float: right;
}

.cart .hdr-list > ul > li > a .cart_total.no_items {
    font-size: 14px;
    color: #888;
    text-transform: capitalize;
    font-style: italic;
    font-weight: 400;
    padding: 32px 0 0;
}

.cart .hdr-list > ul > li > a .cart_total {
    display: contents;
    line-height: 100%;
    color: #0087c8;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0 0 0;
}

.cart .hdr-list > ul > li > a .cart_items {
    display: block;
    line-height: 100%;
    font-weight: 500;
    font-size: 12px;
    color: #505050;
    margin-top: -10px;
}

.minicart-wrapper a.close {
    display: none;
}

.mini-products-list li {
    margin-bottom: 0px;
    clear: both;
}

.header-minicart .minicart-wrapper {
    clear: both;
    position: relative;
}

.header-minicart .mini-products-list {
    padding: 0;
    padding-top: 0px;
}

    .header-minicart .mini-products-list li.last {
        /*border: none;*/
        width: 100% !important;
        padding-bottom: 35px;
    }

    .header-minicart .mini-products-list li {
        padding: 0;
        border-bottom: 1px solid #DDDDDD;
        position: relative;
    }

ul#cart-sidebar > li.item > div {
    float: left;
    font-size: 14px;
    font-weight: 400;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
}

    ul#cart-sidebar > li.item > div.product_name {
        width: 63%;
        overflow: hidden;
    }

    ul#cart-sidebar > li.item > div.avatar {
        width: 13%;
        overflow: hidden;
    }

    ul#cart-sidebar > li.item > div.product_qty {
        width: 13%;
    }

    ul#cart-sidebar > li.item > div.product_price {
        width: 17%;
        /*font-weight: 700;*/
        font-weight: normal;
        text-align: end;
    }

    ul#cart-sidebar > li.item > div.product_remove {
        width: 7%;
    }

        ul#cart-sidebar > li.item > div.product_remove a {
            text-decoration: none !important;
            opacity: 0.3;
            padding: 0px 10px;
            color: #cc0000;
        }

.header-minicart .minicart-actions {
    background: #FFF;
    border-top: 1px solid #DDD;
}

.header-minicart .minicart-actions {
    padding: 9px 4px 0px;
    margin-top: 0px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.cart .button {
    white-space: normal;
}

.header-minicart .minicart-actions .cart-link {
    text-decoration: none;
    width: 167px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0;
}

.header-minicart .minicart-actions .button {
    font-size: 16px;
}

    .header-minicart .minicart-actions .button.checkout-button {
        width: 237px;
        padding: 0px;
        height: 40px;
        line-height: 40px;
        display: inline-block;
        float: right;
    }

.header-minicart .minicart-actions .checkout-button {
    min-width: 145px;
}

.cart .button, button, .button-primary, .button-set {
    background: #7b5141;
    color: white;
    display: inline-block;
    padding: 7px 15px;
    border: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.cart .button-standard {
    background: transparent !important;
    color: #7b5141 !important;
    border: 1px solid #7b5141 !important;
}

label span {
    color: red !important;
}
/* Cart Header Mini */

/*
=====================================================================================================================================================
NAVIGATION PRODUCT LISTING STYLE
=====================================================================================================================================================
*/
.menu .drp-table {
    position: absolute;
    left: 0;
    width: 100%;
}

    .menu .drp-table ul {
        width: 100%;
        text-align: center;
        padding: 1% 0 !important;
    }

        .menu .drp-table ul li {
            display: inline-block;
            width: 28%;
            vertical-align: top;
            height: 63px;
            margin: 0 2%;
        }

            .menu .drp-table ul li a {
                font-size: 10.5pt;
                font-weight: normal;
                font-family: 'MyriadProRegular';
            }


ul.pro_list {
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

    ul.pro_list li {
        padding: 0;
        list-style: none;
        display: inline-block;
        text-align: left;
        vertical-align: top;
        margin-bottom: 5px;
    }

    ul.pro_list .pic {
        min-width: 75px;
        width: 75px;
        vertical-align: middle;
        display: table-cell;
        height: 100%;
    }

    ul.pro_list img {
        width: 100%;
    }

    ul.pro_list li {
    }

        ul.pro_list li a {
            text-decoration: none;
            color: #6d6e71;
            display: table !important;
            padding: 0 !important;
            height: 100%;
        }

    ul.pro_list .cat-text {
        display: table-cell;
        vertical-align: middle;
        padding-left: 10px;
    }


/* Shipping Adresses ====================================================*/
.a-box {
    display: block;
    border-radius: 4px;
    border: 1px #ddd solid;
    background-color: #fff;
}

    .a-box.first-desktop-address-tile {
        border-style: dashed;
        height: 266px;
        width: 36%;
        border-width: 2px;
        box-sizing: border-box;
        border-color: #C7C7C7;
        text-align: center;
        display: table-cell;
        vertical-align: middle;
    }

.a-spacing-none, .a-ws .a-ws-spacing-none {
    margin-bottom: 0 !important;
}

.a-section {
    margin-bottom: 22px;
}

.a-inline-block, .aok-inline-block {
    display: inline-block;
}

.address-plus-icon {
    background: url('../images/add.png') left center no-repeat;
    width: 50px;
    height: 50px;
}

.normal-desktop-address-tile {
    height: 266px;
    /*width: 33%;*/
    border-width: 1px;
    box-sizing: border-box;
    border-color: #C7C7C7;
    box-shadow: 0 2px 1px 0 rgba(0,0,0,.16);
    border-style: solid;
}

.a-padding-none {
    padding: 0 !important;
}

.a-box .a-box-inner {
    border-radius: 4px;
    position: relative;
    padding: 14px 18px;
}

.default-section {
    height: 40px;
    border-bottom: 1px solid #C7C7C7;
    padding-left: 20px;
    padding-top: 11px;
    background-color: #efecec;
    font-weight: 700;
}

.a-section {
    margin-bottom: 22px;
}

.edit-address-desktop-link {
    position: absolute;
    bottom: 20px;
    left: 22px;
}

.address-section-with-default {
    padding-left: 10px !important;
    padding-top: 10px !important;
}

ul.a-vertical {
    padding: 0px !important;
    list-style: none;
}

.a-section:last-child {
    margin-bottom: 0;
}

.address {
    /*display: -webkit-inline-box;*/
}

.add {
    width: 32% !important;
    margin: 0 5px 20px;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.pb-3, .py-3 {
    padding-bottom: 10px !important;
}

.pt-3, .py-3 {
    padding-top: 10px !important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}

.mb-1 {
    margin-bottom: 10px !important;
}

@media (min-width: 768px) {
    .ml-md-auto, .mx-md-auto {
        margin-left: auto !important;
    }
}

/* :: FOOTER CSS :: =================================================== */
footer {
    position: relative;
    background: #f9e6c8;
    overflow: hidden;
}

.ftr_top {
    background: #aca68e;
    padding: 25px 0px;
    color: #3c4121;
}

    .ftr_top .container {
        position: relative;
        padding: 25px;
    }

        .ftr_top .container:before {
            content: "";
            border: 1px solid #fff;
            position: absolute;
            top: 0px;
            right: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            display: block;
        }

    .ftr_top .text-md-center {
        color: #fff;
    }

        .ftr_top .text-md-center h2 {
            text-transform: uppercase;
        }

.ftr_bottom {
    background: #f9e6c8;
    padding-top: 20px;
    text-align: left;
    font-size: 14px;
    color: #333;
}

    .ftr_bottom .ftr_chikoo img {
        max-width: 100%;
        right: 0;
        position: absolute;
        top: -130px;
    }

footer a {
    text-decoration: none;
}

    footer a:hover {
        text-decoration: underline;
    }

footer h3 {
    text-transform: uppercase;
}

ul.ftr_contact {
    padding: 0;
    margin: 0px 0 20px;
}

    ul.ftr_contact li {
        padding: 0;
        margin: 0 0 5px 0;
        list-style: none;
        line-height: normal;
        color: #fff;
    }



ul.ftr_links {
    padding: 0;
    margin: 0;
    list-style: none;
    vertical-align: top;
    line-height: 25px;
}

    ul.ftr_links > li {
        padding: 0 5px 0 0;
        display: inline-block;
    }

        ul.ftr_links > li:before {
            content: "\f0c8";
            font-family: FontAwesome;
            padding-right: 8px;
            font-size: 5px;
            vertical-align: middle;
        }

        ul.ftr_links > li:first-child:before {
            content: "";
            padding-right: 0px;
        }

.ftr_copy {
    padding: 10px 0px;
}

@media (max-width:767px) {
    .ftr_bottom .ftr_chikoo {
        display: none;
    }

    .ftr_top {
        padding: 15px;
    }

        .ftr_top .container {
            padding: 15px;
        }
}




/* :: HOME BODY CSS :: =================================================== */


/*  Visual Panel */
#visual_wrapper {
    background-color: #fff;
    height: 100%;
    overflow: hidden;
}

#visual_container { /*max-width:1280px;*/
    margin: 0 auto;
    position: relative;
}


/*.new_arrivals_wrapper {position:absolute;z-index:999;max-width:1170px;margin:0 auto;float:none;left:0;right:0; }*/
#new_arrivals {
    background: rgba(255,255,255,0.9);
    padding: 20px 30px 00px;
    margin-top: 0px;
    display: inline-block;
    float: right;
}

ul.new_arrivals {
    padding: 0;
    margin: 0;
    list-style: none;
}

    ul.new_arrivals li {
        padding: 0;
        margin: 0;
        list-style: none;
        max-width: 270px;
        vertical-align: top;
    }

        ul.new_arrivals li img {
            display: block;
            float: left;
            max-width: 100%;
            margin-bottom: 10px;
        }

        ul.new_arrivals li h2 {
            display: block;
            color: #000;
            font-size: 18px;
            text-align: center;
        }

        ul.new_arrivals li a {
            display: block;
            text-decoration: none;
        }

/*
=====================================================================================================================================================
SECTION COMMON DATA
=====================================================================================================================================================
*/
.section-visual {
    width: 100%;
    height: 250px;
    position: relative;
}

    .section-visual:before {
        content: "";
        background-color: #dcdcdc;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -999;
    }

.section-pic {
    /* The image used */
    /*background-image: url('../images/visual-my-account.jpg');*/
    /*background-image: url('../images/barfi-int.jpg');*/
    width: 100%;
    height: 250px; /*height: 300px;*/
    position: relative;
    /* Create the parallax scrolling effect */
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-picOther {
    /* The image used */
    background-image: url('../images/visual-my-account.jpg');
    /*background-image: url('../images/barfi-int.jpg');*/
    width: 100%;
    height: 250px; /*height: 300px;*/
    position: relative;
    /* Create the parallax scrolling effect */
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width:767px) {
    .section-visual, .section-pic {
        height: 80px;
    }
}

#body_cont {
    /*margin-top: 6%;*/
    margin-top: 2%;
}

#bodywrap {
    margin-top: -55px;
    position: relative;
}

    #bodywrap > .container {
        background: #fff;
        padding: 20px;
        position: relative;
        min-height: 400px;
    }

        #bodywrap > .container:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 250px;
            box-shadow: 0px -10px 10px rgba(0,0,0,0.2);
            display: block;
            z-index: -1;
            top: 0;
            left: 0;
            right: 0;
        }

.vert-line {
    position: relative;
    height: 500px;
    display: table;
    margin: 0 auto;
}

    .vert-line > div {
        display: table-cell;
        vertical-align: middle;
    }

    .vert-line:before {
        content: "";
        position: absolute;
        width: 1px;
        height: 100%;
        background: #dcdcdc;
        left: 50%;
        margin-left: 1px;
        z-index: 0;
    }

    .vert-line > div > span {
        background: #dcdcdc;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        margin: 0 auto;
        display: block;
        border-radius: 50%;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

@media (max-width:991px) {
    .vert-line {
        height: 80px;
        width: 100%;
    }

        .vert-line:before {
            width: 100%;
            height: 1px;
            background: #8a6d3b;
            left: auto;
            top: 50%;
            margin-left: 0px;
        }
}

.radios label {
    margin-left: 15px;
    margin-right: 15px;
}

.checkbox {
    margin-left: 15px;
    margin-right: 15px;
}

.heading {
    text-align: left;
    position: relative;
    display: block;
    width: 100%;
    margin: 0px auto 25px;
    padding: 0px;
    float: none;
}

    .heading:before {
        content: "";
        width: 50px;
        height: 2px;
        background: #6c4b3b;
        bottom: -5px;
        position: absolute;
    }

    .heading h2, .heading h1 {
        display: inline-block;
        font-weight: 700;
        font-size: 25px;
        padding: 0px;
        margin: 0;
        /*color: #994d11;*/
        color: #a58147; /*aarti*/
    }

        .heading h2 span, .heading h1 span {
            text-transform: initial;
            font-style: italic;
            font-weight: 500;
        }

.text-center.heading:before {
    left: 50%;
    margin-left: -25px;
}

.home_row {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width:767px) {
    .home_row {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .intro_txt {
        padding-top: 15px;
    }
}

.intro_txt {
    background: url(../images/pic-intro.jpg) no-repeat right;
}

.parallax-container {
    color: #fff;
}

.news_panel {
    padding: 25px 30px;
    background: #3c4121;
    color: #fff;
    min-height: 250px;
}

ul.news_list {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

    ul.news_list > li {
        padding: 10px 0px;
        margin: 10px 0px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

        ul.news_list > li h3 a {
            display: block;
            color: #fff;
            text-decoration: none;
            margin-bottom: 5px;
        }

            ul.news_list > li h3 a:hover {
                text-decoration: underline;
            }

    ul.news_list ul li {
        margin: 5px 0px;
        padding-left: 0px;
        padding-right: 10px;
        font-size: 15px;
    }

        ul.news_list ul li.fa-icon .fa {
            top: 3px;
        }

.event_pic {
    width: 200px;
    display: table-cell;
    padding-right: 20px;
}

.event_data {
    width: auto;
    display: table-cell;
    vertical-align: top;
}


.prod_range {
    border: 2px solid rgba(255,255,255,0.2);
    padding: 20px;
}

ul.prod_range_list {
    width: 100%;
    padding: 0;
    margin: 0;
}

    ul.prod_range_list li {
        padding: 5px 10px 5px 30px;
        margin: 0;
        list-style: none;
        position: relative;
        width: 48%;
        display: inline-block;
    }

        ul.prod_range_list li:before {
            content: "\f00c";
            font-family: FontAwesome;
            position: absolute;
            left: 5px;
        }

        ul.prod_range_list li a {
            display: block;
            color: #fff;
            text-decoration: none;
            margin-bottom: 5px;
        }

            ul.prod_range_list li a:hover {
                text-decoration: underline;
            }

.btn-lg, .btn-group-lg > .btn {
    padding: 15px 25px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
    /* width: 113%; */
}


@media (max-width:767px) {
    .event_pic, .event_data {
        width: 100%;
        display: table;
        padding-right: 00px;
        padding-bottom: 20px;
    }

    .new_arrivals_wrapper {
        position: relative;
        z-index: 9;
    }

    #new_arrivals {
        margin-top: 0px;
        display: inline-block;
        float: none;
    }

    ul.prod_range_list li {
        margin: 0;
        width: 100%;
    }
}

ul.prod_list_menu {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

    ul.prod_list_menu > li {
        padding: 0px;
        margin: 0px;
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #ddd;
        vertical-align: top;
    }

        ul.prod_list_menu > li.active a {
            background: #a58147;
            color: #fff;
            font-weight: bold;
        }

        ul.prod_list_menu > li a {
            padding: 10px 15px;
            text-decoration: none;
            display: block;
        }

            ul.prod_list_menu > li a:hover {
                color: #a58147;
            }
/*Past-Orders :: ================================================*/
#order-detail-content {
    margin-bottom: 100px;
}

    #order-detail-content .table.table-bordered {
        border-color: #ebebeb;
    }

    #order-detail-content .table tbody > tr > td {
        vertical-align: top;
        padding-top: 20px;
        text-align: center;
        position: relative;
    }

        #order-detail-content .table tbody > tr > td:before {
            font: 14px HelveticaNeue, Arial, Helvetica, sans-serif;
        }

    #order-detail-content .table tbody > tr {
        position: relative;
    }

        #order-detail-content .table tbody > tr a.close-btn.ddr {
            display: inline-block;
            position: absolute;
            top: 15px;
            right: 12px;
            margin: 0;
        }

@media all and (max-width: 767px) {
    #order-detail-content .table tbody > tr a.close-btn.ddr {
        top: auto;
        bottom: 20px;
    }
}

#order-detail-content .subtotal {
    padding-left: 20px;
    padding-right: 60px;
    text-align: left;
}

@media all and (max-width: 767px) {
    #order-detail-content .subtotal {
        padding: 0;
    }

        #order-detail-content .subtotal p {
            text-align: center;
        }
}

#order-detail-content .subtotal p {
    font-size: 14px;
    font-family: HelveticaNeue, Arial, Helvetica, sans-serif;
}

#order-detail-content .subtotal.no-cls-btn {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: 120px;
}

#order-detail-content .table tbody > tr > td.default {
    width: 100px;
}

    #order-detail-content .table tbody > tr > td.default span {
        font-family: HelveticaNeue, Arial, Helvetica, sans-serif;
        font-size: 14px;
    }

#order-detail-content .table tbody > tr > td.date {
    width: 130px;
}

    #order-detail-content .table tbody > tr > td.date span {
        font-family: HelveticaNeue, Arial, Helvetica, sans-serif;
        font-size: 14px;
    }

#order-detail-content .table tbody > tr > td.cart_quantity {
    text-align: center;
    width: 140px;
    vertical-align: top;
    padding-top: 20px;
}

    #order-detail-content .table tbody > tr > td.cart_quantity .cart_quantity_button {
        white-space: nowrap;
        vertical-align: middle;
        display: inline-block;
        clear: both;
    }

        #order-detail-content .table tbody > tr > td.cart_quantity .cart_quantity_button a {
            float: left;
            display: block;
            margin: 0;
            height: 30px;
            line-height: 25px;
            vertical-align: middle;
            padding: 0;
            width: 30px;
            font-size: 20px;
            border: 1px solid #d7d9db;
            color: #8c929b;
            text-align: center;
        }

            #order-detail-content .table tbody > tr > td.cart_quantity .cart_quantity_button a:hover {
                color: #212224;
            }

            #order-detail-content .table tbody > tr > td.cart_quantity .cart_quantity_button a:focus:not(:hover) {
                background: none;
            }

#order-detail-content .cart_quantity .cart_quantity_input {
    padding: 0;
    text-align: center;
    float: left;
    display: block;
    margin: 0;
    width: auto;
    min-width: 30px;
    text-indent: 0;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    color: #212224;
    font-family: "Open Sans", sans-serif;
    border-left: none;
    border-right: none;
}

    #order-detail-content .cart_quantity .cart_quantity_input:disabled {
        background-color: transparent;
        cursor: default;
    }

#order-detail-content .table tbody > tr > td.cart_delete {
    padding: 0;
    width: 170px;
    vertical-align: top;
    padding-top: 20px;
}

    #order-detail-content .table tbody > tr > td.cart_delete .btn {
        width: 120px;
        padding-left: 0;
        padding-right: 0;
    }

    #order-detail-content .table tbody > tr > td.cart_delete .remove {
        text-transform: none;
        font-size: 13px;
        color: #81878f;
        vertical-align: middle;
        text-align: left;
    }

        #order-detail-content .table tbody > tr > td.cart_delete .remove:hover {
            color: #212224;
        }

        #order-detail-content .table tbody > tr > td.cart_delete .remove i {
            font-size: 18px;
            vertical-align: -3px;
        }

#order-detail-content .table tfoot > tr > td {
    vertical-align: middle;
}

#order-detail-content #cart_summary tbody td.cart_product {
    padding: 10px;
    width: 131px;
    text-align: center;
    vertical-align: middle;
}

    #order-detail-content #cart_summary tbody td.cart_product img {
        border: none;
        vertical-align: middle;
    }

#order-detail-content #cart_summary tbody td.cart_unit {
    text-align: center;
    vertical-align: top;
    padding-top: 20px;
    width: 120px;
    font-size: 14px;
    font-family: HelveticaNeue, Arial, Helvetica, sans-serif;
}

    #order-detail-content #cart_summary tbody td.cart_unit .old-price {
        text-decoration: line-through;
        color: #a3a3a3;
    }

#order-detail-content #cart_summary tbody td.cart_description small {
    display: block;
    padding: 0;
    color: #36383b;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
}

    #order-detail-content #cart_summary tbody td.cart_description small span {
        color: #9198a1;
    }

#order-detail-content #cart_summary tbody td.cart_description {
    vertical-align: top;
    text-align: left;
}

#order-detail-content #cart_summary tfoot td.text-right {
    color: #333333;
    font-weight: bold;
}

#order-detail-content #cart_summary tfoot td.price {
    text-align: right;
}

#order-detail-content #cart_summary tfoot td.total_price_container span {
    color: #555454;
    font: 600 18px/22px "Open Sans",sans-serif;
    text-transform: uppercase;
}

#order-detail-content #cart_summary tfoot td#total_price_container {
    background: none repeat scroll 0 0 white;
    color: #333333;
    font: 600 21px/25px "Open Sans",sans-serif;
}

#order-detail-content .table > tbody > tr > td.cart_description {
    padding: 20px;
}

#order-detail-content tfoot.dd-list-empty tr td {
    border: none;
}

#order-detail-content #cart_summary {
    margin-bottom: 0;
}

#order-detail-content .info {
    border: 1px solid #d7d9db;
    margin-bottom: 0;
    border-top: none;
    font: 14px/50px HelveticaNeue, Arial, Helvetica, sans-serif;
    color: black;
    height: 50px;
    vertical-align: middle;
    font-weight: 600;
    white-space: nowrap;
}

    #order-detail-content .info.total span {
        color: #212224;
    }

        #order-detail-content .info.total span + span {
            color: #dccc99;
        }

@media (max-width: 767px) {
    #order-detail-content {
        border-bottom: none;
    }

        #order-detail-content .info {
            border-left: none;
            border-right: none;
        }

        #order-detail-content #cart_summary table, #order-detail-content #cart_summary thead, #order-detail-content #cart_summary tbody, #order-detail-content #cart_summary th, #order-detail-content #cart_summary td, #order-detail-content #cart_summary tr {
            display: block;
        }

            #order-detail-content #cart_summary tbody td.cart_product {
                width: 100%;
            }

            #order-detail-content #cart_summary thead tr {
                left: -9999px;
                position: absolute;
                top: -9999px;
            }

        #order-detail-content #cart_summary tr {
            border-bottom: 1px solid #cccccc;
            overflow: hidden;
        }

        #order-detail-content #cart_summary td {
            border: medium none;
            float: left;
            position: relative;
            white-space: normal;
            width: 100%;
            display: block;
            text-align: center;
        }

            #order-detail-content #cart_summary td.cart_avail {
                clear: both;
            }

            #order-detail-content #cart_summary td.cart_quantity {
                clear: both;
                text-align: center;
            }

            #order-detail-content #cart_summary td.cart_delete {
                clear: both;
                float: right;
                width: 100%;
            }

        #order-detail-content #cart_summary tbody td.cart_unit {
            width: 100%;
            max-width: 100%;
        }

            #order-detail-content #cart_summary tbody td.cart_unit .old-price {
                display: block;
            }

        #order-detail-content #cart_summary td.cart_delete:before {
            display: inline-block;
            padding-right: 0.5em;
            position: relative;
            top: -3px;
        }

        #order-detail-content #cart_summary td:before {
            content: attr(data-title);
            display: block;
        }

        #order-detail-content #cart_summary tfoot td {
            float: none;
            width: 100%;
        }

            #order-detail-content #cart_summary tfoot td:before {
                display: inline;
            }

        #order-detail-content #cart_summary tfoot tr .text-right, #order-detail-content #cart_summary tfoot tr .price {
            display: block;
            float: left;
            width: 100%;
        }

        #order-detail-content .table {
            border-bottom: none;
        }
}

#order-detail-content .table > thead > tr > th {
    background: none repeat scroll 0 0 #ebebeb;
    border-bottom-width: 1px;
    border-color: #ebebeb;
    vertical-align: middle;
    color: #212224;
    font-size: 13px;
    font-family: HelveticaNeue, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: center;
    height: 46px;
    line-height: 46px;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#order-detail-content .product-name {
    color: #212224;
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
    margin-bottom: 0;
    height: 35px;
    margin-bottom: 15px;
}

    #order-detail-content .product-name a {
        color: #212224;
        line-height: 23px;
    }

        #order-detail-content .product-name a:hover {
            color: #dccc99;
        }

#order-detail-content .table .price, #order-detail-content .subtotal p {
    color: #000;
    font-weight: 600;
    white-space: nowrap;
}

/* :: BODY :: =================================================== */
#body {
}

    #body .body_content {
        padding: 30px 0px;
    }

.well.black {
    color: #333;
    background-color: #fff;
}



/* :: SECTION VISUAL PANEL  :: =================================================== */
.section_visual {
    width: 100%;
    height: 300px;
    position: relative;
}

.section_pic {
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}


.footer-band {
    background: #ecd4ca;
}

ul.home-icon {
    margin: 0 -15px;
    padding: 0;
    list-style: none;
}

    ul.home-icon a {
        display: inline-block;
        color: #49940d !important;
        line-height: normal;
        text-decoration: none;
        font-size: 17px;
        font-weight: 600;
    }

    ul.home-icon li > div {
        display: table;
        margin: 0 auto;
    }

    ul.home-icon li:after {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        right: 0;
        top: 0;
        background: #FFF;
    }

    ul.home-icon li .icn-bx {
        min-width: 90px;
        margin-right: 10px;
    }

        ul.home-icon li .icn-bx + div {
            width: calc(100% - 80px);
            text-transform: capitalize;
        }

@media (max-width:768px) {
    ul.home-icon li > div {
        margin: 0;
        padding: 0 !important;
    }
}

@media (min-width:481px) and (max-width:1023px) {
    ul.home-icon li {
        width: calc(50% - 2px);
        padding: 10px;
    }

        ul.home-icon li:nth-child(even):after {
            display: none;
        }
}

@media (max-width:767px) {
    ul.home-icon li {
        width: 48%;
        padding: 15px;
        vertical-align: top;
        border-bottom: 0;
        padding: 8px !important;
    }

        ul.home-icon li:after, ul.home-icon li:last-child:after {
            background: #b61318 !important;
        }

        ul.home-icon li .icn-bx,
        ul.home-icon li .icn-bx + div {
            width: 100%;
            margin-right: 0;
            line-height: 20px;
        }

            ul.home-icon li .icn-bx + div {
                margin-top: 10px;
            }

        ul.home-icon li > div {
            display: block;
            padding: 0 !important;
        }

        ul.home-icon li:after,
        ul.home-icon li:last-child:after {
            display: none;
        }

    .top-header .dropdown-menu {
        right: 0;
        left: auto;
    }

    .col-lg-6 a.popup-print {
        pointer-events: none;
    }
}

@media(max-width:640px) {
    ul.home-icon li a img {
        max-width: 25%;
    }

    ul.home-icon li .help-text {
        min-height: 0 !important;
    }

    .industries-served > div div {
        width: 48%;
    }

    ul.home-icon li .icn-bx {
        min-width: 0;
        width: 65px;
        margin-right: 5px;
    }

        ul.home-icon li .icn-bx + div {
            font-size: 9pt;
            text-transform: capitalize;
            line-height: normal;
            margin-top: 0 !important;
        }

    .home-features h2 {
        font-size: 13pt !important;
    }

    .home-features p {
        font-size: 11pt !important;
    }

    .industries-served > div div p {
        text-transform: capitalize;
        line-height: normal;
    }
}

ul.home-icon li:last-child:after {
    display: none;
}

ul.home-icon li img {
    margin: 0 auto;
}

ul.home-icon li h4 {
    color: #FFF;
    margin-top: 15px;
    font-size: 18pt;
}

ul.home-icon li .help-text {
    min-height: 110px;
}

ul.home-icon li p {
    color: #ca9ce4;
    margin-bottom: 0;
}


/*Prod Cat Circle :: ================================================*/
/*.button-images {
    max-width: 950px;
    margin: 75px auto;
}*/
.button-images {
    margin: 0px 15px;
    justify-content: center;
    text-align: center;
    align-content: center;
}

.button-container {
    position: relative;
    text-align: center;
    padding: 0;
    /* border-radius: 50%; */
    overflow: hidden;
}



    .button-container A:before {
        content: '';
        display: inline-block;
        height: 48%;
        /* 
  vertical-align:middle; 
  height: 100%;*/
    }


    .button-container a {
        transition: all 1s ease-out;
        background: rgba(88, 88, 88, 0.7);
        /*border-radius: 50%;*/
        vertical-align: middle;
        padding: 5%;
        color: #FFFFFF;
        position: absolute;
        font-size: 1.125em;
        font-weight: 700;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        display: inline-block;
        text-decoration: none;
        text-transform: uppercase;
    }

        .button-container a:hover {
            background: none;
            border: none;
            opacity: 0;
        }

        .button-container a.active {
            background: none;
            border: none;
            opacity: 0.3;
            border: 2px solid #7b5141;
        }

    .button-container img {
        width: 100%;
        height: 130px;
        display: block;
    }


/*Columns*/
.one_fourth {
    position: relative;
    margin-right: 1.8%;
    float: left;
    min-height: 1px;
    height: auto !important;
}

    .one_fourth:last-child {
        margin-right: 0 !important;
    }
/*.one_half, .one_third, .two_third, .three_fourth, .one_fourth, .one_fifth, .two_fifth, .three_fifth, .four_fifth, .one_sixth, .five_sixth {
    position: relative;
    margin-right: 4%;
    float: left;
    min-height: 1px;
    height: auto !important;
}*/
.one_fourth {
    width: 32%;
    height: 176px;
}



.three_fourth {
    width: 74%;
}

.one_fifth {
    width: 16.8%;
}

.two_fifth {
    width: 37.6%;
}

.three_fifth {
    width: 58.4%;
}

.four_fifth {
    width: 79.2%;
}

.one_sixth {
    width: 13.3333%;
}

.three_sixth {
    width: 47.9998%;
}

.five_sixth {
    width: 82.6665%;
}

.last {
    margin-right: 0 !important;
    clear: right;
}

.clearboth {
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    width: 100%;
}

.spacer {
    height: 15px;
}

.one_half .one_half {
    margin-right: 8.3333%;
    width: 45.8333%;
}

.one_half .one_third {
    margin-right: 8.3333%;
    width: 27.7778%;
}

.one_half .two_third {
    margin-right: 8.3333%;
    width: 63.8889%;
}

.two_third .one_third {
    margin-right: 6.1224%;
    width: 29.2517%;
}

.two_third .two_third {
    margin-right: 6.1224%;
    width: 64.6258%;
}

.two_third .one_fourth {
    margin-right: 6.1224%;
    width: 20.4082%;
}

.one_half, .two_fourth {
    width: 48%;
}

.one_third, .two_sixth {
    width: 30.6666%;
}

.two_third, .four_sixth {
    width: 65.3332%;
}

.editor_data h1, h3 {
    margin: 0;
}

.editor_data h3 {
    font-size: 16px;
}

.prod-qty .form-control {
    width: 80px;
    /*margin-top: 5px;*/
}

.sub .form-control {
    width: 120px;
}

.btns a {
    width: 120px;
}

    .btns a:hover, .btn-primary:hover {
        background-color: #994d11 !important;
        border-color: #994d11 !important;
    }

.detail-price {
    color: #999;
    font-size: 13px;
    font-weight: 700;
}

    .detail-price span {
        color: #b22b08;
        font-size: 17px;
        font-weight: 600;
    }

.save-price {
    color: #000;
    font-size: 13px;
    font-weight: 300;
}

    .save-price span {
        color: #B12704 !important;
        font-size: 13px;
        font-weight: 600;
    }

@media only screen and (-webkit-min-device-pixel-ratio: 0) {
    #product-details .product-old-price {
        color: #646464;
        font-size: 12px;
        font-weight: 300;
    }
}
/*  Product Box */
.prod_box {
    display: block;
    text-decoration: none;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
}

.prod_box {
    -webkit-animation: fadeInUp 1000ms ease;
    -moz-animation: fadeInUp 1000ms ease;
    -ms-animation: fadeInUp 1000ms ease;
    -webkit-transition: all .50s ease;
    -moz-transition: all .50s ease;
    -ms-transition: all .50s ease;
    -o-transition: all .50s ease;
    transition: all .50s ease;
}

    .prod_box:hover {
        box-shadow: 0px 5px 5px #666;
    }

    .prod_box figure {
        text-align: center;
    }

        .prod_box figure img {
            max-width: 100%;
            position: relative;
            z-index: 0;
            border: 1px solid #e7e7e7;
        }

    .prod_box figcaption {
        /*padding: 5px 6px;*/
        padding: 10px 6px; /*aarti*/
        text-align: center; /*aarti*/
        /*background: rgb(253, 227, 212);*/
        background: #f6f6f6; /*aarti*/
        position: relative;
        text-align: left;
        border: 1px solid #e7e7e7;
        -webkit-transition: all .300s ease;
        -moz-transition: all .300s ease;
        -ms-transition: all .300s ease;
        -o-transition: all .300s ease;
        transition: all .300s ease;
        COLOR: #7b5141;
        height: 100px; /*aarti*/
    }

        /*.prod_box figcaption:hover {
            background: rgba(153,77,17,0.8);
        }*/

        .prod_box figcaption h2 {
            /*color: #7b5141;*/
            color: #8b430a; /*aarti*/
            font-weight: 600;
            line-height: normal;
            margin: 0;
            /*height: 25px;
            line-height: 20px; 
            font-size: 20px;*/
            height: 35px; /*aarti*/
            text-align: center; /*aarti*/
            line-height: 30px; /*aarti*/
            font-size: 26px; /*aarti*/
            text-transform: capitalize;
        }

    /*.prod_box figcaption h2:hover {
                color: #fff;
            }

    .prod_box .prod_price:hover {
        color: #fff;
    }*/

    .prod_box a {
        text-decoration: none;
        color: #646464;
    }

    .prod_box figcaption:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: scaleY(0);
        transform-origin: top center;
        background: #fff;
        z-index: -1;
        transition: transform 0.3s;
    }

    .prod_box:hover figcaption:after {
        transform: scaleY(1);
    }




    .prod_box .prod_price {
        font-size: 22px;
        /* color: #979e07; */
        color: #8b430a;
        padding-left: 10px;
        /* width: 41%; */
        font-weight: 600;
    }


        .prod_box .prod_price .strikethrough {
            font-size: 14px;
            text-decoration: line-through;
            color: #be0707;
            margin-left: 10px;
        }

    .prod_box .prod_cart {
        text-align: right;
        /* width: 30%; */
        float: right;
        /*margin-top: 5px;
        margin-right: 8px;*/
    }

.items_container .prod_box .prod_cart {
    text-align: right;
    width: 35%;
    float: right;
    margin-top: 5px;
}

.prod_box .prod_cart a {
    color: #000;
    background: transparent !important;
    border-radius: 20px !important;
}

    .prod_box .prod_cart a .fa-heart:before {
        content: "\f004";
        color: #994d11;
    }

    .prod_box .prod_cart a:hover {
        color: #fff;
        background: #994d11 !important;
        border: 1px solid #994d11;
    }

    .prod_box .prod_cart a:focus {
        color: #fff;
        background: #994d11 !important;
        border: 1px solid #994d11;
    }

    .prod_box .prod_cart a:active {
        color: #fff;
        background: #994d11 !important;
        border: 1px solid #994d11;
    }

    .prod_box .prod_cart a .fa {
        margin-right: 0 !important;
    }

/*ul.list-table {
    padding: 0;
    margin: 0;
    list-style: none;
    display: table;
    width: 100%;
}*/

ul.list-table {
    padding: 0;
    margin: 0 21%;
    list-style: none;
    display: flex;
    width: fit-content;
    align-items: center;
    margin-top: 7px;
}

    ul.list-table li {
        padding: 0;
        margin: 0;
        list-style: none;
        /*display: table-cell;*/
        display: contents;
        width: auto;
        vertical-align: middle;
    }

.pic_wrap {
    position: relative;
    background: #fff;
    overflow: hidden;
}

    .pic_wrap img {
        margin: 0 auto;
        width: 100%;
    }


.prod_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

    .prod_overlay .prod_mask {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.33);
        overflow: hidden;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .prod_overlay .lnr {
        position: absolute;
        width: 50px;
        height: 50px;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -25px;
        opacity: 0;
        font-size: 50px;
        color: #fff;
        z-index: 9;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

.prod_box:hover .prod_mask {
    opacity: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.prod_box:hover .lnr {
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    opacity: 1;
}


/*  Prod Flags / Ribbon */
.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

    .ribbon span {
        font-size: 10px;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
        line-height: 20px;
        transform: rotate(45deg);
        width: 100px;
        display: block;
        background: #79A70A;
        background: linear-gradient(#F70505 0%, #8F0808 100%);
        box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
        position: absolute;
        top: 19px;
        right: -21px;
    }

        .ribbon span::before {
            content: '';
            position: absolute;
            left: 0px;
            top: 100%;
            z-index: -1;
            border-left: 3px solid #8F0808;
            border-right: 3px solid transparent;
            border-bottom: 3px solid transparent;
            border-top: 3px solid #8F0808;
        }

        .ribbon span::after {
            content: '';
            position: absolute;
            right: 0%;
            top: 100%;
            z-index: -1;
            border-right: 3px solid #8F0808;
            border-left: 3px solid transparent;
            border-bottom: 3px solid transparent;
            border-top: 3px solid #8F0808;
        }





:: SITEMAP :: =================================================== ul.sitemsp_links {
    padding: 0;
    margin: 0 0 60px;
    list-style: none;
    vertical-align: top;
    line-height: 25px;
}

ul.sitemsp_links > li {
    padding: 0 5px 0 0;
    display: block;
}

    ul.sitemsp_links > li:before {
        content: "\f105";
        font-family: FontAwesome;
        padding-right: 5px;
    }

    ul.sitemsp_links > li > ul {
        margin-left: 20px;
    }

.links_col_3 > li {
    width: 33.33%;
    display: inline-block;
    float: left;
}

@media (max-width:767px) {
    .links_col_3 > li {
        width: 100%;
    }
}

sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-45 {
    width: 45% !important;
}

.w-75 {
    width: 75% !important;
}

.w-90 {
    width: 90% !important;
}

.w-100 {
    width: 100% !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0, .my-0 {
    margin-top: 0 !important;
}

.mr-0, .mx-0 {
    margin-right: 0 !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.ml-0, .mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: .25rem !important;
}

.mt-1, .my-1 {
    margin-top: .25rem !important;
}

.mr-1, .mx-1 {
    margin-right: .25rem !important;
}

.mb-1, .my-1 {
    margin-bottom: .25rem !important;
}

.ml-1, .mx-1 {
    margin-left: .25rem !important;
}

.m-2 {
    margin: .5rem !important;
}

.mt-2, .my-2 {
    margin-top: .5rem !important;
}

.mr-2, .mx-2 {
    margin-right: .5rem !important;
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important;
}

.ml-2, .mx-2 {
    margin-left: .5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3, .my-3 {
    margin-top: 1rem !important;
}

.mr-3, .mx-3 {
    margin-right: 1rem !important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}

.ml-3, .mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important;
}

.mr-4, .mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4, .mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5, .my-5 {
    margin-top: 3rem !important;
}

.mr-5, .mx-5 {
    margin-right: 3rem !important;
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}

.ml-5, .mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0, .py-0 {
    padding-top: 0 !important;
}

.pr-0, .px-0 {
    padding-right: 0 !important;
}

.pb-0, .py-0 {
    padding-bottom: 0 !important;
}

.pl-0, .px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: .25rem !important;
}

.pt-1, .py-1 {
    padding-top: .25rem !important;
}

.pr-1, .px-1 {
    padding-right: .25rem !important;
}

.pb-1, .py-1 {
    padding-bottom: .25rem !important;
}

.pl-1, .px-1 {
    padding-left: .25rem !important;
}

.p-2 {
    padding: .5rem !important;
}

.pt-2, .py-2 {
    padding-top: .5rem !important;
}

.pr-2, .px-2 {
    padding-right: .5rem !important;
}

.pb-2, .py-2 {
    padding-bottom: .5rem !important;
}

.pl-2, .px-2 {
    padding-left: .5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.pr-3, .px-3 {
    padding-right: 1rem !important;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.pl-3, .px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4, .py-4 {
    padding-top: 1.5rem !important;
}

.pr-4, .px-4 {
    padding-right: 1.5rem !important;
}

.pb-4, .py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4, .px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5, .py-5 {
    padding-top: 3rem !important;
}

.pr-5, .px-5 {
    padding-right: 3rem !important;
}

.pb-5, .py-5 {
    padding-bottom: 3rem !important;
}

.pl-5, .px-5 {
    padding-left: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto, .my-auto {
    margin-top: auto !important;
}

.mr-auto, .mx-auto {
    margin-right: auto !important;
}

.mb-auto, .my-auto {
    margin-bottom: auto !important;
}

.ml-auto, .mx-auto {
    margin-left: auto !important;
}

@media (min-width:576px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0, .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0, .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0, .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0, .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: .25rem !important;
    }

    .mt-sm-1, .my-sm-1 {
        margin-top: .25rem !important;
    }

    .mr-sm-1, .mx-sm-1 {
        margin-right: .25rem !important;
    }

    .mb-sm-1, .my-sm-1 {
        margin-bottom: .25rem !important;
    }

    .ml-sm-1, .mx-sm-1 {
        margin-left: .25rem !important;
    }

    .m-sm-2 {
        margin: .5rem !important;
    }

    .mt-sm-2, .my-sm-2 {
        margin-top: .5rem !important;
    }

    .mr-sm-2, .mx-sm-2 {
        margin-right: .5rem !important;
    }

    .mb-sm-2, .my-sm-2 {
        margin-bottom: .5rem !important;
    }

    .ml-sm-2, .mx-sm-2 {
        margin-left: .5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3, .my-sm-3 {
        margin-top: 1rem !important;
    }

    .mr-sm-3, .mx-sm-3 {
        margin-right: 1rem !important;
    }

    .mb-sm-3, .my-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ml-sm-3, .mx-sm-3 {
        margin-left: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4, .my-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mr-sm-4, .mx-sm-4 {
        margin-right: 1.5rem !important;
    }

    .mb-sm-4, .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-sm-4, .mx-sm-4 {
        margin-left: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .mt-sm-5, .my-sm-5 {
        margin-top: 3rem !important;
    }

    .mr-sm-5, .mx-sm-5 {
        margin-right: 3rem !important;
    }

    .mb-sm-5, .my-sm-5 {
        margin-bottom: 3rem !important;
    }

    .ml-sm-5, .mx-sm-5 {
        margin-left: 3rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0, .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0, .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0, .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0, .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: .25rem !important;
    }

    .pt-sm-1, .py-sm-1 {
        padding-top: .25rem !important;
    }

    .pr-sm-1, .px-sm-1 {
        padding-right: .25rem !important;
    }

    .pb-sm-1, .py-sm-1 {
        padding-bottom: .25rem !important;
    }

    .pl-sm-1, .px-sm-1 {
        padding-left: .25rem !important;
    }

    .p-sm-2 {
        padding: .5rem !important;
    }

    .pt-sm-2, .py-sm-2 {
        padding-top: .5rem !important;
    }

    .pr-sm-2, .px-sm-2 {
        padding-right: .5rem !important;
    }

    .pb-sm-2, .py-sm-2 {
        padding-bottom: .5rem !important;
    }

    .pl-sm-2, .px-sm-2 {
        padding-left: .5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3, .py-sm-3 {
        padding-top: 1rem !important;
    }

    .pr-sm-3, .px-sm-3 {
        padding-right: 1rem !important;
    }

    .pb-sm-3, .py-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pl-sm-3, .px-sm-3 {
        padding-left: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4, .py-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pr-sm-4, .px-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pb-sm-4, .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-sm-4, .px-sm-4 {
        padding-left: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .pt-sm-5, .py-sm-5 {
        padding-top: 3rem !important;
    }

    .pr-sm-5, .px-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-5, .py-sm-5 {
        padding-bottom: 3rem !important;
    }

    .pl-sm-5, .px-sm-5 {
        padding-left: 3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto, .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto, .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto, .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto, .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width:768px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0, .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0, .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0, .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0, .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: .25rem !important;
    }

    .mt-md-1, .my-md-1 {
        margin-top: .25rem !important;
    }

    .mr-md-1, .mx-md-1 {
        margin-right: .25rem !important;
    }

    .mb-md-1, .my-md-1 {
        margin-bottom: .25rem !important;
    }

    .ml-md-1, .mx-md-1 {
        margin-left: .25rem !important;
    }

    .m-md-2 {
        margin: .5rem !important;
    }

    .mt-md-2, .my-md-2 {
        margin-top: .5rem !important;
    }

    .mr-md-2, .mx-md-2 {
        margin-right: .5rem !important;
    }

    .mb-md-2, .my-md-2 {
        margin-bottom: .5rem !important;
    }

    .ml-md-2, .mx-md-2 {
        margin-left: .5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3, .my-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3, .mx-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3, .my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3, .mx-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4, .my-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4, .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4, .my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4, .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .mt-md-5, .my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5, .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5, .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ml-md-5, .mx-md-5 {
        margin-left: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0, .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0, .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0, .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0, .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: .25rem !important;
    }

    .pt-md-1, .py-md-1 {
        padding-top: .25rem !important;
    }

    .pr-md-1, .px-md-1 {
        padding-right: .25rem !important;
    }

    .pb-md-1, .py-md-1 {
        padding-bottom: .25rem !important;
    }

    .pl-md-1, .px-md-1 {
        padding-left: .25rem !important;
    }

    .p-md-2 {
        padding: .5rem !important;
    }

    .pt-md-2, .py-md-2 {
        padding-top: .5rem !important;
    }

    .pr-md-2, .px-md-2 {
        padding-right: .5rem !important;
    }

    .pb-md-2, .py-md-2 {
        padding-bottom: .5rem !important;
    }

    .pl-md-2, .px-md-2 {
        padding-left: .5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3, .py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3, .px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3, .py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3, .px-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4, .py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4, .px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4, .py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4, .px-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5, .py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5, .px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5, .py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5, .px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto, .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto, .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto, .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto, .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width:992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0, .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0, .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0, .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0, .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: .25rem !important;
    }

    .mt-lg-1, .my-lg-1 {
        margin-top: .25rem !important;
    }

    .mr-lg-1, .mx-lg-1 {
        margin-right: .25rem !important;
    }

    .mb-lg-1, .my-lg-1 {
        margin-bottom: .25rem !important;
    }

    .ml-lg-1, .mx-lg-1 {
        margin-left: .25rem !important;
    }

    .m-lg-2 {
        margin: .5rem !important;
    }

    .mt-lg-2, .my-lg-2 {
        margin-top: .5rem !important;
    }

    .mr-lg-2, .mx-lg-2 {
        margin-right: .5rem !important;
    }

    .mb-lg-2, .my-lg-2 {
        margin-bottom: .5rem !important;
    }

    .ml-lg-2, .mx-lg-2 {
        margin-left: .5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3, .my-lg-3 {
        margin-top: 1rem !important;
    }

    .mr-lg-3, .mx-lg-3 {
        margin-right: 1rem !important;
    }

    .mb-lg-3, .my-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ml-lg-3, .mx-lg-3 {
        margin-left: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4, .my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mr-lg-4, .mx-lg-4 {
        margin-right: 1.5rem !important;
    }

    .mb-lg-4, .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-lg-4, .mx-lg-4 {
        margin-left: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .mt-lg-5, .my-lg-5 {
        margin-top: 3rem !important;
    }

    .mr-lg-5, .mx-lg-5 {
        margin-right: 3rem !important;
    }

    .mb-lg-5, .my-lg-5 {
        margin-bottom: 3rem !important;
    }

    .ml-lg-5, .mx-lg-5 {
        margin-left: 3rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0, .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0, .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0, .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0, .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: .25rem !important;
    }

    .pt-lg-1, .py-lg-1 {
        padding-top: .25rem !important;
    }

    .pr-lg-1, .px-lg-1 {
        padding-right: .25rem !important;
    }

    .pb-lg-1, .py-lg-1 {
        padding-bottom: .25rem !important;
    }

    .pl-lg-1, .px-lg-1 {
        padding-left: .25rem !important;
    }

    .p-lg-2 {
        padding: .5rem !important;
    }

    .pt-lg-2, .py-lg-2 {
        padding-top: .5rem !important;
    }

    .pr-lg-2, .px-lg-2 {
        padding-right: .5rem !important;
    }

    .pb-lg-2, .py-lg-2 {
        padding-bottom: .5rem !important;
    }

    .pl-lg-2, .px-lg-2 {
        padding-left: .5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3, .py-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3, .px-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3, .py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3, .px-lg-3 {
        padding-left: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4, .py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pr-lg-4, .px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4, .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4, .px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .pt-lg-5, .py-lg-5 {
        padding-top: 3rem !important;
    }

    .pr-lg-5, .px-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-5, .py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pl-lg-5, .px-lg-5 {
        padding-left: 3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto, .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto, .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto, .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto, .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width:1281px) {
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0, .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0, .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0, .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0, .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: .25rem !important;
    }

    .mt-xl-1, .my-xl-1 {
        margin-top: .25rem !important;
    }

    .mr-xl-1, .mx-xl-1 {
        margin-right: .25rem !important;
    }

    .mb-xl-1, .my-xl-1 {
        margin-bottom: .25rem !important;
    }

    .ml-xl-1, .mx-xl-1 {
        margin-left: .25rem !important;
    }

    .m-xl-2 {
        margin: .5rem !important;
    }

    .mt-xl-2, .my-xl-2 {
        margin-top: .5rem !important;
    }

    .mr-xl-2, .mx-xl-2 {
        margin-right: .5rem !important;
    }

    .mb-xl-2, .my-xl-2 {
        margin-bottom: .5rem !important;
    }

    .ml-xl-2, .mx-xl-2 {
        margin-left: .5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3, .my-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3, .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3, .my-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3, .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4, .my-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4, .mx-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4, .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4, .mx-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .mt-xl-5, .my-xl-5 {
        margin-top: 3rem !important;
    }

    .mr-xl-5, .mx-xl-5 {
        margin-right: 3rem !important;
    }

    .mb-xl-5, .my-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-5, .mx-xl-5 {
        margin-left: 3rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0, .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0, .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0, .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0, .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: .25rem !important;
    }

    .pt-xl-1, .py-xl-1 {
        padding-top: .25rem !important;
    }

    .pr-xl-1, .px-xl-1 {
        padding-right: .25rem !important;
    }

    .pb-xl-1, .py-xl-1 {
        padding-bottom: .25rem !important;
    }

    .pl-xl-1, .px-xl-1 {
        padding-left: .25rem !important;
    }

    .p-xl-2 {
        padding: .5rem !important;
    }

    .pt-xl-2, .py-xl-2 {
        padding-top: .5rem !important;
    }

    .pr-xl-2, .px-xl-2 {
        padding-right: .5rem !important;
    }

    .pb-xl-2, .py-xl-2 {
        padding-bottom: .5rem !important;
    }

    .pl-xl-2, .px-xl-2 {
        padding-left: .5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3, .py-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3, .px-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3, .py-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3, .px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4, .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4, .px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4, .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4, .px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .pt-xl-5, .py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5, .px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5, .py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5, .px-xl-5 {
        padding-left: 3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto, .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto, .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto, .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto, .mx-xl-auto {
        margin-left: auto !important;
    }
}

.border {
    border: 1px solid #e5e5e5 !important;
    width: 100%;
}

/* Shopping Cart :: ========================================================*/
.cart-table {
    width: 100%;
    padding: 0px;
    border-collapse: collapse;
}

    .cart-table tfoot td {
        font-weight: bold;
    }

    .cart-table .tch {
        font-size: 20px;
        font-weight: bold;
    }


.cartcol1 {
    text-align: left;
    width: 55%;
}

.cartcol2 {
    text-align: right;
    width: 15%;
}

.cartcol3 {
    text-align: center;
    width: 15%;
}

.cartcol4 {
    text-align: right;
    width: 15%;
}

.qty-box {
    max-width: 110px;
}

    .qty-box .input-group-addon {
        background: transparent;
        border: 0px;
    }

    .qty-box .qty_input {
        padding: 0px;
        text-align: center;
    }

    .qty-box .qty_input_sm {
        max-width: 50px;
        margin: 0 auto;
        font-size: 12px;
    }

.cart_pic, .cart_details {
    display: table-cell;
    vertical-align: top;
}

.cart_pic {
    width: 80px;
}

    .cart_pic img {
        max-width: 100%;
    }

.cart_details {
    padding: 0px 10px;
}

    .cart_details h2 {
        line-height: 20px;
        font-size: 15px;
        /*letter-spacing: 1px;*/
    }

    .cart_details h3 {
        font-size: 14px;
    }


    .cart_details a {
        text-decoration: none;
    }



@media only screen and (max-width: 800px) {
    .cartcol1 {
        text-align: left;
        width: 100%;
    }

    .resp-table td.cartcol1 {
        padding-left: 0% !important;
    }

    .cart-table td {
        border: 0px !important;
    }

    .cart-table tr {
        border-bottom: 2px solid #ddd !important;
    }

    .cartcol2 {
        text-align: left;
        width: 100%;
    }

    .cartcol3 {
        text-align: left;
        width: 100%;
    }

    .cartcol4 {
        text-align: left;
        width: 100%;
    }

    .colhide {
        display: none !important;
    }

    .couponcode {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
}

.right-menu {
    margin-right: -70px;
}

@media only screen and (max-width:992px) {
    /* Force table to not be like tables anymore */
    .resp-table table, .resp-table thead, .resp-table tbody, .resp-table tfoot, .resp-table th, .resp-table td, .resp-table tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        .resp-table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    .resp-table tr {
        border: 1px solid #eee;
        /*margin-bottom: 15px;*/
    }

    .resp-table td {
        /* Behave like a "row" */
        border: none;
        padding: .30rem;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 40% !important;
        white-space: normal;
        text-align: left;
    }

        .resp-table td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 35%;
            padding-right: 10px;
            white-space: nowrap;
            text-align: left;
            font-weight: bold;
        }

        /* Label the data */
        .resp-table td:before {
            content: attr(data-title);
        }

    .resp-table a {
        display: inline-block;
    }

    .resp-table .fa {
        display: inline-block;
    }
}
/* Shopping Cart */
.cart-table {
    width: 100%;
    padding: 0px;
    border-collapse: collapse;
}

    .cart-table tfoot td {
        font-weight: bold;
    }

    .cart-table .tch {
        font-size: 20px;
        font-weight: bold;
    }


.cartcol1 {
    text-align: left;
    width: 45%;
}

.cartcol2 {
    text-align: right;
    width: 15%;
}

.cartcol3 {
    text-align: center;
    width: 15%;
}

.cartcol4 {
    text-align: right;
    width: 10%;
}

.cartcol5 {
    text-align: right;
    width: 15%;
}

.qty-box {
    max-width: 110px;
}

    .qty-box .input-group-addon {
        background: transparent;
        border: 0px;
    }

    .qty-box .qty_input {
        padding: 0px;
        text-align: center;
    }

    .qty-box .qty_input_sm {
        max-width: 50px;
        margin: 0 auto;
        font-size: 12px;
    }

.cart_pic, .cart_details {
    display: table-cell;
    vertical-align: top;
}

.cart_pic {
    /*width: 80px;*/
    width: 70px;
}

    .cart_pic img {
        max-width: 100%;
    }

.cart_details {
    padding: 0px 10px;
}

    .cart_details h2 {
        font-size: 16px;
    }

    .cart_details h3 {
        font-size: 14px;
    }


    .cart_details a {
        text-decoration: none;
    }

.fa-trash {
    color: red !important;
}

.delivery .form-group {
    margin-bottom: 8px !important;
}

@media only screen and (max-width: 800px) {
    .cartcol1 {
        text-align: left;
        width: 100%;
    }

    .resp-table td.cartcol1 {
        padding-left: 0% !important;
    }

    .cart-table td {
        border: 0px !important;
    }

    .cart-table tr {
        border-bottom: 2px solid #ddd !important;
    }

    .cartcol2 {
        text-align: left;
        width: 100%;
    }

    .cartcol3 {
        text-align: left;
        width: 100%;
    }

    .cartcol4 {
        text-align: left;
        width: 100%;
    }

    .colhide {
        display: none !important;
    }

    .couponcode {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Cart Css */
#checkout-form {
    margin-bottom: 15px;
}

.section-title {
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
    border-bottom: 1px solid #DADADA;
}

    .section-title .title {
        display: inline-block;
        text-transform: uppercase;
        color: #7b5141;
    }

.shiping-methods {
    margin-bottom: 30px;
}

/*-- shopping cart table --*/

.shopping-cart-table > tbody > tr > td, .shopping-cart-table > tbody > tr > th, .shopping-cart-table > tfoot > tr > td, .shopping-cart-table > tfoot > tr > th, .shopping-cart-table > thead > tr > td, .shopping-cart-table > thead > tr > th {
    padding: 15px 0px;
    /*vertical-align: middle;*/
    border-top: 1px solid #DADADA;
}

.shopping-cart-table > thead > tr > th {
    color: #30323A;
    text-transform: uppercase;
    border-bottom: 1px solid #DADADA;
    padding-top: 0;
    padding-bottom: 7px;
}

.shopping-cart-table > tbody > tr:last-child > td {
    border-bottom: 1px solid #DADADA;
}

.shopping-cart-table > tfoot > tr > td, .shopping-cart-table > tfoot > tr > th {
    color: #30323A;
    border-top: 0px;
}

    .shopping-cart-table > tfoot > tr > td:not(.empty), .shopping-cart-table > tfoot > tr > th:not(.empty) {
        padding: 15px;
        background-color: #F6F7F8;
        border: 1px solid #DADADA;
    }

.shopping-cart-table > tbody > tr > .details > a {
    font-size: 15px;
    font-weight: normal;
}

.shopping-cart-table > tbody > tr > .thumb > img {
    width: 60px;
}

.shopping-cart-table > tbody > tr > .qty .input {
    width: 90px;
}

.shopping-cart-table > tbody > tr > .price {
    font-size: 15px;
}

.shopping-cart-table > tbody > tr > .total {
    font-size: 15px;
}

.shopping-cart-table > tfoot > tr > .sub-total {
    font-size: 18px;
}

.shopping-cart-table > tfoot > tr > .total {
    font-size: 24px;
    color: #1b6dc1;
}

.bor-right {
    border-left: 1px dashed #ccc;
}

.shipping h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 15px 0 5px;
}

.shipping select {
    max-width: 100%;
    height: 30px;
    display: block;
    border: 1px solid silver;
}

    .shipping select.validation-failed {
        border-color: #df280a;
    }

    .shipping select #shipping-zip-form .label {
        display: inline-block;
        max-width: 100%;
        /* margin-bottom: 5px; */
        font-weight: normal;
    }

.shipping .shipping-desc {
    display: none;
}

.shipping .buttons-set {
    border: none;
    margin: 0;
    padding: 0;
}

.shipping .form-list:after {
    content: '';
    display: table;
    clear: both;
}

.shipping .form-list li {
    /*float: left;*/
    margin: 5px 2% 10px 0;
}

.shipping .form-list .shipping-country {
    width: 37%;
}

.shipping .form-list .shipping-region {
    width: 41%;
}

.shipping .form-list .shipping-postcode {
    margin-right: 0;
    width: 18%;
}

    .shipping .form-list .shipping-postcode input {
        margin-top: 4px;
    }

.shipping .form-list .input-box {
    padding-top: 0;
}

.shipping .form-list input {
    height: 30px;
    margin-top: 0px;
}

.shipping .form-list label {
    font-family: 'Hind', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 0px;
}

.shipping .sp-methods {
    padding: 10px 0 0;
    text-align: left;
}

    .shipping .sp-methods dd {
        margin-bottom: 10px;
    }

    .shipping .sp-methods label {
        font-size: 12px;
        font-style: italic;
        min-width: 100px;
    }

        .shipping .sp-methods label span {
            font-family: 'Hind', sans-serif;
            font-weight: bold;
            font-style: normal;
        }

.shipping #co-shipping-method-form .buttons-set .button {
    float: left;
    margin-left: 0;
}

.shipping #co-shipping-method-form .sp-methods dd label {
    border: 1px solid #cccccc;
    background-color: #ececec;
    min-width: 220px;
}

    .shipping #co-shipping-method-form .sp-methods dd label:hover {
        background-color: #dbdbdb;
    }

@media only screen and (max-width: 770px) {
    .shipping .shipping-form .form-list > li.shipping-region {
        width: 50%;
    }

    .shipping .shipping-form .form-list > li.shipping-postcode {
        width: 45%;
        margin-left: 5%;
        margin-right: 0;
    }

    .shipping .shipping-form .form-list > li.shipping-btn-action {
        width: 45%;
        float: right;
        margin: -10px 0 0 0;
    }

    .shipping .shipping-form .form-list > li label {
        display: block;
    }

    .shipping .shipping-form .form-list > li input,
    .shipping .shipping-form .form-list > li select {
        width: 100%;
    }
}

.cart-shop .cart-totals {
    text-align: right;
}

    .cart-shop .cart-totals:after {
        content: '';
        display: table;
        clear: both;
    }

    .cart-shop .cart-totals table {
        font-family: inherit;
        font-size: 16px;
        margin-bottom: 20px;
        text-transform: capitalize;
        width: 100%;
    }

    .cart-shop .cart-totals .price {
        font-size: 16px;
        font-weight: bold;
    }

    .cart-shop .cart-totals table td {
        padding: 2px 0px;
    }

        .cart-shop .cart-totals table td:first-child {
            padding-right: 10px;
            /*min-width: 120px;*/
            float: left;
        }

        .cart-shop .cart-totals table td:nth-child(2n+1) {
            padding-right: 10px;
            /*min-width: 120px;*/
            float: left;
        }

.input-box {
    display: flex;
}

    .input-box input {
        max-width: 100%;
        border: 1px solid #e7e7e7;
    }

.discount-bottom {
    float: left;
    padding: 15px 8px 15px 15px;
}

    .discount-bottom .input-group-addon {
        background: #7b5141 !important;
        border-radius: 0px;
        padding: 0px !important;
        width: 40% !important;
        font-size: 14px !important;
        font-weight: normal;
        line-height: 1;
        color: #fff;
        text-align: center;
        background-color: #eee;
        border: none !important;
        border-radius: 0px;
        height: 41px;
    }

        .discount-bottom .input-group-addon button {
            background: #7b5141 !important;
            border-radius: 0px;
            /*padding: 6px 12px !important;*/
            /*width: 20% !important;*/
            font-size: 14px !important;
            font-weight: normal;
            line-height: 1;
            color: #fff;
            text-align: center;
            background-color: #eee;
            border: none !important;
            border-radius: 0px;
        }

        .discount-bottom .input-group-addon a {
            color: #fff;
            padding: 0;
        }

    .discount-bottom .form-control {
        display: block;
        width: 75%;
        height: 41px;
        height: 41px;
        padding: 6px 15px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }

#coupon {
    float: left;
    /*padding: 15px 8px 0 0;*/
    padding:  0  0 8px 0;
}

    /*#coupon .input-group-addon {
        background: #7b5141 !important;
        border-radius: 0px;
        padding: 0px !important;
        width: 40% !important;
        font-size: 14px !important;
        font-weight: normal;
        line-height: 1;
        color: #fff;
        text-align: center;
        background-color: #eee;
        border: none !important;
        border-radius: 0px;
        height: 41px;
    }*/
    #coupon .input-group-addon {
        padding: 6px 12px;
        font-size: 14px;
        font-weight: normal;
        line-height: 1;
        color: #fff !important;
        text-align: center;
        background-color: #eb691e;
        border: 1px solid #ccc;
        border-radius: 0px;
        height: 34px;
    }

        #coupon .input-group-addon a {
            color: #fff !important;
        }

    #coupon .discount-bottom .input-group-addon button {
        background: #7b5141 !important;
        border-radius: 0px;
        /*padding: 6px 12px !important;*/
        /*width: 20% !important;*/
        font-size: 14px !important;
        font-weight: normal;
        line-height: 1;
        color: #fff;
        text-align: center;
        background-color: #eee;
        border: none !important;
        border-radius: 0px;
    }

    #coupon .discount-bottom .input-group-addon a {
        color: #fff;
        padding: 0;
    }

    #coupon .discount-bottom .form-control {
        display: block;
        width: 75%;
        height: 41px;
        height: 41px;
        padding: 6px 15px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }

.coupon_code {
    font-weight: bold;
}

.cart-shop .cart-totals-wrapper .first-bar {
    margin-bottom: 10px;
}

.cart-shop .cart-totals-wrapper .second-bar {
    margin-bottom: 10px;
}

.cart-shop .cart-totals-wrapper .foot-bar {
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0 0;
    font-size: 18px;
    height: 55px;
    font-weight: 700;
}

.cart-shop .list-inline {
    margin-top: 10px;
}

.cart-shop .cart-totals table tbody tr:last-child td,
.cart-shop .cart-totals table tbody tr:last-child th {
    padding-bottom: 10px;
}

.cart-shop .cart-totals table tfoot {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}

    .cart-shop .cart-totals table tfoot td {
        font-size: 24px;
        padding: 2px 5px;
        vertical-align: top;
    }

    .cart-shop .cart-totals table tfoot strong span,
    .cart-shop .cart-totals table tfoot span.price {
        font-family: 'Hind', sans-serif;
    }

    .cart-shop .cart-totals table tfoot strong {
        font-weight: 400;
    }

@media only screen and (max-width: 600px) {
    .cart-totals {
        text-align: right;
    }
}

@media only screen and (max-width: 770px) {
    .cart-shop .cart-totals table tfoot td {
        font-size: 18px;
    }
}

.discount-form:after,
#giftcard-form:after {
    content: '';
    display: table;
    clear: both;
}

#discount-coupon-form,
.cart-shop .giftcard {
    width: 100%;
}

    #discount-coupon-form h2,
    .cart-shop .giftcard h2 {
        display: none;
    }

    #discount-coupon-form label,
    .cart-shop .giftcard label {
        font-family: 'Hind', sans-serif;
        font-size: 12px;
        font-weight: 400;
        text-align: left;
        text-transform: uppercase;
        min-width: 105px;
        display: inline-block;
        margin-right: 10px;
    }

    #discount-coupon-form .field-wrapper,
    .cart-shop .giftcard .field-wrapper {
        display: inline-block;
    }

    #discount-coupon-form .validation-advice,
    .cart-shop .giftcard .validation-advice {
        display: inline;
    }

    #discount-coupon-form .button-wrapper,
    .cart-shop .giftcard .button-wrapper {
        display: inline-block;
        vertical-align: bottom;
    }

        #discount-coupon-form .button-wrapper > button,
        .cart-shop .giftcard .button-wrapper > button {
            float: left;
        }

    #discount-coupon-form .input-text,
    .cart-shop .giftcard .input-text {
        border-radius: 0;
        height: 30px;
        margin: 4px 10px 0 0;
        width: 190px;
    }

    .cart-shop .giftcard p {
        margin-bottom: 7px;
    }

    .cart-shop .giftcard .check-gc-status {
        float: left;
        padding: 0px;
    }

        .cart-shop .giftcard .check-gc-status > span > span {
            font-size: 14px;
            text-transform: none;
        }


.cart-shop .button-standard {
    background: transparent;
    color: #7b5141;
    border: 1px solid #7b5141;
    display: inline-block;
    padding: 12px 5px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    /* height: 45px; */
}

.btn-proceed-checkout {
    background: #7b5141;
    color: white;
    display: inline-block;
    padding: 12px 25px;
    border: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.button-coupon {
    background: #7b5141;
    color: white;
    display: inline-block;
    padding: 7px 15px;
    border: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

/* Shopping Cart :: ========================================================*/

@media (min-width:1024px) {
    /*.home-products-panel {
        background: url(images/home-product-bg.jpg) no-repeat center bottom;
        background-size: 100% auto;
        padding-bottom: 100px;
        max-width: 100% ;
        margin: 0 auto;
    }*/
}

.home-products-list {
    /*margin: 0 -30px;*/
    padding: 0;
    text-align: center;
}

    .home-products-list li {
        display: inline-block;
        vertical-align: top;
        width: calc(25% - 34px);
        margin: 0 15px 15px;
        padding: 0;
    }

@media(min-width:1024px) and (max-width:1280px) {
    .home-products-list li {
        width: calc(25% - 36px);
    }
    /*.tp-banner-container .tp-caption{max-width:1370px!important;}*/

}

.home-products-list a {
    display: table;
    margin: 0 auto;
    width: 100%;
    max-width: 302px;
    background-color: #eee;
    background-image: url(images/product-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    border: 1px solid brown;
}

    .home-products-list a figure {
        margin: 0 0 0px;
    }

    .home-products-list a div {
        padding: 8px 10px;
    }

    .home-products-list a p {
        margin-bottom: 3px;
        color: #000;
        font-size: 20px;
        font-weight: 600;
    }

    .home-products-list a:hover {
        background-color: #8b0304;
    }

        .home-products-list a:hover p {
            color: #FFF;
        }

    .home-products-list a:last-child {
        margin-top: 0px;
    }

    .home-products-list a img {
        background-size: 100%;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .home-products-list a p {
        -webkit-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
    }

    .home-products-list a figure {
        overflow: hidden;
        display: inline-block;
        position: relative;
    }

        .home-products-list a figure:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: rgba(255,255,255,0.4);
        }

ul.home-products-list a:hover img {
    background-size: 101%;
}

@media(min-width:1024px) {
    ul.home-products-list a img, ul.home-products-list a:hover figure:after {
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    ul.home-products-list a:hover figure:after {
        width: 120%;
        background-color: rgba(255,255,255,0);
    }

    ul.home-products-list a:nth-child(even) {
        margin-top: 50px;
        margin-bottom: -10px;
    }

    ul.home-products-list a:nth-last-child(-n+2) {
        margin-top: 50px;
    }
}

@media(min-width:641px) and (max-width:768px) {
    .home-products-panel {
        margin: 50px 0 0;
    }

    ul.home-products-list li {
        width: calc(33% - 33px);
        margin-bottom: 30px;
    }
}

@media(min-width:200px) and (max-width:640px) {
    ul.home-products-list {
        margin: 0 -10px;
    }

    .home-products-list a div {
        padding: 0px 5px;
    }

    .home-products-list a p {
        font-size: 13px;
    }

    .mob-width {
        width: 32% !important;
    }

        .mob-width img {
            width: 100px;
        }
    /*.home-products-panel {
        margin: 50px 0 0;
    }*/

    ul.home-products-list li {
        width: calc(50% - 23px);
        margin: 0 10px 30px;
    }
}

@media(min-width:400px) and (max-width:640px) {
    ul.home-products-list li a p {
        font-size: 10pt;
    }
}

@media(max-width:399px) {
    ul.home-products-list li a p {
        font-size: 9pt;
    }
}

.home-intro-panel {
    background: #f5e8ce;
}

ul.tick-list-dark {
    margin: 0;
    padding: 0;
}

    ul.tick-list-dark li {
        position: relative;
        padding-left: 25px;
        display: inline-block;
        width: calc(49% - 2px);
        color: #646464;
        vertical-align: top;
    }

        ul.tick-list-dark li > div {
            padding: 10px 0;
            border-bottom: #DDD dotted 2px;
            width: 90%;
            color: #646464;
        }

        ul.tick-list-dark li:before {
            content: '\f00c';
            position: absolute;
            font-family: FontAwesome;
            font-size: 12pt !important;
            margin-left: -25px !important;
            top: 10px;
            color: #666;
        }

@media (max-width:767px) {
    ul.tick-list-dark li {
        width: 100%;
    }

    .home-intro-panel {
        padding-top: 20px;
    }
}

@media (min-width: 768px) {
    .modal {
        text-align: center;
    }

        .modal:before {
            content: '';
            height: 100%;
            width: 1px;
            display: inline-block;
            vertical-align: middle;
        }

        .modal .modal-dialog {
            text-align: left;
            margin: 10px auto;
            display: inline-block;
            vertical-align: middle;
        }
}

.modal-body {
    position: relative;
    padding: 15px;
    height: 100px;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    background: #eee;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group:first-child .list-group-item:first-child {
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
    }

    .card > .list-group:last-child .list-group-item:last-child {
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem;
    }

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: .75rem;
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

    .card-header:first-child {
        border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
    }

    .card-header + .list-group .list-group-item:first-child {
        border-top: 0;
    }

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
}

    .card-footer:last-child {
        border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
    }

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
}

.card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .card-deck .card {
        margin-bottom: 15px;
    }

@media (min-width:576px) {
    .card-deck {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

        .card-deck .card {
            display: -ms-flexbox;
            display: flex;
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            -ms-flex-direction: column;
            flex-direction: column;
            margin-right: 15px;
            margin-bottom: 0;
            margin-left: 15px;
        }
}

.card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .card-group > .card {
        margin-bottom: 15px;
    }

@media (min-width:576px) {
    .card-group {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

        .card-group > .card {
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
                    border-bottom-left-radius: 0;
                }
}

.card-columns .card {
    margin-bottom: .75rem;
}

@media (min-width:576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

        .card-columns .card {
            display: inline-block;
            width: 100%;
        }
}

.lead {
    margin-bottom: 0px !important;
}

.a-link-normal {
    color: #1849eb;
}

.mt-2, .my-2 {
    margin-top: .5rem !important;
}
/* Like Slider */
ul.like_list {
    text-align: left;
    padding: 0;
    margin: 0;
}

    ul.like_list > li {
        padding: 5px;
        margin: 0;
        list-style: none;
        display: inline-block;
    }



.items_container .bx-wrapper {
    /*margin: 0 auto 30px !important;*/
}

    .items_container .bx-wrapper .bx-prev {
        /*left: 6px !important;*/
        left: -4% !important;
        box-shadow: 1px 2px 10px -1px rgba(0,0,0,.3);
        background-color: hsl(17deg 31% 37%);
        padding: 20px 0 60px;
    }



        .items_container .bx-wrapper .bx-prev:before {
            content: "\f104";
            font-family: 'FontAwesome';
            color: #fff !important;
            font-size: 30px;
        }

    .items_container .bx-wrapper .bx-next {
        /*right: 5px;*/
        right: -4%;
        box-shadow: 1px 2px 10px -1px rgba(0,0,0,.3);
        background-color: hsl(17deg 31% 37%);
        padding: 20px 0 60px;
    }

        .items_container .bx-wrapper .bx-next:before {
            content: "\f105";
            font-family: 'FontAwesome';
            color: #fff !important;
            font-size: 30px;
            margin-left: 5px;
        }

    .items_container .bx-wrapper .bx-controls-direction a {
        text-align: center;
        text-decoration: none;
        text-indent: 0px !important;
        z-index: 99 !important;
    }

.items_container .bx-controls-direction a.disabled {
    display: block !important;
    opacity: 0.3;
    cursor: not-allowed;
}
/*
=====================================================================================================================================================
ACTIVITIES
=====================================================================================================================================================
*/

.card-activities {
    border: 1px solid #ddd;
    box-shadow: 0px 2px 3px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

    .card-activities .activities-pic {
        display: block;
        overflow: hidden;
    }

        .card-activities .activities-pic img {
            max-width: 100%;
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transition: .3s ease-in-out;
            transition: .5s ease-in-out;
        }

    .card-activities:hover .activities-pic img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .card-activities .activities-data {
        padding: 15px 15px;
        text-align: center;
    }

        .card-activities .activities-data h2 {
            color: #000;
            font-size: 17px;
            padding: 0;
            margin: 0;
            font-weight: 700;
        }

    .card-activities a {
        text-decoration: none;
    }

        .card-activities a:hover .activities-data {
            background: #7b5141;
            color: #fff;
        }

            .card-activities a:hover .activities-data h2 {
                color: #fff;
            }

.popup-heading {
    padding: 15px;
    background: #0069ff;
}

    .popup-heading h1, .popup-heading h2 {
        color: #fff !important;
        padding: 0;
        margin: 0;
        font-size: 18px;
        text-transform: uppercase;
    }

.popup-content {
    padding: 15px;
}

.media {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 30px;
}

.media-left {
    width: 80px;
    text-align: center;
    color: #f2ff00;
    vertical-align: middle !important;
}

.media-body {
    width: auto !important;
}

.media p {
    margin-bottom: 0;
}

.tab {
    color: #0069ff !important;
    line-height: 10px !important;
    font-size: 20px !important;
}

@media only screen and (max-width:480px) and (min-width:320px) {
    .header-middle .logo img {
        width: 23%;
    }

    .nav > li.dropdown > a:after {
        position: absolute;
        top: -5px;
        line-height: 52px;
        right: 13px;
        display: block;
        content: "\f107" !important;
        font-family: 'FontAwesome';
        -webkit-transition: all .50s ease;
        -moz-transition: all .50s ease;
        -ms-transition: all .50s ease;
        -o-transition: all .50s ease;
        transition: all .50s ease;
    }

    ul li.active {
        text-align: left;
    }

    .offcanvas-toggle {
        margin-top: 22px !important;
    }

    .hdr-list ul {
        width: 100% !important;
    }

    .search-box {
        z-index: 99;
    }

    .button-container img {
        height: 100% !important;
    }

    .button-container a {
        font-size: 15px;
    }

    .sub .form-control {
        width: 100%;
    }

    ul.news_list li {
        width: 100%;
    }

    .intro_txt .pull-right {
        float: none !important;
    }

    .search-box {
        width: 270px;
        /*left: -790%;*/
    }

        .search-box:before {
            left: 245px;
            right: initial;
        }

    .SeachboxCss {
        width: 80px;
        padding: 5px 0;
        background: #7b5141;
        color: #fff;
        margin-left: -6px;
        border: 1px solid #7b5141;
        outline: none;
        cursor: pointer;
    }

    .search-box input[type="text"] {
        width: 173px;
    }

    .active span {
        background: none !important;
    }

    .modal {
        top: 33% !important;
    }

    .modal-body {
        position: relative;
        padding: 15px;
        height: 180px;
    }

    .add {
        width: 100% !important;
        margin: 0 5px 20px;
    }

    .a-box.first-desktop-address-tile {
        width: 36%;
    }

    .billing-details .pull-right {
        float: none !important;
    }

    .prod_box figcaption h2 {
        font-size: 24px;
    }

    ul.list-table {
        padding-top: 10px;
        margin: 0 12%;
    }

    .lang {
        padding-bottom: 10px;
        /*width:100%;*/
    }

        .lang .langsub {
            width: 155px;
        }

    .cart_pic {
        padding-left: 10px;
    }
}

@media (min-width:768px) {
    .border-right1 {
        border-right: 1px solid #ccc;
    }
    .border-right:last-child {
        border-right:0px;
    }
}

.text-brown {
    color: #994d11 !important;
}

.verticalalign {
    vertical-align: middle !important;
}

verticalalign h2 {
    margin: 0 !important;
}
