/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #D10024
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

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

/*----------------------------*\
	Typography
\*----------------------------*/
.toast-title {
    display: none;
}
@font-face {
  font-family: 'al-mohanadregular';
  src:"{{asset('/front/fonts/AL-Mohanad.ttf')}}",
      "{{asset('/front/fonts/AL-Mohanad Bold.ttf')}}"
       ;
}
@font-face {
  font-family: 'abandonedbold';
  src:"{{asset('front/fonts/abandonedbold.ttf')}}"
       ;
}
body {
    font-family: 'al-mohanadregular' !important;
    /*font-weight: 400;*/
    color: #333;
    /*direction:rtl;*/
    text-align:right;
    overflow-x: hidden;
}

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

a {
    color: #2B2D42;
    font-weight: 500;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

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

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

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

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #D10024;
    border: none;
    border-radius: 40px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.primary-btn:hover,
.primary-btn:focus {
    opacity: 0.9;
    color: #FFF;
}

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

/*-- Text input --*/

.input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    width: 100%;
}

textarea.input {
    padding: 15px;
    min-height: 90px;
}

/*-- Number input --*/

.input-number {
    position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button,
.input-number input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-number input[type="number"] {
    -moz-appearance: textfield;
    height: 40px;
    width: 100%;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    padding: 0px 35px 0px 15px;
}

.input-number .qty-up,
.input-number .qty-down {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-number .qty-up {
    right: 0;
    top: 0;
    border-bottom: 0px;
}

.input-number .qty-down {
    right: 0;
    bottom: 0;
}

.input-number .qty-up:hover,
.input-number .qty-down:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

/*-- Select input --*/

.input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
    width:27%;
}

/*-- checkbox & radio input --*/

.input-radio,
.input-checkbox {
    position: relative;
    display: block;
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.input-radio label,
.input-checkbox label {
    font-weight: 500;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 5px;
    cursor: pointer;
}

.input-radio input[type="radio"]+label span,
.input-checkbox input[type="checkbox"]+label span {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 2px solid #E4E7ED;
    background: #FFF;
}

.input-radio input[type="radio"]+label span {
    border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background-color: #FFF;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
    content: '✔';
    position: absolute;
    top: -2px;
    left: 1px;
    font-size: 10px;
    color: #FFF;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span,
.input-checkbox input[type="checkbox"]:checked+label span {
    background-color: #D10024;
    border-color: #D10024;
}

.input-radio input[type="radio"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

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

/*----------------------------*\
	Section
\*----------------------------*/

.section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
}

.section-title .title {
    display: inline-block;
    text-transform: uppercase;
    margin: 0px;
}

.section-title .section-nav {
    float: right;
}

.section-title .section-nav .section-tab-nav {
    display: inline-block;
}

.section-tab-nav li {
    display: inline-block;
    margin-right: 15px;
}

.section-tab-nav li:last-child {
    margin-right: 0px;
}

.section-tab-nav li a {
    font-weight: 700;
    color: #8D99AE;
}

.section-tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.section-tab-nav li.active a {
    color: #D10024;
}

.section-tab-nav li a:hover:after,
.section-tab-nav li a:focus:after,
.section-tab-nav li.active a:after {
    width: 100%;
}

.section-title .section-nav .products-slick-nav {
    top: 0px;
    right: 0px;
}
/*menu::Use below*/
.dropdown-menu-custom {
    right: 0 !important;
    left: auto !important;
    min-width: 180px !important;
    padding: 0;
}
.dropdown-menu-custom li a {
	padding-top: 5px;
	padding-bottom: 5px;
}
.dropdown-menu-custom-sub {
	top: 0;
	right: 100% !important;
}
/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
    padding: 30px 0px;
    background: #FBFBFC;
    border-bottom: 1px solid #E4E7ED;
    margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 15px;
    text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
    display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
    margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
    content: '/';
    display: inline-block;
    color: #8D99AE;
    margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
    color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
    color: #D10024;
}

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

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

#top-header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #642221;
}

.header-links li {
    display: inline-block;
    margin-left: 15px;
    font-size: 12px;
}

.header-links li:last-child {
    margin-right: 0px;
    width:200px;
}

.header-links li a {
    color: #FFF;
}

.header-links li a:hover {
    color: #D10024;
}

.header-links li i {
    color: #FFF;
    margin-left: 5px;
}
.top-header-li
{

}
/*----------------------------*\
	Logo
\*----------------------------*/

#header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #FFF;
    direction:ltr;
}

.header-logo {
    float: right;
}

.header-logo .logo img {
    display: block;
}

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

.header-search {
    padding: 55px 0px;
}

.header-search form {
    position: relative;
}

.header-search form .input-select {
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
    direction: rtl;
}

.header-search form .input {
    width: calc(100% - 260px);
    margin-right: -4px;
    text-align: right;
}

.header-search form .search-btn {
    height: 40px;
    width: 100px;
    background: #642221;
    color: #FFF;
    font-weight: 700;
    border: none;
    border-radius: 0px 40px 40px 0px;
}

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

.header-ctn {
    float: left;
    padding: 55px 0px;
}

.header-ctn>div {
    display: inline-block;
}

.header-ctn>div+div {
    /*margin-left: 15px;*/
}

.header-ctn>div>a {
    display: block;
    position: relative;
    width: 75px;
    text-align: center;
    color: black;
}

.header-ctn>div>a>i {
    display: block;
    font-size: 18px;
}

.header-ctn>div>a>span {
    font-size: 12px;
}

.header-ctn>div>a>.qty {
    position: absolute;
    right: 15px;
    top: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    color: #FFF;
    background-color: #642221;
}

.header-ctn .menu-toggle {
    display: none;
}

