/*
Author: Anand Soni

Colors:
	Body 		  : #4A4E5A
	Headers 	: #30323A
	Primary 	: #800020
	Dark 		  :	#30323A
	Grey 		  : #DADADA #F6F7F8

Fonts: Inter

Table OF Contents
------------------------------------
1 > GENERAL
------ typography
------ Buttons
------ Inputs
------ Lists
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search header
------ Account header
------ Cart header
3 > NAVIGATION
------ Category nav
------ Menu nav
------ Dropdowns
------ Mobile Nav
4 > BANNERS
5 > HOME SLIDER
6 > PRODUCT
------ Single product
------ Widget product
------ Product slick
7 > PRODUCTS PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > FOOTER
11 > SLICK
------ Arrows
------ Dots
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
    font-family: 'Inter', sans-serif;
    color: #4A4E5A;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #30323A;
    margin: 0 0 10px;
    font-weight: 700;
}

a {
    color: #30323A;
    -webkit-transition: 0.3s color;
    transition: 0.3s color;
}

a:hover, a:focus {
    color: #b53e47;
    text-decoration: none;
    outline: none;
}

.primary-color {
    color: #800020;
}

.white-color {
    color: #FFF;
}

.font-weak {
    font-weight: 500;
}

strong {
    color: #30323A;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none
}

hr {
    margin-top: 15px;
    margin-bottom: 15px;
    border-color: #DADADA;
}

.overline {
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.06em;
    font-size: 13px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.pass_show {
    position: relative
}

.pass_show .ptxt {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 1;
    color: #000000;
    margin-top: -10px;
    cursor: pointer;
    transition: .3s ease all;
}

.pass_show .ptxt:hover {
    color: #800020;
}

.has-error .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.no-margin {
    margin: 0;
!important;
}

.no-border {
    border: none;
!important;
}

.f10 {
    font-size: 10px;
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.main-btn, .primary-btn {
    display: inline-block;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.icon-btn.main-btn, .icon-btn.primary-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    border: none;
}

.main-btn {
    color: #30323A;
    background-color: #FFF;
    -webkit-box-shadow: 0 0 0 1px #DADADA inset, 0 0 0 6px transparent;
    box-shadow: 0 0 0 1px #DADADA inset, 0 0 0 6px transparent;
}

.main-btn:hover, .main-btn:focus {
    color: #b53e47;
    -webkit-box-shadow: 0 0 0 1px #b53e47 inset, 0 0 0 0 #b53e47;
    box-shadow: 0 0 0 1px #b53e47 inset, 0 0 0 0 #b53e47;
}

.primary-btn {
    color: #FFF;
    background-color: #800020;
}

h3.out-of-stock {
    color: red;
}

.primary-btn:hover, .primary-btn:focus {
    color: #FFF;
    background-color: #b53e47;
}

.btn-primary-ghost {
    border: 1px solid #800020;
    background-color: #00000000;
    color: #800020;
}

.btn-primary {
    background-color: #800020;
    border-color: #800020;
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #b53e47;
    border-color: #b53e47;

}

.btn-primary-ghost:hover {
    background-color: #b53e47;
    color: white;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

.input {
    width: 100%;
    height: 40px;
    padding: 4px 15px;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: 0 0 0 1px #DADADA inset, 0 0 0 5px transparent;
    box-shadow: 0 0 0 1px #DADADA inset, 0 0 0 5px transparent;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.input:focus {
    -webkit-box-shadow: 0 0 0 1px #80002050 inset, 0 0 0 0 #80002050;
    box-shadow: 0 0 0 1px #80002050 inset, 0 0 0 0 #80002050;
    outline-color: #80002050;
}

textarea.input {
    padding: 15px;
}

.input-checkbox .caption {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

.input-checkbox > label {
    color: #30323A;
}

.input-checkbox input[type="checkbox"]:checked + label + .caption, .input-checkbox input[type="radio"]:checked + label + .caption {
    max-height: 800px;
}

/*----------------------------*\
	Lists
\*----------------------------*/

