/******************************

INDEX:

    00 - Base - Typography
    01 - Base - Variables
    02 - Base - Mixins

    03 - Utilities - Helper
    04 - Utilities - Color

    10 - Components - Navigation
    11 - Components - Slider
    12 - Components - Button
    13 - Components - Banner
    14 - Components - Product
    15 - Components - Product Tab
    16 - Components - Brand
    17 - Components - Form
    18 - Components - Social Link
    19 - Components - Animation
    20 - Components - Breadcrumb
    21 - Components - Modal
    22 - Components - Instagram
    23 - Components - Service

    25 - Section - Header
    26 - Section - Footer

    29 - Pages - Blog
    30 - Pages - Shop
    31 - Pages - Single Product
    32 - Pages - About Us
    33 - Pages - Cart
    34 - Pages - Checkout
    35 - Pages - Compare
    36 - Pages - FAQ
    37 - Pages - Wishlist
    38 - Pages - My Account
    39 - Pages - Login | Register
    40 - Pages - Contact
    41 - Pages - 404
    42 - Pages - About Us

******************************/


/*

    Primary Color:     #df2121;
    Text Color:        #242424;
    Border Color:      #e5e5e5;

*/

@import url("https://fonts.googleapis.com/css?family=Prata|Tajawal:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");

/*----------------------------------------*/


/*  00 - Base - Typography
/*----------------------------------------*/

body {
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Tajawal', sans-serif;
    color: #242424;
    font-weight: 500;
    line-height: 1;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

.img-full {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

a,
a:hover,
a:focus,
a:active,
button,
button:focus,
.btn,
.btn:focus,
input,
input:focus,
select,
textarea {
    text-decoration: none;
    outline: 0;
}

label {
    margin-bottom: 0.5rem;
}

button,
.btn {
    cursor: pointer;
    border: 0;
    padding: 0;
    background: transparent;
}

.overflow-hidden {
    overflow: hidden;
}


/*----------------------------------------*/


/*  03 - Utilities - Helper
/*----------------------------------------*/


/* ---Kenne's Container--- */

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 992px) {
    .container {
        --bs-gutter-x: 15px;
    }
}

.row:not([class*="g-0"]) {
    --bs-gutter-x: 30px;
}


/* ---Kenne's Custom Column--- */

@media (max-width: 479px) {
    .custom-xxs-col {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* ----Home Boxed Layout--- */

.boxed-layout {
    display: block;
    margin: 60px auto;
    width: 1290px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .boxed-layout {
        width: 1170px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .boxed-layout {
        width: 970px;
        margin: 40px auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .boxed-layout {
        width: 730px;
        margin: 40px auto;
    }
}

@media (max-width: 767px) {
    .boxed-layout {
        width: 480px;
        margin: 30px auto;
    }
}

@media (max-width: 479px) {
    .boxed-layout {
        width: 100%;
        margin: 20px auto;
    }
}


/* ---Kenne's Preloader---*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    z-index: 9999999999999;
}

.loading .middle {
    position: absolute;
    top: 50%;
    width: 100%;
}

.loading .middle .loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 3;
    top: 50%;
    -webkit-animation: loader 2s infinite ease;
    animation: loader 2s infinite ease;
}

.loading .middle .loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    -webkit-animation: loader-inner 2s infinite ease-in;
    animation: loader-inner 2s infinite ease-in;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}


/* ---Base Transition--- */

a,
button,
i,
.tab-content .tab-pane.active,
.scroll-to-top i,
.quantity .cart-plus-minus>.qtybutton,
.price-filter .ui-slider-range,
.price-filter .ui-slider-handle,
.price-filter .price-slider-amount .label-input .filter-btn,
.global-overlay,
.template-color-1 .modal-body button span,
.template-color-1 .footer-widgets>ul>li>a,
.template-color-2 .modal-body button span,
.template-color-2 .footer-widgets>ul>li>a,
.template-color-3 .modal-body button span,
.template-color-3 .footer-widgets>ul>li>a,
.template-color-4 .modal-body button span,
.template-color-4 .footer-widgets>ul>li>a,
.template-color-5 .modal-body button span,
.template-color-5 .footer-widgets>ul>li>a,
.template-color-6 .modal-body button span,
.template-color-6 .footer-widgets>ul>li>a,
.template-color-7 .modal-body button span,
.template-color-7 .footer-widgets>ul>li>a,
.template-color-8 .modal-body button span,
.template-color-8 .footer-widgets>ul>li>a,
.template-color-9 .modal-body button span,
.template-color-9 .footer-widgets>ul>li>a,
.template-color-10 .modal-body button span,
.template-color-10 .footer-widgets>ul>li>a,
.arrow-style-4 .slick-arrow,
.btn-close,
.btn-close>i,
.offcanvas-navigation .mobile-menu li>.menu-expand,
.offcanvas-menu_wrapper .offcanvas-menu-inner,
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li.minicart-product .product-item_img,
.kenne-btn,
.kenne-banner_area-4:before,
.product-item .single-product,
.product-item .single-product .product-img>a .secondary-img,
.product-item .single-product .product-img .add-actions,
.list-product_area .list-product_slider .product-item .single-product .product-content .add-actions,
.newsletter-form_wrap .subscribe-form .newsletter-btn,
.modal-wrapper.modal,
.modal-wrapper .modal-dialog .modal-content .modal-body .close,
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .slick-slide img,
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li,
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li .dropdown,
.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li .dropdown>li,
.header-top_area .ht-menu>ul>li .ht-dropdown,
.main-nav>ul>li .kenne-dropdown,
.main-nav>ul>li .kenne-dropdown>li,
.main-nav>ul>li.megamenu-holder .kenne-megamenu,
.main-nav>ul>li.megamenu-holder>ul>li>ul>li,
.blog-details_area .kenne-tag-line a,
.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li>ul li,
.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li>a>i,
.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product,
.kenne-content_wrapper .shop-product-wrap>[class*="col-"],
.error-content_wrapper .error-area .error .btn,
.contact-main-page .contact-form-content .contact-form .form-group .kenne-contact-form_btn,
.myaccount-tab-content,
.login-form .check-box input[type="checkbox"]+label:before,
.login-form .check-box input[type="checkbox"]+label:after,
.kenne-login_btn,
.kenne-register_btn,
.coupon-all .coupon input.button,
.coupon-all .coupon2 input.button,
.cart-page-total a,
.table-content table td.kenne-cart_btn a,
.coupon-accordion span,
.coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"],
.order-button-payment input,
.sp-area .sp-nav .sp-img_slider-nav .slick-slide img,
.sp-area .sp-nav .sp-content .qty-btn_area>ul li>a,
.sp-slider_area .sp-nav .sp-slider .product-item .single-product .product-img>a .secondary-img,
.sp-gallery_area .sp-nav .sp-gallery .lg-image,
.compare-table .table tbody tr,
.about-us-area .overview-content>h2:before {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}


/* ---Section Title--- */

.section-title {
    position: relative;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-title:before {
    background-color: #e5e5e5;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.section-title>h3 {
    background-color: #ffffff;
    display: inline-block;
    padding-left: 25px;
    margin-bottom: 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .section-title>h3 {
        font-size: 20px;
    }
}


/* ---Product Sticker---*/

.sticker,
.sticker-2 {
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 10px;
    height: 25px;
    line-height: 26px;
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    cursor: text;
}

.sticker:before,
.sticker-2:before {
    -webkit-border-image: none;
    -o-border-image: none;
    border-image: none;
    border-style: solid;
    border-width: 6px;
    content: "";
    margin-top: -6px;
    position: absolute;
    right: -11px;
    top: 50%;
}

.sticker.sticker-2,
.sticker-2.sticker-2 {
    background-color: #242424;
    left: auto;
    right: 0;
}

.sticker.sticker-2:before,
.sticker-2.sticker-2:before {
    border-color: transparent #242424 transparent transparent;
    right: auto;
    left: -11px;
}


/* ---Tooltip--- */

.tooltip {
    z-index: 10;
}

.tooltip-inner {
    padding: 0 10px;
    height: 25px;
    line-height: 25px;
    color: #ffffff;
    text-align: center;
    border-radius: .25rem;
    font-size: 10px;
}

.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
    content: "";
    border-width: 5px 5px 0;
}


/* ---Spacing Between Slide Item---*/

.slick-gutter-30 .slick-list {
    margin: -15px;
}

.slick-gutter-30 .slick-list .slick-slide {
    padding: 15px;
}


/* ---Slick Disabled Cursor Point--- */

.slick-disabled {
    cursor: not-allowed !important;
}


/* ---Tab Content & Pane Fix--- */

.tab-content {
    width: 100%;
}

.tab-content .tab-pane {
    display: block;
    height: 0;
    max-width: 100%;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
}

.tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1;
    overflow: visible;
}


/*-- Scroll To Top --*/

.scroll-to-top {
    background-color: #242424;
    color: #ffffff;
    position: fixed;
    right: 50px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    z-index: 999;
    font-size: 20px;
    overflow: hidden;
    display: block;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-animation: kenSlideInDown 1s normal;
    animation: kenSlideInDown 1s normal;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    -webkit-animation: kenSlideInUp 1s normal;
    animation: kenSlideInUp 1s normal;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 16px;
    display: block;
}

.scroll-to-top:hover>i {
    -webkit-animation: kenSlideInUp 1s infinite;
    animation: kenSlideInUp 1s infinite;
}


/* ---Kenne's Pagination--- */

.kenne-paginatoin-area {
    padding-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.kenne-paginatoin-area .kenne-pagination-box {
    padding: 10px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 25px;
}

.kenne-paginatoin-area .kenne-pagination-box li {
    display: inline-block;
}

.kenne-paginatoin-area .kenne-pagination-box li>a {
    color: #242424;
    padding: 0 25px;
    display: block;
}

@media (max-width: 479px) {
    .kenne-paginatoin-area .kenne-pagination-box li>a {
        padding: 0 15px;
    }
}

.kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #c59339;
}

.kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #c59339;
}

.kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #c59339;
}

.kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #c59339 !important;
}


/* ---Tag--- */

.kenne-tags_list li {
    display: inline-block;
    margin-bottom: 5px;
}

.kenne-tags_list li a {
    font-size: 14px;
    border: 1px solid #e5e5e5;
    padding: 5px 15px;
    display: block;
    line-height: 20px;
}


/* ---Quantity--- */

.quantity .cart-plus-minus {
    position: relative;
    width: 76px;
    text-align: left;
}

.quantity .cart-plus-minus>.cart-plus-minus-box {
    border: 1px solid #e5e5e5;
    height: 46px;
    text-align: center;
    width: 48px;
    background: #ffffff;
}

.quantity .cart-plus-minus>.qtybutton {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    cursor: pointer;
    height: 23px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    width: 28px;
    line-height: 21px;
}

.quantity .cart-plus-minus>.qtybutton:hover {
    background: #f5f5f5;
}

.quantity .cart-plus-minus>.qtybutton.dec {
    bottom: 0;
    right: 0;
}

.quantity .cart-plus-minus>.qtybutton.inc {
    border-bottom: none;
    top: 0;
    right: 0;
}


/* ---Color List Area--- */

.color-list_area {
    border: 1px solid #e5e5e5;
    padding: 25px;
}

@media (max-width: 767px) {
    .color-list_area {
        padding: 15px;
    }
}

.color-list_area .color-list_heading {
    padding-bottom: 15px;
}

.color-list_area .color-list_heading>h4 {
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .color-list_area .color-list_heading>h4 {
        font-size: 14px;
    }
}

.color-list_area .sub-title {
    display: block;
    padding-bottom: 20px;
}

.color-list_area .color-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    position: relative;
}

@media (max-width: 479px) {
    .color-list_area .color-list {
        padding-bottom: 25px;
        overflow: hidden;
    }
}

.color-list_area .color-list .single-color {
    border: 1px solid #e5e5e5;
    display: inline-block;
    margin-right: 5px;
    padding: 2px;
    width: 25px;
    height: 25px;
}

.color-list_area .color-list .single-color span {
    width: 100%;
    height: 100%;
}

.color-list_area .color-list .single-color span.bg-red_color {
    background-color: #ff0000;
    display: block;
}

.color-list_area .color-list .single-color span.burnt-orange_color {
    background-color: #ff832b;
    display: block;
}

.color-list_area .color-list .single-color span.brown_color {
    background-color: #a6311f;
    display: block;
}

.color-list_area .color-list .single-color span.raw-umber_color {
    background-color: #824900;
    display: block;
}

.color-list_area .color-list .single-color span.black_color {
    background-color: #000000;
    display: block;
}

.color-list_area .color-list .single-color span.golden_color {
    background-color: #c59339;
    display: block;
}

.color-list_area .color-list .single-color.active {
    border-color: #c59339;
}

.color-list_area .color-list .single-color.active .color-text {
    color: #242424;
    display: block;
}

.color-list_area .color-list .color-text {
    position: absolute;
    right: -120px;
    width: auto !important;
    top: 0;
    display: none;
}

@media (max-width: 575px) {
    .color-list_area .color-list .color-text {
        right: -110px;
    }
}

@media (max-width: 479px) {
    .color-list_area .color-list .color-text {
        right: auto;
        left: 0;
        top: 30px;
    }
}


/* ---Range Slider--- */

.price-filter {
    margin-top: 35px;
}

.price-filter .ui-widget-content {
    background-color: #e5e5e5;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    height: 10px;
    margin: 0 0 25px;
    width: 100%;
    border-top-left-radius: 25px;
    -moz-border-radius-topleft: 25px;
    border-top-right-radius: 25px;
    -moz-border-radius-topright: 25px;
    border-bottom-left-radius: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-bottom-right-radius: 25px;
    -moz-border-radius-bottomright: 25px;
}

.price-filter .ui-slider-range {
    background: #c59339;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 100%;
}

.price-filter .ui-slider-handle {
    background: #ffffff;
    border: 4px solid #c59339;
    display: block;
    outline: none;
    width: 20px;
    height: 20px;
    line-height: 15px;
    margin: 0;
    text-align: center;
    top: 50%;
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 6.65px 0.35px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 6.65px 0.35px rgba(0, 0, 0, 0.15);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: e-resize;
}

.price-filter .ui-slider-handle:hover {
    background-color: #c59339;
}

.price-filter .ui-slider-handle:last-child {
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

.price-filter .price-slider-amount {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.price-filter .price-slider-amount .label-input label {
    font-size: 14px;
    margin: 0;
    text-transform: capitalize;
}

.price-filter .price-slider-amount .label-input input {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    height: inherit;
    padding-left: 5px;
    width: 99px;
}

.price-filter .price-slider-amount .label-input .filter-btn {
    border: 1px solid #e5e5e5;
    width: 85px;
    height: 40px;
    line-height: 39px;
    border-radius: 50px;
}

.price-filter .price-slider-amount .label-input .filter-btn:hover {
    background-color: #c59339;
    border-color: #c59339;
    color: #ffffff;
}


/* ---Countdown--- */

.countdown-wrap .countdown.item-4 .countdown__item {
    border: 1px solid #e5e5e5;
    display: inline-block;
    position: relative;
    width: 70px;
    padding: 10px 0;
    text-align: center;
    margin-left: 15px;
}

.countdown-wrap .countdown.item-4 .countdown__item:first-child {
    margin-left: 0;
}

@media (max-width: 575px) {
    .countdown-wrap .countdown.item-4 .countdown__item {
        width: 50px;
        margin-left: 5px;
        padding: 5px 0;
    }
}

.countdown-wrap .countdown.item-4 .countdown__item span.countdown__time {
    display: block;
    color: #242424;
    font-size: 24px;
}

@media (max-width: 575px) {
    .countdown-wrap .countdown.item-4 .countdown__item span.countdown__time {
        font-size: 16px;
    }
}

.countdown-wrap .countdown.item-4 .countdown__item span.countdown__text {
    display: block;
}


/* ---Image hover effect--- */

.img-hover_effect {
    position: relative;
}

.img-hover_effect:before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 1;
}

.img-hover_effect:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 1;
}

.img-hover_effect:hover:before {
    background-color: rgba(255, 255, 255, 0.3);
    left: 50%;
    right: 50%;
}

.img-hover_effect:hover:after {
    background-color: rgba(255, 255, 255, 0.3);
    bottom: 50%;
    top: 50%;
}


/* ---Global Overlay--- */

.global-overlay {
    background-color: rgba(36, 36, 36, 0.9);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    visibility: hidden;
}

.global-overlay.overlay-open {
    visibility: visible;
    cursor: url(../images/menu/icon/light-close.png) 16 16, pointer;
}


/* ---Nice Select Customization--- */

.myniceselect.nice-select {
    padding: 0;
    margin: 0;
    height: auto;
    line-height: auto;
}

.myniceselect.nice-select span {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    padding: 0 60px;
}

.myniceselect.nice-select .list {
    width: 100%;
}


/*----------------------------------------*/


/*  04 - Utilities - Color
/*----------------------------------------*/


/* ---Background Color--- */

.bg-smoke_color {
    background-color: #f5f5f5;
}

.bg-white_color {
    background-color: #ffffff;
}

.template-color-1 a {
    color: #242424;
}

.template-color-1 a:hover {
    color: #c59339;
}

.template-color-1 [class*="active"]>a {
    color: #c59339;
}

.template-color-1 .loading .middle .loader {
    border: 4px solid #c59339;
}

.template-color-1 .loading .middle .loader-inner {
    background-color: #c59339;
}

.template-color-1 .kenne-btn:hover {
    background-color: #c59339;
}

.template-color-1 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-1 .kenne-btn.transparent-btn:hover {
    background-color: #c59339;
    border: 1px solid #c59339;
}

.template-color-1 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-1 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-1 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-1 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #c59339;
    color: #ffffff !important;
}

.template-color-1 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #c59339 !important;
    color: #ffffff !important;
}

.template-color-1 .kenne-group_btn>ul>li>a:hover {
    border-color: #c59339 !important;
}

.template-color-1 .kenne-login_btn:hover,
.template-color-1 .kenne-register_btn:hover {
    background: #c59339;
}

.template-color-1 .kenne-cart_btn a:hover {
    background: #c59339;
    color: #ffffff !important;
}

.template-color-1 .search-btn:hover {
    color: #c59339;
}

.template-color-1 .reply-btn a {
    color: #c59339;
    border: 1px solid #c59339;
}

.template-color-1 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #c59339;
}

.template-color-1 .banner-area-5 .banner-item .banner-content>span {
    color: #c59339;
}

.template-color-1 .form-group .required {
    color: #c59339;
}

.template-color-1 .kenne-contact-form_btn:hover {
    background-color: #c59339 !important;
    color: #ffffff;
    border-color: #c59339 !important;
}

.template-color-1 .about-us_btn {
    background: #c59339;
}

.template-color-1 .kenne-product-stock-status span.in-stock,
.template-color-1 .kenne-product-stock-status span.out-stock {
    color: #c59339;
}

.template-color-1 .coupon input.button:hover,
.template-color-1 .coupon2 input.button:hover {
    background: #c59339;
}

.template-color-1 .cart-page-total a:hover {
    background: #c59339;
    border-color: #c59339;
    color: #ffffff !important;
}

.template-color-1 .coupon-accordion h3 {
    border-top: 3px solid #c59339;
}

.template-color-1 .coupon-accordion span:hover {
    color: #c59339;
}

.template-color-1 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #c59339;
}

.template-color-1 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #c59339;
}

.template-color-1 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #c59339;
}

.template-color-1 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #c59339;
}

.template-color-1 .country-select label span.required,
.template-color-1.checkout-form-list label span.required {
    color: #c59339;
}

.template-color-1 .panel-title a:hover {
    color: #c59339 !important;
}

.template-color-1 .order-button-payment input:hover {
    background: #c59339;
}

.template-color-1 .compare-product-name a:hover {
    color: #c59339;
}

.template-color-1 .modal-body button span:hover {
    color: #c59339;
}

.template-color-1 .btn-close:hover {
    color: #c59339 !important;
}

.template-color-1 .offcanvas-search button.search_btn:hover>i {
    color: #c59339;
}

.template-color-1 .main-nav>ul>li:hover>a {
    color: #c59339;
}

.template-color-1 .search-button:hover {
    color: #c59339;
}

.template-color-1 .tty-slick-text-btn:hover {
    background-color: #c59339;
    color: #ffffff !important;
}

.template-color-1 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #c59339;
    color: #ffffff;
}

.template-color-1 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #c59339;
}

.template-color-1 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #c59339 !important;
}

.template-color-1 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #c59339;
}

.template-color-1 .product-view-mode>a.active {
    color: #c59339;
}

.template-color-1 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #c59339;
}

.template-color-1 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #c59339;
}

.template-color-1 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #c59339;
}

.template-color-1 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-1 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #c59339;
}

.template-color-1 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #c59339;
}

.template-color-1 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #c59339 !important;
}

.template-color-1 .sticker {
    background-color: #c59339;
}

.template-color-1 .sticker:before {
    border-color: transparent transparent transparent #c59339;
}

.template-color-1 .new-price {
    color: #c59339;
}

.template-color-1 .rating-box>ul>li {
    color: #c59339;
}

.template-color-1 .add-actions>ul>li>a:hover {
    background-color: #c59339 !important;
    color: #ffffff !important;
}

.template-color-1 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-1 .footer-widgets>ul>li:hover>a {
    color: #c59339;
    padding-left: 10px;
}

.template-color-1 .newsletter-btn {
    background-color: #c59339;
    color: #ffffff;
}

.template-color-1 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-1 .kenne-social_link>ul>li>a:hover {
    background-color: #c59339;
    color: #ffffff !important;
}

.template-color-1 .account-page-area .myaccount-tab-trigger li a.active {
    background: #c59339;
    color: #ffffff;
}

.template-color-1 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-1 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #c59339;
}

.template-color-1 .error-content_wrapper .error-area .error h1 {
    color: #c59339;
}

.template-color-1 .error-content_wrapper .error-area .error .btn {
    background-color: #c59339;
}

.template-color-1 .error-content_wrapper .error-area .error .btn:after {
    background-color: #c59339;
}

.template-color-1 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #c59339;
}

.template-color-1 .frequently-accordion .actives {
    border: 1px solid #c59339;
}

.template-color-1 .frequently-accordion .card-header a:hover {
    color: #c59339 !important;
}

.template-color-1 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #c59339;
    border-color: #c59339;
}

.template-color-1 .overview-content>h2:after {
    background: #c59339;
}

.template-color-1 .overview-content>h2 span,
h3 span {
    color: #c59339;
}

.template-color-1 .count-title h2 {
    color: #c59339;
}

.template-color-1 .scroll-to-top:hover {
    background-color: #c59339;
}

.template-color-2 a {
    color: #242424;
}

.template-color-2 a:hover {
    color: #df2121;
}

.template-color-2 [class*="active"]>a {
    color: #df2121;
}

.template-color-2 .loading .middle .loader {
    border: 4px solid #df2121;
}

.template-color-2 .loading .middle .loader-inner {
    background-color: #df2121;
}

.template-color-2 .kenne-btn:hover {
    background-color: #df2121;
}

.template-color-2 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-2 .kenne-btn.transparent-btn:hover {
    background-color: #df2121;
    border: 1px solid #df2121;
}

.template-color-2 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-2 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-2 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-2 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #df2121;
    color: #ffffff !important;
}