.cart-dropdown {
    position: absolute;
    width: 300px;
    background: #FFF;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
    box-shadow: 0px 0px 0px 2px #E4E7ED;
    z-index: 99;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.dropdown.open>.cart-dropdown {
    opacity: 1;
    visibility: visible;
    z-index:9999;
}

.cart-dropdown .cart-list {
    max-height: 180px;
    overflow-y: scroll;
    margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
    padding: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
    margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
    left: 0px;
    top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
    color: #2B2D42;
}

.cart-dropdown .cart-btns {
    margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns>a {
    display: inline-block;
    width: calc(50% - 0px);
    padding: 12px;
    background-color: #642221;
    color: #FFF;
    text-align: center;
    font-weight: 700;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.cart-dropdown .cart-btns>a:first-child {
    margin-right: -4px;
    background-color: #1e1f29;
}

.cart-dropdown .cart-btns>a:hover {
    opacity: 0.9;
}

.cart-dropdown .cart-summary {
    border-top: 1px solid #E4E7ED;
    padding-top: 15px;
    padding-bottom: 15px;
}
.header-filter
{
    display:none;
}
.apply-filter {
    display: none;
}
.sidebar-header
{
    margin-right: 21%;
}
/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
    position: sticky;
    background: #FFF;
    /*border-bottom: 2px solid #E4E7ED;*/
    /* border-top: 3px solid #642221; */
    z-index: 10;
}

.fixed-header {
    /*position: fixed;*/
    /*top: 0;*/
    bottom:0;
    left: 0;
    width: 100%;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
    margin-left: 30px
}

.main-nav>li>a {
    /*padding: 20px 20px;*/
    font-weight: bold;
    /*font-size: 15px;*/
}

.main-nav>li>a:hover,
.main-nav>li>a:focus,
.main-nav>li.active>a {
    color: #D10024;
    background-color: transparent;
}

.main-nav>li>a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.main-nav>li>a:hover:after,
.main-nav>li>a:focus:after,
.main-nav>li.active>a:after {
    width: 100%;
}

.header-ctn li.nav-toggle {
    display: none;
}
/*.slick-slide*/
/*{*/
/*    float:left !important;*/
/*}*/
.slick-slider .slick-track, .slick-slider .slick-list { direction: ltr; }
/*----------------------------*\
	responsive nav
\*----------------------------*/

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

    #responsive-nav {
        position: fixed;
        left: 0;
        top: 0;
        background: #15161D;
        height: 100vh;
        max-width: 250px;
        width: 0%;
        overflow: hidden;
        z-index: 22;
        padding-top: 60px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

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

    .main-nav {
        margin: 0px;
        float: none;
    }

    .main-nav>li {
        display: block;
        float: none;
    }

    .main-nav>li+li {
        margin-left: 0px;
    }

    .main-nav>li>a {
        padding: 15px;
        color: #FFF;
    }
}
.sw-slider
{
    width: 8% !important;
}
.product-btns
{
    position: absolute;
    top: 160px;
    right: 50px;
}
/*======================================
   Start Checkout Form CSS
========================================*/
.shop.checkout {
    padding: 0;
    background: #fff;
    padding-top: 20px;
    padding-bottom: 50px;
}

.shop.checkout .checkout-form {
    margin-top: 30px;
}

.shop.checkout .checkout-form h2 {
    font-size: 25px;
    color: #333;
    font-weight: 700;
    line-height: 27px;
}

.shop.checkout .checkout-form p {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin-top: 12px;
    margin-bottom: 30px;
}

.shop.checkout .form {}

.shop.checkout .form .form-group {
    margin-bottom: 25px;
}

.shop.checkout .form .form-group label {
    color: #333;
    position: relative;
}

.shop.checkout .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.shop.checkout .form .form-group input {
    width: 100%;
    height: 45px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 3px;
    border-radius: 0px;
    color: #333 !important;
    border: none;
    background: #F6F7FB;
}

.shop.checkout .form .form-group input:hover {}

.shop.checkout .nice-select {
    width: 100%;
    height: 45px;
    line-height: 50px;
    margin-bottom: 25px;
    background: #F6F7FB;
    border-radius: 0px;
    border: none;
}

.shop.checkout .nice-select .list {
    width: 100%;
    height: 300px;
    overflow: scroll;
}

.shop.checkout .nice-select .list li {}

.shop.checkout .nice-select .list li.option {
    color: #333;
}

.shop.checkout .nice-select .list li.option:hover {
    background: #F6F7FB;
    color: #333;
}

.shop.checkout .form .address input {
    margin-bottom: 15px;
}

.shop.checkout .form .address input:last-child {
    margin: 0;
}

.shop.checkout .form .create-account {
    margin: 0;
}

.shop.checkout .form .create-account input {
    width: auto;
    display: inline-block;
    height: auto;
    border-radius: 100%;
    margin-right: 3px;
}

.shop.checkout .form .create-account label {
    display: inline-block;
    margin: 0;
}

.shop.checkout .order-details {
    margin-top: 30px;
    background: #fff;
    padding: 15px 0 30px 0;
    border: 1px solid #eee;
}

.shop.checkout .single-widget {
    margin-bottom: 30px;
}

.shop.checkout .single-widget:last-child {
    margin: 0;
}

.shop.checkout .single-widget h2 {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    line-height: 24px;
    text-transform: uppercase;
    color: #333;
    padding-bottom: 5px;
}

.shop.checkout .single-widget h2:before {
    position: absolute;
    content: "";
    right: 30px;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #642221;
}

.shop.checkout .single-widget .content ul {
    margin-top: 30px;
}

.shop.checkout .single-widget .content ul li {
    display: block;
    padding: 0px 30px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.shop.checkout .single-widget .content ul li span {
    display: inline-block;
    float: left;
}

.shop.checkout .single-widget .content ul li.last {
    padding-top: 12px;
    border-top: 1px solid #ebebeb;
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #333;
}

.shop.checkout .single-widget .checkbox {
    text-align: right;
    margin: 0;
    padding: 0px 30px;
    margin-top: 30px;
}

.shop.checkout .single-widget.payement {
    padding: 0px 38px;
    text-align: center;
    margin-top: 30px;
}

.shop.checkout .single-widget.get-button {
    text-align: center;
    padding: 0px 35px;
}

.shop.checkout .single-widget.get-button .btn {
    height: 46px;
    width: 100%;
    line-height: 19px;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
    background-color: #642221;
}

/*======================================
   End Checkout Form CSS
========================================*/

/*======================================
   Start Shopping Cart CSS
========================================*/
.table.shopping-summery {
    background: #fff;
}

.shopping-cart {
    background: #f6f6f6;
    padding: 50px 0;
}

.shopping-summery thead .main-hading {
    padding: 0px 50px;
}

.shopping-summery thead {
    background: #642221;
    color: #fff;
}

.shopping-summery thead tr th {
    border: none;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.shopping-summery tbody tr {
    border-bottom: 1px solid #F7941D;
    margin-top: 20px;
}

.shopping-summery tbody tr img {
    border-radius: 0;
    width: 100px;
    height: auto;
}

.shopping-summery tbody tr:last-child {
    border: none;
}

.shopping-summery tbody .product-name a {
    font-weight: 600;
    color: #282828;
    font-weight: 600;
    font-size: 17px;
}

.shopping-cart .table p {
    font-size: 14px;
    color: #666;
}

.shopping-summery tbody .product-name a:hover {
    color: #F7941D;
}

.shopping-summery tbody .product img {
    max-width: 70px;
    border-radius: 100%;
    max-height: 65px;
    border: 1px solid #e6e6e6;
    padding: 4px;
}

.shopping-summery tbody .product:hover img {
    border-color: #F7941D;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
}

.shopping-cart .border {}

.shopping-cart .table .remove-icon {
    font-size: 16px;
}

.shopping-cart .table td {
    vertical-align: middle;
    border-top: 1px solid #eee;
    padding: 30px;
}

.shopping-summery tbody .price {
    text-align: center;
}

.shopping-summery tbody .price span {}

.shopping-cart tbody .qty .input-group {
    width: 175px;
    display: inline-block;
}

.shopping-cart .qty .button {
    display: inline-block;
    position: absolute;
    top: 0;
}

.shopping-cart .qty .button.minus {
    left: 0;
    border-radius: 0;
    overflow: hidden;
}

.shopping-cart .qty .button.plus {
    right: 0;
    border-radius: 0;
    overflow: hidden;
}

.shopping-cart .qty .button .btn {
    padding: 0;
    width: 44px;
    height: 47px;
    line-height: 50px;
    border-radius: 0px;
    background: transparent;
    color: #282828;
    border: none;
    font-size: 12px;
}

.shopping-cart .qty .button .btn:hover {
    color: #F7941D;
}

.shopping-cart .qty .input-number {
    border: 1px solid #eceded;
    width: 100%;
    text-align: center;
    height: 47px;
    border-radius: 0;
    overflow: hidden;
    padding: 0px 45px;
}

.shopping-summery tbody .total-amount {
    text-align: center;
}

.shopping-summery tbody .total-amount span {}

.shopping-summery tbody .action {
    text-align: center;
}

.shopping-summery tbody .action a:hover {
    color: #F7941D;
}

.shopping-cart .total-amount {
    margin-top: 50px;
}

.shopping-cart .total-amount .left {}

.shopping-cart .total-amount .left .coupon {}

.shopping-cart .total-amount .left .coupon form {}

.shopping-cart .total-amount .left .coupon form input {
    width: 220px;
    display: inline-block;
    height: 48px;
    color: #333;
    padding: 0px 20px;
    border: none;
    box-shadow: 0px 0px 5px #0000000a;
}

.shopping-cart .total-amount .left .coupon form .btn {
    display: inline-block;
    height: 48px;
    border: navajowhite;
    margin-left: 4px;
    background: transparent;
    color: #333;
    background: #fff;
    box-shadow: 0px 0px 5px #00000012;
}

.shopping-cart .total-amount .left .coupon form .btn:hover {
    background: #fff;
    color: #F7941D;
}

.shopping-cart .total-amount .left label {
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

.shopping-cart .total-amount .left .checkbox {
    text-align: left;
    margin: 0;
    margin-top: 20px;
}

.shopping-cart .total-amount .left .checkbox label {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.shopping-cart .total-amount .left .checkbox label:hover {
    cursor: pointer;
}

.shopping-cart .total-amount .left .checkbox label input {
    display: none;
}

.shopping-cart .total-amount .left .checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 1px solid #555555;
    border-radius: 0px;
}

.shopping-cart .total-amount .left .checkbox label::after {
    position: absolute;
    content: "\f00c";
    font-family: "Fontawesome";
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    line-height: 24px;
    left: 3px;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
    font-size: 11px;
}

.shopping-cart .total-amount .left .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shopping-cart .total-amount .right {
    padding-left: 100px;
}

.shopping-cart .total-amount .right ul {}

.shopping-cart .total-amount .right ul li {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.shopping-cart .total-amount .right ul li.last {
    padding-top: 12px;
    border-top: 1px solid #c8c8c8;
    color: #333;
    font-size: 15px;
    font-weight: 400;
}

.shopping-cart .total-amount .right ul li span {
    display: inline-block;
    float: left;
}

.shopping-cart .total-amount .right .button5 .btn {
    text-align: center;
    border-radius: 0;
    width: 100%;
    margin-top: 10px;
    height: 46px;
    line-height: 18px;
    font-size: 13px;
    color: #000;
    background-color: #ffffff;
}

/*======================================
   End Shopping Cart CSS
========================================*/
/*======================================
  21. Contact CSS
========================================*/
.contact-us {
    position: relative;
    z-index: 43;
}

.contact-us .title {
    margin-bottom: 30px;
}

.contact-us .title h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #642221;
}

.contact-us .title h3 {
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
}

.contact-us .single-head {
    padding: 50px;
    box-shadow: 0px 0px 15px #0000001a;
    height: 100%;
}

.contact-us .single-info {
    text-align: right;
    margin-bottom: 30px;
}

.contact-us .single-info i {
    color: #fff;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 15px;
    height: 40px;
    width: 40px;
    display: block;
    text-align: center;
    border-radius: 3px;
    line-height: 40px;
    background: #642221;
}

.contact-us .single-info ul .contact-us .single-info ul li {
    margin-bottom: 5px;
}

.contact-us .single-info ul li:last-child {
    margin-bottom: 0;
}

.contact-us .single-info ul li a {
    font-weight: 400;
}

.contact-us .single-info ul li a:hover {
    color: #F7941D;
}

.contact-us .single-info .title {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
    font-size: 18px;
}

.contact-us .form-main {
    box-shadow: 0px 0px 15px #0000001a;
    padding: 50px;
}

.contact-us .form .form-group input {
    height: 48px;
    line-height: 48px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 0px 20px;
    color: #333;
    border-radius: 0px;
    font-weight: 400;
}

.contact-us .form .form-group textarea {
    height: 180px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 15px 20px;
    color: #333;
    border-radius: 0px;
    resize: none;
    font-weight: 400;
}

.contact-us .form .form-group label {
    color: #333;
    position: relative;
}

.contact-us .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.contact-us .form .button {
    margin: 0;
}

.contact-us .form .button .btn {
    height: 50px;
    border: none;
}

#myMap {
    height: 500px;
    width: 100%;
}

/*======================================
  End Contact CSS
========================================*/
/*======================================
   Login & Register CSS
========================================*/
.shop.login {
    /*padding: 40px 0;*/
}

.shop.login .login-form h2 {
    position: relative;
    font-size: 35px;
    color: #333;
    font-weight: 400;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 20px;
    text-align: center;
}

.shop.login .login-form h2:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #642221;
    margin-left: -25px;
}

.shop.login .login-form p {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.shop.login .form {
    margin-top: 30px;
}

.shop.login .form .form-group {
    margin-bottom: 22px;
}

.shop.login .form .form-group input {
    width: 100%;
    height: 45px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 3px;
    border-radius: 0px;
    color: #333 !important;
    border: none;
    background: #F6F7FB;
}

.shop.login .form .form-group label {
    color: #333;
    position: relative;
}

.shop.login .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.shop.login .form .form-group input:hover {
    border-color: #1308a3;
    color: #1308a3;
}

.shop.login .form .form-group.login-btn {
    margin: 0;
}

.shop.login .form button {
    border: none;
}

.shop.login .form .btn {
    display: inline-block;
    margin-right: 10px;
    height: 46px;
    color: #fff;
    line-height: 20px;
    background-color: #642221;
}

.shop.login .form .btn:hover {
    background: #642221;
    color: #fff;
}

.shop.login .login-form .checkbox {
    text-align: left;
    margin: 0;
    margin-top: 20px;
    display: inline-block;
}

.shop.login .login-form .checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.shop.login .login-form .checkbox label:hover {
    cursor: pointer;
}

.shop.login .login-form .checkbox label input {
    display: none;
}

.shop.login .login-form .checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border: 1px solid #555555;
    border-radius: 0px;
}

.shop.login .login-form .checkbox label::after {
    position: absolute;
    content: "\f00c";
    font-family: "Fontawesome";
    width: 12px;
    height: 12px;
    line-height: 23px;
    left: 2px;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
    font-size: 9px;
}

.shop.login .login-form .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shop.login .login-form .lost-pass {
    display: inline-block;
    margin-left: 25px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.shop.login .login-form .lost-pass:hover {
    color: #F7941D;
}
.login-form-title
{
    background: #FBFBFC;
    /* border-bottom: 1px solid #E4E7ED;    */
    /* padding: 15px; */
}
/*======================================
	End Login CSS
========================================*/

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
}

.shop:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 60%;
    /*background: #D10024;*/
    opacity: 0.9;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}

/*.shop:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    left: 1px;*/
/*    width: 100%;*/
    /*background: #D10024;*/
/*    opacity: 0.9;*/
/*    -webkit-transform: skewX(-45deg) translateX(-100%);*/
/*    -ms-transform: skewX(-45deg) translateX(-100%);*/
/*    transform: skewX(-45deg) translateX(-100%);*/
/*}*/

.shop .shop-img {
    position: relative;
    background-color: #E4E7ED;
    z-index: -1;
}

.shop .shop-img>img {
    width: 100%;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.shop:hover .shop-img>img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.shop .shop-body {
    position: absolute;
    top: 0;
    width: 75%;
    padding: 30px;
    z-index: 10;
}

.shop .shop-body h3 {
    color: #FFF;
}

.shop .shop-body .cta-btn {
    color: #FFF;
    text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
    padding: 60px 0px;
    margin: 30px 0px;
    background-color: #E4E7ED;
    background-image: url('../img/hotdeal.png');
    background-position: center;
    background-repeat: no-repeat;
}

.hot-deal {
    text-align: center;
}

.hot-deal .hot-deal-countdown {
    margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: #642221;
    text-align: center;
    border-radius: 50%;
    margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
    color: #FFF;
    margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #FFF;
}

.hot-deal p {
    text-transform: uppercase;
    font-size: 24px;
}

.hot-deal .cta-btn {
    margin-top: 15px;
}

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

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

.product {
    position: relative;
    margin: 15px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    height:440px;
}

.product:hover {
    -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #642221;
    box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #642221;
}

.product .product-img {
    position: relative;
}

.product .product-img>img {
    width: 100%;
    height:200px;
    object-fit:contain;
}

.product .product-img .product-label {
    position: absolute;
    top: 15px;
    left: 15px;
}

.product .product-img .product-label>span {
    border: 2px solid;
    padding: 2px 10px;
    font-size: 12px;
}

.product .product-img .product-label>span.sale {
    background-color: #FFF;
    border-color: #642221;
    color: #642221;
}

.product .product-img .product-label>span.new {
    background-color: #642221;
    border-color: #642221;
    color: #FFF;
}

.product .product-body {
    position: relative;
    /*padding: 15px;*/
    background-color: #FFF;
    text-align: center;
    z-index: 20;
    /*height: 205px;*/
}

.product .product-body .product-category {
    text-transform: uppercase;
    font-size: 12px;
    color: #8D99AE;
}

.product .product-body .product-name {
    text-transform: uppercase;
    font-size: 14px;
}

.product .product-body .product-name>a {
    font-weight: 700;
}

.product .product-body .product-name>a:hover,
.product .product-body .product-name>a:focus {
    color: #642221;
}

.product .product-body .product-price {
    color: #642221;
    font-size: 18px;
}

.product .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product .product-body .product-rating {
    position: relative;
    margin: 15px 0px 10px;
    height: 20px;
}

.product .product-body .product-rating>i {
    position: relative;
    width: 14px;
    margin-right: -4px;
    background: #FFF;
    color: #E4E7ED;
    z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
    color: #642221;
}

.product .product-body .product-rating:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
    background-color: #E4E7ED;
    color: #ffffff;
    border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: #1e1f29;
    color: #FFF;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
}

.product .add-to-cart {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    padding: 15px;
    /*background: #f5e08c;*/
    text-align: center;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 2;
}

.product:hover .add-to-cart {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #642221;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #642221;
    opacity: 0;
    visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
    background-color: #FFF;
    color: #642221;
    border-color: #642221;
    padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible;
}

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

.product-widget {
    position: relative;
}

.product-widget+.product-widget {
    margin: 30px 0px;
}

.product-widget .product-img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
}

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