.list-links .list-links-title {
    margin-bottom: 10px;
    font-size: 16px;
}

.list-links li > a {
    position: relative;
    display: inline-block;
    padding: 2px 0;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.list-links li > a:before {
    content: "\f105";
    position: absolute;
    left: 0;
    font-family: FontAwesome;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.list-links li > a:hover, .list-links li > a:focus, .list-links li.active > a {

    color: #800020;
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.list-links li > a:hover:before, .list-links li > a:focus:before, .list-links li.active > a:before {
    opacity: 1;
    visibility: visible;
}

.list-links li > ul {
    padding-left: 8px;
}

/*----------------------------*\
	Sections
\*----------------------------*/

.section {
    padding-bottom: 30px;
}

.page-title {
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
    border-bottom: 1px solid #DADADA;
    display: flex;
    justify-content: space-between;
}

.page-title .title {
    display: inline-block;
    text-transform: uppercase;
}

.page-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    height: 3px;
    width: 60px;
    background-color: #800020;
}

.flex-center {
    display: flex;
    justify-content: center;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

.breadcrumb {
    background-color: #f1f1f1;
    border: none;
    display: block;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 0.9em;
}

.breadcrumb > .active > a {
    color: #30323A;
    font-weight: 600;
}

.breadcrumb > .active :hover {
    color: #4e0000;
}

.breadcrumb > li + li:before {
    color: #30323A60;
    content: ">"
}

/*=========================================================
	02 -> HEADER
===========================================================*/

#header {
    padding: 10px 10px 10px 0px;
}

/*----------------------------*\
	Navbar
\*----------------------------*/

.navbar-fixed-top {
    border-width: 0;
}

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #DADADA;
}

.header-top-links > li {
    display: inline-block;
}

.header-top-links > li + li {
    margin-left: 15px;
}

.header-top-links > li > a {
    cursor: pointer;
}

/*----------------------------*\
	logo
\*----------------------------*/

.header-logo {
    display: inline-block;
    line-height: 24px;
}

.header-logo .logo > img {
    max-width: 100%;
    max-height: 85px;
}

/*----------------------------*\
	Search header
\*----------------------------*/

.header-search {
    display: inline-block;
    padding: 15px 0;
    margin-right: 15px;
}

.header-search > form {
    position: relative;
}

.header-search > form .search-input {
    padding-right: 40px;
    border-radius: 5px;
}

.header-search > form .search-categories {
    position: absolute;
    left: 0;
    top: 0;
    width: 135px;
}

.header-search > form .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
}

/*----------------------------*\
	Account header
\*----------------------------*/

.header-btns > li {
    display: inline-block;
    vertical-align: middle;
    padding: 15px 0;
}

.header-btns > li + li {
    margin-left: 15px;
}

.header-btns > li .header-btns-icon {
    position: relative;
    float: left;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #30323A;
    background-color: #FFF;
    border: 1px solid #DADADA;
}

.header-btns .dropdown-toggle {
    display: flex;
    cursor: pointer;
}

.header-account.dropdown .custom-menu > li > a > i {
    margin-right: 15px;
    color: #800020;
}

/*----------------------------*\
	Cart header
\*----------------------------*/

.header-cart .header-btns-icon .qty {
    position: absolute;
    right: -9px;
    top: -9px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 10px;
    /*background: #800020;*/
    background: #800020;
    color: #FFF;
    border-radius: 50%;
}

.header-cart.dropdown .custom-menu {
    width: 300px;
}

#shopping-cart .shopping-cart-list {
    max-height: 260px;
    margin-bottom: 15px;
    overflow-y: scroll;
}

#shopping-cart .shopping-cart-list .product.product-widget:first-child {
    margin-top: 0;
}