.template-color-2 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #df2121 !important;
    color: #ffffff !important;
}

.template-color-2 .kenne-group_btn>ul>li>a:hover {
    border-color: #df2121 !important;
}

.template-color-2 .kenne-login_btn:hover,
.template-color-2 .kenne-register_btn:hover {
    background: #df2121;
}

.template-color-2 .kenne-cart_btn a:hover {
    background: #df2121;
    color: #ffffff !important;
}

.template-color-2 .search-btn:hover {
    color: #df2121;
}

.template-color-2 .reply-btn a {
    color: #df2121;
    border: 1px solid #df2121;
}

.template-color-2 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #df2121;
}

.template-color-2 .banner-area-5 .banner-item .banner-content>span {
    color: #df2121;
}

.template-color-2 .form-group .required {
    color: #df2121;
}

.template-color-2 .kenne-contact-form_btn:hover {
    background-color: #df2121 !important;
    color: #ffffff;
    border-color: #df2121 !important;
}

.template-color-2 .about-us_btn {
    background: #df2121;
}

.template-color-2 .kenne-product-stock-status span.in-stock,
.template-color-2 .kenne-product-stock-status span.out-stock {
    color: #df2121;
}

.template-color-2 .coupon input.button:hover,
.template-color-2 .coupon2 input.button:hover {
    background: #df2121;
}

.template-color-2 .cart-page-total a:hover {
    background: #df2121;
    border-color: #df2121;
    color: #ffffff !important;
}

.template-color-2 .coupon-accordion h3 {
    border-top: 3px solid #df2121;
}

.template-color-2 .coupon-accordion span:hover {
    color: #df2121;
}

.template-color-2 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #df2121;
}

.template-color-2 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #df2121;
}

.template-color-2 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #df2121;
}

.template-color-2 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #df2121;
}

.template-color-2 .country-select label span.required,
.template-color-2.checkout-form-list label span.required {
    color: #df2121;
}

.template-color-2 .panel-title a:hover {
    color: #df2121 !important;
}

.template-color-2 .order-button-payment input:hover {
    background: #df2121;
}

.template-color-2 .compare-product-name a:hover {
    color: #df2121;
}

.template-color-2 .modal-body button span:hover {
    color: #df2121;
}

.template-color-2 .btn-close:hover {
    color: #df2121 !important;
}

.template-color-2 .offcanvas-search button.search_btn:hover>i {
    color: #df2121;
}

.template-color-2 .main-nav>ul>li:hover>a {
    color: #df2121;
}

.template-color-2 .search-button:hover {
    color: #df2121;
}

.template-color-2 .tty-slick-text-btn:hover {
    background-color: #df2121;
    color: #ffffff !important;
}

.template-color-2 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #df2121;
    color: #ffffff;
}

.template-color-2 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #df2121;
}

.template-color-2 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #df2121 !important;
}

.template-color-2 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #df2121;
}

.template-color-2 .product-view-mode>a.active {
    color: #df2121;
}

.template-color-2 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #df2121;
}

.template-color-2 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #df2121;
}

.template-color-2 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #df2121;
}

.template-color-2 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-2 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #df2121;
}

.template-color-2 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #df2121;
}

.template-color-2 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #df2121 !important;
}

.template-color-2 .sticker {
    background-color: #df2121;
}

.template-color-2 .sticker:before {
    border-color: transparent transparent transparent #df2121;
}

.template-color-2 .new-price {
    color: #df2121;
}

.template-color-2 .rating-box>ul>li {
    color: #df2121;
}

.template-color-2 .add-actions>ul>li>a:hover {
    background-color: #df2121 !important;
    color: #ffffff !important;
}

.template-color-2 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-2 .footer-widgets>ul>li:hover>a {
    color: #df2121;
    padding-left: 10px;
}

.template-color-2 .newsletter-btn {
    background-color: #df2121;
    color: #ffffff;
}

.template-color-2 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-2 .kenne-social_link>ul>li>a:hover {
    background-color: #df2121;
    color: #ffffff !important;
}

.template-color-2 .account-page-area .myaccount-tab-trigger li a.active {
    background: #df2121;
    color: #ffffff;
}

.template-color-2 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-2 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #df2121;
}

.template-color-2 .error-content_wrapper .error-area .error h1 {
    color: #df2121;
}

.template-color-2 .error-content_wrapper .error-area .error .btn {
    background-color: #df2121;
}

.template-color-2 .error-content_wrapper .error-area .error .btn:after {
    background-color: #df2121;
}

.template-color-2 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #df2121;
}

.template-color-2 .frequently-accordion .actives {
    border: 1px solid #df2121;
}

.template-color-2 .frequently-accordion .card-header a:hover {
    color: #df2121 !important;
}

.template-color-2 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #df2121;
    border-color: #df2121;
}

.template-color-2 .overview-content>h2:after {
    background: #df2121;
}

.template-color-2 .overview-content>h2 span {
    color: #df2121;
}

.template-color-2 .count-title h2 {
    color: #df2121;
}

.template-color-2 .scroll-to-top:hover {
    background-color: #df2121;
}

.template-color-3 a {
    color: #242424;
}

.template-color-3 a:hover {
    color: #e75480;
}

.template-color-3 [class*="active"]>a {
    color: #e75480;
}

.template-color-3 .loading .middle .loader {
    border: 4px solid #e75480;
}

.template-color-3 .loading .middle .loader-inner {
    background-color: #e75480;
}

.template-color-3 .kenne-btn:hover {
    background-color: #e75480;
}

.template-color-3 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-3 .kenne-btn.transparent-btn:hover {
    background-color: #e75480;
    border: 1px solid #e75480;
}

.template-color-3 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-3 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-3 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-3 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #e75480;
    color: #ffffff !important;
}

.template-color-3 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #e75480 !important;
    color: #ffffff !important;
}

.template-color-3 .kenne-group_btn>ul>li>a:hover {
    border-color: #e75480 !important;
}

.template-color-3 .kenne-login_btn:hover,
.template-color-3 .kenne-register_btn:hover {
    background: #e75480;
}

.template-color-3 .kenne-cart_btn a:hover {
    background: #e75480;
    color: #ffffff !important;
}

.template-color-3 .search-btn:hover {
    color: #e75480;
}

.template-color-3 .reply-btn a {
    color: #e75480;
    border: 1px solid #e75480;
}

.template-color-3 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #e75480;
}

.template-color-3 .banner-area-5 .banner-item .banner-content>span {
    color: #e75480;
}

.template-color-3 .form-group .required {
    color: #e75480;
}

.template-color-3 .kenne-contact-form_btn:hover {
    background-color: #e75480 !important;
    color: #ffffff;
    border-color: #e75480 !important;
}

.template-color-3 .about-us_btn {
    background: #e75480;
}

.template-color-3 .kenne-product-stock-status span.in-stock,
.template-color-3 .kenne-product-stock-status span.out-stock {
    color: #e75480;
}

.template-color-3 .coupon input.button:hover,
.template-color-3 .coupon2 input.button:hover {
    background: #e75480;
}

.template-color-3 .cart-page-total a:hover {
    background: #e75480;
    border-color: #e75480;
    color: #ffffff !important;
}

.template-color-3 .coupon-accordion h3 {
    border-top: 3px solid #e75480;
}

.template-color-3 .coupon-accordion span:hover {
    color: #e75480;
}

.template-color-3 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #e75480;
}

.template-color-3 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #e75480;
}

.template-color-3 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #e75480;
}

.template-color-3 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #e75480;
}

.template-color-3 .country-select label span.required,
.template-color-3.checkout-form-list label span.required {
    color: #e75480;
}

.template-color-3 .panel-title a:hover {
    color: #e75480 !important;
}

.template-color-3 .order-button-payment input:hover {
    background: #e75480;
}

.template-color-3 .compare-product-name a:hover {
    color: #e75480;
}

.template-color-3 .modal-body button span:hover {
    color: #e75480;
}

.template-color-3 .btn-close:hover {
    color: #e75480 !important;
}

.template-color-3 .offcanvas-search button.search_btn:hover>i {
    color: #e75480;
}

.template-color-3 .main-nav>ul>li:hover>a {
    color: #e75480;
}

.template-color-3 .search-button:hover {
    color: #e75480;
}

.template-color-3 .tty-slick-text-btn:hover {
    background-color: #e75480;
    color: #ffffff !important;
}

.template-color-3 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #e75480;
    color: #ffffff;
}

.template-color-3 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #e75480;
}

.template-color-3 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #e75480 !important;
}

.template-color-3 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #e75480;
}

.template-color-3 .product-view-mode>a.active {
    color: #e75480;
}

.template-color-3 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #e75480;
}

.template-color-3 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #e75480;
}

.template-color-3 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #e75480;
}

.template-color-3 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-3 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #e75480;
}

.template-color-3 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #e75480;
}

.template-color-3 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #e75480 !important;
}

.template-color-3 .sticker {
    background-color: #e75480;
}

.template-color-3 .sticker:before {
    border-color: transparent transparent transparent #e75480;
}

.template-color-3 .new-price {
    color: #e75480;
}

.template-color-3 .rating-box>ul>li {
    color: #e75480;
}

.template-color-3 .add-actions>ul>li>a:hover {
    background-color: #e75480 !important;
    color: #ffffff !important;
}

.template-color-3 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-3 .footer-widgets>ul>li:hover>a {
    color: #e75480;
    padding-left: 10px;
}

.template-color-3 .newsletter-btn {
    background-color: #e75480;
    color: #ffffff;
}

.template-color-3 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-3 .kenne-social_link>ul>li>a:hover {
    background-color: #e75480;
    color: #ffffff !important;
}

.template-color-3 .account-page-area .myaccount-tab-trigger li a.active {
    background: #e75480;
    color: #ffffff;
}

.template-color-3 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-3 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #e75480;
}

.template-color-3 .error-content_wrapper .error-area .error h1 {
    color: #e75480;
}

.template-color-3 .error-content_wrapper .error-area .error .btn {
    background-color: #e75480;
}

.template-color-3 .error-content_wrapper .error-area .error .btn:after {
    background-color: #e75480;
}

.template-color-3 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #e75480;
}

.template-color-3 .frequently-accordion .actives {
    border: 1px solid #e75480;
}

.template-color-3 .frequently-accordion .card-header a:hover {
    color: #e75480 !important;
}

.template-color-3 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #e75480;
    border-color: #e75480;
}

.template-color-3 .overview-content>h2:after {
    background: #e75480;
}

.template-color-3 .overview-content>h2 span {
    color: #e75480;
}

.template-color-3 .count-title h2 {
    color: #e75480;
}

.template-color-3 .scroll-to-top:hover {
    background-color: #e75480;
}

.template-color-4 a {
    color: #242424;
}

.template-color-4 a:hover {
    color: #ff00ff;
}

.template-color-4 [class*="active"]>a {
    color: #ff00ff;
}

.template-color-4 .loading .middle .loader {
    border: 4px solid #ff00ff;
}

.template-color-4 .loading .middle .loader-inner {
    background-color: #ff00ff;
}

.template-color-4 .kenne-btn:hover {
    background-color: #ff00ff;
}

.template-color-4 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-4 .kenne-btn.transparent-btn:hover {
    background-color: #ff00ff;
    border: 1px solid #ff00ff;
}

.template-color-4 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-4 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-4 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-4 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #ff00ff;
    color: #ffffff !important;
}

.template-color-4 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #ff00ff !important;
    color: #ffffff !important;
}

.template-color-4 .kenne-group_btn>ul>li>a:hover {
    border-color: #ff00ff !important;
}

.template-color-4 .kenne-login_btn:hover,
.template-color-4 .kenne-register_btn:hover {
    background: #ff00ff;
}

.template-color-4 .kenne-cart_btn a:hover {
    background: #ff00ff;
    color: #ffffff !important;
}

.template-color-4 .search-btn:hover {
    color: #ff00ff;
}

.template-color-4 .reply-btn a {
    color: #ff00ff;
    border: 1px solid #ff00ff;
}

.template-color-4 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #ff00ff;
}

.template-color-4 .banner-area-5 .banner-item .banner-content>span {
    color: #ff00ff;
}

.template-color-4 .form-group .required {
    color: #ff00ff;
}

.template-color-4 .kenne-contact-form_btn:hover {
    background-color: #ff00ff !important;
    color: #ffffff;
    border-color: #ff00ff !important;
}

.template-color-4 .about-us_btn {
    background: #ff00ff;
}

.template-color-4 .kenne-product-stock-status span.in-stock,
.template-color-4 .kenne-product-stock-status span.out-stock {
    color: #ff00ff;
}

.template-color-4 .coupon input.button:hover,
.template-color-4 .coupon2 input.button:hover {
    background: #ff00ff;
}

.template-color-4 .cart-page-total a:hover {
    background: #ff00ff;
    border-color: #ff00ff;
    color: #ffffff !important;
}

.template-color-4 .coupon-accordion h3 {
    border-top: 3px solid #ff00ff;
}

.template-color-4 .coupon-accordion span:hover {
    color: #ff00ff;
}

.template-color-4 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #ff00ff;
}

.template-color-4 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #ff00ff;
}

.template-color-4 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #ff00ff;
}

.template-color-4 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #ff00ff;
}

.template-color-4 .country-select label span.required,
.template-color-4.checkout-form-list label span.required {
    color: #ff00ff;
}

.template-color-4 .panel-title a:hover {
    color: #ff00ff !important;
}

.template-color-4 .order-button-payment input:hover {
    background: #ff00ff;
}

.template-color-4 .compare-product-name a:hover {
    color: #ff00ff;
}

.template-color-4 .modal-body button span:hover {
    color: #ff00ff;
}

.template-color-4 .btn-close:hover {
    color: #ff00ff !important;
}

.template-color-4 .offcanvas-search button.search_btn:hover>i {
    color: #ff00ff;
}

.template-color-4 .main-nav>ul>li:hover>a {
    color: #ff00ff;
}

.template-color-4 .search-button:hover {
    color: #ff00ff;
}

.template-color-4 .tty-slick-text-btn:hover {
    background-color: #ff00ff;
    color: #ffffff !important;
}

.template-color-4 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #ff00ff;
    color: #ffffff;
}

.template-color-4 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #ff00ff;
}

.template-color-4 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #ff00ff !important;
}

.template-color-4 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #ff00ff;
}

.template-color-4 .product-view-mode>a.active {
    color: #ff00ff;
}

.template-color-4 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #ff00ff;
}

.template-color-4 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #ff00ff;
}

.template-color-4 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #ff00ff;
}

.template-color-4 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-4 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #ff00ff;
}

.template-color-4 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #ff00ff;
}

.template-color-4 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #ff00ff !important;
}

.template-color-4 .sticker {
    background-color: #ff00ff;
}

.template-color-4 .sticker:before {
    border-color: transparent transparent transparent #ff00ff;
}

.template-color-4 .new-price {
    color: #ff00ff;
}

.template-color-4 .rating-box>ul>li {
    color: #ff00ff;
}

.template-color-4 .add-actions>ul>li>a:hover {
    background-color: #ff00ff !important;
    color: #ffffff !important;
}

.template-color-4 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-4 .footer-widgets>ul>li:hover>a {
    color: #ff00ff;
    padding-left: 10px;
}

.template-color-4 .newsletter-btn {
    background-color: #ff00ff;
    color: #ffffff;
}

.template-color-4 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-4 .kenne-social_link>ul>li>a:hover {
    background-color: #ff00ff;
    color: #ffffff !important;
}

.template-color-4 .account-page-area .myaccount-tab-trigger li a.active {
    background: #ff00ff;
    color: #ffffff;
}

.template-color-4 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-4 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #ff00ff;
}

.template-color-4 .error-content_wrapper .error-area .error h1 {
    color: #ff00ff;
}

.template-color-4 .error-content_wrapper .error-area .error .btn {
    background-color: #ff00ff;
}

.template-color-4 .error-content_wrapper .error-area .error .btn:after {
    background-color: #ff00ff;
}

.template-color-4 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #ff00ff;
}

.template-color-4 .frequently-accordion .actives {
    border: 1px solid #ff00ff;
}

.template-color-4 .frequently-accordion .card-header a:hover {
    color: #ff00ff !important;
}

.template-color-4 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #ff00ff;
    border-color: #ff00ff;
}

.template-color-4 .overview-content>h2:after {
    background: #ff00ff;
}

.template-color-4 .overview-content>h2 span {
    color: #ff00ff;
}

.template-color-4 .count-title h2 {
    color: #ff00ff;
}

.template-color-4 .scroll-to-top:hover {
    background-color: #ff00ff;
}

.template-color-5 a {
    color: #242424;
}

.template-color-5 a:hover {
    color: #6a0dad;
}

.template-color-5 [class*="active"]>a {
    color: #6a0dad;
}

.template-color-5 .loading .middle .loader {
    border: 4px solid #6a0dad;
}

.template-color-5 .loading .middle .loader-inner {
    background-color: #6a0dad;
}

.template-color-5 .kenne-btn:hover {
    background-color: #6a0dad;
}

.template-color-5 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-5 .kenne-btn.transparent-btn:hover {
    background-color: #6a0dad;
    border: 1px solid #6a0dad;
}

.template-color-5 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-5 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-5 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-5 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #6a0dad;
    color: #ffffff !important;
}

.template-color-5 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #6a0dad !important;
    color: #ffffff !important;
}

.template-color-5 .kenne-group_btn>ul>li>a:hover {
    border-color: #6a0dad !important;
}

.template-color-5 .kenne-login_btn:hover,
.template-color-5 .kenne-register_btn:hover {
    background: #6a0dad;
}

.template-color-5 .kenne-cart_btn a:hover {
    background: #6a0dad;
    color: #ffffff !important;
}

.template-color-5 .search-btn:hover {
    color: #6a0dad;
}

.template-color-5 .reply-btn a {
    color: #6a0dad;
    border: 1px solid #6a0dad;
}

.template-color-5 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #6a0dad;
}

.template-color-5 .banner-area-5 .banner-item .banner-content>span {
    color: #6a0dad;
}

.template-color-5 .form-group .required {
    color: #6a0dad;
}

.template-color-5 .kenne-contact-form_btn:hover {
    background-color: #6a0dad !important;
    color: #ffffff;
    border-color: #6a0dad !important;
}

.template-color-5 .about-us_btn {
    background: #6a0dad;
}

.template-color-5 .kenne-product-stock-status span.in-stock,
.template-color-5 .kenne-product-stock-status span.out-stock {
    color: #6a0dad;
}

.template-color-5 .coupon input.button:hover,
.template-color-5 .coupon2 input.button:hover {
    background: #6a0dad;
}

.template-color-5 .cart-page-total a:hover {
    background: #6a0dad;
    border-color: #6a0dad;
    color: #ffffff !important;
}

.template-color-5 .coupon-accordion h3 {
    border-top: 3px solid #6a0dad;
}

.template-color-5 .coupon-accordion span:hover {
    color: #6a0dad;
}

.template-color-5 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #6a0dad;
}

.template-color-5 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #6a0dad;
}

.template-color-5 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #6a0dad;
}

.template-color-5 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #6a0dad;
}

.template-color-5 .country-select label span.required,
.template-color-5.checkout-form-list label span.required {
    color: #6a0dad;
}

.template-color-5 .panel-title a:hover {
    color: #6a0dad !important;
}

.template-color-5 .order-button-payment input:hover {
    background: #6a0dad;
}

.template-color-5 .compare-product-name a:hover {
    color: #6a0dad;
}

.template-color-5 .modal-body button span:hover {
    color: #6a0dad;
}

.template-color-5 .btn-close:hover {
    color: #6a0dad !important;
}

.template-color-5 .offcanvas-search button.search_btn:hover>i {
    color: #6a0dad;
}

.template-color-5 .main-nav>ul>li:hover>a {
    color: #6a0dad;
}

.template-color-5 .search-button:hover {
    color: #6a0dad;
}

.template-color-5 .tty-slick-text-btn:hover {
    background-color: #6a0dad;
    color: #ffffff !important;
}

.template-color-5 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #6a0dad;
    color: #ffffff;
}

.template-color-5 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #6a0dad;
}

.template-color-5 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #6a0dad !important;
}

.template-color-5 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #6a0dad;
}

.template-color-5 .product-view-mode>a.active {
    color: #6a0dad;
}

.template-color-5 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #6a0dad;
}

.template-color-5 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #6a0dad;
}

.template-color-5 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #6a0dad;
}

.template-color-5 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-5 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #6a0dad;
}

.template-color-5 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #6a0dad;
}

.template-color-5 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #6a0dad !important;
}

.template-color-5 .sticker {
    background-color: #6a0dad;
}

.template-color-5 .sticker:before {
    border-color: transparent transparent transparent #6a0dad;
}

.template-color-5 .new-price {
    color: #6a0dad;
}

.template-color-5 .rating-box>ul>li {
    color: #6a0dad;
}

.template-color-5 .add-actions>ul>li>a:hover {
    background-color: #6a0dad !important;
    color: #ffffff !important;
}

.template-color-5 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-5 .footer-widgets>ul>li:hover>a {
    color: #6a0dad;
    padding-left: 10px;
}

.template-color-5 .newsletter-btn {
    background-color: #6a0dad;
    color: #ffffff;
}

.template-color-5 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-5 .kenne-social_link>ul>li>a:hover {
    background-color: #6a0dad;
    color: #ffffff !important;
}

.template-color-5 .account-page-area .myaccount-tab-trigger li a.active {
    background: #6a0dad;
    color: #ffffff;
}

.template-color-5 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-5 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #6a0dad;
}

.template-color-5 .error-content_wrapper .error-area .error h1 {
    color: #6a0dad;
}

.template-color-5 .error-content_wrapper .error-area .error .btn {
    background-color: #6a0dad;
}

.template-color-5 .error-content_wrapper .error-area .error .btn:after {
    background-color: #6a0dad;
}

.template-color-5 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #6a0dad;
}

.template-color-5 .frequently-accordion .actives {
    border: 1px solid #6a0dad;
}

.template-color-5 .frequently-accordion .card-header a:hover {
    color: #6a0dad !important;
}

.template-color-5 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #6a0dad;
    border-color: #6a0dad;
}

.template-color-5 .overview-content>h2:after {
    background: #6a0dad;
}

.template-color-5 .overview-content>h2 span {
    color: #6a0dad;
}

.template-color-5 .count-title h2 {
    color: #6a0dad;
}

.template-color-5 .scroll-to-top:hover {
    background-color: #6a0dad;
}

.template-color-6 a {
    color: #242424;
}

.template-color-6 a:hover {
    color: #ff007f;
}

.template-color-6 [class*="active"]>a {
    color: #ff007f;
}

.template-color-6 .loading .middle .loader {
    border: 4px solid #ff007f;
}

.template-color-6 .loading .middle .loader-inner {
    background-color: #ff007f;
}

.template-color-6 .kenne-btn:hover {
    background-color: #ff007f;
}

.template-color-6 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-6 .kenne-btn.transparent-btn:hover {
    background-color: #ff007f;
    border: 1px solid #ff007f;
}

.template-color-6 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-6 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-6 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-6 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #ff007f;
    color: #ffffff !important;
}

.template-color-6 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #ff007f !important;
    color: #ffffff !important;
}

.template-color-6 .kenne-group_btn>ul>li>a:hover {
    border-color: #ff007f !important;
}