.product-widget .product-body {
    padding-left: 75px;
    min-height: 60px;
}

.product-widget .product-body .product-category {
    text-transform: uppercase;
    font-size: 10px;
    color: #8D99AE;
}

.product-widget .product-body .product-name {
    text-transform: uppercase;
    font-size: 12px;
}

.product-widget .product-body .product-name>a {
    font-weight: 700;
}

.product-widget .product-body .product-name>a:hover,
.product-widget .product-body .product-name>a:focus {
    color: #D10024;
}

.product-widget .product-body .product-price {
    font-size: 14px;
    color: #D10024;
}

.product-widget .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product-widget .product-body .product-price .qty {
    font-weight: 400;
    margin-right: 10px;
}

.product-widget .delete {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 14px;
    text-align: center;
    font-size: 10px;
    padding: 0;
    background: #1e1f29;
    border: none;
    color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
    padding-bottom: 60px;
    margin-bottom: -60px;
    z-index: 2;
}

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

.products-tabs>.tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    padding-bottom: 60px;
    margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.products-slick-nav {
    position: absolute;
    right: 15px;
    z-index: 10;
    top:50%;
}

.products-slick-nav .slick-prev,
.products-slick-nav .slick-next {
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width:50px;
    height: 50px;
    display: inline-block !important;
    /*margin: 0px 2px;*/
}