#shopping-cart .shopping-cart-list .product.product-widget:last-child {
    margin-bottom: 0;
}

#shopping-cart .shopping-cart-btns > button {
    width: calc(50% - 2px);
}

/*=========================================================
	03 -> NAVIGATION
===========================================================*/

#navigation {
    /*background-color: #30323A;*/
    background-color: #800020;
    -webkit-box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.175);
}

#navigation .container {
    position: relative;
}

/*----------------------------*\
	Category nav
\*----------------------------*/

.category-nav {
    float: left;
    width: 270px;
}

.category-nav .category-header {
    padding: 15px;
    display: block;
    text-transform: uppercase;
    /*background: #800020;*/
    background: #120D31;
    color: #FFF;
    font-weight: 600;
}

.category-nav .category-header > i {
    float: right;
    line-height: 16px;
}

.category-nav .category-list {
    position: fixed;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    /*overflow-y: auto;*/
    overflow: scroll;
    width: 270px;
    background-color: #FFF;
    border-left: 1px solid #DADADA;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
    z-index: 50;
    height: max-content; /* Full height */
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.category-nav.show-on-click .category-list {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, 15px);
    -ms-transform: translate(0, 15px);
    transform: translate(0, 15px);
}

.category-nav.show-on-click .category-list.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.category-nav .category-list > li + li {
    /*border-top: 1px solid #ececec;*/
    /*width: 270px;*/
}

.category-nav .category-list > .category-dropdown + .category-dropdown:hover {
    background-color: #f1f1f1;
}

.category-nav .category-list > .category-dropdown > a > i {
    float: right;
    line-height: 16px;
    padding: 4px;
}

.category-nav .category-list > .category-dropdown > a {
    display: block;
    padding: 6px 16px;
    font-weight: 600;
    cursor: pointer;
}

.category-nav .category-list > .category-dropdown > a:hover, .category-nav .category-list > .category-dropdown > a:focus, .category-nav .category-list > .category-dropdown.open > a {
    color: #4e0000;
    background-color: #fff2f5;
}

ul.subCategory-nav-list {
    width: 240px;
}

/*----------------------------*\
	Menu nav
\*----------------------------*/

.menu-nav .menu-header {
    display: none;
    padding: 15px;
    text-transform: uppercase;
    background: #30323A;
    color: #FFF;
    font-weight: 700;
}

.menu-nav .menu-header > i {
    float: right;
    line-height: 20px;
}

.menu-nav .menu-list > li {
    display: inline-block;
}

.menu-nav .menu-list > li > a {
    display: block;
    padding: 15px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: bold;
}

.menu-nav .menu-list > li > a:hover, .menu-nav .menu-list > li > a:focus, .menu-nav .menu-list > li.dropdown.open > a {
    background-color: #b53e47;
}

/*----------------------------*\
	Dropdowns
\*----------------------------*/

.category-menu {
    position: fixed;
    padding: 15px;
    background: #FFF;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    top: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.dropdown.open > .category-menu {
    opacity: 1;
    visibility: visible;
}

.custom-menu {
    position: absolute;
    padding: 15px;
    background: #FFF;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    top: 100%;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 999;
}

span.quantity {
    font-size: 14px;
    color: #8c8c8c;
}

#cart-dropdown {
    padding: 4px 16px 78px 16px;
    height: 100%;
    overflow: scroll;
    border-bottom: 73px solid white;
}

#cartItemBox {
    position: fixed;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 400px;
    width: 0%;
    -webkit-box-shadow: 0 6px 12px 2px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px 2px rgba(0, 0, 0, 0.175);
    overflow: hidden;
    background-color: #FFF;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;
    z-index: 9990;
}

#cartItemBox.open {
    width: 100%;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.cartItemOverlay.open {
    background-color: rgba(0, 0, 0, .7);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9900;
    overflow-y: auto;
    -webkit-animation: overlayFadeIn .6s ease;
    animation: overlayFadeIn .6s ease;
}