.template-color-6 .kenne-login_btn:hover,
.template-color-6 .kenne-register_btn:hover {
    background: #ff007f;
}

.template-color-6 .kenne-cart_btn a:hover {
    background: #ff007f;
    color: #ffffff !important;
}

.template-color-6 .search-btn:hover {
    color: #ff007f;
}

.template-color-6 .reply-btn a {
    color: #ff007f;
    border: 1px solid #ff007f;
}

.template-color-6 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #ff007f;
}

.template-color-6 .banner-area-5 .banner-item .banner-content>span {
    color: #ff007f;
}

.template-color-6 .form-group .required {
    color: #ff007f;
}

.template-color-6 .kenne-contact-form_btn:hover {
    background-color: #ff007f !important;
    color: #ffffff;
    border-color: #ff007f !important;
}

.template-color-6 .about-us_btn {
    background: #ff007f;
}

.template-color-6 .kenne-product-stock-status span.in-stock,
.template-color-6 .kenne-product-stock-status span.out-stock {
    color: #ff007f;
}

.template-color-6 .coupon input.button:hover,
.template-color-6 .coupon2 input.button:hover {
    background: #ff007f;
}

.template-color-6 .cart-page-total a:hover {
    background: #ff007f;
    border-color: #ff007f;
    color: #ffffff !important;
}

.template-color-6 .coupon-accordion h3 {
    border-top: 3px solid #ff007f;
}

.template-color-6 .coupon-accordion span:hover {
    color: #ff007f;
}

.template-color-6 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #ff007f;
}

.template-color-6 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #ff007f;
}

.template-color-6 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #ff007f;
}

.template-color-6 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #ff007f;
}

.template-color-6 .country-select label span.required,
.template-color-6.checkout-form-list label span.required {
    color: #ff007f;
}

.template-color-6 .panel-title a:hover {
    color: #ff007f !important;
}

.template-color-6 .order-button-payment input:hover {
    background: #ff007f;
}

.template-color-6 .compare-product-name a:hover {
    color: #ff007f;
}

.template-color-6 .modal-body button span:hover {
    color: #ff007f;
}

.template-color-6 .btn-close:hover {
    color: #ff007f !important;
}

.template-color-6 .offcanvas-search button.search_btn:hover>i {
    color: #ff007f;
}

.template-color-6 .main-nav>ul>li:hover>a {
    color: #ff007f;
}

.template-color-6 .search-button:hover {
    color: #ff007f;
}

.template-color-6 .tty-slick-text-btn:hover {
    background-color: #ff007f;
    color: #ffffff !important;
}

.template-color-6 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #ff007f;
    color: #ffffff;
}

.template-color-6 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #ff007f;
}

.template-color-6 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #ff007f !important;
}

.template-color-6 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #ff007f;
}

.template-color-6 .product-view-mode>a.active {
    color: #ff007f;
}

.template-color-6 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #ff007f;
}

.template-color-6 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #ff007f;
}

.template-color-6 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #ff007f;
}

.template-color-6 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-6 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #ff007f;
}

.template-color-6 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #ff007f;
}

.template-color-6 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #ff007f !important;
}

.template-color-6 .sticker {
    background-color: #ff007f;
}

.template-color-6 .sticker:before {
    border-color: transparent transparent transparent #ff007f;
}

.template-color-6 .new-price {
    color: #ff007f;
}

.template-color-6 .rating-box>ul>li {
    color: #ff007f;
}

.template-color-6 .add-actions>ul>li>a:hover {
    background-color: #ff007f !important;
    color: #ffffff !important;
}

.template-color-6 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-6 .footer-widgets>ul>li:hover>a {
    color: #ff007f;
    padding-left: 10px;
}

.template-color-6 .newsletter-btn {
    background-color: #ff007f;
    color: #ffffff;
}

.template-color-6 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-6 .kenne-social_link>ul>li>a:hover {
    background-color: #ff007f;
    color: #ffffff !important;
}

.template-color-6 .account-page-area .myaccount-tab-trigger li a.active {
    background: #ff007f;
    color: #ffffff;
}

.template-color-6 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-6 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #ff007f;
}

.template-color-6 .error-content_wrapper .error-area .error h1 {
    color: #ff007f;
}

.template-color-6 .error-content_wrapper .error-area .error .btn {
    background-color: #ff007f;
}

.template-color-6 .error-content_wrapper .error-area .error .btn:after {
    background-color: #ff007f;
}

.template-color-6 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #ff007f;
}

.template-color-6 .frequently-accordion .actives {
    border: 1px solid #ff007f;
}

.template-color-6 .frequently-accordion .card-header a:hover {
    color: #ff007f !important;
}

.template-color-6 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #ff007f;
    border-color: #ff007f;
}

.template-color-6 .overview-content>h2:after {
    background: #ff007f;
}

.template-color-6 .overview-content>h2 span {
    color: #ff007f;
}

.template-color-6 .count-title h2 {
    color: #ff007f;
}

.template-color-6 .scroll-to-top:hover {
    background-color: #ff007f;
}

.template-color-7 a {
    color: #242424;
}

.template-color-7 a:hover {
    color: #B03060;
}

.template-color-7 [class*="active"]>a {
    color: #B03060;
}

.template-color-7 .loading .middle .loader {
    border: 4px solid #B03060;
}

.template-color-7 .loading .middle .loader-inner {
    background-color: #B03060;
}

.template-color-7 .kenne-btn:hover {
    background-color: #B03060;
}

.template-color-7 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-7 .kenne-btn.transparent-btn:hover {
    background-color: #B03060;
    border: 1px solid #B03060;
}

.template-color-7 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-7 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-7 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-7 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #B03060;
    color: #ffffff !important;
}

.template-color-7 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #B03060 !important;
    color: #ffffff !important;
}

.template-color-7 .kenne-group_btn>ul>li>a:hover {
    border-color: #B03060 !important;
}

.template-color-7 .kenne-login_btn:hover,
.template-color-7 .kenne-register_btn:hover {
    background: #B03060;
}

.template-color-7 .kenne-cart_btn a:hover {
    background: #B03060;
    color: #ffffff !important;
}

.template-color-7 .search-btn:hover {
    color: #B03060;
}

.template-color-7 .reply-btn a {
    color: #B03060;
    border: 1px solid #B03060;
}

.template-color-7 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #B03060;
}

.template-color-7 .banner-area-5 .banner-item .banner-content>span {
    color: #B03060;
}

.template-color-7 .form-group .required {
    color: #B03060;
}

.template-color-7 .kenne-contact-form_btn:hover {
    background-color: #B03060 !important;
    color: #ffffff;
    border-color: #B03060 !important;
}

.template-color-7 .about-us_btn {
    background: #B03060;
}

.template-color-7 .kenne-product-stock-status span.in-stock,
.template-color-7 .kenne-product-stock-status span.out-stock {
    color: #B03060;
}

.template-color-7 .coupon input.button:hover,
.template-color-7 .coupon2 input.button:hover {
    background: #B03060;
}

.template-color-7 .cart-page-total a:hover {
    background: #B03060;
    border-color: #B03060;
    color: #ffffff !important;
}

.template-color-7 .coupon-accordion h3 {
    border-top: 3px solid #B03060;
}

.template-color-7 .coupon-accordion span:hover {
    color: #B03060;
}

.template-color-7 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #B03060;
}

.template-color-7 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #B03060;
}

.template-color-7 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #B03060;
}

.template-color-7 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #B03060;
}

.template-color-7 .country-select label span.required,
.template-color-7.checkout-form-list label span.required {
    color: #B03060;
}

.template-color-7 .panel-title a:hover {
    color: #B03060 !important;
}

.template-color-7 .order-button-payment input:hover {
    background: #B03060;
}

.template-color-7 .compare-product-name a:hover {
    color: #B03060;
}

.template-color-7 .modal-body button span:hover {
    color: #B03060;
}

.template-color-7 .btn-close:hover {
    color: #B03060 !important;
}

.template-color-7 .offcanvas-search button.search_btn:hover>i {
    color: #B03060;
}

.template-color-7 .main-nav>ul>li:hover>a {
    color: #B03060;
}

.template-color-7 .search-button:hover {
    color: #B03060;
}

.template-color-7 .tty-slick-text-btn:hover {
    background-color: #B03060;
    color: #ffffff !important;
}

.template-color-7 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #B03060;
    color: #ffffff;
}

.template-color-7 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #B03060;
}

.template-color-7 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #B03060 !important;
}

.template-color-7 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #B03060;
}

.template-color-7 .product-view-mode>a.active {
    color: #B03060;
}

.template-color-7 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #B03060;
}

.template-color-7 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #B03060;
}

.template-color-7 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #B03060;
}

.template-color-7 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-7 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #B03060;
}

.template-color-7 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #B03060;
}

.template-color-7 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #B03060 !important;
}

.template-color-7 .sticker {
    background-color: #B03060;
}

.template-color-7 .sticker:before {
    border-color: transparent transparent transparent #B03060;
}

.template-color-7 .new-price {
    color: #B03060;
}

.template-color-7 .rating-box>ul>li {
    color: #B03060;
}

.template-color-7 .add-actions>ul>li>a:hover {
    background-color: #B03060 !important;
    color: #ffffff !important;
}

.template-color-7 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-7 .footer-widgets>ul>li:hover>a {
    color: #B03060;
    padding-left: 10px;
}

.template-color-7 .newsletter-btn {
    background-color: #B03060;
    color: #ffffff;
}

.template-color-7 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-7 .kenne-social_link>ul>li>a:hover {
    background-color: #B03060;
    color: #ffffff !important;
}

.template-color-7 .account-page-area .myaccount-tab-trigger li a.active {
    background: #B03060;
    color: #ffffff;
}

.template-color-7 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-7 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #B03060;
}

.template-color-7 .error-content_wrapper .error-area .error h1 {
    color: #B03060;
}

.template-color-7 .error-content_wrapper .error-area .error .btn {
    background-color: #B03060;
}

.template-color-7 .error-content_wrapper .error-area .error .btn:after {
    background-color: #B03060;
}

.template-color-7 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #B03060;
}

.template-color-7 .frequently-accordion .actives {
    border: 1px solid #B03060;
}

.template-color-7 .frequently-accordion .card-header a:hover {
    color: #B03060 !important;
}

.template-color-7 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #B03060;
    border-color: #B03060;
}

.template-color-7 .overview-content>h2:after {
    background: #B03060;
}

.template-color-7 .overview-content>h2 span {
    color: #B03060;
}

.template-color-7 .count-title h2 {
    color: #B03060;
}

.template-color-7 .scroll-to-top:hover {
    background-color: #B03060;
}

.template-color-8 a {
    color: #242424;
}

.template-color-8 a:hover {
    color: #ffa500;
}

.template-color-8 [class*="active"]>a {
    color: #ffa500;
}

.template-color-8 .loading .middle .loader {
    border: 4px solid #ffa500;
}

.template-color-8 .loading .middle .loader-inner {
    background-color: #ffa500;
}

.template-color-8 .kenne-btn:hover {
    background-color: #ffa500;
}

.template-color-8 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-8 .kenne-btn.transparent-btn:hover {
    background-color: #ffa500;
    border: 1px solid #ffa500;
}

.template-color-8 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-8 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-8 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-8 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #ffa500;
    color: #ffffff !important;
}

.template-color-8 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #ffa500 !important;
    color: #ffffff !important;
}

.template-color-8 .kenne-group_btn>ul>li>a:hover {
    border-color: #ffa500 !important;
}

.template-color-8 .kenne-login_btn:hover,
.template-color-8 .kenne-register_btn:hover {
    background: #ffa500;
}

.template-color-8 .kenne-cart_btn a:hover {
    background: #ffa500;
    color: #ffffff !important;
}

.template-color-8 .search-btn:hover {
    color: #ffa500;
}

.template-color-8 .reply-btn a {
    color: #ffa500;
    border: 1px solid #ffa500;
}

.template-color-8 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #ffa500;
}

.template-color-8 .banner-area-5 .banner-item .banner-content>span {
    color: #ffa500;
}

.template-color-8 .form-group .required {
    color: #ffa500;
}

.template-color-8 .kenne-contact-form_btn:hover {
    background-color: #ffa500 !important;
    color: #ffffff;
    border-color: #ffa500 !important;
}

.template-color-8 .about-us_btn {
    background: #ffa500;
}

.template-color-8 .kenne-product-stock-status span.in-stock,
.template-color-8 .kenne-product-stock-status span.out-stock {
    color: #ffa500;
}

.template-color-8 .coupon input.button:hover,
.template-color-8 .coupon2 input.button:hover {
    background: #ffa500;
}

.template-color-8 .cart-page-total a:hover {
    background: #ffa500;
    border-color: #ffa500;
    color: #ffffff !important;
}

.template-color-8 .coupon-accordion h3 {
    border-top: 3px solid #ffa500;
}

.template-color-8 .coupon-accordion span:hover {
    color: #ffa500;
}

.template-color-8 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #ffa500;
}

.template-color-8 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #ffa500;
}

.template-color-8 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #ffa500;
}

.template-color-8 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #ffa500;
}

.template-color-8 .country-select label span.required,
.template-color-8.checkout-form-list label span.required {
    color: #ffa500;
}

.template-color-8 .panel-title a:hover {
    color: #ffa500 !important;
}

.template-color-8 .order-button-payment input:hover {
    background: #ffa500;
}

.template-color-8 .compare-product-name a:hover {
    color: #ffa500;
}

.template-color-8 .modal-body button span:hover {
    color: #ffa500;
}

.template-color-8 .btn-close:hover {
    color: #ffa500 !important;
}

.template-color-8 .offcanvas-search button.search_btn:hover>i {
    color: #ffa500;
}

.template-color-8 .main-nav>ul>li:hover>a {
    color: #ffa500;
}

.template-color-8 .search-button:hover {
    color: #ffa500;
}

.template-color-8 .tty-slick-text-btn:hover {
    background-color: #ffa500;
    color: #ffffff !important;
}

.template-color-8 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #ffa500;
    color: #ffffff;
}

.template-color-8 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #ffa500;
}

.template-color-8 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #ffa500 !important;
}

.template-color-8 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #ffa500;
}

.template-color-8 .product-view-mode>a.active {
    color: #ffa500;
}

.template-color-8 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #ffa500;
}

.template-color-8 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #ffa500;
}

.template-color-8 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #ffa500;
}

.template-color-8 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-8 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #ffa500;
}

.template-color-8 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #ffa500;
}

.template-color-8 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #ffa500 !important;
}

.template-color-8 .sticker {
    background-color: #ffa500;
}

.template-color-8 .sticker:before {
    border-color: transparent transparent transparent #ffa500;
}

.template-color-8 .new-price {
    color: #ffa500;
}

.template-color-8 .rating-box>ul>li {
    color: #ffa500;
}

.template-color-8 .add-actions>ul>li>a:hover {
    background-color: #ffa500 !important;
    color: #ffffff !important;
}

.template-color-8 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-8 .footer-widgets>ul>li:hover>a {
    color: #ffa500;
    padding-left: 10px;
}

.template-color-8 .newsletter-btn {
    background-color: #ffa500;
    color: #ffffff;
}

.template-color-8 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-8 .kenne-social_link>ul>li>a:hover {
    background-color: #ffa500;
    color: #ffffff !important;
}

.template-color-8 .account-page-area .myaccount-tab-trigger li a.active {
    background: #ffa500;
    color: #ffffff;
}

.template-color-8 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-8 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #ffa500;
}

.template-color-8 .error-content_wrapper .error-area .error h1 {
    color: #ffa500;
}

.template-color-8 .error-content_wrapper .error-area .error .btn {
    background-color: #ffa500;
}

.template-color-8 .error-content_wrapper .error-area .error .btn:after {
    background-color: #ffa500;
}

.template-color-8 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #ffa500;
}

.template-color-8 .frequently-accordion .actives {
    border: 1px solid #ffa500;
}

.template-color-8 .frequently-accordion .card-header a:hover {
    color: #ffa500 !important;
}

.template-color-8 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #ffa500;
    border-color: #ffa500;
}

.template-color-8 .overview-content>h2:after {
    background: #ffa500;
}

.template-color-8 .overview-content>h2 span {
    color: #ffa500;
}

.template-color-8 .count-title h2 {
    color: #ffa500;
}

.template-color-8 .scroll-to-top:hover {
    background-color: #ffa500;
}

.template-color-9 a {
    color: #242424;
}

.template-color-9 a:hover {
    color: #8e4585;
}

.template-color-9 [class*="active"]>a {
    color: #8e4585;
}

.template-color-9 .loading .middle .loader {
    border: 4px solid #8e4585;
}

.template-color-9 .loading .middle .loader-inner {
    background-color: #8e4585;
}

.template-color-9 .kenne-btn:hover {
    background-color: #8e4585;
}

.template-color-9 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-9 .kenne-btn.transparent-btn:hover {
    background-color: #8e4585;
    border: 1px solid #8e4585;
}

.template-color-9 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-9 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-9 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-9 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #8e4585;
    color: #ffffff !important;
}

.template-color-9 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #8e4585 !important;
    color: #ffffff !important;
}

.template-color-9 .kenne-group_btn>ul>li>a:hover {
    border-color: #8e4585 !important;
}

.template-color-9 .kenne-login_btn:hover,
.template-color-9 .kenne-register_btn:hover {
    background: #8e4585;
}

.template-color-9 .kenne-cart_btn a:hover {
    background: #8e4585;
    color: #ffffff !important;
}

.template-color-9 .search-btn:hover {
    color: #8e4585;
}

.template-color-9 .reply-btn a {
    color: #8e4585;
    border: 1px solid #8e4585;
}

.template-color-9 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #8e4585;
}

.template-color-9 .banner-area-5 .banner-item .banner-content>span {
    color: #8e4585;
}

.template-color-9 .form-group .required {
    color: #8e4585;
}

.template-color-9 .kenne-contact-form_btn:hover {
    background-color: #8e4585 !important;
    color: #ffffff;
    border-color: #8e4585 !important;
}

.template-color-9 .about-us_btn {
    background: #8e4585;
}

.template-color-9 .kenne-product-stock-status span.in-stock,
.template-color-9 .kenne-product-stock-status span.out-stock {
    color: #8e4585;
}

.template-color-9 .coupon input.button:hover,
.template-color-9 .coupon2 input.button:hover {
    background: #8e4585;
}

.template-color-9 .cart-page-total a:hover {
    background: #8e4585;
    border-color: #8e4585;
    color: #ffffff !important;
}

.template-color-9 .coupon-accordion h3 {
    border-top: 3px solid #8e4585;
}

.template-color-9 .coupon-accordion span:hover {
    color: #8e4585;
}

.template-color-9 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #8e4585;
}

.template-color-9 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #8e4585;
}

.template-color-9 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #8e4585;
}

.template-color-9 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #8e4585;
}

.template-color-9 .country-select label span.required,
.template-color-9.checkout-form-list label span.required {
    color: #8e4585;
}

.template-color-9 .panel-title a:hover {
    color: #8e4585 !important;
}

.template-color-9 .order-button-payment input:hover {
    background: #8e4585;
}

.template-color-9 .compare-product-name a:hover {
    color: #8e4585;
}

.template-color-9 .modal-body button span:hover {
    color: #8e4585;
}

.template-color-9 .btn-close:hover {
    color: #8e4585 !important;
}

.template-color-9 .offcanvas-search button.search_btn:hover>i {
    color: #8e4585;
}

.template-color-9 .main-nav>ul>li:hover>a {
    color: #8e4585;
}

.template-color-9 .search-button:hover {
    color: #8e4585;
}

.template-color-9 .tty-slick-text-btn:hover {
    background-color: #8e4585;
    color: #ffffff !important;
}

.template-color-9 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #8e4585;
    color: #ffffff;
}

.template-color-9 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #8e4585;
}

.template-color-9 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #8e4585 !important;
}

.template-color-9 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #8e4585;
}

.template-color-9 .product-view-mode>a.active {
    color: #8e4585;
}

.template-color-9 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #8e4585;
}

.template-color-9 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #8e4585;
}

.template-color-9 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #8e4585;
}

.template-color-9 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-9 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #8e4585;
}

.template-color-9 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #8e4585;
}

.template-color-9 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #8e4585 !important;
}

.template-color-9 .sticker {
    background-color: #8e4585;
}

.template-color-9 .sticker:before {
    border-color: transparent transparent transparent #8e4585;
}

.template-color-9 .new-price {
    color: #8e4585;
}

.template-color-9 .rating-box>ul>li {
    color: #8e4585;
}

.template-color-9 .add-actions>ul>li>a:hover {
    background-color: #8e4585 !important;
    color: #ffffff !important;
}

.template-color-9 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-9 .footer-widgets>ul>li:hover>a {
    color: #8e4585;
    padding-left: 10px;
}

.template-color-9 .newsletter-btn {
    background-color: #8e4585;
    color: #ffffff;
}

.template-color-9 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-9 .kenne-social_link>ul>li>a:hover {
    background-color: #8e4585;
    color: #ffffff !important;
}

.template-color-9 .account-page-area .myaccount-tab-trigger li a.active {
    background: #8e4585;
    color: #ffffff;
}

.template-color-9 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-9 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #8e4585;
}

.template-color-9 .error-content_wrapper .error-area .error h1 {
    color: #8e4585;
}

.template-color-9 .error-content_wrapper .error-area .error .btn {
    background-color: #8e4585;
}

.template-color-9 .error-content_wrapper .error-area .error .btn:after {
    background-color: #8e4585;
}

.template-color-9 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #8e4585;
}

.template-color-9 .frequently-accordion .actives {
    border: 1px solid #8e4585;
}

.template-color-9 .frequently-accordion .card-header a:hover {
    color: #8e4585 !important;
}

.template-color-9 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #8e4585;
    border-color: #8e4585;
}

.template-color-9 .overview-content>h2:after {
    background: #8e4585;
}

.template-color-9 .overview-content>h2 span {
    color: #8e4585;
}

.template-color-9 .count-title h2 {
    color: #8e4585;
}

.template-color-9 .scroll-to-top:hover {
    background-color: #8e4585;
}

.template-color-10 a {
    color: #242424;
}

.template-color-10 a:hover {
    color: #65000b;
}

.template-color-10 [class*="active"]>a {
    color: #65000b;
}

.template-color-10 .loading .middle .loader {
    border: 4px solid #65000b;
}

.template-color-10 .loading .middle .loader-inner {
    background-color: #65000b;
}

.template-color-10 .kenne-btn:hover {
    background-color: #65000b;
}

.template-color-10 .kenne-btn.transparent-btn {
    border: 1px solid #e5e5e5;
}

.template-color-10 .kenne-btn.transparent-btn:hover {
    background-color: #65000b;
    border: 1px solid #65000b;
}

.template-color-10 .kenne-btn.transparent-btn.transparent-btn-2 {
    color: #242424 !important;
    text-transform: capitalize;
}

.template-color-10 .kenne-btn.transparent-btn.transparent-btn-2:hover {
    color: #ffffff !important;
}

.template-color-10 .kenne-btn.transparent-btn.black-color {
    border: 1px solid #000000;
    color: #000000 !important;
}

.template-color-10 .kenne-btn.transparent-btn.black-color:hover {
    border-color: #65000b;
    color: #ffffff !important;
}