.products-slick-nav .slick-prev:before,
.products-slick-nav .slick-next:before {
    font-size: 14px;
}

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

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

.aside+.aside {
    margin-top: 30px;
}

.aside>.aside-title {
    text-transform: uppercase;
    font-size: 18px;
    margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
    margin-top: 10px;
}

.checkbox-filter .input-radio label,
.checkbox-filter .input-checkbox label {
    font-size: 12px;
}

.checkbox-filter .input-radio label small,
.checkbox-filter .input-checkbox label small {
    color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
    margin-bottom: 15px;
}

.noUi-target {
    background-color: #FFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #E4E7ED;
    border-radius: 0px;
}

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

.noUi-horizontal {
    height: 6px;
}

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

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

.price-filter .input-number {
    display: inline-block;
    width: calc(50% - 7px);
}

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

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

/*-- Store Sort --*/

.store-sort {
    display: inline-block;
}

.store-sort label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
    float: right;
}

.store-grid li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.store-grid li+li {
    margin-left: 5px;
}

.store-grid li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.store-grid li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    cursor: default;
}

.store-grid li a {
    display: block;
}

/*-- Store Pagination --*/

.store-pagination {
    float: right;
}

.store-pagination li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.store-pagination li+li {
    margin-left: 5px;
}

.store-pagination li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.store-pagination li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    font-weight: 500;
    cursor: default;
}

.store-pagination li a {
    display: block;
}

.store-qty {
    margin-right: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

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

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

#product-main-img .slick-prev {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    left: 15px;
}

#product-main-img .slick-next {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    right: 15px;
}

#product-main-img .slick-prev,
#product-main-img .slick-next {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-main-img:hover .slick-prev,
#product-main-img:hover .slick-next {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

#product-main-img .zoomImg {
    background-color: #FFF;
}

#product-imgs .product-preview {
    margin: 0px 5px;
    border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
    border-color: #D10024;
}

#product-imgs .slick-prev {
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-next {
    top: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
    content: "\f106";
}

#product-imgs .slick-next:before {
    content: "\f107";
}

.product-preview img {
    width: 100%;
}

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

.product-details .product-name {
    text-transform: uppercase;
    font-size: 18px;
}

.product-details .product-rating {
    display: inline-block;
    margin-right: 15px;
}

.product-details .product-rating>i {
    color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
    color: #D10024;
}

.product-details .review-link {
    font-size: 12px;
}

.product-details .product-price {
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #D10024;
}

.product-details .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
}

.product-details .product-available {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 30px;
    color: #D10024;
}

.product-details .product-options {
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-details .product-options label {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;
}

.product-details .product-options .input-select {
    width: 90px;
}

.product-details .add-to-cart {
    margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #ef233c;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #D10024;
    opacity: 0;
    visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
    background-color: #FFF;
    color: #D10024;
    border-color: #D10024;
    padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible;
}

.product-details .add-to-cart .qty-label {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 15px;
    margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
    width: 90px;
    display: inline-block;
}

.product-details .product-btns li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.product-details .product-btns li+li {
    margin-left: 15px;
}

.product-details .product-links {
    margin-top: 15px;
}

.product-details .product-links li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

.product-details .product-links li+li {
    margin-left: 10px;
}

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

#product-tab {
    margin-top: 60px;
}

#product-tab .tab-nav {
    position: relative;
    text-align: center;
    padding: 15px 0px;
    margin-bottom: 30px;
}

#product-tab .tab-nav:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: #E4E7ED;
    z-index: -1;
}

#product-tab .tab-nav li {
    display: inline-block;
    background: #FFF;
    padding: 0px 15px;
}

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

#product-tab .tab-nav li a {
    display: block;
    font-weight: 700;
    color: #8D99AE;
}

#product-tab .tab-nav li.active a {
    color: #D10024;
}

#product-tab .tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after,
#product-tab .tab-nav li a:focus:after,
#product-tab .tab-nav li.active a:after {
    width: 100%;
}

/*-- Rating --*/

.rating-avg {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.rating-avg .rating-stars {
    margin-left: 10px;
}

.rating-avg .rating-stars,
.rating .rating-stars {
    display: inline-block;
}

.rating-avg .rating-stars>i,
.rating .rating-stars>i {
    color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star,
.rating .rating-stars>i.fa-star {
    color: #D10024;
}

.rating li {
    margin: 5px 0px;
}

.rating .rating-progress {
    position: relative;
    display: inline-block;
    height: 9px;
    background-color: #E4E7ED;
    width: 120px;
    margin: 0px 10px;
    border-radius: 5px;
}

.rating .rating-progress>div {
    background-color: #D10024;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}

.rating .sum {
    display: inline-block;
    font-size: 12px;
    color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
    position: relative;
    padding-left: 145px;
    margin-bottom: 30px;
}

.reviews .review-heading {
    position: absolute;
    width: 130px;
    left: 0;
    top: 0;
    height: 70px;
}

.reviews .review-body {
    min-height: 70px;
}

.reviews .review-heading .name {
    margin-bottom: 5px;
    margin-top: 0px;
}

.reviews .review-heading .date {
    color: #8D99AE;
    font-size: 10px;
    margin: 0;
}

.reviews .review-heading .review-rating {
    margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
    color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
    color: #D10024;
}

.reviews-pagination {
    text-align: center;
}

.reviews-pagination li {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #FFF;
    border: 1px solid #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.reviews-pagination li:hover {
    background-color: #E4E7ED;
    color: #D10024;
}

.reviews-pagination li.active {
    background-color: #D10024;
    border-color: #D10024;
    color: #FFF;
    cursor: default;
}

.reviews-pagination li a {
    display: block;
}

/*-- Review Form --*/

.review-form .input {
    margin-bottom: 15px;
}

.review-form .input-rating {
    margin-bottom: 15px;
}

.review-form .input-rating .stars {
    display: inline-block;
    vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
    display: none;
}

.review-form .input-rating .stars>label {
    float: right;
    cursor: pointer;
    padding: 0px 3px;
    margin: 0px;
}

.review-form .input-rating .stars>label:before {
    content: "\f006";
    font-family: FontAwesome;
    color: #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before,
.review-form .input-rating .stars>label:hover~label:before {
    color: #D10024;
}

.review-form .input-rating .stars>input:checked label:before,
.review-form .input-rating .stars>input:checked~label:before {
    content: "\f005";
    color: #D10024;
}
.add-to-wishlist
{
    position: relative;
    width: 40px;
    height: 0;
    line-height: 30px;
    background: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}
.tooltipp
{
     position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: #1e1f29;
    color: #FFF;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}
/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
    margin-bottom: 30px;
}

.shiping-details {
    margin-bottom: 30px;
}

.order-details {
    position: relative;
    padding: 0px 30px 30px;
    border-right: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: -15px;
    height: 30px;
    border-top: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-right: 1px solid #E4E7ED;
}

.order-summary {
    margin: 15px 0px;
}

.order-summary .order-col {
    display: table;
    width: 100%;
}

.order-summary .order-col:after {
    content: "";
    display: block;
    clear: both;
}

.order-summary .order-col>div {
    display: table-cell;
    padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
    width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
    width: 150px;
    text-align: right;
}

.order-summary .order-col .order-total {
    font-size: 24px;
    color: #D10024;
}

.order-details .payment-method {
    margin: 30px 0px;
}

.order-details .order-submit {
    display: block;
    margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
    border-top: 2px solid #E4E7ED;
    border-bottom: 3px solid #D10024;
    margin-top: 30px;
}

.newsletter {
    text-align: center;
}

.newsletter p {
    font-size: 24px;
}

.newsletter form {
    position: relative;
    max-width: 520px;
    margin: 30px auto;
}

.newsletter form:after {
    content: "\f003";
    font-family: FontAwesome;
    position: absolute;
    font-size: 160px;
    color: #E4E7ED;
    top: 15px;
    -webkit-transform: translateY(-50%) rotate(15deg);
    -ms-transform: translateY(-50%) rotate(15deg);
    transform: translateY(-50%) rotate(15deg);
    z-index: -1;
    left: -90px;
}

.newsletter form .input {
    width: calc(100% - 160px);
    margin-right: -4px;
    border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
    width: 160px;
    height: 40px;
    font-weight: 700;
    background: #D10024;
    color: #FFF;
    border: none;
    border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
    text-align: center;
}

.newsletter .newsletter-follow li {
    display: inline-block;
    margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
    margin-right: 0px;
}

.newsletter .newsletter-follow li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover,
.newsletter .newsletter-follow li a:focus {
    background-color: #E4E7ED;
    color: #D10024;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
    background: #642221;
    color: white;
}

#bottom-footer {
    background: #642221;
}

.footer {
    margin: 30px 0px;
}

.footer .footer-title {
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0px 0px 30px;
}

.footer-links li+li {
    margin-top: 15px;
}

.footer-links li a {
    color: white;
}

.footer-links li i {
    margin-left: 15px;
    color: white;
    width: 14px;
    text-align: center;
}

.footer-links li a:hover {
    color: white;
}

.copyright {
    margin-top: 30px;
    display: block;
    font-size: 12px;
}

.footer-payments li {
    display: inline-block;
    margin-right: 5px;
}

.footer-payments li a {
    color: white;
    font-size: 36px;
    display: block;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

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

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    border-radius: 50%;
    z-index: 22;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.slick-prev:hover,
.slick-next:hover{
    background-color: #642221;
    border-color: #642221;
}

.slick-prev:before,
.slick-next:before {
    font-family: FontAwesome;
    color: #2B2D42;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

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

.slick-prev {
    right: -55px !important;
}

.slick-next {
    left: -1093px !important;
}

/*----------------------------*\
	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: #E4E7ED;
    border-radius: 50%;
}

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

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0px;
}
.pull-left {
    margin: 5px;
}
.CategoryPage__filters{
    position: relative;
    height: 100%;
    top:-35px;
}
.CategoryPage__inner {
    /* display: grid; */
    grid-template-columns: 213px 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-top: 2.75rem;
}
/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {
    .slick-next {
    right: -75px;
}
.slick-prev {
    left: -1115px;
}
}
@media only screen and (max-width: 1200px) {
    .slick-next {
    right: -70px;
}
.slick-prev {
    left: -1110px;
}
}
@media only screen and (max-width: 991px) {
    #top-header .header-links.pull-left {
        float: none !important;
    }

    #top-header .header-links.pull-right {
        float: none !important;

    }

    .header-logo {
        float: none;
        text-align: center;
    }

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

    #product-imgs {
        margin-bottom: 60px;
        margin-top: 15px;
    }

    #rating {
        text-align: center;
    }

    #reviews {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    /*.slick-next*/
    /*{*/
    /*    right:-15px;*/
    /*}*/
    /*.slick-prev {*/
    /*left: -205px;*/
    /*}*/
    .products-slick-nav .slick-prev, .products-slick-nav .slick-next
    {
        width:40px;
        height:40px;
    }
      .products-slick .product.slick-slide {
    margin: 4px;
    width: 180px;
    }
   .slick-next
    {
        right:320px !important;
        /*left:autio !important;*/
    }
    .slick-prev {
        right: -15px !important;
    }
    .product .product-body
    {
        padding: 0;
        /*height: 245px;*/
    }
    .product
    {
        height:400px;
    }
    .product .product-img>img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}
    .product .product-body .product-rating {
    position: relative;
    margin: 0px 0px 0px;
    height: 15px;
}
.top-header-li
{
    display:none !important;
}
.CategoryPage__filters
{
 display:none;
}
.header-ctn {
    float: left;
    padding: 20px 1px 0 0;
}
  .header-filter
    {
        display:block;
    }
    #sidebar_ar {
    position: fixed;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: #ffffff;
    height: 100%;
    max-width: 100%;
    width: 0%;
    overflow: scroll;
    z-index: 9999;
    /*padding-top: 60px;*/
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#sidebar_ar.active {
    display: block;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
}
.apply-filter {
    display: block;
}
.product-btns
{
     right:0;
}
.product-btns-inner
{
    right: 85px;
}
}