.cart-header-btn {
    position: absolute;
    bottom: 0;
    padding: 16px;
    width: 100%;
    display: flex;
    background: #fff2f5;
    -webkit-box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.175);
    box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.175);
}

.cart-header-btn > a.btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.dropdown.open > .custom-menu {
    opacity: 1;
    visibility: visible;
}

/*-- Default Dropdown --*/

.dropdown.default-dropdown > .custom-menu {
    border-top: 2px solid #800020;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(15px);
    -ms-transform: translateX(-50%) translateY(15px);
    transform: translateX(-50%) translateY(15px);
}

.dropdown.default-dropdown.open > .custom-menu {
    -webkit-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

.dropdown.default-dropdown > .custom-menu > li > a {
    display: block;
    padding: 10px 0;
    text-transform: uppercase;
}

/*-- Mega Dropdown --*/

.dropdown.mega-dropdown.full-width {
    position: static !important;
}

.dropdown.mega-dropdown > .custom-menu {
    border-top: 2px solid #800020;
    left: 0;
    -webkit-transform: translate(0, 15px);
    -ms-transform: translate(0, 15px);
    transform: translate(0, 15px);
    width: auto;
    min-width: 750px;
    max-width: 100%;
}

.dropdown.mega-dropdown.full-width > .custom-menu {
    width: 100%;
}

.dropdown.mega-dropdown.open > .custom-menu {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

/*-- Side Dropdown --*/

.cat-subCat-menu > div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.cat-subCat-menu {
    border-left: 2px solid #800020;
    left: 285px;
    width: max-content;
    display: flex;
    flex-direction: column;
    -webkit-transform: translate(15px, 0);
    -ms-transform: translate(15px, 0);
    transform: translate(15px, 0);
    max-width: 800px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 99;
}

.cat-subCat-menu.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

/*----------------------------*\
	Mobile nav
\*----------------------------*/

#header .nav-toggle {
    display: none;
}

@media only screen and (max-width: 991px) {
    #header .nav-toggle {
        display: inline-block;
    }

    header .pull-left, header .pull-right {
        float: none !important;
    }

    header .pull-right {
        margin-top: 10px;
    }

    #responsive-nav {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        max-width: 270px;
        width: 0%;
        overflow: hidden;
        background-color: #FFF;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: 0.5s all;
        transition: 0.5s all;
        z-index: 990;
    }

    #responsive-nav.open {
        width: 100%;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    #responsive-nav .dropdown .custom-menu {
        display: none;
        position: static;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid #800020;
    }

    #responsive-nav .dropdown.open .custom-menu {
        display: block;
        min-width: auto;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .category-nav .category-list, .menu-nav .menu-list {
        display: none;
        overflow-y: scroll;
        overflow-x: hidden;
        max-height: calc(100vh - 100px);
    }

    .category-nav .category-list.open, .menu-nav .menu-list.open {
        display: block;
    }

    .menu-nav .menu-header, .category-nav .category-header {
        cursor: pointer;
    }

    .category-nav {
        float: none;
        width: 100%;
    }

    .category-nav .category-list {
        position: static;
    }

    .menu-nav .menu-header {
        display: block;
    }

    .menu-nav .menu-list {
        float: none;
        border-left: 1px solid #DADADA;
        border-right: 1px solid #DADADA;
        border-bottom: 1px solid #DADADA;
    }

    .menu-nav .menu-list > li {
        display: block;
    }

    .menu-nav .menu-list > li + li {
        border-top: 1px solid #DADADA;
    }

    .menu-nav .menu-list > li > a {
        color: #30323A;
    }

    #navigation.shadow:after {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 99;
    }
}

/*=========================================================
	05 -> CATEGORY-BOX
===========================================================*/


.category.category-single {
    margin-top: 8px;
    margin-bottom: 8px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    border-radius: 4px;
    border: 1px solid #80002010;
}