.template-color-10 .kenne-group_btn>ul>li>a.add-to_cart:hover {
    background-color: #65000b !important;
    color: #ffffff !important;
}

.template-color-10 .kenne-group_btn>ul>li>a:hover {
    border-color: #65000b !important;
}

.template-color-10 .kenne-login_btn:hover,
.template-color-10 .kenne-register_btn:hover {
    background: #65000b;
}

.template-color-10 .kenne-cart_btn a:hover {
    background: #65000b;
    color: #ffffff !important;
}

.template-color-10 .search-btn:hover {
    color: #65000b;
}

.template-color-10 .reply-btn a {
    color: #65000b;
    border: 1px solid #65000b;
}

.template-color-10 .reply-btn a:hover {
    color: #ffffff !important;
    background-color: #65000b;
}

.template-color-10 .banner-area-5 .banner-item .banner-content>span {
    color: #65000b;
}

.template-color-10 .form-group .required {
    color: #65000b;
}

.template-color-10 .kenne-contact-form_btn:hover {
    background-color: #65000b !important;
    color: #ffffff;
    border-color: #65000b !important;
}

.template-color-10 .about-us_btn {
    background: #65000b;
}

.template-color-10 .kenne-product-stock-status span.in-stock,
.template-color-10 .kenne-product-stock-status span.out-stock {
    color: #65000b;
}

.template-color-10 .coupon input.button:hover,
.template-color-10 .coupon2 input.button:hover {
    background: #65000b;
}

.template-color-10 .cart-page-total a:hover {
    background: #65000b;
    border-color: #65000b;
    color: #ffffff !important;
}

.template-color-10 .coupon-accordion h3 {
    border-top: 3px solid #65000b;
}

.template-color-10 .coupon-accordion span:hover {
    color: #65000b;
}

.template-color-10 .coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"]:hover {
    background: #65000b;
}

.template-color-10 .coupon-accordion .coupon-content .coupon-info p.checkout-coupon input[type="submit"] {
    background: #65000b;
}

.template-color-10 .coupon-accordion .coupon-content .coupon-info p.lost-password a:hover {
    color: #65000b;
}

.template-color-10 .coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"]:hover {
    background: #65000b;
}

.template-color-10 .country-select label span.required,
.template-color-10.checkout-form-list label span.required {
    color: #65000b;
}

.template-color-10 .panel-title a:hover {
    color: #65000b !important;
}

.template-color-10 .order-button-payment input:hover {
    background: #65000b;
}

.template-color-10 .compare-product-name a:hover {
    color: #65000b;
}

.template-color-10 .modal-body button span:hover {
    color: #65000b;
}

.template-color-10 .btn-close:hover {
    color: #65000b !important;
}

.template-color-10 .offcanvas-search button.search_btn:hover>i {
    color: #65000b;
}

.template-color-10 .main-nav>ul>li:hover>a {
    color: #65000b;
}

.template-color-10 .search-button:hover {
    color: #65000b;
}

.template-color-10 .tty-slick-text-btn:hover {
    background-color: #65000b;
    color: #ffffff !important;
}

.template-color-10 .minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    background-color: #65000b;
    color: #ffffff;
}

.template-color-10 .minicart-wrap>a.minicart-btn .minicart-count_area i {
    color: #65000b;
}

.template-color-10 .offcanvas-minicart_wrapper .minicart-list>li.minicart-product .product-item_img:hover {
    border-color: #65000b !important;
}

.template-color-10 .megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    background-color: #65000b;
}

.template-color-10 .product-view-mode>a.active {
    color: #65000b;
}

.template-color-10 .section-title .product-tab>ul.product-menu>li>a.active {
    color: #65000b;
}

.template-color-10 .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #65000b;
}

.template-color-10 .kenne-paginatoin-area .kenne-pagination-box.primary-color {
    border: 2px solid #65000b;
}

.template-color-10 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li:last-child>a {
    border-right: 0;
}

.template-color-10 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li.active>a {
    color: #65000b;
}

.template-color-10 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a {
    border-right: 1px solid #65000b;
}

.template-color-10 .kenne-paginatoin-area .kenne-pagination-box.primary-color>li>a:hover {
    color: #65000b !important;
}

.template-color-10 .sticker {
    background-color: #65000b;
}

.template-color-10 .sticker:before {
    border-color: transparent transparent transparent #65000b;
}

.template-color-10 .new-price {
    color: #65000b;
}

.template-color-10 .rating-box>ul>li {
    color: #65000b;
}

.template-color-10 .add-actions>ul>li>a:hover {
    background-color: #65000b !important;
    color: #ffffff !important;
}

.template-color-10 .footer-widgets>ul>li>a {
    padding-left: 0;
}

.template-color-10 .footer-widgets>ul>li:hover>a {
    color: #65000b;
    padding-left: 10px;
}

.template-color-10 .newsletter-btn {
    background-color: #65000b;
    color: #ffffff;
}

.template-color-10 .newsletter-btn:hover {
    background-color: #242424;
}

.template-color-10 .kenne-social_link>ul>li>a:hover {
    background-color: #65000b;
    color: #ffffff !important;
}

.template-color-10 .account-page-area .myaccount-tab-trigger li a.active {
    background: #65000b;
    color: #ffffff;
}

.template-color-10 .account-page-area .myaccount-tab-trigger li a.active:hover {
    color: #ffffff !important;
}

.template-color-10 .account-page-area .myaccount-tab-trigger li a:hover {
    color: #65000b;
}

.template-color-10 .error-content_wrapper .error-area .error h1 {
    color: #65000b;
}

.template-color-10 .error-content_wrapper .error-area .error .btn {
    background-color: #65000b;
}

.template-color-10 .error-content_wrapper .error-area .error .btn:after {
    background-color: #65000b;
}

.template-color-10 .error-content_wrapper .error-area .error .searchform button.searchform__submit {
    background-color: #65000b;
}

.template-color-10 .frequently-accordion .actives {
    border: 1px solid #65000b;
}

.template-color-10 .frequently-accordion .card-header a:hover {
    color: #65000b !important;
}

.template-color-10 .kenne-tags_list li a:hover {
    color: #ffffff !important;
    background-color: #65000b;
    border-color: #65000b;
}

.template-color-10 .overview-content>h2:after {
    background: #65000b;
}

.template-color-10 .overview-content>h2 span {
    color: #65000b;
}

.template-color-10 .count-title h2 {
    color: #65000b;
}

.template-color-10 .scroll-to-top:hover {
    background-color: #65000b;
}


/*----------------------------------------*/


/*  10 - Components - Navigation
/*----------------------------------------*/


/* ---Home Slider Arrow--- */