@media only screen and (max-width: 767px) {
    .section-title .section-nav {
        float: none;
        margin-top: 10px;
    }

    .section-tab-nav li {
        margin-top: 10px;
    }
    /*.slick-next*/
    /*{*/
    /*    right:-15px;*/
    /*}*/
    /*.slick-prev {*/
    /*left: -260px;*/
    /*}*/
    /*.products-slick .product.slick-slide {*/
    /*margin: 70px;*/
    /*width: 235px !important;*/
    /*} */
   /*   .products-slick .product.slick-slide {*/
   /* margin: 75px;*/
   /* width: 235px !important;*/
   /* }*/
   /*.slick-next*/
   /* {*/
   /*     right:-5px;*/
   /* }*/
   /* .slick-prev {*/
   /* left:-253px;*/
   /* }*/
   .top-header-li
    {
        display:none !important;
    }
     .product .product-body .product-btns>button
    {
        margin:0 -5px -5px -5px;
       padding: 0;
    }
    .quick-view
    {
        padding: 25px 0;
    }
      .CategoryPage__filters
    {
        display:none;
    }
    .header-ctn {
    float: left;
    padding: 20px 1px 0 0;
    }
    .header-filter
    {
        display:block;
    }
    #sidebar_ar {
   position: fixed;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: #ffffff;
    height: 100%;
    max-width: 100%;
    width: 0%;
    overflow: scroll;
    z-index: 9999;
    /*padding-top: 60px;*/
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#sidebar_ar.active {
    display: block;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
}
.apply-filter {
    display: block;
}
.product-btns
{
    right: 0px;
}
.product-btns-inner
{
    right: 85px;
}
}

@media only screen and (max-width: 480px) {
    [class*='col-xs'] {
        width: 100%;
    }

    .store-grid {
        float: none;
        margin-top: 10px;
    }

    .store-pagination {
        float: none;
        margin-top: 10px;
    }
    .top-header-li
    {
        display:none !important;
    }
    .swiper-text {
    color: #fff;
    padding-top: 28px;
    padding-right: 15%;
    width: 100%;
   }
   .swiper-slide {
    width: 20% !important;
   }
    .product .product-body .product-btns>button
    {
        margin:0 -5px -5px -5px;
        padding: 0;
    }
    .quick-view
    {
        padding: 25px 0;
    }
      .CategoryPage__filters
    {
        display:none;
    }
    .header-ctn {
    float: left;
    padding: 20px 20px 0 0;
    width: 100%;
    }
    .header-filter
    {
        display:block;
    }
    #sidebar_ar {
   position: fixed;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: #ffffff;
    height: 100%;
    max-width: 100%;
    width: 0%;
    overflow: scroll;
    z-index: 9999;
    /*padding-top: 60px;*/
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}
#sidebar_ar.active {
    display: block;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
}
.apply-filter {
    display: block;
}
.product-btns
{
      right:0;
}
.product-btns-inner
{
    right: 85px;
}
}

@media screen and (max-width: 960px) {
    .header-logo {
        float: none;
    }

    .header-logo a {
        width: 100%;
    }
    .top-header-li
    {
        display:none !important;
    }
/*    .products-slick .product.slick-slide {*/
/*    margin: 85px;*/
/*    width: 235px !important;*/
/*}*/
}