.category.category-single:hover {
    -webkit-box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.17);
    box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.175);
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.category.category-single .category-thumb {
    position: relative;
    margin: 8px;
}

.category.category-single .category-thumb::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.category.category-single .category-thumb > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category.category-single .category-body {
    /*padding: 15px;*/
    position: relative;
    margin: 8px;
}

.category.category-single .category-body::after {
    content: "";
    display: block;
    padding-bottom: 28%;
}

.category.category-single .category-body > h2 {
    font-size: 16px;
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 1.5;
    object-fit: contain;
    text-align: center;
    margin: auto;
}

.category.category-single .no-of-prods {
    position: absolute;
    margin: 8px;
    padding: 4px 8px;
    background-color: #120D31;
    color: aquamarine;
    z-index: 22;
    border-radius: 16px;

}

.category.category-single .no-of-prods > span {
    font-size: 1em;
    position: relative;
    /*display: inline-block;*/
}

.category-name {
    margin: auto;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

.product.product-details .product-label {
    margin-bottom: 15px;
    margin-right: 8px;
    font-weight: normal;

}

.product .product-label > span {
    position: relative;
    display: inline-block;
    padding: 4px 8px;
    color: #FFFFFF;
    background-color: #120D31;
    z-index: 22;
    margin-bottom: 4px;
    border-radius: 4px;
}

/*----------------------------*\
	Single product
\*----------------------------*/

.product.product-single {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    border-radius: 4px;
    border: 1px solid #80002010;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
}

.product.product-single > a {
    display: flex;
    align-items: flex-start;
    align-content: space-around;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    justify-content: flex-end;
    flex-direction: column;
}

.product.product-single:hover {
    -webkit-box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.15);
}

.xzoom {
    max-height: 400px;
}

.product.product-single .product-thumb {
    position: relative;
    margin-bottom: 15px;
}

.product.product-single .product-thumb > a > img {
    max-height: 200px;
}

.thumbnail {
    border: none;
    margin: 0;
}

.product.product-single .product-label {
    position: absolute;
    top: 8px;
    left: 16px;
    right: 16px;
    -webkit-transition: 0.5s top ease-in;
    transition: 0.5s top ease-in;
}

.product.product-single .product-label > span {
    font-size: smaller;
}

.product.product-single .product-countdown {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}

.product.product-single .product-body {
    padding: 0 15px;
}

.product.product-single .product-price {
    display: inline-block;
    margin: 16px 0;
}

.price-strike {
    position: relative;
    color: red;
}

.price-strike:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;
    -webkit-transform:rotate(-10deg);
    -moz-transform:rotate(-10deg);
    -ms-transform:rotate(-10deg);
    -o-transform:rotate(-10deg);
    transform:rotate(-10deg);
}

.out-of-stock {
    opacity: 50%;
}


.product.product-single .product-rating {
    float: right;
    margin-top: 5px;
}

.product.product-single .product-name {
    font-size: 18px;
    margin: 8px 0 4px 0;
    /*color: #b53e47;*/
}

.product-short-desc {
    font-size: 15px;
    color: grey;
    margin: 0;
}