.arrow-style .tty-slick-text-btn,
.transparent-arrow .tty-slick-text-btn,
.arrow-style-2 .tty-slick-text-btn {
    -webkit-box-shadow: 0px 0px 9.8px 0.2px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 9.8px 0.2px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    text-align: center;
    position: absolute;
    cursor: pointer;
    border-radius: 100%;
    right: auto;
    left: 5%;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.arrow-style .tty-slick-text-btn.tty-slick-text-next,
.transparent-arrow .tty-slick-text-btn.tty-slick-text-next,
.arrow-style-2 .tty-slick-text-btn.tty-slick-text-next {
    top: auto;
    bottom: 50%;
    margin-bottom: 30px;
}

.arrow-style .tty-slick-text-btn:hover,
.transparent-arrow .tty-slick-text-btn:hover,
.arrow-style-2 .tty-slick-text-btn:hover {
    background-color: #242424;
}

.arrow-style .slick-next,
.transparent-arrow .slick-next,
.arrow-style-2 .slick-next {
    left: auto;
    right: 0;
}

.arrow-style:hover .slick-arrow,
.transparent-arrow:hover .slick-arrow,
.arrow-style-2:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.transparent-arrow .slick-arrow {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.transparent-arrow .slick-arrow:hover {
    border-color: #242424;
}

.arrow-style-2 .tty-slick-text-btn,
.arrow-style-3 .tty-slick-text-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-radius: 0;
}

.arrow-style-2 .tty-slick-text-btn.tty-slick-text-prev,
.arrow-style-3 .tty-slick-text-btn.tty-slick-text-prev {
    right: auto;
    left: 15px;
}

.arrow-style-2 .tty-slick-text-btn.tty-slick-text-next,
.arrow-style-3 .tty-slick-text-btn.tty-slick-text-next {
    left: auto;
    right: 15px;
    margin-bottom: 0;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.arrow-style-2.arrow-style-3 .tty-slick-text-btn,
.arrow-style-3.arrow-style-3 .tty-slick-text-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.arrow-style-4 .slick-arrow {
    background-color: #c59339;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.arrow-style-4 .slick-arrow:hover {
    background-color: #242424;
}

.arrow-style-4 .slick-arrow.tty-slick-text-prev {
    margin-bottom: 5px;
}

.arrow-style-4 .slick-arrow.tty-slick-text-next {
    margin-top: 5px;
}

.arrow-style-4 .slick-arrow>i {
    -webkit-transform: rotate(87deg);
    -ms-transform: rotate(87deg);
    transform: rotate(87deg);
    display: block;
}


/* ---Slick appendArrow class style--- */

.product-arrow,
.latest-blog_arrow,
.list-product_arrow {
    background-color: #ffffff;
    padding-right: 25px;
    z-index: 2;
}

.product-arrow .tty-slick-text-btn,
.latest-blog_arrow .tty-slick-text-btn,
.list-product_arrow .tty-slick-text-btn {
    background-color: #f5f5f5;
    width: 40px;
    height: 40px;
    line-height: 41px;
    border-radius: 100%;
}

@media (max-width: 479px) {
    .product-arrow .tty-slick-text-btn,
    .latest-blog_arrow .tty-slick-text-btn,
    .list-product_arrow .tty-slick-text-btn {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

.product-arrow .tty-slick-text-btn.tty-slick-text-prev,
.latest-blog_arrow .tty-slick-text-btn.tty-slick-text-prev,
.list-product_arrow .tty-slick-text-btn.tty-slick-text-prev {
    margin-left: 15px;
}

.product-tab_arrow .tty-slick-text-btn {
    background-color: #f5f5f5;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    position: absolute;
    top: -55px;
    right: 0;
    z-index: 2;
}

.product-tab_arrow .tty-slick-text-btn.tty-slick-text-prev {
    right: 50px;
}


/* ---Mobile Menu Wrapper--- */

.mobile-menu_wrapper .offcanvas-menu-inner,
.offcanvas-minicart_wrapper .offcanvas-menu-inner,
.offcanvas-search_wrapper .offcanvas-menu-inner {
    background: rgba(255, 255, 255, 0.97);
    position: fixed;
    top: 0;
    right: -285px;
    width: 285px;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 479px) {
    .mobile-menu_wrapper .offcanvas-menu-inner,
    .offcanvas-minicart_wrapper .offcanvas-menu-inner,
    .offcanvas-search_wrapper .offcanvas-menu-inner {
        width: 260px;
    }
}

.mobile-menu_wrapper .offcanvas-menu-inner .offcanvas-inner_logo,
.offcanvas-minicart_wrapper .offcanvas-menu-inner .offcanvas-inner_logo,
.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-inner_logo {
    padding: 30px 0;
    text-align: center;
}

.mobile-menu_wrapper.open .offcanvas-menu-inner,
.offcanvas-minicart_wrapper.open .offcanvas-menu-inner,
.offcanvas-search_wrapper.open .offcanvas-menu-inner {
    left: auto;
    right: 0;
    visibility: visible;
    opacity: 1;
    z-index: 999;
}


/* ---Offcanvas Close Button--- */

.btn-close {
    position: absolute;
    top: 0;
    left: -60px;
    background: #242424;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    z-index: 10;
    font-size: 24px;
    padding: 0;
    opacity: 1;
}

@media (max-width: 479px) {
    .btn-close {
        left: -50px;
        width: 50px;
    }
}

.btn-close:hover>i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.btn-close>i {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    display: block;
}

.btn-close.white-close_btn {
    color: #ffffff !important;
}


/* ---Offcanvas Navigation Area--- */

.offcanvas-navigation .mobile-menu>li {
    height: 100%;
    border-bottom: 1px solid #e5e5e5;
}

.offcanvas-navigation .mobile-menu>li>a span {
    position: relative;
}

.offcanvas-navigation .mobile-menu li {
    position: relative;
}

.offcanvas-navigation .mobile-menu li>.menu-expand {
    position: absolute;
    right: 0;
    top: 2px;
    width: 50px;
    height: 100%;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    margin-right: 4px;
    font-size: 20px;
}

.offcanvas-navigation .mobile-menu li a {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
}

.offcanvas-navigation .mobile-menu li .sub-menu {
    padding-left: 10px;
    max-height: 100px;
    overflow-y: auto;
}

.offcanvas-navigation .mobile-menu li .sub-menu li a {
    text-transform: capitalize;
    font-size: 13px;
}

.offcanvas-navigation .mobile-menu li.menu-open>.menu-expand i:before {
    content: '\f462';
}


/* ---Header User Setting Area--- */

.user-setting_area {
    padding-top: 25px;
}

.user-setting_area>ul>li>a>span {
    text-transform: capitalize;
}


/* ---Offcanvas Menu Wrapper--- */

.offcanvas-menu_wrapper {
    text-align: center;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner {
    padding: 25px 30px 30px;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    width: 375px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    visibility: hidden;
    min-height: 600px;
    overflow-y: auto;
    /* ---Offcanvas Component--- */
    /* ---Offcanvas Inner Social Link--- */
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .btn-close {
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    line-height: 1;
    background: transparent;
    color: #242424;
    z-index: 10;
    font-size: 24px;
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .btn-close:hover {
    background: transparent;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component {
    text-align: left;
    padding-top: 30px;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component.first-child {
    padding-top: 35px;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_title {
    font-size: 16px;
    display: block;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_menu>li {
    display: inline-block;
    position: relative;
    padding-right: 40px;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_menu>li:last-child {
    padding-right: 0;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_menu>li:after {
    content: "";
    width: 18px;
    height: 1px;
    background: #e5e5e5;
    display: block;
    top: 50%;
    right: 10px;
    position: absolute;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-component .offcanvas-component_menu>li:last-child:after {
    background: transparent;
}

.offcanvas-menu_wrapper .offcanvas-menu-inner .offcanvas-inner-social_link {
    position: absolute;
    bottom: 30px;
}

.offcanvas-menu_wrapper.open .offcanvas-menu-inner {
    top: 0;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.offcanvas-menu_wrapper .offcanvas-inner_logo {
    padding: 25px 0;
}

.offcanvas-menu_wrapper .short-desc {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 25px;
}

.offcanvas-menu_wrapper .short-desc>p {
    margin-bottom: 0;
}


/* ---Offcanvas Minicart Area--- */

.offcanvas-minicart_wrapper .offcanvas-menu-inner {
    padding: 60px !important;
    width: 450px;
    -webkit-box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 479px) {
    .offcanvas-minicart_wrapper .offcanvas-menu-inner {
        width: 100%;
        padding: 60px 15px !important;
    }
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .btn-close {
    background: transparent;
    color: #242424;
    top: 0;
    right: 0;
    left: auto;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-heading>h4 {
    margin-bottom: 0;
    padding-bottom: 25px;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list {
    max-height: 310px;
    position: relative;
    overflow: auto;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li {
    padding-bottom: 30px;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li:last-child {
    padding-bottom: 0;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li.minicart-product {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li.minicart-product>a.product-item_remove {
    position: absolute;
    right: 15px;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li.minicart-product .product-item_img {
    border: 1px solid #e5e5e5;
    -ms-flex-preferred-size: 70px;
    -webkit-flex-basis: 70px;
    flex-basis: 70px;
    max-width: 70px;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li.minicart-product .product-item_content {
    -webkit-flex-basis: calc(100% - 70px);
    -ms-flex-preferred-size: calc(100% - 70px);
    flex-basis: calc(100% - 70px);
    max-width: calc(100% - 70px);
    padding-left: 20px;
    padding-right: 10px;
}

@media (max-width: 479px) {
    .offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li.minicart-product .product-item_content a.product-item_title {
        font-size: 14px;
    }
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-content .minicart-list>li.minicart-product .product-item_content .product-item_quantity {
    display: block;
    padding-top: 10px;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-item_total {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    padding: 25px 0;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-btn_area {
    padding-bottom: 15px;
}

.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-btn_area .hiraola-btn {
    height: 60px;
    line-height: 60px;
    color: #ffffff !important;
}


/* ---Offcanvas Search Area--- */

.offcanvas-search_wrapper .offcanvas-menu-inner {
    background-color: #242424;
    opacity: 0.97;
    width: 100%;
    right: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    visibility: visible;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .btn-close {
    background: transparent;
    color: #242424;
    top: 15px;
    right: 15px;
    left: auto;
    font-size: 45px;
    color: #ffffff;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search {
    background-color: #242424;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    width: calc(100% - 25%);
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox {
    position: relative;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox>input {
    background-color: #333333;
    border: 0;
    height: 100px;
    line-height: 100px;
    width: 100%;
    padding: 0 100px 0 25px;
    color: #ffffff;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: 1.3s ease-in-out;
    -o-transition: 1.3s ease-in-out;
    transition: 1.3s ease-in-out;
    -webkit-transform-origin: top bottom;
    -ms-transform-origin: top bottom;
    transform-origin: top bottom;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox>input::-webkit-input-placeholder {
    color: #ffffff;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox>input::-moz-placeholder {
    color: #ffffff;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox>input:-ms-input-placeholder {
    color: #ffffff;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox>input::-ms-input-placeholder {
    color: #ffffff;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox>input::placeholder {
    color: #ffffff;
}

.offcanvas-search_wrapper .offcanvas-menu-inner .offcanvas-search .hm-searchbox>.search_btn {
    position: absolute;
    font-size: 48px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    border: 0;
    background: transparent;
    color: #ffffff;
}

.offcanvas-search_wrapper.open .offcanvas-menu-inner {
    left: auto;
    right: 0;
    padding: 0;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
}

.offcanvas-search_wrapper.open .offcanvas-menu-inner .offcanvas-search .hm-searchbox>input {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}


/*----------------------------------------*/


/*  11 - Components - Slider
/*----------------------------------------*/

@media (max-width: 575px) {
    .home-slider .slide-item {
        background-position: right;
    }
}

.home-slider .slide-item .slide-content {
    position: absolute;
    top: 50%;
    left: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home-slider .slide-item .slide-content>span {
    display: block;
    padding-bottom: 15px;
    font-size: 18px;
}

@media (max-width: 991px) {
    .home-slider .slide-item .slide-content>span {
        font-size: 14px;
    }
}

.home-slider .slide-item .slide-content>h2 {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Prata', serif;
}

@media (max-width: 991px) {
    .home-slider .slide-item .slide-content>h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .home-slider .slide-item .slide-content>h2 {
        font-size: 30px;
    }
}

.home-slider .slide-item .slide-content>p {
    margin-bottom: 95px;
    font-size: 16px;
}

@media (max-width: 991px) {
    .home-slider .slide-item .slide-content>p {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.home-slider .slide-item .slide-content>p.short-desc {
    max-width: 50%;
}

@media (max-width: 575px) {
    .home-slider .slide-item .slide-content>p.short-desc {
        max-width: 85%;
    }
}

.home-slider .slide-item .slide-content>p.short-desc-2 {
    max-width: 50%;
}

@media (max-width: 575px) {
    .home-slider .tty-slick-text-btn {
        display: none !important;
    }
}

.white-color span,
.white-color h2,
.white-color p {
    color: #ffffff;
}

.bg-1,
.bg-2 {
    background-image: url("../images/slider/1-1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 940px;
}

@media (max-width: 991px) {
    .bg-1,
    .bg-2 {
        min-height: 430px;
    }
}

@media (max-width: 575px) {
    .bg-1,
    .bg-2 {
        min-height: 380px;
    }
}

.bg-2 {
    background-image: url("../images/slider/1-2.jpg");
}

.bg-3,
.bg-4 {
    background-image: url("../images/slider/2-1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 695px;
}

@media (max-width: 991px) {
    .bg-3,
    .bg-4 {
        min-height: 430px;
    }
}

@media (max-width: 575px) {
    .bg-3,
    .bg-4 {
        min-height: 380px;
    }
}

.bg-4 {
    background-image: url("../images/slider/2-2.jpg");
}

.bg-5,
.bg-6 {
    background-image: url("../images/slider/1-1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 635px;
}

@media (max-width: 991px) {
    .bg-5,
    .bg-6 {
        min-height: 430px;
    }
}

@media (max-width: 575px) {
    .bg-5,
    .bg-6 {
        min-height: 380px;
    }
}

.bg-6 {
    background-image: url("../images/slider/1-2.jpg");
}


/* ---Slider Progress Bar--- */

.slider-progress {
    background: rgba(0, 0, 0, 0.3);
    -webkit-animation: initial;
    animation: initial;
    height: 5px;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    z-index: 4;
}

.slick-current .slider-progress {
    -webkit-animation: timebar 8s ease-in-out 0s 1 backwards;
    animation: timebar 8s ease-in-out 0s 1 backwards;
}

@-webkit-keyframes timebar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes timebar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}


/*----------------------------------------*/


/*  12 - Components - Button
/*----------------------------------------*/


/* ---Kenne's Button Position--- */

.kenne-btn-ps_center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.kenne-btn-ps_center.kenne-btn-ps_left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.kenne-btn-ps_center.kenne-btn-ps_right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.kenne-btn {
    -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0);
    background-color: #242424;
    color: #ffffff !important;
    width: 175px;
    height: 45px;
    line-height: 45px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 25px;
    font-size: 16px;
}

.kenne-btn.transparent-btn {
    background-color: transparent;
}

.kenne-btn.kenne-btn_fullwidth {
    width: 100%;
}

.kenne-btn.kenne-btn_sm {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
}

.kenne-btn.black-color {
    border: 1px solid #000000;
    font-size: 14px;
}

.kenne-btn.square-btn {
    border-radius: 0;
}


/*----------------------------------------*/


/*  23 - Components - Service
/*----------------------------------------*/

.service-area .service-nav {
    padding: 90px 0 0;
}

.service-area .service-nav .service-item {
    position: relative;
    text-align: center;
}

.service-area .service-nav .service-item:before {
    background-color: #e5e5e5;
    content: "";
    height: 32px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .service-area .service-nav .service-item:before {
        display: none;
    }
}

.service-area .service-nav .service-item .content>h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-area .service-nav .service-item .content>p {
    margin-bottom: 0;
}

.service-area .service-nav [class*="col-"]:last-child .service-item:before {
    background-color: transparent;
}

@media (max-width: 767px) {
    .service-area .service-nav [class*="col-"]:not(:last-child) .service-item {
        padding-bottom: 25px;
    }
}


/*----------------------------------------*/


/*  13 - Components - Banner
/*----------------------------------------*/

.banner-area {
    padding: 90px 0 0;
}

.banner-area .banner-item>.banner-img>a img {
    width: 100%;
}

@media (max-width: 767px) {
    .banner-area [class*="col-"]:not(:last-child) .banner-item {
        padding-bottom: 30px;
    }
}

.banner-area.banner-area-2 {
    padding: 90px 0 0;
}


/* ---Banner Area Three--- */

.banner-area-3 {
    padding: 90px 0 0;
}

@media (max-width: 991px) {
    .banner-area-3 [class*="col-"]:not(:last-child) {
        padding-bottom: 30px;
    }
}


/* ---Kenne's Banner Area Four--- */

.kenne-banner_area-4 {
    background-image: url("../images/banner/1-6.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 565px;
    position: relative;
    padding-top: 0;
    margin-top: 90px;
}

.kenne-banner_area-4:before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
}

.kenne-banner_area-4 .banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 32%;
}

@media (max-width: 1500px) {
    .kenne-banner_area-4 .banner-content {
        width: 45%;
    }
}

@media (max-width: 1199px) {
    .kenne-banner_area-4 .banner-content {
        width: 55%;
    }
}

@media (max-width: 991px) {
    .kenne-banner_area-4 .banner-content {
        width: 70%;
    }
}

@media (max-width: 991px) {
    .kenne-banner_area-4 .banner-content {
        width: 95%;
    }
}

.kenne-banner_area-4 .banner-content h3,
.kenne-banner_area-4 .banner-content p,
.kenne-banner_area-4 .banner-content a {
    color: #ffffff;
}

.kenne-banner_area-4 .banner-content>h3 {
    font-size: 45px;
    margin-bottom: 0;
    padding-bottom: 15px;
}

@media (max-width: 575px) {
    .kenne-banner_area-4 .banner-content>h3 {
        font-size: 30px;
    }
}

.kenne-banner_area-4 .banner-content>p {
    margin-bottom: 0;
    padding-bottom: 15px;
}

.kenne-banner_area-4 .banner-content>.contact-us {
    padding-bottom: 25px;
}

.kenne-banner_area-4 .banner-content>.contact-us>a {
    font-weight: 600;
}

.kenne-banner_area-4 .banner-content>.kenne-btn-ps_center>a.kenne-btn {
    border-radius: 4px;
}


/* ---Banner Area Four--- */

.banner-area-5 {
    padding: 90px 0 0;
}

.banner-area-5 .banner-item {
    position: relative;
}

.banner-area-5 .banner-item .banner-img {
    background-image: url("../images/banner/2-6.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 330px;
}

@media (max-width: 479px) {
    .banner-area-5 .banner-item .banner-img {
        background-position: left;
    }
}

.banner-area-5 .banner-item .banner-content {
    text-align: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20%;
}

@media (max-width: 575px) {
    .banner-area-5 .banner-item .banner-content {
        right: 10%;
    }
}

@media (max-width: 479px) {
    .banner-area-5 .banner-item .banner-content {
        position: absolute;
        right: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
    }
}

.banner-area-5 .banner-item .banner-content>span {
    text-transform: uppercase;
    font-weight: 500;
    /* letter-spacing: 4px; */
    display: block;
    padding-bottom: 10px;
}

.banner-area-5 .banner-item .banner-content>h3 {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.2;
    /* letter-spacing: 4px; */
}

@media (max-width: 991px) {
    .banner-area-5 .banner-item .banner-content>h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .banner-area-5 .banner-item .banner-content .kenne-btn {
        width: 100px;
        height: 30px;
        line-height: 29px;
        font-size: 12px;
        text-transform: capitalize;
    }
}


/*----------------------------------------*/


/*  14 - Components - Product
/*----------------------------------------*/

.product-area {
    padding: 90px 0 0;
}

.product-area.pb-90 {
    padding-bottom: 90px;
}

.product-item {
    margin: 10px 0;
}

.product-item .single-product {
    border: 1px solid #e5e5e5;
    padding: 20px;
}

.product-item .single-product .product-img {
    position: relative;
    text-align: center;
}

.product-item .single-product .product-img>a {
    display: block;
}

.product-item .single-product .product-img>a img {
    width: 100%;
}

.product-item .single-product .product-img>a .secondary-img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
}

.product-item .single-product .product-img:hover .secondary-img {
    opacity: 1;
}

.product-item .single-product .product-img .add-actions {
    background-color: #f5f5f5;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
}

.product-item .single-product .product-img .add-actions>ul>li {
    display: block;
}

.product-item .single-product .product-img .add-actions>ul>li>a {
    display: block;
    width: 0;
    height: 35px;
    line-height: 36px;
    text-align: center;
}

.product-item .single-product .product-img .add-actions>ul>li>a>i {
    font-size: 20px;
}

.product-item .single-product .product-content {
    padding-top: 30px;
}

.product-item .single-product .product-content .product-desc_info .price-box .new-price {
    font-size: 16px;
}

.product-item .single-product .product-content .product-desc_info .price-box .old-price {
    color: #bbbbbb;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 10px;
}

.product-item .single-product .product-content .product-desc_info .product-category {
    position: relative;
    margin-bottom: 10px;
    padding-left: 30px;
}

.product-item .single-product .product-content .product-desc_info .product-category a {
    font-size: 14px;
    display: block;
}

.product-item .single-product .product-content .product-desc_info .product-category a:before {
    content: "";
    background-color: #bbbbbb;
    height: 2px;
    width: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-item .single-product .product-content .product-desc_info h3.product-name {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.product-item .single-product .product-content .product-desc_info .rating-box {
    padding-top: 10px;
}

.product-item .single-product .product-content .product-desc_info .rating-box>ul>li {
    display: inline-block;
}

.product-item .single-product .product-content .product-desc_info .rating-box>ul>li>i {
    font-size: 18px;
}

.product-item .single-product:hover {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-item .single-product:hover .product-img .add-actions {
    opacity: 1;
}

.product-item .single-product:hover .product-img .add-actions>ul>li>a {
    width: 35px;
}


/* ---List Product--- */

.list-product_area {
    padding-top: 80px;
}

.list-product_area .section-title {
    margin-bottom: 25px;
}

@media (max-width: 479px) {
    .list-product_area .section-title>h3 {
        font-size: 16px;
        padding-left: 0;
        padding-right: 10px;
    }
}

.list-product_area .list-product_slider .product-item {
    border: 1px solid #e5e5e5;
    margin: 15px 0;
}

.list-product_area .list-product_slider .product-item .single-product {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 0;
    padding: 20px;
}

@media (max-width: 479px) {
    .list-product_area .list-product_slider .product-item .single-product {
        display: block;
    }
}

.list-product_area .list-product_slider .product-item .single-product .product-img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 140px;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
}

.list-product_area .list-product_slider .product-item .single-product .product-content {
    padding-left: 15px;
    padding-top: 0;
}

@media (max-width: 479px) {
    .list-product_area .list-product_slider .product-item .single-product .product-content {
        padding-bottom: 30px;
    }
}

.list-product_area .list-product_slider .product-item .single-product .product-content span.manufacture-product {
    padding-bottom: 5px;
    display: block;
}

.list-product_area .list-product_slider .product-item .single-product .product-content .add-actions {
    opacity: 0;
}

.list-product_area .list-product_slider .product-item .single-product .product-content .add-actions>ul>li {
    display: inline-block;
}

.list-product_area .list-product_slider .product-item .single-product .product-content .add-actions>ul>li>a {
    background-color: #f5f5f5;
    padding: 10px;
}

.list-product_area .list-product_slider .product-item .single-product .product-content .add-actions>ul>li i {
    font-size: 18px;
}

.list-product_area .list-product_slider .product-item .single-product .product-content .add-actions>ul>li:not(:last-child) {
    margin-right: 5px;
}

.list-product_area .list-product_slider .product-item .single-product .product-content .add-actions>ul>li:nth-child(2)>a {
    padding: 10px 20px;
}

@media (max-width: 991px) {
    .list-product_area .list-product_slider .product-item .single-product .product-content .add-actions>ul>li:nth-child(2)>a {
        padding: 10px 8px;
    }
}

.list-product_area .list-product_slider .product-item .single-product:hover {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.list-product_area .list-product_slider .product-item .single-product:hover .add-actions {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.list-product_area .list-product_slider .slick-list {
    margin: -15px;
}


/*----------------------------------------*/


/*  15 - Components - Product Tab
/*----------------------------------------*/

.product-tab_area {
    padding: 95px 0 0;
}

.product-tab_area .section-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 35px;
}

@media (max-width: 479px) {
    .product-tab_area .section-title {
        display: block;
    }
    .product-tab_area .section-title:before {
        display: none;
    }
    .product-tab_area .section-title>h3 {
        padding-right: 0;
    }
}

.product-tab_area .section-title .product-tab {
    background-color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    padding-left: 25px;
    padding-right: 120px;
    position: relative;
}

@media (max-width: 479px) {
    .product-tab_area .section-title .product-tab {
        padding-left: 0;
        padding-top: 15px;
    }
}

.product-tab_area .section-title .product-tab>ul.product-menu>li {
    margin-right: 15px;
}

.product-tab_area .section-title .product-tab>ul.product-menu>li:last-child {
    margin-right: 0;
}


/* ---Kenne's Product Tab Area Two--- */

.product-tab_area-2 {
    background-color: #ffffff;
}

.product-tab_area-2 .short-desc {
    margin: 0 auto;
    text-align: center;
}

.product-tab_area-2 .short-desc>p {
    margin-bottom: 0;
    padding-bottom: 15px;
}

.product-tab_area-2 .product-tab {
    border-bottom: 1px solid #e5e5e5;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 25px;
}

@media (max-width: 767px) {
    .product-tab_area-2 .product-tab {
        display: block;
    }
}

@media (max-width: 767px) {
    .product-tab_area-2 .product-tab .kenne-tab_title {
        padding-bottom: 20px;
    }
}

.product-tab_area-2 .product-tab .kenne-tab_title>h4 {
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .product-tab_area-2 .product-tab .kenne-tab_title>h4 {
        font-size: 20px;
    }
}

@media (max-width: 479px) {
    .product-tab_area-2 .product-tab>ul.product-menu {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.product-tab_area-2 .product-tab>ul.product-menu>li>a {
    text-transform: uppercase;
    padding: 0 30px;
    position: relative;
    display: block;
}

@media (max-width: 991px) {
    .product-tab_area-2 .product-tab>ul.product-menu>li>a {
        padding: 0 15px;
        font-size: 14px;
    }
}

@media (max-width: 479px) {
    .product-tab_area-2 .product-tab>ul.product-menu>li>a {
        padding: 0 0 10px 0;
    }
}

.product-tab_area-2 .product-tab>ul.product-menu>li>a.active {
    color: #c59339;
}

.product-tab_area-2 .product-tab>ul.product-menu>li>a:after {
    background-color: #bbbbbb;
    content: "";
    position: absolute;
    top: 50%;
    right: -9px;
    height: 2px;
    width: 18px;
}

@media (max-width: 991px) {
    .product-tab_area-2 .product-tab>ul.product-menu>li>a:after {
        width: 10px;
        right: -5px;
    }
}

@media (max-width: 575px) {
    .product-tab_area-2 .product-tab>ul.product-menu>li>a:after {
        display: none;
    }
}

.product-tab_area-2 .product-tab>ul.product-menu>li:last-child>a {
    padding-right: 0;
}

@media (max-width: 479px) {
    .product-tab_area-2 .product-tab>ul.product-menu>li:last-child>a {
        padding: 0;
    }
}

.product-tab_area-2 .product-tab>ul.product-menu>li:last-child>a:after {
    display: none;
}


/*----------------------------------------*/


/*  16 - Components - Brand
/*----------------------------------------*/

.brand-area.pt-90 {
    padding-top: 90px;
}

.brand-area .brand-nav.border-top {
    border-top: 1px solid #e5e5e5;
}

.brand-area .brand-nav.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.brand-area .brand-nav .brand-slider {
    overflow: hidden;
}

.brand-area .brand-nav .brand-slider .brand-item {
    padding: 45px 0 40px;
}


/*----------------------------------------*/


/*  17 - Components - Form
/*----------------------------------------*/


/* ---Newsletter Form--- */

.newsletter-form_wrap .subscribe-form {
    position: relative;
}

.newsletter-form_wrap .subscribe-form .newsletter-input {
    border: 1px solid #e5e5e5;
    height: 50px;
    width: 100%;
    padding: 0 70px 0 20px;
}

.newsletter-form_wrap .subscribe-form .newsletter-btn {
    position: absolute;
    font-size: 21px;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}


/*----------------------------------------*/


/*  18 - Components - Social Link
/*----------------------------------------*/

.kenne-social_link {
    padding-top: 25px;
}

.kenne-social_link>ul>li {
    display: inline-block;
    padding-right: 10px;
}

@media (max-width: 575px) {
    .kenne-social_link>ul>li {
        padding-right: 5px;
    }
}

.kenne-social_link>ul>li:last-child {
    padding-right: 0;
}

.kenne-social_link>ul>li>a {
    border: 1px solid #e5e5e5;
    font-size: 16px;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

@media (max-width: 575px) {
    .kenne-social_link>ul>li>a {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}


/*----------------------------------------*/


/*  19 - Components - Animation
/*----------------------------------------*/


/* Animation Style One */

.slick-active .animation-style-01 .slide-content>span {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slick-active .animation-style-01 .slide-content>h2 {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slick-active .animation-style-01 .slide-content>p {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slick-active .animation-style-01 .slide-content>.slide-btn {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/*Top Up Keyframes*/

@-webkit-keyframes kenSlideInUp {
    0% {
        -webkit-transform: translateY(250px);
        transform: translateY(250px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes kenSlideInUp {
    0% {
        -webkit-transform: translateY(250px);
        transform: translateY(250px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


/*Top Down Keyframes*/

@-webkit-keyframes kenSlideInDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}

@keyframes kenSlideInDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}

.kenSlideInDown {
    -webkit-animation: slide-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slide-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-right {
    -webkit-animation: slide-in-right 4s linear infinite alternate both;
    animation: slide-in-right 4s linear infinite alternate both;
}


/* ----------------------------------------------
 * Generated by Animista on 2019-1-7 17:0:13
 * w: https://animista.net, t: @cssanimista
 * ---------------------------------------------- */


/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(340px);
        transform: translateX(340px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(340px);
        transform: translateX(340px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/*----------------------------------------*/


/*  20 - Components - Breadcrumb
/*----------------------------------------*/

.breadcrumb-area {
    background-image: url("../images/breadcrumb/1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 225px;
    position: relative;
}

.breadcrumb-area .breadcrumb-content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

@media (max-width: 575px) {
    .breadcrumb-area .breadcrumb-content {
        width: 100%;
    }
}

.breadcrumb-area .breadcrumb-content>h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 36px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

@media (max-width: 1199px) {
    .breadcrumb-area .breadcrumb-content>h2 {
        font-size: 20px;
    }
}

.breadcrumb-area .breadcrumb-content ul>li {
    display: inline-block;
    padding-left: 20px;
    position: relative;
}

.breadcrumb-area .breadcrumb-content ul>li:first-child {
    padding-left: 0;
}

.breadcrumb-area .breadcrumb-content ul>li:before {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-size: 10px;
    font-weight: 600;
    right: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.breadcrumb-area .breadcrumb-content ul>li:last-child:before {
    display: none;
}


/*----------------------------------------*/


/*  21 - Components - Modal
/*----------------------------------------*/


/* ---Modal--- */

.modal-wrapper {
    display: block !important;
}

.modal-wrapper.modal {
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: -9;
}

.modal-wrapper.show {
    background-color: rgba(0, 0, 0, 0.9);
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    z-index: 1050;
}

.modal-wrapper .modal-dialog {
    max-width: 86%;
}

.modal-wrapper .modal-dialog .modal-content {
    padding: 30px 30px 25px;
    height: 755px;
    overflow-y: auto;
}

.modal-wrapper .modal-dialog .modal-content .modal-body {
    padding: 0;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .close {
    font-size: 30px;
    font-weight: 400;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 99;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area {
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 30px !important;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider {
    border: 1px solid #e5e5e5;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav {
    padding: 0 60px;
    margin-top: 30px;
}

@media (max-width: 479px) {
    .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav {
        padding: 0;
    }
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .slick-slide img {
    border: 1px solid #e5e5e5;
    width: 100%;
    opacity: 0.7;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .slick-slide.slick-current img {
    opacity: 1;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .slick-slide:hover img {
    opacity: 1;
}

@media (max-width: 479px) {
    .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-img_slider-nav .tty-slick-text-btn {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content {
        padding-top: 25px;
    }
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .sp-heading>h5 {
    margin-bottom: 0;
    padding-bottom: 20px;
    line-height: 24px;
}

@media (max-width: 1199px) {
    .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .sp-heading>h5 {
        font-size: 18px;
    }
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .rating-box {
    padding-bottom: 15px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .rating-box>ul>li {
    display: inline-block;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box {
    padding-bottom: 10px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box .new-price {
    font-size: 24px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box .new-price {
    font-size: 16px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .price-box .old-price {
    color: #bbbbbb;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 10px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .essential_stuff {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .color-list_area {
    margin-top: 15px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .quantity {
    padding-top: 15px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-group_btn {
    padding-top: 22px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-group_btn>ul>li {
    display: inline-block;
    margin-left: 5px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-group_btn>ul>li:first-child {
    margin-left: 0;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-group_btn>ul>li>a {
    border: 2px solid #e5e5e5;
    width: 50px;
    height: 50px;
    line-height: 47px;
    display: block;
    text-align: center;
}

@media (max-width: 479px) {
    .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-group_btn>ul>li>a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-group_btn>ul>li>a.add-to_cart {
    background-color: #242424;
    border: 2px solid #242424;
    color: #ffffff;
    width: 140px;
}

@media (max-width: 575px) {
    .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-group_btn>ul>li>a.add-to_cart {
        width: 95px;
    }
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-group_btn>ul>li>a>i {
    font-size: 18px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-tag-line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-tag-line h6 {
    margin-bottom: 0;
    padding-right: 5px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-tag-line>span {
    padding-right: 5px;
}

@media (max-width: 575px) {
    .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-tag-line>a {
        font-size: 14px;
    }
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn {
    padding-top: 17px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li {
    display: inline-block;
    opacity: 0.8;
    position: relative;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li>a {
    background: #3b579d;
    color: #ffffff;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 14px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li>a:hover {
    color: #ffffff !important;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li>a>i {
    padding-right: 5px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li:nth-child(2)>a {
    background-color: #3acaff;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li:nth-child(3)>a {
    background-color: #fe6d4c;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li:hover {
    opacity: 1;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li .dropdown {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
    width: 165px;
    padding: 4px;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    bottom: 25px;
    left: 0;
    z-index: 99;
}

@media (max-width: 575px) {
    .modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li .dropdown {
        left: auto;
        right: 0;
    }
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li .dropdown>li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li .dropdown>li:hover {
    background-color: #3b579d;
    color: #ffffff;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li .dropdown>li>i {
    text-align: center;
    -webkit-flex-basis: 30px;
    -ms-flex-preferred-size: 30px;
    flex-basis: 30px;
    width: 30px;
}

.modal-wrapper .modal-dialog .modal-content .modal-body .modal-inner-area .sp-content .kenne-social_btn>ul>li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
}


/*----------------------------------------*/


/*  22 - Components - Instagram
/*----------------------------------------*/

.kenne-instagram_area {
    padding: 95px 0;
}

.kenne-instagram_area .kenne-section_area {
    text-align: center;
    padding-bottom: 40px;
}

.kenne-instagram_area .kenne-section_area>p {
    max-width: 40%;
    margin: 0 auto;
}

@media (max-width: 1500px) {
    .kenne-instagram_area .kenne-section_area>p {
        max-width: 35%;
    }
}

@media (max-width: 1199px) {
    .kenne-instagram_area .kenne-section_area>p {
        max-width: 45%;
    }
}

@media (max-width: 767px) {
    .kenne-instagram_area .kenne-section_area>p {
        max-width: 70%;
    }
}

@media (max-width: 575px) {
    .kenne-instagram_area .kenne-section_area>p {
        max-width: 100%;
    }
}

.kenne-instagram_area .instagram-slider .single-item .instagram-img>a img {
    width: 100%;
}


/*----------------------------------------*/


/*  25 - Section - Header
/*----------------------------------------*/


/* ---Header Top Area--- */

.header-top_area .header-top_nav {
    border-bottom: 1px solid #e5e5e5;
}

.header-top_area .ht-menu>ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header-top_area .ht-menu>ul>li {
    display: inline-block;
    position: relative;
}

.header-top_area .ht-menu>ul>li:hover .ht-dropdown {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.header-top_area .ht-menu>ul>li .ht-dropdown {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    width: 150px;
    padding: 10px;
    z-index: 99;
}

.header-top_area .ht-menu>ul>li .ht-dropdown>li a {
    border-bottom: 1px solid #e5e5e5;
    display: block;
    padding: 10px 5px;
    line-height: 25px;
    font-size: 12px;
}

.header-top_area .ht-menu>ul>li .ht-dropdown>li a img {
    margin-right: 5px;
}

.header-top_area .ht-menu>ul>li .ht-dropdown>li:first-child>a {
    padding-top: 0;
}

.header-top_area .ht-menu>ul>li .ht-dropdown>li:last-child>a {
    border-bottom: 0;
    padding-bottom: 0;
}

.header-top_area .ht-menu>ul>li>a {
    padding: 8px 15px;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}

.header-top_area .ht-menu>ul>li>a>i {
    padding-left: 5px;
    font-size: 11px;
}

.header-top_area .ht-menu>ul>li:first-child>a {
    padding-left: 0;
}

.header-top_area .header-top_right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-top_area .header-top_right>ul>li {
    display: inline-block;
}

.header-top_area .header-top_right>ul>li>a {
    padding: 8px 15px;
    display: block;
    font-size: 12px;
}

.header-top_area .header-top_right>ul>li:last-child>a {
    padding-right: 0;
}


/* ---Header Middle Area--- */

.header-middle_area .header-middle_nav {
    padding: 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-middle_area .header-middle_nav .header-search_area form.search-form {
    position: relative;
}

.header-middle_area .header-middle_nav .header-search_area form.search-form input {
    border: 1px solid #e5e5e5;
    height: 40px;
    padding: 0 40px 0 15px;
}

.header-middle_area .header-middle_nav .header-search_area form.search-form button.search-button {
    position: absolute;
    right: 0;
    padding: 5px 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
}


/* ---Header Right Area--- */

.header-right_area>ul>li.minicart-wrap {
    position: relative;
}

.header-right_area>ul>li.minicart-wrap>a.minicart-btn {
    border: 1px solid #e5e5e5;
    padding: 9px 12px 6px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-right_area>ul>li.minicart-wrap>a.minicart-btn .minicart-count_area {
    border-right: 1px solid #e5e5e5;
    padding-right: 10px;
    margin-right: 10px;
}

.header-right_area>ul>li.minicart-wrap>a.minicart-btn .minicart-count_area>span.item-count {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 100%;
    font-size: 11px;
}

.header-right_area>ul>li.minicart-wrap>a.minicart-btn .minicart-count_area i {
    font-size: 25px;
}

.header-right_area.header-right_area-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-right_area.header-right_area-2>ul>li {
    display: inline-block;
    margin-right: 15px;
}

.header-right_area.header-right_area-2>ul>li:last-child {
    margin-right: 0;
}

@media (max-width: 991px) {
    .header-right_area.header-right_area-2>ul>li:nth-child(3) {
        margin-right: 0;
    }
}

.header-right_area.header-right_area-2>ul>li.minicart-wrap>a {
    border: 0;
    padding: 0;
}

.header-right_area.header-right_area-2>ul>li.minicart-wrap>a>.minicart-count_area {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

.header-right_area.header-right_area-2>ul>li.minicart-wrap>a>.minicart-count_area>span.item-count {
    top: -15px;
    left: -18px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 9px;
}

.header-right_area.header-right_area-2>ul>li.minicart-wrap>a>.minicart-count_area>i {
    font-size: 25px;
}

.header-right_area.header-right_area-2>ul>li.mobile-menu_wrap>a>i {
    vertical-align: text-bottom;
    font-size: 23px;
}

.header-right_area.header-right_area-2>ul>li>a>i {
    font-size: 25px;
}


/* ---Header Bottom Area--- */

.main-nav>ul>li {
    display: inline-block;
    margin-right: 40px;
}

.main-nav>ul>li .kenne-dropdown {
    -webkit-box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.97);
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    padding: 20px 0 24px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    position: absolute;
    width: 230px;
    z-index: 9;
}

.main-nav>ul>li .kenne-dropdown>li {
    padding-left: 0;
}

.main-nav>ul>li .kenne-dropdown>li>a {
    padding: 10px 20px;
    display: block;
}

.main-nav>ul>li .kenne-dropdown>li:hover {
    padding-left: 10px;
}

.main-nav>ul>li:hover .kenne-dropdown {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.main-nav>ul>li>a {
    text-transform: uppercase;
    padding: 20px 0;
    display: block;
}

.main-nav>ul>li>a>i {
    margin-left: 5px;
}

.main-nav>ul>li.megamenu-holder .kenne-megamenu {
    -webkit-box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.97);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: auto;
    top: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 999;
}

.main-nav>ul>li.megamenu-holder:hover .kenne-megamenu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.main-nav>ul>li.megamenu-holder>ul>li {
    width: 33.33%;
}

.main-nav>ul>li.megamenu-holder>ul>li>span.megamenu-title {
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.main-nav>ul>li.megamenu-holder>ul>li>span.megamenu-title:before {
    content: "";
    width: 50%;
    height: 1px;
    position: absolute;
    bottom: -1px;
}

.main-nav>ul>li.megamenu-holder>ul>li>ul>li {
    padding-left: 0;
}

.main-nav>ul>li.megamenu-holder>ul>li>ul>li>a {
    display: block;
    line-height: 35px;
    font-size: 16px;
}

.main-nav>ul>li.megamenu-holder>ul>li>ul>li:hover {
    padding-left: 10px;
}


/* ---Header Contact--- */

.header-contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-contact>i {
    font-size: 30px;
}

.header-contact .contact-content {
    padding-left: 15px;
}

.header-contact .contact-content p {
    margin-bottom: 0;
}


/* ---Transparent Header--- */

.transparent-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

@media (max-width: 991px) {
    .transparent-header {
        position: relative;
    }
}

.transparent-header .transparent-header_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 0 0;
}

@media (max-width: 991px) {
    .transparent-header .transparent-header_nav {
        padding: 30px 0;
    }
}

.transparent-header .transparent-header_nav .header-logo_area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}


/* ---Sticky Header--- */

.header-sticky {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all 300ms ease-in 0s;
    -o-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
    z-index: 99;
    display: none;
}

.header-sticky.sticky {
    -webkit-animation: 800ms ease-in-out 0s normal none 1 running slideInDown;
    animation: 800ms ease-in-out 0s normal none 1 running slideInDown;
    display: block;
}

@media (max-width: 575px) {
    .header-sticky.sticky {
        position: static;
    }
}

.header-sticky .sticky-header_nav {
    padding: 0;
}

@media (max-width: 991px) {
    .header-sticky .sticky-header_nav {
        padding: 20px 0;
    }
}

.header-sticky .sticky-header_nav .header-logo_area>a>img {
    max-width: 120px;
}

@media (max-width: 1199px) {
    .header-sticky .sticky-header_nav .main-menu_area>nav.main-nav>ul>li {
        margin-right: 20px;
    }
}

.header-sticky .sticky-header_nav .header-right_area-2 {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-sticky.header-sticky.sticky {
    display: block;
}


/*----------------------------------------*/


/*  26 - Section - Footer
/*----------------------------------------*/

.kenne-footer_area {
    /* ---Footer Bottom--- */
}

.kenne-footer_area .footer-top_area {
    padding: 90px 0;
    border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 991px) {
    .kenne-footer_area .footer-top_area .newsletter-area {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .kenne-footer_area .footer-top_area .newsletter-area {
        padding-bottom: 0;
    }
}

.kenne-footer_area .footer-top_area .newsletter-area .newsletter-logo {
    padding-bottom: 25px;
}

@media (max-width: 575px) {
    .kenne-footer_area .footer-top_area .footer-widgets_wrap [class*="col-"] {
        margin-top: 30px;
    }
}

.kenne-footer_area .footer-top_area .footer-widgets_wrap .footer-widgets_title>h4 {
    padding-bottom: 40px;
    font-size: 22px;
    margin-bottom: 0;
}

.kenne-footer_area .footer-top_area .footer-widgets_wrap .footer-widgets_title.widgets-info_title>h4 {
    padding-bottom: 25px;
}

.kenne-footer_area .footer-top_area .footer-widgets_wrap .widget-short_desc>p {
    margin-bottom: 0;
    padding-bottom: 25px;
}

.kenne-footer_area .footer-top_area .footer-widgets_wrap .footer-widgets>ul>li {
    padding-bottom: 10px;
}

.kenne-footer_area .footer-top_area .footer-widgets_wrap .footer-widgets>ul>li:last-child {
    padding-bottom: 0;
}

.kenne-footer_area .footer-bottom_area {
    padding: 20px 0;
}

.kenne-footer_area .footer-bottom_area .copyright {
    font-size: 14px;
    line-height: 30px;
}

@media (max-width: 767px) {
    .kenne-footer_area .footer-bottom_area .copyright {
        text-align: center;
        padding-bottom: 14px;
    }
}

.kenne-footer_area .footer-bottom_area .copyright>span>a:hover {
    text-decoration: underline;
}

.kenne-footer_area .footer-bottom_area .payment {
    text-align: left;
}

@media (max-width: 767px) {
    .kenne-footer_area .footer-bottom_area .payment {
        text-align: center;
    }
}


/*----------------------------------------*/


/*  29 - Pages - Blog
/*----------------------------------------*/

.blog-item .blog-content {
    text-align: center;
}

.blog-item .blog-content>h3.heading {
    padding-top: 25px;
    line-height: 24px;
    font-size: 25px;
    max-width: 85%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .blog-item .blog-content>h3.heading {
        max-width: 100%;
    }
}

.blog-item .blog-content>p.short-desc {
    margin-bottom: 0;
    padding-top: 15px;
}

.blog-item .blog-content .blog-meta {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
    margin-top: 25px;
}

.blog-item .blog-content .blog-meta>ul>li {
    display: inline-block;
    position: relative;
}

.blog-item .blog-content .blog-meta>ul>li:before {
    background-color: #242424;
    content: "";
    height: 1px;
    position: absolute;
    right: -16px;
    top: 50%;
    width: 12px;
    -webkit-transform: translateY(-50%) rotate(-58deg);
    -ms-transform: translateY(-50%) rotate(-58deg);
    transform: translateY(-50%) rotate(-58deg);
}

.blog-item .blog-content .blog-meta>ul>li:first-child {
    margin-right: 15px;
}

.blog-item .blog-content .blog-meta>ul>li:not(:first-child):before {
    background-color: transparent;
}

.blog-item .single-item {
    position: relative;
}


/* ---Latest Blog--- */

.latest-blog_area {
    padding-top: 80px;
}

.latest-blog_area .section-title {
    margin-bottom: 40px;
}

.latest-blog_area .blog-item .blog-content>h3.heading {
    font-size: 18px;
}


/* ---Latest Blog Two--- */

.latest-blog_area-2 {
    padding-bottom: 65px;
}

.latest-blog_area-2 .section-title {
    margin-bottom: 40px;
}

.latest-blog_area-2 .blog-item {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

@media (max-width: 479px) {
    .latest-blog_area-2 .blog-item {
        display: block !important;
    }
}

.latest-blog_area-2 .blog-item .blog-img {
    height: 100%;
    width: 100%;
}

.latest-blog_area-2 .blog-item .blog-content {
    text-align: left;
    padding-left: 25px;
}

@media (max-width: 479px) {
    .latest-blog_area-2 .blog-item .blog-content {
        padding-left: 0;
        padding-top: 25px;
    }
}

.latest-blog_area-2 .blog-item .blog-content>h3.heading {
    padding-top: 0;
    max-width: 100%;
    margin: 0;
    font-size: 18px;
}


/* ---Blog Sidebar--- */

@media (max-width: 991px) {
    .kenne-blog-sidebar-wrapper {
        padding-top: 100px;
    }
}

.kenne-blog-sidebar-wrapper .search-form_area form.search-form {
    position: relative;
}

.kenne-blog-sidebar-wrapper .search-form_area form.search-form .search-field {
    border: 1px solid #e5e5e5;
    padding: 0 40px 0 10px;
    font-size: 14px;
    height: 40px;
    width: 100%;
    text-transform: capitalize;
}

.kenne-blog-sidebar-wrapper .search-form_area form.search-form .search-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.kenne-blog-sidebar-wrapper .search-form_area form.search-form .search-btn>i {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 43px;
    display: block;
    text-align: center;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar {
    padding-bottom: 50px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar:first-child {
    padding-top: 0;
    padding-bottom: 60px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar:last-child {
    padding-top: 0;
    padding-bottom: 0;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .kenne-blog-sidebar-title {
    font-size: 20px;
    line-height: 20px;
    position: relative;
    margin-bottom: 55px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .kenne-blog-sidebar-title:before {
    background-color: #e5e5e5;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -26px;
    left: 0;
    position: absolute;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .kenne-blog-archive li {
    margin-bottom: 10px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .kenne-blog-archive li a {
    font-size: 14px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .kenne-blog-archive li:last-child {
    margin-bottom: 0;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-post .recent-post_thumb {
    width: 65px;
    height: 100%;
    margin-bottom: 30px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-post .recent-post_desc {
    width: calc(100% - 65px);
    padding-left: 15px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-post .recent-post_desc span {
    display: block;
    text-transform: capitalize;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-post .recent-post_desc .post-date {
    font-weight: 400;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-post[class*="recent-post"]:last-child .recent-post_thumb {
    margin-bottom: 0;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-comment {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-comment .user-img {
    width: 65px;
    height: 100%;
    margin-bottom: 30px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-comment .user-img>img {
    border-radius: 100%;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-comment .user-info {
    width: calc(100% - 65px);
    padding-left: 15px;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-comment .user-info>span {
    display: block;
    text-transform: capitalize;
}

.kenne-blog-sidebar-wrapper .kenne-blog-sidebar .recent-comment[class*="recent-comment"]:last-child .user-img {
    margin-bottom: 0;
}


/* ---Blog Grid View--- */

.grid-view_area {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .grid-view_area {
        padding: 100px 0 95px;
    }
}

.grid-view_area .blog-item_wrap [class*="col-"]:not(:nth-child(-n+2)) .blog-item {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .grid-view_area .blog-item_wrap [class*="col-"]:not(:first-child) .blog-item {
        margin-top: 30px;
    }
}


/* ---Blog List View--- */

.list-view_area {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .list-view_area {
        padding: 100px 0 95px;
    }
}

.list-view_area .blog-item_wrap [class*="col-"]:not(:first-child) .blog-item {
    margin-top: 30px;
}


/* ---Blog Details--- */

.blog-details_area {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .blog-details_area {
        padding: 100px 0 95px;
    }
}

.blog-details_area .blog-item .blog-content {
    background-color: transparent;
    padding: 0 0 25px;
}

.blog-details_area .kenne-blog-blockquote {
    padding: 0 0 0 40px;
}

@media (max-width: 991px) {
    .blog-details_area .kenne-blog-blockquote {
        padding: 0;
    }
}

.blog-details_area .kenne-blog-blockquote blockquote {
    border: 1px solid #e5e5e5;
    padding: 40px;
    position: relative;
    margin: 0 0 20px;
    font-style: italic;
    background: #f5f5f5;
}

.blog-details_area .kenne-blog-blockquote blockquote p:before {
    content: "";
    background: #c59339;
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
}

.blog-details_area .kenne-tag-line {
    padding: 25px 0 25px;
    margin-top: 25px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.blog-details_area .kenne-tag-line h4 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
    padding-right: 5px;
}

.blog-details_area .kenne-tag-line a {
    font-style: italic;
    text-transform: capitalize;
    font-size: 16px;
}

.blog-details_area .kenne-tag-line a:hover {
    color: #c59339;
}

.blog-details_area .kenne-social_link {
    padding-top: 30px;
    text-align: center;
}

@media (max-width: 479px) {
    .blog-details_area .kenne-social_link {
        text-align: left;
    }
}

.blog-details_area .kenne-comment-section {
    padding-top: 28px;
}

.blog-details_area .kenne-comment-section h3 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 25px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.blog-details_area .kenne-comment-section ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 30px 30px 23px;
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
}

@media (max-width: 479px) {
    .blog-details_area .kenne-comment-section ul li {
        display: block;
    }
}

.blog-details_area .kenne-comment-section ul li .author-avatar {
    -ms-flex-preferred-size: 70px;
    -webkit-flex-basis: 70px;
    flex-basis: 70px;
}

@media (max-width: 479px) {
    .blog-details_area .kenne-comment-section ul li .author-avatar {
        text-align: center;
        padding-bottom: 20px;
    }
}

.blog-details_area .kenne-comment-section ul li .comment-body {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    padding-left: 30px;
}

@media (max-width: 479px) {
    .blog-details_area .kenne-comment-section ul li .comment-body {
        padding-left: 0;
    }
}

.blog-details_area .kenne-comment-section ul li .comment-body h5 {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 13px;
    margin-bottom: 0;
    text-transform: capitalize;
}

@media (max-width: 479px) {
    .blog-details_area .kenne-comment-section ul li .comment-body h5 {
        padding-bottom: 18px;
        overflow: hidden;
        line-height: 26px;
    }
}

.blog-details_area .kenne-comment-section ul li .comment-body p {
    font-size: 14px;
    max-width: 80%;
    margin-bottom: 0;
}

@media (max-width: 479px) {
    .blog-details_area .kenne-comment-section ul li .comment-body p {
        max-width: 100%;
    }
}

.blog-details_area .kenne-comment-section ul li .comment-body .comment-post-date {
    padding-bottom: 10px;
}

@media (max-width: 479px) {
    .blog-details_area .kenne-comment-section ul li .comment-body .comment-post-date {
        padding-bottom: 15px;
    }
}

.blog-details_area .kenne-comment-section ul li .comment-body .reply-btn {
    float: right;
}

.blog-details_area .kenne-comment-section ul li .comment-body .reply-btn a {
    font-size: 12px;
    display: inline-block;
    width: 60px;
    height: 25px;
    line-height: 23px;
    text-align: center;
    border-radius: 20px;
    text-transform: capitalize;
}

.blog-details_area .kenne-comment-section ul .comment-children {
    margin-left: 40px;
}

@media (max-width: 991px) {
    .blog-details_area .kenne-comment-section ul .comment-children {
        margin-left: 15px;
    }
}

.blog-details_area .kenne-blog-comment-wrapper h3 {
    border-bottom: 1px solid #e5e5e5;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    padding: 0 0 26px;
    margin-bottom: 0;
}

.blog-details_area .kenne-blog-comment-wrapper p {
    padding: 20px 0 0;
    font-size: 14px;
}

.blog-details_area .kenne-blog-comment-wrapper form .comment-post-box label {
    font-weight: 500;
    margin-bottom: 25px;
    display: block;
    text-transform: capitalize;
}

.blog-details_area .kenne-blog-comment-wrapper form .comment-post-box .coment-field {
    background: #f5f5f5;
    border: none;
    padding: 8px 10px;
    width: 100%;
}

.blog-details_area .kenne-blog-comment-wrapper form .comment-post-box textarea {
    height: 130px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    background: #f5f5f5;
    border: none;
    font-size: 14px;
}

.blog-details_area .kenne-blog-comment-wrapper form .comment-post-box .comment-btn_wrap {
    padding-top: 30px;
}

@media (max-width: 767px) {
    .blog-details_area .kenne-blog-comment-wrapper form .comment-post-box [class*="col-"]:nth-child(-n+3) .coment-field {
        margin-bottom: 30px;
    }
}


/*----------------------------------------*/


/*  30 - Pages - Shop
/*----------------------------------------*/

.kenne-content_wrapper {
    padding: 90px 0 95px;
}

@media (max-width: 991px) {
    .kenne-content_wrapper {
        padding: 100px 0 95px;
    }
}

@media (max-width: 991px) {
    .kenne-content_wrapper .kenne-sidebar-catagories_area {
        padding-top: 100px;
    }
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories {
    background-color: #ffffff;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .kenne-categories_title {
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    padding-top: 55px;
    margin-bottom: 30px;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .kenne-categories_title.first-child {
    padding-top: 0;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .kenne-categories_title h5 {
    margin-bottom: 0;
    padding-bottom: 35px;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .kenne-categories_title h5:after {
    height: 2px;
    bottom: -2px;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .kenne-categories_title.kenne-tags_title {
    padding-top: 45px;
    margin-bottom: 30px;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-checkbox_list>li {
    padding-bottom: 15px;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-checkbox_list>li:first-child {
    padding-top: 0;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-checkbox_list>li:last-child {
    padding-bottom: 0;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-checkbox_list>li>a {
    vertical-align: middle;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li {
    cursor: pointer;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li:first-child {
    padding-top: 0;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li:last-child>a {
    padding-bottom: 0;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li.has-sub ul>li:first-child {
    padding-top: 0;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li:hover>a {
    color: #c59339;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li:hover>a>i {
    color: #c59339;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li>ul {
    display: none;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li>ul li a {
    display: inline-block;
    padding-bottom: 20px;
    padding-left: 15px;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li>ul li:last-child>a {
    padding-bottom: 25px;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li>a {
    display: block;
    padding-bottom: 20px;
    position: relative;
    line-height: 1;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li>a>i {
    font-size: 28px;
    position: absolute;
    top: -8px;
    right: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories .sidebar-categories_menu ul li.open>a>i {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories.list-product_area {
    padding-top: 0;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories.list-product_area .kenne-categories_title {
    margin-bottom: 15px;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories.list-product_area .list-product_slider .product-item .single-product {
    padding: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories.list-product_area .list-product_slider .product-item .single-product {
        display: block;
    }
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories.list-product_area .list-product_slider .product-item .single-product .product-img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
}

.kenne-content_wrapper .kenne-sidebar-catagories_area .kenne-sidebar_categories.list-product_area .list-product_slider .product-item .single-product .product-content .product-desc_info>h3.product-name {
    line-height: 24px;
    font-size: 14px;
}

.kenne-content_wrapper .shop-banner_area {
    padding-bottom: 25px;
}

.kenne-content_wrapper .shop-toolbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 25px 0;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-toolbar {
        display: block;
    }
}

.kenne-content_wrapper .shop-toolbar .product-view-mode {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-toolbar .product-view-mode {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.kenne-content_wrapper .shop-toolbar .product-view-mode>a {
    display: inline-block;
    cursor: pointer;
    font-size: 24px;
}

.kenne-content_wrapper .shop-toolbar .product-view-mode>a>i {
    padding-right: 10px;
}

.kenne-content_wrapper .shop-toolbar .product-view-mode>a:last-child>i {
    padding-right: 0;
}

.kenne-content_wrapper .shop-toolbar .product-item-selection_area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-toolbar .product-item-selection_area {
        padding-top: 30px;
        display: block;
        text-align: center;
    }
}

.kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-short {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-short {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-short>label {
    margin-bottom: 0;
    padding-right: 25px;
}

@media (max-width: 991px) {
    .kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-short>label {
        padding-right: 10px;
    }
}

.kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-short .nice-select .list {
    width: 100%;
}

.kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-showing {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 25px;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-showing {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 30px 0 0 0;
    }
}

.kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-showing>label {
    margin-bottom: 0;
    padding-right: 25px;
}

@media (max-width: 991px) {
    .kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-showing>label {
        padding-right: 10px;
    }
}

.kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-showing .myniceselect.nice-select span {
    height: 40px;
    line-height: 40px;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-showing .myniceselect.nice-select span {
        padding: 0 35px 0 20px;
    }
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-toolbar .product-item-selection_area .product-showing .myniceselect.nice-select .list {
        width: auto;
        right: 0;
        left: auto;
    }
}

.kenne-content_wrapper .shop-toolbar .product-page_count {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-toolbar .product-page_count {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 25px 0 0 0;
    }
}

.kenne-content_wrapper .shop-toolbar .product-page_count>p {
    margin-bottom: 0;
}

.kenne-content_wrapper .shop-product-wrap.grid [class*="col-"]:not(:nth-child(-n+3)) .slide-item .single-product {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-product-wrap.grid [class*="col-"]:not(:nth-child(-n+2)) .slide-item .single-product {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .kenne-content_wrapper .shop-product-wrap.grid [class*="col-"]:not(:last-child) .slide-item .single-product {
        margin-top: 30px;
    }
}

.kenne-content_wrapper .shop-product-wrap.grid .list-product_item {
    display: none;
}

.kenne-content_wrapper .shop-product-wrap.grid .product-item {
    display: block;
}

.kenne-content_wrapper .shop-product-wrap.grid .product-item .single-product {
    overflow: hidden;
    text-align: center;
}

.kenne-content_wrapper .shop-product-wrap.grid .product-item .single-product .product-img {
    overflow: visible;
}

.kenne-content_wrapper .shop-product-wrap.grid .product-item .single-product .product-img img {
    width: 100%;
}

@media (max-width: 991px) {
    .kenne-content_wrapper .shop-product-wrap.grid .product-item .single-product .product-img .add-actions>ul>li>a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.kenne-content_wrapper .shop-product-wrap.grid.gridview-2>[class*="col-"] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 575px) {
    .kenne-content_wrapper .shop-product-wrap.grid.gridview-2>[class*="col-"] {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -moz-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.kenne-content_wrapper .shop-product-wrap.grid.gridview-3>[class*="col-"] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -moz-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.333333%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .kenne-content_wrapper .shop-product-wrap.grid.gridview-3>[class*="col-"] {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -moz-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .kenne-content_wrapper .shop-product-wrap.grid.gridview-3>[class*="col-"] {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -moz-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 480px) and (max-width: 575px) {
    .kenne-content_wrapper .shop-product-wrap.grid.gridview-3>[class*="col-"] {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -moz-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 479px) {
    .kenne-content_wrapper .shop-product-wrap.grid.gridview-3>[class*="col-"] {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -moz-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.kenne-content_wrapper .shop-product-wrap.grid.gridview-4>[class*="col-"] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.kenne-content_wrapper .shop-product-wrap.grid.gridview-5>[class*="col-"] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -moz-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    width: 100%;
    max-width: 100%;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item {
    display: block;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 25px 25px 5px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1199px) {
    .kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product {
        display: block;
        padding: 15px 15px 30px;
    }
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product:hover {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-img {
    position: relative;
    width: 270px;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-img {
        width: auto;
    }
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-img>a {
    display: block;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-img>a img {
    width: 100%;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content {
    width: calc(100% - 270px);
    padding-left: 15px;
}

@media (max-width: 767px) {
    .kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content {
        width: auto;
        padding-left: 0;
    }
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .product-desc_info>h6 {
    margin-bottom: 0;
    padding-bottom: 10px;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .product-desc_info .rating-box {
    padding-bottom: 5px;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .product-desc_info .rating-box>ul>li {
    display: inline-block;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .product-desc_info .price-box {
    padding-bottom: 5px;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .product-desc_info .price-box .old-price {
    color: #bbbbbb;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 10px;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .product-desc_info .price-box .old-price {
    display: inline-block;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .product-desc_info .price-box .new-price {
    font-size: 16px;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .product-desc_info .product-short_desc>p {
    margin-bottom: 0;
    padding-bottom: 23px;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .add-actions>ul>li {
    display: inline-block;
    padding-left: 5px;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .add-actions>ul>li>a {
    background-color: #f5f5f5;
    border-radius: 100%;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .add-actions>ul>li>a:hover {
    background-color: #ff0000;
    color: #ffffff !important;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .list-product_item .single-product .product-content .add-actions>ul>li>a>i {
    font-size: 20px;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"] .product-item {
    display: none;
}

.kenne-content_wrapper .shop-product-wrap.listview>[class*="col-"]:not(:last-child) .list-product_item .single-product {
    margin-bottom: 30px;
}

.kenne-content_wrapper .kenne-paginatoin-area {
    padding-top: 30px;
}

@media (max-width: 575px) {
    .kenne-content_wrapper .kenne-paginatoin-area .kenne-pagination-box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .kenne-content_wrapper .kenne-paginatoin-area .kenne-pagination-box {
        display: block;
    }
}

@media (max-width: 575px) {
    .kenne-content_wrapper .kenne-paginatoin-area .kenne-pagination-box>li {
        margin-right: 10px;
    }
}

@media (max-width: 575px) {
    .kenne-content_wrapper .kenne-paginatoin-area .kenne-pagination-box>li:last-child {
        margin-right: 0;
    }
}

@media (max-width: 479px) {
    .kenne-content_wrapper .kenne-paginatoin-area .kenne-pagination-box>li {
        margin-right: 0;
    }
}

@media (max-width: 479px) {
    .kenne-content_wrapper .kenne-paginatoin-area .kenne-pagination-box>li>a {
        padding: 0 10px;
    }
}


/*----------------------------------------*/


/*  41 - Pages - 404
/*----------------------------------------*/

.error-content_wrapper {
    padding: 60px 0 100px;
}

@media (max-width: 575px) {
    .error-content_wrapper {
        padding: 75px 0 100px;
    }
}

.error-content_wrapper .error-area .error h1 {
    font-size: 200px;
    font-weight: 900;
    letter-spacing: 1rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .error-content_wrapper .error-area .error h1 {
        font-size: 120px;
    }
}

.error-content_wrapper .error-area .error h2 {
    font-size: 25px;
    padding-bottom: 10px;
    line-height: 1.2;
}

.error-content_wrapper .error-area .error p {
    padding-bottom: 10px;
}

.error-content_wrapper .error-area .error .btn {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    min-width: 184px;
    min-height: 55px;
    line-height: 55px;
    margin-bottom: 6px;
    padding: 0 10px;
    border: none;
    border-radius: 0;
}

@media (max-width: 991px) {
    .error-content_wrapper .error-area .error .btn {
        min-width: 170px;
        min-height: 50px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .error-content_wrapper .error-area .error .btn {
        min-width: 160px;
        min-height: 45px;
        line-height: 45px;
    }
}

@media (max-width: 575px) {
    .error-content_wrapper .error-area .error .btn {
        min-width: 150px;
    }
}

.error-content_wrapper .error-area .error .btn:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -6px;
    height: 3px;
    width: 100%;
}

.error-content_wrapper .error-area .error .btn:hover {
    background-color: #111;
    color: #ffffff;
}

.error-content_wrapper .error-area .error .btn:hover:after {
    background-color: #111;
}

.error-content_wrapper .error-area .error .searchform {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.error-content_wrapper .error-area .error .searchform.mb--50 {
    margin-bottom: 50px;
}

.error-content_wrapper .error-area .error .searchform input.searchform__input {
    border: 1px solid #eee;
    height: 45px;
    width: 100%;
    padding-left: 15px;
}

.error-content_wrapper .error-area .error .searchform button.searchform__submit {
    border: none;
    color: #ffffff;
    width: 70px;
    cursor: pointer;
}


/*----------------------------------------*/


/*  40 - Pages - Contact
/*----------------------------------------*/


/* ---Google Map Related Stuff--- */

#google-map {
    height: 400px;
}


/* ---Contact Main Page--- */

.contact-main-page {
    padding: 100px 0 80px;
    /* ---Contact Form Area--- */
}

.contact-main-page .contact-page-side-content {
    background-color: #f5f5f5;
    padding: 30px 30px 19px;
    margin-top: 100px;
}

@media (max-width: 479px) {
    .contact-main-page .contact-page-side-content {
        padding: 25px 30px 19px;
    }
}

.contact-main-page .contact-page-side-content .contact-page-message {
    margin-bottom: 0;
    padding-bottom: 25px;
}

.contact-main-page .contact-page-side-content .single-contact-block {
    padding-bottom: 3px;
    margin-bottom: 27px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-main-page .contact-page-side-content .single-contact-block:last-child {
    border-bottom: none;
}

.contact-main-page .contact-page-side-content .single-contact-block h4 {
    margin-bottom: 0;
    padding-bottom: 25px;
}

.contact-main-page .contact-page-side-content .single-contact-block p {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.contact-main-page .contact-page-side-content .single-contact-block.last-child>h4 {
    padding-bottom: 20px;
}

.contact-main-page .contact-page-title {
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 0;
    padding-bottom: 20px;
}

@media (max-width: 479px) {
    .contact-main-page .contact-page-title {
        font-size: 25px;
    }
}

.contact-main-page .contact-form-content {
    margin-top: 95px;
}

.contact-main-page .contact-form-content .contact-form .form-group {
    margin-bottom: 20px;
}

.contact-main-page .contact-form-content .contact-form .form-group.form-group-2 {
    margin-bottom: 25px;
}

.contact-main-page .contact-form-content .contact-form .form-group label {
    display: block;
    font-size: 15px;
    line-height: 29px;
    font-weight: 400;
    margin-bottom: 20px;
    cursor: text;
}

.contact-main-page .contact-form-content .contact-form .form-group input {
    background-color: #ffffff;
    width: 100%;
    height: 50px;
    line-height: 50px;
    outline: none;
    border: 1px solid #e5e5e5;
    padding-left: 20px;
}

.contact-main-page .contact-form-content .contact-form .form-group textarea {
    background-color: #ffffff;
    width: 100%;
    outline: none;
    border: 1px solid #e5e5e5;
    padding-left: 20px;
    line-height: 50px;
    height: 200px;
}

.contact-main-page .contact-form-content .contact-form .form-group .kenne-contact-form_btn {
    line-height: 12px;
    display: inline-block;
    padding: 16px 30px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 12px;
    background-color: #242424;
    border: 1px solid #242424;
    color: #ffffff;
    text-transform: uppercase;
}


/*----------------------------------------*/


/*  36 - Pages - FAQ
/*----------------------------------------*/

.frequently-area {
    padding: 95px 0 85px;
}

.frequently-area .frequently-content .frequently-desc {
    margin-bottom: 25px;
}

.frequently-area .frequently-content .frequently-desc h3 {
    text-transform: capitalize;
    padding-bottom: 15px;
    line-height: 32px;
    font-size: 25px;
    margin-bottom: 0;
    font-weight: 400;
}

@media (max-width: 767px) {
    .frequently-area .frequently-content .frequently-desc h3 {
        font-size: 20px;
    }
}

.frequently-area .frequently-content .frequently-desc p {
    margin: 0;
    font-size: 14px;
}

.frequently-area .frequently-accordion .card {
    border-radius: 0;
    margin-bottom: 15px;
}

.frequently-area .frequently-accordion .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: #f5f5f5;
    border: 0;
}

.frequently-area .frequently-accordion .card-header a {
    padding: 15px 10px 15px 25px;
    text-transform: capitalize;
    line-height: 24px;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .frequently-area .frequently-accordion .card-header a {
        font-size: 14px;
    }
}

.frequently-area .frequently-accordion .card-header a.collapsed:before {
    content: "\f489";
    font-family: "Ionicons";
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 15px;
}

@media (max-width: 479px) {
    .frequently-area .frequently-accordion .card-header a.collapsed:before {
        display: none;
    }
}

.frequently-area .frequently-accordion .card-header a:after {
    content: "\f462";
    font-family: "Ionicons";
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 15px;
}

@media (max-width: 479px) {
    .frequently-area .frequently-accordion .card-header a:after {
        display: none;
    }
}


/*----------------------------------------*/


/*  38 - Pages - My Account
/*----------------------------------------*/

.account-page-area {
    padding: 100px 0;
}

.account-page-area .myaccount-tab-trigger {
    display: block;
}

@media (max-width: 991px) {
    .account-page-area .myaccount-tab-trigger {
        padding-bottom: 30px;
    }
}

.account-page-area .myaccount-tab-trigger li {
    display: block;
}

.account-page-area .myaccount-tab-trigger li:first-child {
    margin-top: -1px;
}

.account-page-area .myaccount-tab-trigger li a {
    display: block;
    background: #242424;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
}

.myaccount-tab-content {
    border: 1px solid #e5e5e5;
    padding: 30px;
}

@media (max-width: 479px) {
    .myaccount-tab-content {
        padding: 0;
        border: 0;
    }
}

.myaccount-dashboard p {
    margin-bottom: 20px;
}

.myaccount-dashboard p:last-child {
    margin-bottom: 0;
}

.myaccount-orders .table {
    margin-bottom: 0;
}

.myaccount-orders .table .account-order-id:hover {
    color: #c59339;
}

.myaccount-orders .table.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.myaccount-orders .table td,
.myaccount-orders .table th {
    vertical-align: middle;
    text-align: center;
}

@media (max-width: 767px) {
    .myaccount-orders .table td,
    .myaccount-orders .table th {
        min-width: 180px;
    }
}

.myaccount-orders .small-title {
    margin-bottom: 15px;
}

@media (max-width: 575px) {
    .myaccount-address .row {
        display: block;
    }
}

@media (max-width: 575px) {
    .myaccount-address .row [class*="col-"]:last-child address {
        margin-bottom: 0;
    }
}

.myaccount-address h4.small-title {
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .myaccount-address h4.small-title {
        text-transform: capitalize;
    }
}


/* ---My Account Form Style--- */

.kenne-form,
.kenne-form-boxed {
    padding: 30px;
    border-radius: 0;
    border: 1px solid #e5e5e5;
}

.kenne-form .kenne-form-inner,
.kenne-form-boxed .kenne-form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: -20px;
}

@media (max-width: 479px) {
    .kenne-form .kenne-form-inner,
    .kenne-form-boxed .kenne-form-inner {
        display: block;
    }
}

.kenne-form .kenne-form-inner .single-input,
.kenne-form-boxed .kenne-form-inner .single-input {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
}

@media (max-width: 479px) {
    .kenne-form .kenne-form-inner .single-input,
    .kenne-form-boxed .kenne-form-inner .single-input {
        max-width: 100% !important;
    }
}

.kenne-form .kenne-form-inner .single-input.single-input-half,
.kenne-form-boxed .kenne-form-inner .single-input.single-input-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 15px);
    -webkit-flex: 0 0 calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

.kenne-form .kenne-form-inner .single-input label,
.kenne-form-boxed .kenne-form-inner .single-input label {
    margin-bottom: 8px;
    display: block;
}

.kenne-form .kenne-form-inner .single-input input,
.kenne-form .kenne-form-inner .single-input select,
.kenne-form .kenne-form-inner .single-input textarea,
.kenne-form-boxed .kenne-form-inner .single-input input,
.kenne-form-boxed .kenne-form-inner .single-input select,
.kenne-form-boxed .kenne-form-inner .single-input textarea {
    padding: 0 15px;
    border: 1px solid #e5e5e5;
    height: 40px;
    width: 100%;
}

.kenne-form .kenne-form-inner .single-input input:first-child,
.kenne-form-boxed .kenne-form-inner .single-input input:first-child {
    margin-top: 20px;
}

.kenne-form .kenne-form-inner .single-input .checkbox-input,
.kenne-form-boxed .kenne-form-inner .single-input .checkbox-input {
    display: inline-block;
}

.kenne-form .kenne-form-inner .single-input .checkbox-input label,
.kenne-form-boxed .kenne-form-inner .single-input .checkbox-input label {
    display: inline-block;
}

.kenne-form .kenne-form-inner a,
.kenne-form-boxed .kenne-form-inner a {
    font-size: 13px;
}

.kenne-form .kenne-form-inner a:hover,
.kenne-form-boxed .kenne-form-inner a:hover {
    color: #c59339;
}


/*----------------------------------------*/


/*  39 - Pages - Login | Register
/*----------------------------------------*/

.kenne-login-register_area {
    padding: 100px 0;
}

@media (max-width: 991px) {
    [class*="col-"]:first-child form .login-form {
        margin-bottom: 30px;
    }
}

.login-form {
    background-color: #ffffff;
    padding: 30px;
    -webkit-box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.1);
}

.login-form .login-title {
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.login-form input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    line-height: 23px;
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.login-form input[type="checkbox"] {
    width: auto;
}

.login-form .check-box {
    float: left;
    margin-right: 70px;
}

.login-form .check-box:last-child {
    margin-right: 0;
}

.login-form .check-box input[type="checkbox"] {
    display: none;
}

.login-form .check-box input[type="checkbox"]+label {
    position: relative;
    padding-left: 30px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.login-form .check-box input[type="checkbox"]+label:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #e5e5e5;
    content: "";
}

.login-form .check-box input[type="checkbox"]+label:after {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    opacity: 0;
    width: 20px;
    text-align: center;
}

.login-form .check-box input[type="checkbox"]:checked+label:before {
    border: 2px solid #e5e5e5;
}

.login-form .check-box input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

@media (max-width: 767px) {
    .forgotton-password_info {
        padding-top: 15px;
    }
}


/*-- Place Order --*/

.kenne-login_btn,
.kenne-register_btn {
    background-color: #242424;
    color: #ffffff;
    display: block;
    margin-top: 30px;
    width: 140px;
    border-radius: 0;
    height: 40px;
    line-height: 40px;
    border: 0;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .kenne-login_btn,
    .kenne-register_btn {
        margin-top: 25px;
    }
}

.kenne-register_btn {
    margin-top: 15px;
}


/*----------------------------------------*/


/*  33 - Pages - Cart
/*----------------------------------------*/

.kenne-cart-area {
    padding: 100px 0;
}

.table-content table td.product-subtotal {
    font-size: 16px;
    font-weight: 700;
}

.table-content table td.quantity .cart-plus-minus {
    margin: 0 auto;
}

@media (max-width: 767px) {
    .kenne-cart-area .table-content table td:nth-child(3) {
        padding: 45.1px 10px;
    }
}

.coupon-all {
    margin-top: 30px;
}

.coupon-all .coupon {
    float: left;
}

.coupon-all .coupon input {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    font-size: 13px;
    border-radius: 0;
    height: 42px;
    width: 120px;
    padding: 0 10px;
}

.coupon-all .coupon input.button,
.coupon-all .coupon2 input.button {
    background-color: #242424;
    border: 0 none;
    border-radius: 2px;
    color: #ffffff;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    height: 42px;
    letter-spacing: 1px;
    line-height: 42px;
    padding: 0 25px;
    text-transform: uppercase;
    width: inherit;
}

.coupon-all .coupon.coupon2,
.coupon-all .coupon2.coupon2 {
    float: right;
}

@media (max-width: 479px) {
    .coupon-all .coupon.coupon2,
    .coupon-all .coupon2.coupon2 {
        float: left;
        padding-top: 30px;
    }
}

.cart-page-total {
    padding-top: 30px;
}

.cart-page-total>h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.cart-page-total>ul {
    border: 1px solid #e5e5e5;
}

.cart-page-total>ul li {
    list-style: none;
    font-size: 15px;
    padding: 10px 30px;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 700;
}

.cart-page-total>ul li:last-child {
    border-bottom: 0;
}

.cart-page-total>ul li span {
    float: right;
}

.cart-page-total a {
    background-color: #242424;
    border: 1px solid #e5e5e5;
    color: #ffffff;
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    text-transform: capitalize;
}


/*----------------------------------------*/


/*  37 - Pages - Wishlist
/*----------------------------------------*/

.kenne-wishlist_area {
    padding: 100px 0;
}

.table-content table {
    background: #ffffff none repeat scroll 0 0;
    border-color: #e5e5e5;
    border-radius: 0;
    border-style: solid;
    border-width: 1px 0 0 1px;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
}

.table-content table th,
.table-content table td {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.table-content table th {
    border-top: medium none;
    font-size: 15px;
    text-transform: capitalize;
    padding: 20px 10px;
    text-align: center;
    font-weight: 500;
    vertical-align: middle;
}

.table-content table td {
    border-top: medium none;
    padding: 18px 10px;
    vertical-align: middle;
    font-size: 13px;
}

@media (max-width: 767px) {
    .table-content table td {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .table-content table td:nth-child(3) {
        padding: 32.1px 10px;
        display: block;
        width: 180px;
    }
}

.table-content table td.kenne-product_remove {
    font-size: 20px;
}

.table-content table td.kenne-product_remove>a>i {
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.table-content table td.kenne-product-name {
    font-size: 16px;
    text-transform: capitalize;
}

.table-content table td.kenne-product-price {
    font-size: 16px;
}

.table-content table td.kenne-product-stock-status span.in-stock,
.table-content table td.kenne-product-stock-status span.out-stock {
    font-size: 12px;
    text-transform: capitalize;
}

.table-content table td.kenne-product-stock-status span.out-stock {
    color: #ff0000;
}

.table-content table td.kenne-cart_btn a {
    font-size: 14px;
    text-transform: uppercase;
    background: #242424;
    color: #ffffff;
    height: 40px;
    line-height: 43px;
    width: 130px;
    display: inline-block;
}

.table-content .table> :not(:last-child)> :last-child>* {
    border-bottom-color: #e5e5e5;
}


/*----------------------------------------*/


/*  34 - Pages - Checkout
/*----------------------------------------*/

.checkout-area {
    padding: 100px 0 95px;
}

.coupon-accordion h3 {
    background-color: #f5f5f5;
    font-size: 14px;
    font-weight: 400;
    list-style: outside none none;
    margin: 0 0 30px;
    padding: 16px 32px 16px 56px;
    position: relative;
    width: auto;
    text-transform: none;
}

@media (max-width: 479px) {
    .coupon-accordion h3 {
        line-height: 24px;
    }
}

.coupon-accordion h3:before {
    content: "\f133";
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    left: 24px;
    position: absolute;
    top: 16px;
}

.coupon-accordion span {
    cursor: pointer;
    text-transform: none;
}

.coupon-accordion .coupon-content {
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
    display: none;
    padding: 20px;
}

.coupon-accordion .coupon-content .coupon-info p {
    margin-bottom: 0;
}

.coupon-accordion .coupon-content .coupon-info p.form-row-first label,
.coupon-accordion .coupon-content .coupon-info p.form-row-last label {
    display: block;
}

.coupon-accordion .coupon-content .coupon-info p.form-row-first label span.required,
.coupon-accordion .coupon-content .coupon-info p.form-row-last label span.required {
    color: #ff0000;
}

.coupon-accordion .coupon-content .coupon-info p.form-row-first input,
.coupon-accordion .coupon-content .coupon-info p.form-row-last input {
    border: 1px solid #e5e5e5;
    height: 36px;
    margin: 0 0 14px;
    border-radius: 0;
    max-width: 100%;
    padding: 0 0 0 10px;
    width: 370px;
    background-color: transparent;
}

.coupon-accordion .coupon-content .coupon-info p.form-row input[type="submit"] {
    background: #242424 none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    float: left;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-right: 15px;
    padding: 0 30px;
    text-shadow: none;
    text-transform: uppercase;
    width: inherit;
}

.coupon-accordion .coupon-content .coupon-info p.form-row input[type="checkbox"] {
    height: inherit;
    position: relative;
    top: 2px;
    width: inherit;
}

.coupon-accordion .coupon-content .coupon-info p.form-row label {
    margin-top: 7px;
}

.coupon-accordion .coupon-content .coupon-info p.lost-password {
    margin-top: 15px;
}

.coupon-checkout-content {
    margin-bottom: 30px;
    display: none;
}

.coupon-checkout-content .coupon-info .checkout-coupon {
    margin-bottom: 0;
}

.coupon-checkout-content .coupon-info .checkout-coupon input[type="text"] {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    height: 36px;
    padding-left: 10px;
    width: 170px;
}

.coupon-checkout-content .coupon-info .checkout-coupon input[type="submit"] {
    background: #242424;
    border: medium none;
    border-radius: 0;
    color: #ffffff;
    height: 36px;
    cursor: pointer;
    margin-left: 6px;
    padding: 5px 10px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: inherit;
}

@media (max-width: 479px) {
    .coupon-checkout-content .coupon-info .checkout-coupon .coupon-inner_btn {
        margin: 28px 0 0 !important;
    }
}

.checkbox-form h3 {
    border-bottom: 1px solid #e5e5e5;
    font-size: 25px;
    margin: 0 0 25px;
    padding-bottom: 10px;
    text-transform: uppercase;
    width: 100%;
}

@media (max-width: 479px) {
    .checkbox-form h3 {
        font-size: 18px;
    }
}

.checkbox-form .country-select {
    margin-bottom: 25px;
}

.checkbox-form .country-select .myniceselect.nice-select span {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    width: 100%;
    padding: 0 0 0 15px;
}

.checkbox-form .checkout-form-list {
    margin-bottom: 30px;
}

.checkbox-form .checkout-form-list input[type="text"],
.checkbox-form .checkout-form-list input[type="password"],
.checkbox-form .checkout-form-list input[type="email"] {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    height: 42px;
    width: 100%;
    padding: 0 0 0 10px;
}

.checkbox-form .checkout-form-list input[type="checkbox"] {
    display: inline-block;
    height: inherit;
    margin-right: 10px;
    position: relative;
    top: 2px;
    width: inherit;
}

.checkbox-form .checkout-form-list.create-acc {
    margin-bottom: 15px !important;
}

.checkbox-form .checkout-form-list.create-acc label {
    display: inline-block;
}

.checkbox-form .country-select label,
.checkbox-form.checkout-form-list label {
    margin: 0 0 5px;
    display: block;
}

.checkbox-form .country-select label span.required,
.checkbox-form.checkout-form-list label span.required {
    display: inline-block;
    font-size: 24px;
    line-height: 16px;
    position: relative;
    top: 5px;
}

.different-address h3 label {
    display: inline-block;
    margin-right: 20px;
    font-size: 25px;
    margin-bottom: 10px;
}

@media (max-width: 479px) {
    .different-address h3 label {
        font-size: 15px;
    }
}

.different-address h3 input {
    height: inherit;
    line-height: normal;
    margin: 4px 0 0;
    position: relative;
    top: 0;
    width: auto;
}

.order-notes .checkout-form-list-2 {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .order-notes .checkout-form-list-2 {
        margin-bottom: 30px;
    }
}

.order-notes textarea {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    height: 90px;
    padding: 15px;
    width: 100%;
}

.create-account,
#ship-box-info {
    display: none;
}

.your-order {
    background: #f5f5f5;
    padding: 30px 40px 30px;
}

.your-order h3 {
    border-bottom: 1px solid #e5e5e5;
    font-size: 25px;
    padding-bottom: 10px;
    text-transform: uppercase;
    width: 100%;
}

@media (max-width: 479px) {
    .your-order h3 {
        font-size: 18px;
    }
}

.your-order .your-order-table table {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    width: 100%;
}

.your-order .your-order-table table thead {
    background-color: #f5f5f5;
}

.your-order .your-order-table table thead tr th {
    border-top: medium none;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    width: 250px;
}

.your-order .your-order-table table thead tr th,
.your-order .your-order-table table thead tr td {
    border-bottom: 1px solid #e5e5e5;
    border-right: medium none;
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
}

.your-order .your-order-table table .cart_item:hover {
    background: #f5f5f5;
}

.your-order .your-order-table table .order-total td {
    border-bottom: medium none;
}

.your-order .your-order-table table .order-total td span {
    font-size: 20px;
}

.your-order .your-order-table table .order-total th {
    border-bottom: medium none;
    font-size: 18px;
}

.payment-method {
    margin-top: 20px;
}

.payment-method .payment-accordion .card {
    border: 0;
    border-radius: 0;
    background: #f5f5f5;
}

.payment-method .payment-accordion .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: #f5f5f5;
    border-bottom: 0;
}

.payment-method .payment-accordion .card-body {
    padding: 0;
}

.payment-method .payment-accordion .panel.panel-default {
    margin-bottom: 20px;
}

.payment-method .payment-accordion .panel-title {
    font-size: 18px;
    cursor: pointer;
}

.order-button-payment input {
    background: #242424;
    border: medium none;
    color: #ffffff;
    font-size: 17px;
    height: 50px;
    margin: 20px 0 0;
    padding: 0;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid transparent;
    cursor: pointer;
}


/*----------------------------------------*/


/*  31 - Pages - Single Product
/*----------------------------------------*/


/* ---Single Product Page--- */

.sp-area {
    padding: 100px 0 0;
}

.sp-area .sp-nav {
    background-color: #ffffff;
}

.sp-area .sp-nav .sp-img_slider {
    cursor: move;
}

.sp-area .sp-nav .sp-img_slider .slick-list .slick-slide {
    border: 1px solid #e5e5e5;
}

.sp-area .sp-nav .sp-img_slider .slick-list .slick-slide img {
    width: 100%;
}

.sp-area .sp-nav .sp-img_slider-nav {
    padding: 0 60px;
    margin-top: 30px;
}

.sp-area .sp-nav .sp-img_slider-nav .slick-slide img {
    border: 1px solid #e5e5e5;
    width: 100%;
    opacity: 0.7;
}

.sp-area .sp-nav .sp-img_slider-nav .slick-slide.slick-current img {
    border-color: #c59339;
    opacity: 1;
}

.sp-area .sp-nav .sp-img_slider-nav .slick-slide:hover img {
    opacity: 1;
}

@media (max-width: 991px) {
    .sp-area .sp-nav .sp-content {
        padding-top: 30px;
    }
}

.sp-area .sp-nav .sp-content .sp-heading>h5 {
    margin-bottom: 0;
    padding-bottom: 20px;
}

@media (max-width: 575px) {
    .sp-area .sp-nav .sp-content .sp-heading>h5 {
        font-size: 18px;
        line-height: 24px;
    }
}

.sp-area .sp-nav .sp-content .rating-box {
    padding: 5px 0 0;
}

.sp-area .sp-nav .sp-content .rating-box>ul>li {
    display: inline-block;
}

.sp-area .sp-nav .sp-content .rating-box>ul>li>i {
    font-size: 14px;
}

.sp-area .sp-nav .sp-content .sp-essential_stuff>ul>li>a {
    padding-left: 5px;
}

.sp-area .sp-nav .sp-content .price-box {
    padding-bottom: 10px;
}

.sp-area .sp-nav .sp-content .price-box .old-price {
    color: #bbbbbb;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 10px;
}

.sp-area .sp-nav .sp-content .price-box .new-price {
    font-size: 16px;
}

.sp-area .sp-nav .sp-content .short-desc>p {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.sp-area .sp-nav .sp-content .countdown-wrap {
    padding: 30px 0 0;
}

.sp-area .sp-nav .sp-content .product-size_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 25px;
}

.sp-area .sp-nav .sp-content .product-size_box>span {
    padding-right: 15px;
}

.sp-area .sp-nav .sp-content .product-size_box .myniceselect.nice-select>span {
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
}

.sp-area .sp-nav .sp-content .color-list_area {
    margin-top: 25px;
}

.sp-area .sp-nav .sp-content .quantity {
    padding-top: 30px;
}

.sp-area .sp-nav .sp-content .quantity .cart-plus-minus {
    display: inline-block;
    margin-left: 15px;
}

.sp-area .sp-nav .sp-content .qty-btn_area {
    padding-top: 30px;
}

.sp-area .sp-nav .sp-content .qty-btn_area>ul li {
    display: inline-block;
    padding-left: 5px;
}

.sp-area .sp-nav .sp-content .qty-btn_area>ul li:first-child {
    padding-left: 0;
}

.sp-area .sp-nav .sp-content .qty-btn_area>ul li>a {
    border: 1px solid #e5e5e5;
    display: block;
    padding: 10px 15px;
    color: #242424;
    text-transform: uppercase;
}

.sp-area .sp-nav .sp-content .qty-btn_area>ul li>a:hover {
    background-color: #c59339;
    border-color: #c59339;
    color: #ffffff !important;
}

.sp-area .sp-nav .sp-content .qty-btn_area>ul li>a>i {
    display: block;
}

.sp-area .sp-nav .sp-content .qty-btn_area>ul li>a.qty-cart_btn {
    background-color: #c59339;
    color: #ffffff;
}

.sp-area .sp-nav .sp-content .qty-btn_area>ul li>a.qty-cart_btn:hover {
    background-color: #242424;
    border-color: #242424;
}

.sp-area .sp-nav .sp-content .kenne-tag-line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 23px;
}

.sp-area .sp-nav .sp-content .kenne-tag-line>h6 {
    font-size: 18px;
    margin-bottom: 0;
}

.sp-area .sp-nav .sp-content .kenne-tag-line>a {
    padding-left: 10px;
    display: block;
}

@media (max-width: 575px) {
    .sp-area .sp-nav .sp-content .kenne-tag-line>a {
        font-size: 14px;
    }
}

.sp-area .sp-nav .sp-content .kenne-social_link {
    padding-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}


/* ---Single Product Group Page--- */

.sp-group_area .sp-nav .sp-content .choose-group-product {
    padding-top: 30px;
}

.sp-group_area .sp-nav .sp-content .choose-group-product .cart-table table {
    margin-bottom: 0;
}

.sp-group_area .sp-nav .sp-content .choose-group-product .cart-table table tbody tr td {
    vertical-align: middle;
    text-align: center;
}


/* ---Single Produc Affiliate Page--- */

.sp-affiliate_area .sp-content .qty-btn_area {
    display: inline-block;
    padding-top: 25px !important;
}

.sp-affiliate_area .sp-content .qty-btn_area a.qty-buy_btn {
    background-color: #242424;
    color: #ffffff;
    padding: 15px 30px;
    display: block;
}

.sp-affiliate_area .sp-content .qty-btn_area a.qty-buy_btn:hover {
    background-color: #c59339;
    color: #ffffff !important;
}


/* ---Single Product Slider Area--- */

.sp-slider_area {
    padding-top: 60px;
}

.sp-slider_area .sp-nav {
    padding: 30px 0 0;
}

.sp-slider_area .sp-nav .sp-slider .product-item .single-product .product-img {
    position: relative;
    overflow: hidden;
}

.sp-slider_area .sp-nav .sp-slider .product-item .single-product .product-img>a {
    display: block;
}

.sp-slider_area .sp-nav .sp-slider .product-item .single-product .product-img>a .secondary-img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
}

.sp-slider_area .sp-nav .sp-slider .product-item .single-product .product-img:hover .secondary-img {
    opacity: 1;
}

.sp-slider_area .sp-nav .sp-slider.slick-gutter-30 .slick-list {
    margin: -15px;
}

.sp-slider_area .sp-nav .sp-slider.slick-gutter-30 .slick-list .slick-slide {
    padding: 15px;
}

.sp-slider_area .sp-nav .sp-content {
    padding-top: 25px !important;
    float: unset;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.sp-slider_area .sp-nav .sp-content .product-size_box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sp-slider_area .sp-nav .sp-content .kenne-tag-line {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 575px) {
    .sp-slider_area .sp-nav .sp-content .kenne-tag-line {
        margin: 0 -30px;
    }
}

.sp-slider_area .sp-nav .sp-content .kenne-social_link {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 479px) {
    .sp-slider_area .sp-nav .sp-content .kenne-social_link>ul>li>a {
        width: 35px;
    }
}


/* ---Single Product Gallery--- */

.sp-gallery_area .sp-nav .sp-gallery .lg-image {
    padding: 5px;
    border: 1px solid #e5e5e5;
}

.sp-gallery_area .sp-nav .sp-gallery .lg-image:hover {
    border-color: #c59339;
}

@media (max-width: 991px) {
    .sp-gallery_area .sp-nav .sp-gallery .lg-image {
        margin-bottom: 30px;
    }
}

.sp-gallery_area .sp-nav .sp-gallery>.row:first-child {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .sp-gallery_area .sp-nav .sp-gallery>.row:first-child {
        margin-bottom: 0;
    }
}


/* ---Single Product Tab Style--- */

.sp-tab-style_left .sp-img_area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.sp-tab-style_left .sp-img_area .sp-img_slider {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    padding-left: 30px;
}

.sp-tab-style_left .sp-img_area .sp-img_slider-nav {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    padding: 0;
    margin-top: 0;
}

.sp-tab-style_left.sp-tab-style_right .sp-img_area {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -webkit-flex-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
}

.sp-tab-style_left.sp-tab-style_right .sp-img_area .sp-img_slider {
    padding: 0 30px 0 0;
}


/* ---Single Product Sticky--- */

.sp-sticky_area .sp-nav {
    padding: 0;
}

.sp-sticky_area .sp-sticky_gallery {
    padding-left: 0 !important;
}

.sp-sticky_area .sp-sticky_gallery>.row:first-child {
    margin-bottom: 0 !important;
}

.sp-sticky_area .sp-sticky_gallery>.row [class*="col-"] .lg-image {
    margin-bottom: 30px;
}

.sp-sticky_area .sp-sticky_gallery>.row:last-child [class*="col-"]:last-child .lg-image {
    margin-bottom: 0;
}

.product-tab_area-2 .sp-product-tab_nav {
    background-color: #ffffff;
    padding-top: 100px;
}

.product-tab_area-2 .sp-product-tab_nav .product-tab {
    background-color: #f5f5f5;
    padding: 25px 0 25px;
}

.product-tab_area-2 .sp-product-tab_nav .product-tab .product-menu {
    padding-bottom: 0 !important;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content {
    border: 1px solid #e5e5e5;
    padding: 30px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .product-description {
    margin: -5px 0 -5px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .product-description>ul>li {
    padding-top: 15px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .product-description>ul>li:first-child {
    padding-top: 0;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .product-description>ul>li span.title {
    display: block;
    font-size: 18px;
    padding-bottom: 10px;
    font-weight: 500;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .table-striped {
    margin-bottom: 25px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .table-striped>tbody tr:nth-child(2) td>p {
    margin-bottom: 0;
    padding-bottom: 20px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .table-striped>tbody tr:nth-child(2) td .rating-box>ul>li {
    display: inline-block;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .table-striped>tbody tr td {
    padding: 20px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal h2 {
    margin-bottom: 0;
    padding-bottom: 15px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group {
    margin-bottom: 0;
    padding-bottom: 15px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group.second-child {
    padding-bottom: 10px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group.last-child {
    padding-bottom: 0;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .review-input,
.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .review-textarea {
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 30px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .review-input.review-textarea,
.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .review-textarea.review-textarea {
    height: 120px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group label {
    margin-bottom: 0;
    padding-bottom: 18px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .help-block {
    padding-top: 18px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .kenne-btn-ps_right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 479px) {
    .product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .kenne-btn-ps_right {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-top: 20px;
    }
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .your-opinion span .br-wrapper .br-widget a {
    font-size: 16px;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .your-opinion span .br-wrapper .br-widget a.br-active:after {
    color: #c59339;
}

.product-tab_area-2 .sp-product-tab_nav .tab-content .form-horizontal .form-group .your-opinion span .br-wrapper .br-widget a.br-selected:after {
    color: #c59339;
}


/* ---Single Product Slider Area--- */

.sp-product-slider_area {
    padding: 40px 0 60px;
}


/*----------------------------------------*/


/*  35 - Pages - Compare
/*----------------------------------------*/

.compare-area {
    padding: 100px 0;
}

.compare-table .table thead th {
    border-width: 1px;
    padding: 15px 10px;
}

.compare-table .table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.compare-table .table tbody tr td,
.compare-table .table tbody tr th {
    vertical-align: middle;
    text-align: center;
}

.compare-table .table tbody tr th {
    min-width: 200px;
}

.compare-table .table tbody tr td {
    min-width: 250px;
}

.compare-table .table tbody tr td .compare-pdoduct-image {
    max-width: 200px;
    display: inline-block;
    padding: 20px 0;
}

.compare-table .table tbody tr td .compare-pdoduct-image a {
    display: inline-block;
}

.compare-table .table tbody tr td .compare-pdoduct-image .kenne-btn {
    margin-top: 30px;
}

.compare-table .table tbody tr td .compare-pdoduct-image .kenne-btn:hover {
    color: #ffffff !important;
}

.compare-table .table tbody tr td .compare-product-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}

.compare-table .table tbody tr td .compare-product-name a {
    -webkit-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
}

.compare-table .table tbody tr td .rating-box>ul>li {
    display: inline-block;
}

.compare-table .table-hover>tbody>tr:hover {
    --bs-table-accent-bg: transparent;
}


/*----------------------------------------*/


/*  32 - Pages - About Us
/*----------------------------------------*/

.about-us-area {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .about-us-area .overview-content {
        padding-top: 25px;
    }
}

.about-us-area .overview-content>h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-us-area .overview-content>h2 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-us-area .overview-content>h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .about-us-area .overview-content>h2 {
        font-size: 20px;
    }
}

@media (max-width: 479px) {
    .about-us-area .overview-content>h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

.about-us-area .overview-content>h2:before {
    background-color: #f5f5f5;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.about-us-area .overview-content>h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 170px;
}

.about-us-area .overview-content>.short_desc {
    margin-bottom: 0;
    padding-bottom: 25px;
}

@media (max-width: 767px) {
    .about-us-area .overview-content .kenne-about-us_btn-area {
        float: left;
        width: 100%;
    }
}

.about-us-area .overview-content .kenne-about-us_btn-area .about-us_btn {
    color: #ffffff;
    display: block;
    float: right;
    height: 50px;
    line-height: 50px;
    width: 145px;
    text-align: center;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.about-us-area .overview-content .kenne-about-us_btn-area .about-us_btn:hover {
    background: #242424;
    color: #ffffff !important;
}

.project-count-area {
    padding-top: 95px;
}

.project-count-area .single-count:hover .count-icon span {
    -webkit-animation: 850ms ease-in-out 0s normal none 1 running tada;
    animation: 850ms ease-in-out 0s normal none 1 running tada;
}

.project-count-area .single-count .count-icon span {
    font-size: 50px;
    color: #595959;
    line-height: 1;
    display: inline-block;
}

.project-count-area .single-count .count-title h2 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.2px;
    margin: 15px 0 5px;
}

.project-count-area .single-count .count-title>span {
    font-size: 20px;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project-count-area [class*="col-"]:nth-child(-n+2) .single-count {
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .project-count-area [class*="col-"]:nth-child(-n+2) .single-count {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .project-count-area [class*="col-"] {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .project-count-area [class*="col-"]:last-child {
        padding-bottom: 0;
    }
}

.team-area {
    padding-top: 90px;
    padding-bottom: 100px;
}

.team-area .section_title-2 {
    padding-bottom: 25px;
}

.team-area .section_title-2>h3 {
    margin-bottom: 0;
}

.team-area .team-member .team-thumb img {
    width: 100%;
    display: block;
    overflow: hidden;
}

.team-area .team-member .team-content {
    padding-top: 25px;
}

.team-area .team-member .team-content h3 {
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.team-area .team-member .team-content p {
    margin-bottom: 0;
    padding-bottom: 15px;
}

.team-area .team-member .team-content .kenne-social_link {
    padding-top: 20px;
}

.team-area .team-member .team-content .kenne-social_link>ul>li {
    padding-right: 5px;
}

.team-area .team-member .team-content .kenne-social_link>ul>li>a {
    width: 35px;
    height: 35px;
    line-height: 33px;
}

@media (max-width: 1199px) {
    .team-area .team-member .team-content .kenne-social_link>ul>li>a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-area [class*="col-"]:nth-child(-n+2) .team-member {
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .team-area [class*="col-"]:nth-child(-n+2) .team-member {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .team-area [class*="col-"]:not(:last-child) .team-member {
        padding-bottom: 30px;
    }
}


/*----------------------------------------*/


/*  42 - Pages - About Us
/*----------------------------------------*/

.mt-110 {
    margin-top: 110px;
}

.height-100vh {
    min-height: 100vh;
}

.comming-soon-area {
    padding: 60px 0;
    position: relative;
}

.comming-soon-area:before {
    background-color: #000000;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0.3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .comming-soon-area {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .comming-soon-area {
        padding: 40px 0;
    }
}

@media only screen and (min-width: 480px) and (max-width: 575px) {
    .comming-soon-area .container {
        max-width: 320px;
    }
}

.comming-soon-area .comming-soon-wrap {
    position: relative;
    z-index: 99;
}

.comming-soon-area .comming-soon-wrap .comming-soon-top {
    margin: 0 0 54px;
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top {
        margin: 0 0 30px;
    }
}

.comming-soon-area .comming-soon-wrap .comming-soon-top>h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 12px;
    line-height: 1;
    margin: 58px 0 41px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top>h3 {
        margin: 29px 0 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top>h3 {
        margin: 40px 0 20px;
    }
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top>h3 {
        letter-spacing: 6px;
        margin: 30px 0 20px;
        line-height: 1.2;
    }
}

.comming-soon-area .comming-soon-wrap .comming-soon-top>p {
    color: #ffffff;
    font-size: 16px;
    width: 66%;
    margin: 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top>p {
        width: 85%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top>p {
        width: 82%;
    }
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top>p {
        width: 98%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .comming-soon-area .comming-soon-wrap .comming-soon-top>p {
        width: 100%;
    }
}

.comming-soon-area.overlay {
    position: relative;
}

.comming-soon-area.overlay:before {
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 9;
}

.subscribe-area {
    position: relative;
    z-index: 99;
}

.subscribe-area>h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 0 0 14px;
}

@media (max-width: 767px) {
    .subscribe-area>h4 {
        letter-spacing: 2px;
    }
}

@media (max-width: 575px) {
    .subscribe-area>h4 {
        line-height: 1.2;
    }
}

.subscribe-area .subscribe-form>form {
    position: relative;
}

.subscribe-area .subscribe-form>form .mc-news {
    display: none;
}

.subscribe-area .subscribe-form>form .clear {
    position: absolute;
    top: 0;
    right: 0;
}

.subscribe-area .subscribe-form>form .clear input {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    border-radius: 50px;
    color: #e0e0e0;
    cursor: pointer;
    font-weight: 700;
    padding: 2px 40px 2px 30px;
    width: auto;
}

@media (max-width: 767px) {
    .subscribe-area .subscribe-form>form .clear input {
        padding: 2px 25px 2px 18px;
    }
}

.subscribe-area .subscribe-form>form .clear:hover input {
    color: #8f9495;
}

.subscribe-area .subscribe-form>form .clear:before {
    background: #ffffff;
    content: "";
    height: 35px;
    position: absolute;
    top: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 2px;
    left: 0;
}

@media (max-width: 767px) {
    .subscribe-area .subscribe-form>form .clear:before {
        height: 29px;
    }
}

.subscribe-area .subscribe-form>form input {
    background: transparent;
    border: 1px solid #eceff8;
    color: #ffffff;
    font-size: 14px;
    height: 55px;
    padding: 2px 146px 2px 40px;
    width: 100%;
    font-weight: 300;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
}

.subscribe-area .subscribe-form>form input::-moz-placeholder {
    color: #ffffff !important;
    opacity: 1;
}

.subscribe-area .subscribe-form>form input::-webkit-input-placeholder {
    color: #ffffff !important;
    opacity: 1;
}

@media (max-width: 767px) {
    .subscribe-area .subscribe-form>form input {
        padding: 2px 117px 2px 20px;
        height: 50px;
    }
}

.subscribe-area.mt-110 {
    margin-top: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .subscribe-area.mt-110 {
        margin-top: 70px;
    }
}

@media (max-width: 767px) {
    .subscribe-area.mt-110 {
        margin-top: 50px;
    }
}

.DateCountdown .time_circles {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.DateCountdown .time_circles canvas {
    width: 100% !important;
    height: auto !important;
    position: absolute;
    left: 0;
    top: 0;
}

.DateCountdown .time_circles>div {
    margin-top: 86px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 25%;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
    position: static;
    width: 25% !important;
    z-index: 99;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .DateCountdown .time_circles>div {
        margin-top: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .DateCountdown .time_circles>div {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .DateCountdown .time_circles>div {
        margin-top: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .DateCountdown .time_circles>div {
        margin-top: 26px;
    }
}

.DateCountdown .time_circles>div>h4 {
    color: #ffffff;
    font-size: 18px !important;
    font-weight: 400;
    margin: 89px 0 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding: 0;
    text-align: center;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .DateCountdown .time_circles>div>h4 {
        margin: 64px 0 0;
    }
}

@media (max-width: 767px) {
    .DateCountdown .time_circles>div>h4 {
        font-size: 16px !important;
        margin: 25px 0 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .DateCountdown .time_circles>div>h4 {
        font-size: 16px !important;
        margin: 50px 0 0;
    }
}

.DateCountdown .time_circles>div>span {
    color: #ffffff;
    display: block;
    font-size: 60px !important;
    font-weight: 400;
    line-height: 47px !important;
    margin-top: 16px;
    text-align: center;
    width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .DateCountdown .time_circles>div>span {
        font-size: 50px !important;
    }
}

@media (max-width: 767px) {
    .DateCountdown .time_circles>div>span {
        font-size: 26px !important;
        margin-top: 12px;
    }
}


/*---Snow Fall CSS---*/

.rel-area {
    position: relative;
}

@-webkit-keyframes snow {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
}

@keyframes snow {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 500px 1000px, 400px 400px, 300px 300px;
    }
}

.ice_effect {
    background-image: url("../images/coming-soon/flake.png");
    -webkit-animation: snow 20s linear infinite;
    animation: snow 20s linear infinite;
}

.effect-body {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0);
}

.modal-backdrop.show {
    z-index: 99;
}