@media (max-width:375px)
{
    .product
    {
        height: 410px;
    }
    .slick-next {
    right: 288px !important;
    }
    .slick-prev {
    right: -8px;
    }
    .top-header-li
    {
        display:none !important;
    }
    .products-slick .product.slick-slide {
    margin: 4px;
    width: 180px;
    }
    .product .product-body .product-btns>button
    {
        margin:0 -5px -5px -5px;
        padding: 0;
    }
    .quick-view
    {
        padding: 25px 0;
    }
      .accordion
    {
      width: 95%;
      margin: 2rem 1rem;
    }
    .header-search
    {
      padding: 20px 0;
    }
    .swiper-slide
    {
        width: 30% !important;
        margin-right: 0 !important;
        margin-left: 5px !important;
    }
    .swiper-text
    {
        padding-right:20px;
    }
     .input-select
    {
        width: 40%;
    }
     .header-search form .input
    {
        width: calc(100% - 245px);
    }
      .CategoryPage__filters
    {
        display:none;
    }
    .header-ctn {
    float: left;
    padding: 20px 1px 0 0;
    }
    .header-filter
    {
        display:block;
    }
    #sidebar_ar {
   position: fixed;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: #ffffff;
    height: 100%;
    max-width: 100%;
    width: 0%;
    overflow: scroll;
    z-index: 9999;
    /*padding-top: 60px;*/
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#sidebar_ar.active {
    display: block;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
}
.apply-filter {
    display: block;
}
}
@media (max-width:414px)
{

    .slick-next {
    right:313px !important;
    }
    .top-header-li
    {
        display:none !important;
    }
    .products-slick .product.slick-slide {
    margin: 6px;
    width: 195px;
    }
   .product .product-body .product-btns>button
    {
        margin:0 -5px -5px -5px;
        padding: 0;
    }
    .quick-view
    {
        padding: 25px 0;
    }
       .accordion
    {
      width: 95%;
      margin: 2rem 1rem;
    }
    .header-search
    {
      padding: 20px 20px;
      width:100%;
    }
    .swiper-slide
    {
        width: 30% !important;
        margin-right: 0 !important;
        margin-left: 5px !important;
    }
    .swiper-text
    {
        padding-right: 15px;
        width: 100% !important;
    }
     .input-select
    {
        width: 32%;
    }
     .header-search form .input
    {
        width: calc(100% - 254px);
    }
      .CategoryPage__filters
    {
        display:none;
    }
    .header-ctn {
    float: left;
    padding: 20px 10px 0 0;
    width:100%;
    }
    .header-filter
    {
        display:block;
    }
    #sidebar_ar {
    position: fixed;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: #ffffff;
    height: 100%;
    max-width: 100%;
    width: 0%;
    overflow: scroll;
    z-index: 9999;
    /*padding-top: 60px;*/
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#sidebar_ar.active {
    display: block;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
}
.apply-filter {
    display: block;
}
.product-btns
{
    right:0;
}
.product-btns-inner
{
    right: 85px;
}
}
@media (max-width:412px)
{
     .products-slick .product.slick-slide {
    margin: 6px;
    width: 185px;
    }
       .accordion
    {
      width: 95%;
      margin: 2rem 1rem;
    }
    .header-search
    {
      padding: 20px 10px !important;
      width:100% !important;
    }
    .swiper-slide
    {
        width: 30% !important;
        margin-right: 0 !important;
        margin-left: 5px !important;
    }
    .swiper-text
    {
        padding-right:20px;
    }
     .input-select
    {
        width: 40%;
    }
     .header-search form .input
    {
        width: calc(100% - 245px) !important;
    }
      .CategoryPage__filters
    {
        display:none;
    }
    .header-ctn {
    float: left;
    padding: 20px 1px 0 0;
    }
     .header-filter
    {
        display:block;
    }
    #sidebar_ar {
   position: fixed;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: #ffffff;
    height: 100%;
    max-width: 100%;
    width: 0%;
    overflow: scroll;
    z-index: 9999;
    /*padding-top: 60px;*/
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#sidebar_ar.active {
    display: block;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
}
.apply-filter {
    display: block;
}
.product-btns
{
   right: 0;
}
.product-btns-inner
{
    right: 85px;
}
}
@media screen and (max-width:430px)
{
    .header-search {
    padding: 20px 58px 20px 15px;
    width: 108%;
}
.header-search form .input
{
    width: calc(100% - 210px);
    margin-right: -4px;
    text-align: right;
}
.product-btns
{
   right: 12px;
}
.product-btns-inner
{
    right: 110px;
}
}
@media (max-width:390px)
{
    .product
    {
        height: 410px !important;
    }
    .top-header-li
    {
        display:none !important;
    }
    .product .product-body .product-btns>button
    {
        margin:0 -5px -5px -8px;
        padding: 0;
    }
    .quick-view
    {
        padding: 25px 0;
    }
       .accordion
    {
      width: 95%;
      margin: 2rem 1rem;
    }
    .header-search
    {
      padding: 20px 15px 0 0;
    }
    .swiper-slide
    {
        width: 30% !important;
        margin-right: 0 !important;
        margin-left: 5px !important;
    }
    .swiper-text
    {
        padding-right: 15px;
        width: 100% !important;
    }
     .input-select
    {
        width: 40%;
    }
     .header-search form .input
    {
        width: calc(100% - 245px);
    }
    .CategoryPage__filters
    {
        display:none;
    }
    .header-ctn {
    float: left;
    /*padding: 20px 1px 0 0; */
    width:100%;
    }
    .header-filter
    {
        display:block;
    }
    #sidebar_ar {
    position: fixed;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: #ffffff;
    height: 100%;
    max-width: 100%;
    width: 0%;
    overflow: scroll;
    z-index: 9999;
    /*padding-top: 60px;*/
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#sidebar_ar.active {
    display: block;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
}
.apply-filter {
    display: block;
}
.product-btns
{
   right:0;
}
.product-btns-inner
{
    right: 85px;
}
}
@media (max-width:360px)
{
     .products-slick .product.slick-slide {
    margin: 2px ;
    width: 178px ;
    }
    .product .product-body .product-btns>button
    {
        margin:0 -5px -5px -10px;
        padding: 0;
    }
    .quick-view
    {
        padding: 25px 0;
    }
    .slick-next
    {
       right: 266px !important
    }
       .accordion
    {
      width: 95%;
      margin: 2rem 1rem;
    }
    .header-search
    {
      padding: 20px 28px 0 0;
      width: 110%;
    }
    .swiper-slide
    {
        width: 30% !important;
        margin-right: 0 !important;
        margin-left: 5px !important;
    }
    .swiper-text
    {
        padding-right:20px;
    }
     .input-select
    {
        width: 40%;
    }
     .header-search form .input
    {
        width: calc(100% - 225px) !important;
    }
    .CategoryPage__filters
    {
        display:none;
    }
    .header-ctn {
    float: left;
    /*padding: 20px 51px 20px 0px;*/
    width: 100%;
    }
    .header-filter
    {
        display:block;
    }
    #sidebar_ar {
    position: fixed;
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    background: #ffffff;
    height: 100%;
    max-width: 100%;
    width: 0%;
    overflow: scroll;
    z-index: 9999;
    /*padding-top: 60px;*/
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#sidebar_ar.active {
    display: block;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
}
.apply-filter {
    display: block;
}
.product-btns
{
    right:0;
}
.product-btns-inner
{
    right: 85px;
}
}

@media screen and (min-width: 1025px) and (max-width:1440px)
 {
     .input {
    width: 40%;
    }

    .CategoryPage__filters:before
    {
    left: calc(-50vw + 600px);
    border-bottom-right-radius: 40px;
    top: -400px;
    width: calc(-299px + 50vw);
    content: "";
    position: absolute;
    display: block;
    height: 270vh;
    /* --tw-bg-opacity: 1; */
    /* background-color: rgba(247, 247, 247, var(--tw-bg-opacity)); */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
   }
.accordion
{
        width: 55%;
        margin: 1rem 10rem;
}
.SubCategory__item:before
{
        height: 50px;
}
 .swiper-slide
    {
        width:12% !important;
    }
.swiper-text {
    color: #fff;
    padding-top: 15px;
    padding-right: 30%;
}
.product-btns {
    position: absolute;
    top: 160px;
    right: 33px;
}
.sidebar-header
{
    margin-right: 30%;
}
 }
   @media screen and (min-width: 1875px) and (max-width: 2560px){
         .input-select
         {
          width: 25%;
         }
         .header-search form .input
         {
             width: calc(100% - 260px);
         }
         .CategoryPage__filters:before {
           left: calc(-50vw + 600px);
            border-bottom-right-radius: 40px;
            top: -400px;
            width: calc(-215px + 50vw);
            content: "";
            position: absolute;
            display: block;
            height: 155vh;
            /* --tw-bg-opacity: 1; */
            /* background-color: rgba(247, 247, 247, var(--tw-bg-opacity)); */
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        }
        .accordion {
        width: 50%;
        margin: 2rem 20rem;
        }
    .swiper-slide
    {
        width:9% !important;
    }
    .swiper-text {
    color: #fff;
    padding-top: 9px;
    padding-right: 35%;
}
   .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
    width: 22%;
}

        }

.beauty_section {
    width: 100%;
    float: left;
    /* background-color: #faf8f8; */
    background-color: #ffffff;
    height: auto;
    padding: 50px 0px;
}

.beauty_box {
    width: 100%;
    float: left;
    background-color: #ffffff;
    padding: 30px;
}

.image_3 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-top: 40px;
    min-height: 260px;
}

.beauty_box_1 {
    width: 100%;
    float: left;
    background-color: #ffffff;
    padding: 30px;
}


.product_section {
    width: 100%;
    float: left;
    background-color: white;
    padding-bottom: 20px;
}

.feature_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #373637;
    font-weight: bold;
}

.feature_text {
    width: 100%;
    float: left;
    font-size: 16px;
    text-align: center;
    color: #373637;
    margin-left: 0px;
    margin-top: 0px;
}

.product_section_2 {
    width: 100%;
    float: left;
    padding-top: 90px;
}

.feature_box {
    width: 100%;
    float: left;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0px 1px 10px 1px #888888;
    opacity: 0.7;

}
.feature_box img{
    transition: transform 1s;
}
.feature_box_1 img{
    transition: transform 1s;
}
.feature_box_2 img{
    transition: transform 1s;
}
.feature_box:hover{
    opacity: 1;
    cursor: pointer;
}
.feature_box:hover img{
    transform: scale(1.2);
}
.feature_box_1:hover img{
    transform: scale(1.2);
}
.feature_box_2:hover img{
    transform: scale(1.2);
}