.product.product-single .product-btns {
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.product.product-single:hover .product-btns {
    opacity: 1;
    visibility: visible;
}

/*-- hot product --*/

.product.product-single.product-hot {
    border: 2px solid #800020;
}

.product.product-single.product-hot .product-btns {
    opacity: 1;
    visibility: visible;
}

/*----------------------------*\
	 Widget product
\*----------------------------*/

.product.product-widget {
    position: relative;
    margin-top: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.product.product-widget > div > .product-thumb > img {
    max-width: 60px;
    max-height: 60px;
}

.product.product-widget > div {
    display: flex;
    align-items: center;
}

.product.product-widget > div > .product-body {
    padding-left: 16px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.product.product-widget .product-price {
    font-size: 14px;
    margin-bottom: 5px;
}

.product.product-widget > div > span.qty {
    font-size: 14px;
    font-weight: 400;
}

.product.product-widget > div > .product-name {
    font-size: 14px;
}

.product.product-widget .cancel-btn {
    position: absolute;
    right: 0;
    top: 10px;
    background-color: transparent;
    border: none;
    color: #DADADA;
}

.product.product-widget .cancel-btn:hover {
    color: #30323A;
}

/*----------------------------*\
	Product slick
\*----------------------------*/

.product-slick .slick-slide {
    margin-right: 15px;
    margin-left: 15px;
}

/*----------------------------*\
	Product Inquiry
\*----------------------------*/

.basic-card {
    background-color: #FFFFFF;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    padding: 15px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

#aside .aside {
    margin-bottom: 30px;
    padding-right: 8px;
    border-right: 1px solid #DADADA;
}

#aside .aside:last-child {
    margin-bottom: 0;
}

.aside .aside-title {
    position: relative;
    border-bottom: 1px solid #DADADA;
    text-transform: uppercase;
    padding-bottom: 12px;
    margin-top: 15px;
    line-height: 24px;
    /*font-size: 18px;*/
    font-size: 16px;
}

.aside .aside-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    height: 3px;
    width: 60px;
    background-color: #800020;
}

/*-- Filter list --*/

.filter-list {
    margin-bottom: 15px;
}

.filter-list > li {
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 6px;
}

.filter-list > li:last-child {
    margin-right: 0;
}

.filter-list li a {
    position: relative;
    padding: 0 5px 0 20px;
}

.filter-list li a:before {
    content: "\f00d";
    font-family: FontAwesome;
    position: absolute;
    left: 4px;
    top: 5px;
    line-height: 12px;
    font-size: 9px;
    color: #FFF;
    background: #30323A;
    width: 12px;
    text-align: center;
    border-radius: 50%;
    height: 12px;
}

/*-- Price Filter --*/
.list-group {
    display: inline-grid;
}

.category-filter-list {
    display: inline-flex;
    align-content: center;
}

.category-filter-list > label {
    font-weight: 600;
}

.no-subCategory {
    visibility: hidden;
    margin-left: 5px;
    font-size: 1.1em;
    width: 12px;
    height: 12px;
    text-align: center;
    vertical-align: middle;
    margin-top: -5px;
}

.list-subCategories > i.open {
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.list-subCategories > i {
    margin-left: 5px;
    font-size: 1.1em;
    width: 12px;
    height: 12px;
    text-align: center;
    vertical-align: middle;
    margin-top: -5px;
    transform-origin: center;
    -moz-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.list-subSubCategories > i.open {
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);

}

.list-subSubCategories > i {
    margin-left: 5px;
    font-size: 1.1em;
    width: 12px;
    height: 12px;
    text-align: center;
    vertical-align: middle;
    margin-top: -5px;
    transform-origin: center;
    -moz-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-filter-list {
    display: flex;
    align-content: center;
}

.brand-filter-list > label {
    margin-left: 8px;
    text-transform: capitalize;
}

.subCategory-filter-list > label {
    margin-left: 5px;
}

.subCategory-filter-list {
    display: flex;

}

.subCategory-filter-group {
    display: block;
    margin-left: 16px;
}

#price-slider {
    margin: 60px 0 50px;
}

.noUi-target {
    background-color: #DADADA;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.noUi-connect {
    background-color: #800020;
}

.noUi-horizontal {
    height: 4px;
}

.noUi-horizontal .noUi-handle {
    width: 12px;
    height: 12px;
    left: -6px;
    top: -4px;
    border: none;
    background: #30323A;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.noUi-handle:before, .noUi-handle:after {
    display: none;
}

.noUi-tooltip {
    border: none;
    color: #FFF;
    background: #30323A;
    border-radius: 0;
}

/*----------------------------*\
	Store
\*----------------------------*/

#store {
    margin-bottom: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #DADADA;
}

/*-- store filter --*/

.row-filter {
    display: inline-block;
    vertical-align: top;
}

.row-filter > a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #FFF;
    background-color: #30323A;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.row-filter > a:hover {
    opacity: 0.9;
}

.row-filter > a.active {
    background-color: #4e0000;
}

.sort-filter {
    display: flex;
    align-items: center;
}

.store-filter {
    display: flex;
    margin: 16px 0;
    justify-content: flex-end;
}

.page-filter select.input {
    width: 90px;
}

.page-filter {
    display: inline-block;
}

.store-pages {
    display: inline-block;
    margin-left: 15px;
}

.store-pages li {
    display: inline-block;
    margin-right: 6px;
}

.store-pages li a {
    display: block;
    min-width: 10px;
    text-align: center;
}

.store-pages li.active {
    color: #800020;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-view .slick-arrow {
    opacity: 0;
}

#product-main-view:hover .slick-arrow {
    opacity: 1;
}

#product-view {
    margin-top: 10px;
    margin-bottom: 15px;
}

#product-view .product-view.slick-slide {
    opacity: 0.2;
}

#product-view .product-view.slick-slide.slick-current {
    opacity: 1;
    /*-webkit-box-shadow: 0 0 0 2px #800020 inset;
    box-shadow: 0 0 0 2px #800020 inset;*/
    -webkit-box-shadow: 0 0 0 2px #800020 inset;
    box-shadow: 0 0 0 2px #800020 inset;
}

.product-view {
    height: 400px;
    /*max-width: 500px;*/
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px;
}

.product-view > img {
    width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product.product-details .qty-input {
    display: inline-block;
    margin-right: 16px;
}

.product.product-details .qty-input .input {
    width: 120px;
    height: 50px;
    font-size: 18px;
    border-radius: 4px;
}

/*----------------------------*\
	Product tab
\*----------------------------*/

.product-tab {
    margin-top: 30px;
}

.product-tab .tab-nav {
    border-bottom: 1px solid #DADADA;
    margin-bottom: 30px;
}

.product-tab .tab-nav li {
    display: inline-block;
}

.product-tab .tab-nav li + li {
    margin-left: 30px;
}

.product-tab .tab-nav li a {
    display: block;
    padding: 15px 0;
    text-transform: uppercase;
    font-weight: 700;
}

.product-tab .tab-nav li.active {
    position: relative;
}

.product-tab .tab-nav li.active a {

    color: #800020;
}

.product-tab .tab-nav li.active a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
    height: 3px;
    width: 30px;

    background-color: #800020;
}

/*----------------------------*\
	Similar Product
\*----------------------------*/

.addOtherProductToCart {
    display: flex;
    justify-content: center;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.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: 8px 0;
    vertical-align: middle;
    border-top: 1px solid #DADADA;
}

.shopping-cart-table > thead > tr > th {
    color: #30323A;
    text-transform: uppercase;
    border-bottom: 1px solid #DADADA;
}

.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: 0
}

.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: 18px;
    font-weight: 700;
}

.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: 16px;
    color: #002984;
}

.shopping-cart-table > tbody > tr > .quantity {
    font-size: 16px;
}

.shopping-cart-table > tbody > tr > .total {
    font-size: 16px;
}

.shopping-cart-table > tfoot > tr > .sub-total {
    font-size: 16px;
}

.shopping-cart-table > tfoot > tr > .total {
    font-size: 20px;

    color: #800020;
}

/*=========================================================
	10 -> FOOTER
===========================================================*/

.footer {
    margin: 30px;
    width: 100%;
}

#footer.section-grey {
    background-color: #f1f1f1;
}