.image_7 {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-top: 20px;
}

.readable_text {
    width: 100%;
    float: left;
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #141414;
    font-weight: bold;
}
@media screen and (min-width: 992px) and  (max-width: 1200px){
    .readable_text {
        font-size: 22px;
    }
}
@media screen and (min-width: 76px) and  (max-width: 991px){
    .readable_text {
        font-size: 15px;
    }
}
@media screen and  (max-width: 767px){
    .readable_text {
        font-size: 22px;
    }
}

.feature_box_1 {
    width: 100%;
    float: left;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0px 1px 10px 1px #888888;
    margin-top: 20px;
    opacity: 0.7;


}
.feature_box_1:hover{

    opacity: 1;
    cursor: pointer;
}

.feature_box_2 {
    width: 100%;
    float: left;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0px 1px 10px 1px #888888;
    opacity: 0.7;

}
.feature_box_2{

    opacity: 1;
    cursor: pointer;
}

.image_8 {
    width: 87.6%;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-top: 20px;
}

.header-pos
{
   position: relative;
   z-index: 9999;
}

.CategoryPage__filters:before {
    right: calc(-50vw + 600px);
    border-bottom-left-radius: 40px;
    top: -400px;
    /*width: calc(-233px + 50vw);*/
    content: "";
    position: absolute;
    display: block;
    /*height: 133vh;*/
    /*--tw-bg-opacity: 1;*/
     /*background-color: rgba(247, 247, 247, 1); */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
text-primary-700 {
    /*--tw-text-opacity: 1;*/
    color: rgba(0, 28, 70, 1);
}

.font-bold {
    font-weight: 700;
}
.text-3xl {
    font-size: 30px;
    line-height: 7.25rem;
}
.mb-5 {
    margin-bottom: 1.25rem;
}

.relative {
    position: relative;
}
.Facets {
    display: flex;
    flex-direction: column;
    width: 88%;
    margin-left: 20%;
    margin-top: -10%;
}
.FacetDropdown {
    position: relative;
    border-bottom-width: 1px;
    /*--tw-border-opacity: 1;*/
    border-color: rgba(229, 232, 236, 1);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-right: 1.75rem;
}
.FacetDropdown__toggle{
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: left;
}
.text-lg {
    font-size: 20px;
    line-height: 4.75rem;
}
.ml-2 {
    margin-left: 0.5rem;
}
.FacetDropdown__toggle-caret{
    transition: transform .2s ease-in-out;
}
.ml-auto {
    margin-left: auto;
}
.w-5 {
    width: 2.25rem;
}

.h-5 {
    height: 2.25rem;
}
svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
}
.CategoryPage__filters:after {
    left: calc(600px - 50vw);
    content: "";
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjc2IiBoZWlnaHQ9IjI3NiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIG9wYWNpdHk9Ii4xIj48cGF0aCBkPSJNMTYzLjIzOCAzOC4xMjFsMTcuNTUgMTcuNTVhMyAzIDAgMDEwIDQuMjQzbC0xNy41NSAxNy41NWEzIDMgMCAwMS01LjEyMS0yLjEyMnYtMzUuMWEzIDMgMCAwMTUuMTIxLTIuMTJ6IiBmaWxsPSIjMDA2Q0I3Ii8+PHBhdGggc3Ryb2tlPSIjMDA2Q0I3IiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNMiAyNzMuOTA5TDI3My45MDkgMiIvPjwvZz48L3N2Zz4=);
    width: 271px;
    height: 125px;
    top: -150px;
    background-position: -155px 2px;
    background-repeat: no-repeat;
}
button, [type='button'], [type='reset'], [type='submit'] {
    -webkit-appearance: button;
}
button, input, optgroup, select, textarea {
    padding: 0;
    line-height: inherit;
    color: inherit;
}
button, [role="button"] {
    cursor: pointer;
}
button {
    background-color: transparent;
    background-image: none;
}
button, select {
    text-transform: none;
}
button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    /* border-color: currentColor; */
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}
h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

.swiper-container {
    position: static;
    width: 100%;
    height: auto;
}
.swiper-container-pointer-events {
    touch-action: pan-y;
}
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translateZ(0);
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-slide {
    flex-shrink: 0;
    /*width: 12% !important;*/
    height: 100%;
    position: relative;
    transition-property: transform;
    /*margin-left:20px;*/
}
.SubCategory__item {
    /* min-height: 67px; */
}

.SubCategory__item {
    position: relative;
    min-height: 60px;
}
.SubCategory__item.has-active-state:before {
    padding: 1.25rem;
    border-radius: 20px;
}
.SubCategory__item:before {
    left: 0;
}
.SubCategory__item:before {
    /*--tw-bg-opacity: 1;*/
    background-color: rgba(100, 34, 33, 1) !important;
    content: "";
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    z-index: -1;
    border-radius: 20px !important;
}
.w-full {
    width: 100%;
}
.flex {
    display: flex;
}

.mt-5 {
    margin-top: 1.25rem;
}
.mr-8 {
    margin-right: 2rem;
}
.mr-7 {
    margin-right: 1.75rem;
}
.m
{
  margin: -8px;
}
.swiper-text
{
    color: #fff;
    padding-top: 28px;
    /*padding-right: 30%;*/
    width: 75%;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
/* product slider  */
/*

.carousel {
    margin: 50px auto;
    padding: 0 70px;
}

.carousel .item {
    color: #747d89;
    min-height: 325px;
    text-align: center;
    overflow: hidden;
}

.carousel .thumb-wrapper {
    padding: 25px 15px;
    background: #fff;
    border-radius: 6px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.carousel .item .img-box {
    height: 120px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.carousel .item img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.carousel .item h4 {
    font-size: 18px;
}

.carousel .item h4,
.carousel .item p,
.carousel .item ul {
    margin-bottom: 5px;
}

.carousel .thumb-content .btn {
    color: #7ac400;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    background: none;
    border: 1px solid #7ac400;
    padding: 6px 14px;
    margin-top: 5px;
    line-height: 16px;
    border-radius: 20px;
}

.carousel .thumb-content .btn:hover,
.carousel .thumb-content .btn:focus {
    color: #fff;
    background: #7ac400;
    box-shadow: none;
}

.carousel .thumb-content .btn i {
    font-size: 14px;
    font-weight: bold;
    margin-left: 5px;
}

.carousel .carousel-control {
    height: 44px;
    width: 40px;
    background: #7ac400;
    margin: auto 0;
    border-radius: 4px;
    opacity: 0.8;
}

.carousel .carousel-control:hover {
    background: #78bf00;
    opacity: 1;
}

.carousel .carousel-control i {
    font-size: 36px;
    position: absolute;
    top: 50%;
    display: inline-block;
    margin: -19px 0 0 0;
    z-index: 5;
    left: 0;
    right: 0;
    color: #fff;
    text-shadow: none;
    font-weight: bold;
}

.carousel .item-price {
    font-size: 13px;
    padding: 2px 0;
}

.carousel .item-price strike {
    opacity: 0.7;
    margin-right: 5px;
}

.carousel .carousel-control.left i {
    margin-left: -2px;
}

.carousel .carousel-control.right i {
    margin-right: -4px;
}

.carousel .carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 50%;
    border: none;
}

.carousel-indicators li {
    background: rgba(0, 0, 0, 0.2);
}

.carousel-indicators li.active {
    background: rgba(0, 0, 0, 0.6);
}

.carousel .wish-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 99;
    cursor: pointer;
    font-size: 16px;
    color: #abb0b8;
}

.carousel .wish-icon .fa-heart {
    color: #ff6161;
}

.star-rating li {
    padding: 0;
}

.star-rating i {
    font-size: 14px;
    color: #ffc000;
} */

/*======================================
   Start Shop Single CSS
========================================*/
.shop.single {
    padding: 70px 0 100px;
}

.shop.single .product-gallery {
    margin-top: 30px;
}

.shop.single .flexslider-thumbnails {
    position: relative;
}

.shop.single .product-gallery .slides li {
    position: relative;
}

.shop.single .product-gallery .slides li img {
    width: 100%;
}

.shop.single .flex-control-nav {
    margin-top: 15px;
}

.shop.single .flex-control-thumbs li {
    width: 20%;
    position: relative;
    margin: 0 8px 10px -3px;
}

.shop.single .flex-control-thumbs li img {
    border: none;
    padding: 0;
    border: 1px solid transparent;
}

.shop.single .flex-control-thumbs li img.flex-active {
    border-color: #F7941D;
}

.shop.single .flex-direction-nav {
    display: none;
}

.shop.single .product-des {
    margin-top: 30px;
}

.shop.single .product-des .short h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: -5px;
    line-height: 28px;
}