.footer .footer-header {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-logo {
    margin-bottom: 16px;
    display: inline-block;
    margin-right: 15px;
    width: 250px;
    line-height: 24px;
}

.footer-logo .logo {
    display: inline-block;
}

.footer-logo .logo > img {
    /*width: 100%;
    max-height: 70px;*/

    max-height: 85px;
}

.footer-social > li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 6px;
}

.footer-social > li:last-child {
    margin-right: 0;
}

.footer-copyright {
    font-size: 14px;
}

/*=========================================================
	11 -> SLICK
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    /*background: #30323A;*/
    background: #120D31;
    z-index: 22;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background: #b53e47;
}

.slick-prev:before, .slick-next:before {
    color: #FFF;
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.custom-nav .slick-prev, .custom-nav .slick-next {
    display: inline-block;
    position: static;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
    width: 10px;
    height: 10px;
}

.slick-dots li button:before {
    content: "";
    opacity: 1;
    background: #DADADA;
    border-radius: 50%;
}

.slick-dots li.slick-active button:before {
    background-color: #800020;
}

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0;
}

/*=========================================================
	12 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 991px) {
    #home .home-wrap {
        margin-left: 0;
    }

    #aside {
        margin-bottom: 60px;
    }

    .product-reviews {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .banner h1 {
        font-size: 36px;
    }

    .store-filter .pull-right, .store-filter .pull-left {
        float: none !important;
    }

    .store-filter .pull-right {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 480px) {

    .header-btns > li + li {
        margin-left: 0;
    }

    .header-top-links > li > a {
        font-size: smaller;
    }

    ul.header-btns {
        font-size: 0.9em;
    }

    .header-search {
        padding: 0;
    }

    #coming-soon-img {
        height: 50%;
        opacity: 0.3;
        z-index: -1;
    }

    .custom-width {
        padding: 0;
        margin: 4px 0;
    }

    .product.product-single {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .product.product-single .product-thumb {
        margin: 0;
    }

    .product.product-single .product-thumb > a > img {
        min-width: 100px;
        max-width: 100px;
        height: 100px;
        margin: 0;
        padding: 0;
        object-fit: contain;
    }

    .product.product-single .product-body {
        padding: 0 0 0 8px;
    }

    .product.product-single .product-price {
        margin: 8px 0;
    }
}

.pr-category-title {
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subcBox {
    /*height: 100%;*/
    border: 1px solid #80002020;
    padding: 8px;
    border-radius: 4px;
    font-size: 1.1em;
    -webkit-transition: 0.3s all;
    text-align: center;
    margin: 8px 0;
}

.subcBox.active {
    color: #800020;
    background-color: #80002040;
    font-weight: bold;
    border: 1px solid #80002030;
}

.subcBox:hover {
    /*border-bottom: 5px solid #800020;*/
    border: 1px solid #80002000;
    color: #800020;
    background-color: #80002010;
    text-decoration-line: underline;
    text-underline-position: under;
    font-weight: bold;
}

@media (min-width: 992px) {
    .custom-width {
        width: 20%;
        padding: 0 8px;
        margin: 8px 0;
        display: flex;
        justify-content: flex-start;
    }

    .header-account {
        margin-right: 15px;
    }
}

#main {
    margin-top: 15px;
}

th.hawk-response {
    background-color: #80002010;
}

td.hawk-response {
    background-color: #80002010;
}

ul.custom-menu {
    padding: 4px 0px;
}

ul.custom-menu > li {
    padding: 4px 16px;
}

ul.custom-menu > li:hover {
    background-color: #01010110;
}

.btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
    background-color: #3d3f41;
    border-color: #323436
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.light-bg {
    background-color: #4ea8ff;
}

.grp-prod-header {
    background-color: #F6F7F8;
}

.field-icon {
    top: 0;
    right: 15px;
    width: 40px;
    height: 40px;
    position: absolute;
    border: none;
    background-color: transparent;
    margin-left: -25px;
}

label {
    font-weight: normal;
}