.shop.single .product-des .short .description {
    font-size: 14px;
    color: #555555;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop.single .product-des {}

.shop.single .product-des .total-review {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    display: inline-block;
}

.shop.single .product-des .total-review:hover {
    color: #F7941D;
}

.shop.single .product-des .rating {
    margin-top: 20px;
    display: inline-block;
}

.shop.single .product-des .rating li {
    display: inline-block;
}

.shop.single .product-des .rating li i {
    color: #F7941D;
}

.shop.single .product-des .rating li.dark i {
    color: #555;
}

.shop.single .product-des .price {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-top: 15px;
}

.shop.single .product-des .price s {
    color: #333;
}

.shop.single .product-des .price span {
    display: inline-block;
    margin-right: 15px;
    color: #642221;
}

.shop.single .product-des .product-buy {
    margin-top: 40px;
}

.shop.single .product-des .product-buy {}

.shop.single .product-des .color {
    display: inline-block;
    margin-right: 50px;
}

.shop.single .product-des .color h4 {
    font-size: 18px;
    font-weight: 600;
}

.shop.single .product-des .color h4 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.shop.single .product-des .color ul {
    margin-top: 10px;
}

.shop.single .product-des .color ul li {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .product-des .color ul li:last-child {
    margin-right: 0;
}

.shop.single .product-des .color ul li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    background: #333;
}

.shop.single .product-des .color ul li a i {
    font-size: 11px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.shop.single .product-des .color ul li a:hover i {
    opacity: 1;
    visibility: visible;
}

.shop.single .product-des .color ul li .one {
    background: #3498db;
}

.shop.single .product-des .color ul li .two {
    background: #F7941D;
}

.shop.single .product-des .color ul li .three {
    background: #8e44ad;
}

.shop.single .product-des .color ul li .four {
    background: #2ecc71;
}

/* Size */
.shop.single .product-des .size {
    display: inline-block;
}

.shop.single .product-des .size h4 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
}

.shop.single .product-des .size ul {
    display: inline-block;
    margin-top: 10px;
}

.shop.single .product-des .size ul li {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .product-des .size ul li:last-child {
    margin-right: 0;
}

.shop.single .product-des .size ul li a {
    display: block;
    height: 30px;
    width: 36px;
    border: 1px solid #eee;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}

.shop.single .product-des .size ul li a:hover {
    color: #F7941D;
}

.shop.single .quantity {
    display: inline-block;
    margin-right: 10px;
}

.shop.single .quantity h6 {
    display: inline-block;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500;
}

.shop.single .quantity .input-group {
    width: 151px;
    display: inline-block;
}

.shop.single .quantity .button {
    display: inline-block;
    position: absolute;
    top: 0;
    display: inline-block;
}

.shop.single .quantity .button.minus {
    left: 0;
    border-radius: 0;
    overflow: hidden;
}

.shop.single .quantity .button.plus {
    right: 0;
    border-radius: 0;
    overflow: hidden;
}

.shop.single .quantity .button .btn {
    padding: 0;
    width: 35px;
    height: 45px;
    line-height: 45px;
    border-radius: 0px;
    background: transparent;
    color: #282828;
    font-size: 12px;
    border: none;
}

.shop.single .quantity .button .btn:hover {
    color: #F7941D;
}

.shop.single .quantity .input-number {
    border: 1px solid #eceded;
    width: 100%;
    text-align: center;
    height: 45px;
    border-radius: 0px;
    overflow: hidden;
    padding: 0px 38px;
}

.shop.single .add-to-cart {
    display: inline-block;
}

.shop.single .add-to-cart .btn {
    height: 45px;
    width: auto;
    padding: 0 42px;
    line-height: 45px;
    text-align: center;
    text-transform: capitalize;
    margin-right: 5px;
    border-radius: 0px;
    background: #333;
    color: #fff;
    display: inline-block;
    font-weight: 500;
}

.shop.single .add-to-cart .btn:hover {
    color: #fff;
    background: #642221;
}

.shop.single .add-to-cart .btn.min {
    padding: 0 20px;
    font-size: 17px;
    position: relative;
    top: 1px;
    line-height: 45px;
}

.shop.single .cat {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-top: 30px;
}

.shop.single .cat a {
    display: inline-block;
    margin-left: 10px;
}

.shop.single .cat a:hover {
    color: #F7941D;
}

.shop.single .availability {
    color: #333;
    font-size: 14px;
    margin-top: 6px;
}

/* Product Tab */
.shop.single .product-info {
    margin-top: 50px;
}

.shop.single .nav-tabs {
    border: none;
}

.shop.single .nav-tabs li {
    margin-right: 10px;
}

.shop.single .nav-tabs li:last-child {
    margin-right: 0;
}

.shop.single .nav-tabs li a {
    border: 0px solid;
    border-radius: 0px;
    background: #fff;
    color: #333;
    padding: 10px 30px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #eee;
}

.shop.single .nav-tabs li a i {
    margin-right: 10px;
}

.shop.single .nav-tabs li a.active,
.shop.single .nav-tabs li:hover a {
    background: #642221;
    color: #fff;
    border-color: transparent;
}

.shop.single .tab-single {}

.shop.single .single-des {
    margin-top: 35px;
}

.shop.single .single-des h4 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 22px;

}

.shop.single .single-des ul {}

.shop.single .single-des ul li {
    color: #555;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.shop.single .single-des ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 9px;
    height: 7px;
    width: 7px;
    background: #f7941d;
    border-radius: 50%;
}

.shop.single .single-des p {}

.shop.single .item-info {
    width: 100%;
}

.shop.single .item-info tbody {}

.shop.single .item-info tbody tr {}

.shop.single .item-info tbody td {
    border: 1px solid #e6e6e6;
    padding: 10px;
}

.shop.single .item-info tbody strong {}

.shop.single .ratting-main {}

.shop.single .avg-ratting {
    margin-bottom: 20px;
}

.shop.single .avg-ratting h4 {
    font-size: 18px;
    margin: 0;
}

.shop.single .avg-ratting h4 span {
    font-size: 14px;
}

.shop.single .single-rating {
    margin-bottom: 20px;
}

.shop.single .single-rating:last-child {
    margin: 0;
    border: none;
    padding: 0;
}

.shop.single .rating-author {
    float: left;
    margin-right: 10px;
    padding: 20px;
    padding-right: 10px;
}

.shop.single .rating-author img {
    width: 60px;
    border-radius: 100%;
    height: 60px;
}

.shop.single .rating-des {
    padding-left: 72px;
    background: #f9f8f8;
    padding: 17px 20px 17px 107px;
}

.shop.single .rating-des .ratings {
    margin: 0;
}

.shop.single .rating-des h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}

.shop.single .ratting-main .single-rating ul {}

.shop.single .ratting-main .single-rating ul li {
    display: inline-block;
}

.shop.single .ratting-main .single-rating ul li i {
    color: #F7941D;
    font-size: 14px;
}

.shop.single .review-inner label {
    display: inline-block;
    margin: 0 5px 0 0;
}

.shop.single .review-inner .ratings {
    overflow: visible;
    display: inline-block;
    margin: 0;
}

.shop.single .review-inner .ratings ul {
    display: inline-block;
}

.shop.single .ratting-main .single-rating ul {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .ratings .rate-count {
    display: inline-block;
    color: #666;
    font-size: 13px;
}

.shop.single .comment-review {
    margin-bottom: 30px;
}

.shop.single .comment-review .add-review {
    margin-top: 30px;
}

.shop.single .comment-review .add-review h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 7px;
}

.shop.single .comment-review .add-review p {
    color: #333;
}

.shop.single .comment-review h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 20px;
}

.shop.single .comment-review .review-inner {
    margin-bottom: 15px;
    display: block;
}

.shop.single .comment-review .rating li {
    display: inline-block;
}

.shop.single .comment-review .rating li i {
    color: #F7941D;
    font-size: 14px;
}

.shop.single .rating-des p {
    margin-top: 5px;
}

.shop.single .avg-ratting h4 {
    font-size: 20px;
    color: #333;
}

.shop.single .avg-ratting {}

.shop.single .form .form-group input {
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    resize: none;
    border-radius: 0;
    color: #333;
}

.shop.single .form .form-group button {
    border: none;
    padding: 17px 50px;
}

.shop.single .form .form-group textarea {
    width: 100%;
    height: 200px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    resize: none;
    border-radius: 0;
    color: #333;
}

.shop.single .form .form-group label {
    color: #333;
    position: relative;
}

.shop.single .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.shop.single .review-panel {
    margin-top: 35px;
}

/*======================================
   End Shop Single CSS
========================================*/

.alert
{
    padding:10px;
    padding-bottom:0;
}
