/*===========================
    1. COMMON css 
===========================*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&amp;family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&amp;display=swap");

body {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #6a7783;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #222;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

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

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6a7783;
    margin: 0px;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.slick-slide {
    outline: 0;
}

@media only screen and (min-width: 1600px) {
    .custom-container {
        max-width: 1590px !important;
    }
}

.page-link:focus {
    box-shadow: none;
}


/*===== All Button Style =====*/

.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid var(--main-color);
    padding: 0 43px;
    font-size: 14px;
    line-height: 50px;
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background-color: var(--main-color);
}

.main-btn:hover {
    background-color: var(--hover-color);
    color: #ffffff;
    border-color: var(--hover-color);
}

.main-btn.main-btn-2 {
    background-color: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
}

.main-btn.main-btn-2:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}


/*Loader Css*/

.preloader {
    background-color: #fff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.lds-ellipsis {
    margin: 0 auto;
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 64px;
    text-align: center;
    z-index: 9999;
}

.lds-ellipsis span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--main-color);
    -webkit-animation: ball-pulse-sync .6s 0s infinite ease-in-out;
    animation: ball-pulse-sync .6s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
    -webkit-animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
    animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
    -webkit-animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
    animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/*===========================
    2.HEADER css 
===========================*/

.header-area .header-top {
    border-bottom: 1px solid #e5e5e5;
}

.header-area .header-top .header-top-item {
    padding: 6px 0;
}

.header-area .main-header .main-header-item {
    position: relative;
    padding: 20px 0;
}

.header-area .main-header .main-header-item .main-header-icon ul li {
    display: inline-block;
    margin-left: 11px;
}

.header-area .main-header .main-header-item .main-header-icon ul li.cart-item {
    position: relative;
}

.header-area .main-header .main-header-item .main-header-icon ul li.cart-item:hover .mini-cart-item {
    visibility: visible;
    top: 100%;
    opacity: 1;
}

.main-header-icon .mini-cart-item {
    position: absolute;
    top: 120%;
    right: 0;
    max-width: 320px;
    min-width: 320px;
    padding: 20px 10px 20px 15px;
    z-index: 9999;
    box-shadow: 0 3px 11px 0 rgb(0 0 0 / 10%);
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    padding-bottom: 20px;
    transition: all .3s;
}

.main-header-icon .cart-item-wrapper {
    padding-inline-end: 10px;
}
.main-header-icon .cart-item-wrapper::-webkit-scrollbar {
    width: 5px;
  }
  
  .main-header-icon .cart-item-wrapper::-webkit-scrollbar-track {
    background-color: buttonface;
  }
  
  .main-header-icon .cart-item-wrapper::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: #a3a3a3;
  }
.main-header-icon .mini-cart-item .cart-item-wrapper {
    min-height: auto;
    max-height: 325px;
    overflow-x: hidden;
    overflow-y: auto;
}

.main-header-icon .mini-cart-item .cart-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-icon .mini-cart-item .cart-item {
    position: relative;
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
.main-header-icon #cartIconWrapper> a {
    margin-inline-end: 18px;
}
.main-header-icon #cartIconWrapper .badge {
    position: absolute;
    top: -12px;
    right: 0;
    width: 22px;
    height: 22px;
    padding: 2px;
    line-height: 18px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--main-color);
}

.main-header-icon .mini-cart-item .cart-item .cart-info .title {
    display: block;
    color: #111;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
}

.main-header-icon .mini-cart-item .cart-item .cart-info .price_quantity {
    font-size: 12px;
}

.main-header-icon .mini-cart-item .cart-item .cart-img {
    flex: 0 0 80px;
    max-width: 80px;
    padding-inline-end: 10px;
}

.main-header-icon .mini-cart-item .cart-item .cart-img img {
    border: 1px solid #eee;
}

.main-header-icon .mini-cart-item .cart-item .cart-remove a {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    background-color: rgb(235, 89, 89);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    display: block;
    cursor: pointer;
    box-shadow: 0 3px 11px 0 rgb(0 0 0 / 10%);
    overflow: hidden;
    z-index: 111;

}

.main-header-icon .mini-cart-item .cart-item .variation-table {
    font-size: 12px;
}

.main-header-icon .mini-cart-item .cart-button .main-btn {
    line-height: 40px;
    padding: 0 18px;
}

.header-area .main-header .main-header-item .main-header-icon ul li i {
    color: #646464;
    cursor: pointer;
}

.header-area.header-2-area .header-top {
    border-bottom: 0;
    background: #0f1417;
}

.header-area.header-2-area .header-top .header-social ul li a {
    color: #fff;
    margin-right: 16px;
    position: relative;
}

.header-area.header-2-area .header-top .header-social ul li a:hover {
    color: #b0b6bd;
}

.header-area.header-2-area .header-top .header-social ul li a:hover::before {
    width: 100%;
}

.header-area.header-2-area .header-top .header-social ul li a::before {
    left: 0;
    bottom: 0px;
    height: 1px;
    width: 0%;
    background: #b0b6bd;
    top: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.header-area.header-2-area .header-top .header-social ul li:last-child a::before {
    display: block;
}

.header-area.header-2-area .header-top .header-top-help p {
    color: #b0b6bd;
}

.header-area.header-2-area .header-top .header-top-help p a {
    color: #fff;
}

.header-area.header-2-area .header-top .header-top-btns .nice-select {
    background-color: transparent;
    color: #fff;
}

.header-area.header-2-area .header-top .header-top-btns .nice-select .option {
    color: #222;
}

.header-area.header-2-area .header-top .header-top-btns .nice-select::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.header-area.header-2-area .main-header {
    background: #13191d;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .header-area.header-2-area .main-header .main-header-search .main-header-add {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .main-header .main-header-search .main-header-add {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area.header-2-area .main-header .main-header-search .main-header-add {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-area.header-2-area .main-header .main-header-search .main-header-add {
        display: none;
    }
}

.header-area .main-header .main-header-search .input-box select {
    flex: 0 0 auto;
    width: 30%;
    height: 100%;
    font-size: 14px;
    border-inline-end: 1px solid #e5e5e5;
}

.header-area .main-header .main-header-search .input-box select:is(:focus, :hover, :focus-visible) {
    /* border: none; */
    outline: none;
}

.header-area.header-2-area .main-header .main-header-search .input-box {
    background: #0f1417;
    border: 0;
}

.header-area.header-2-area .main-header .main-header-search .input-box .nice-select {
    background-color: transparent;
    color: #fff;
    border-right-color: #272c2f;
}

.header-area.header-2-area .main-header .main-header-search .input-box .nice-select .option {
    color: #222;
}

.header-area.header-2-area .main-header .main-header-search .input-box input {
    background-color: transparent;
    color: #b0b6bd;
}

.header-area.header-2-area .main-header .main-header-search .input-box input::placeholder {
    opacity: 1;
    color: #b0b6bd;
}

.header-area.header-2-area .main-header .main-header-search .input-box button {
    background: #0f1417;
}

.header-area.header-2-area .main-header .main-header-item .main-header-icon ul li i {
    color: #b0b6bd;
}

.header-area.header-2-area .main-header .main-header-item .canvas_open a {
    border-color: #fff;
    color: #fff;
}

.header-area.header-2-area .header_bottom .categories_wrap {
    margin-top: 0;
}

.header-area.header-2-area .header_bottom .categories_wrap #navCatContent {
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    display: block;
    max-width: 270px;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.header-area.header-2-area .header_bottom .categories_wrap #navCatContent.show {
    left: 0;
}

.header-area.header-2-area .header_bottom .categories_wrap .categories_btn {
    color: var(--main-color);
    border-radius: 7px;
    background-color: transparent;
    border: 2px solid #272c2f;
    padding: 0 58px 0 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .header-area.header-2-area .header_bottom .categories_wrap .categories_btn {
        padding: 0 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .header_bottom .categories_wrap .categories_btn {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .header-area.header-2-area .header_bottom .categories_wrap .categories_btn {
        padding: 0 10px;
    }
}

.header-area.header-2-area .header_bottom .categories_wrap .categories_btn span {
    color: var(--main-color);
}

.header-area.header-2-area .header_bottom .main-header-search .input-box {
    background: #13191d;
    border: 0;
}

.header-area.header-2-area .header_bottom .main-header-search .input-box .nice-select {
    background-color: transparent;
    color: #fff;
    border-right-color: #272c2f;
}

.header-area.header-2-area .header_bottom .main-header-search .input-box input {
    background-color: transparent;
    color: #b0b6bd;
}

.header-area.header-2-area .header_bottom .main-header-search .input-box input::placeholder {
    opacity: 1;
    color: #b0b6bd;
}

.header-area.header-2-area .header_bottom .main-header-search .input-box button {
    background: #0f1417;
}

.header-area.header-2-area .header_bottom .main_menu nav>ul>li {
    margin: 0 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .header-area.header-2-area .header_bottom .main_menu nav>ul>li {
        margin: 0 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .header_bottom .main_menu nav>ul>li {
        margin: 0 8px;
    }
}

.header-area.header-2-area .header_bottom .main_menu nav>ul>li a.active,
.header-area.header-2-area .header_bottom .main_menu nav>ul>li a:hover {
    color: var(--main-color);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .header-area.header-2-area .header_bottom .main_menu .header-btn {
        display: none !important;
    }
}

.header-social ul li {
    display: inline-block;
}

.header-social ul li a {
    font-size: 14px;
    color: #6a7783;
    margin-right: 20px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.header-social ul li a:hover {
    color: #222;
}

.header-social ul li a::before {
    position: absolute;
    content: '';
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    background: #6a7783;
    height: 10px;
    width: 1px;
}

.header-social ul li:last-child a {
    margin-right: 0;
}

.header-social ul li:last-child a::before {
    display: none;
}

.header-top-btns .language-btn {
    position: relative;
}

.header-top-btns .language-btn img {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.header-top-btns .language-btn .nice-select {
    border: 0;
    font-size: 14px;
    color: #6a7783;
}

.header-top-btns .currency-btn .nice-select {
    border: 0;
    font-size: 14px;
    color: #6a7783;
}

.header-top-help p {
    font-size: 14px;
    color: #222;
}

.header-top-help p a {
    color: #6a7783;
}

.main-header-search .nice-select {
    border-radius: 0;
    border: 0;
    line-height: 34px;
    border-right: 1px solid #e5e5e5;
    margin-right: 36px;
    height: auto;
}

.main-header-search .nice-select span {
    line-height: 34px;
}

.main-header-search .input-box {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    position: relative;
    border-right: 0;
    background: #fff;
    overflow: hidden;
}

.main-header-search .input-box input {
    width: 385px;
    line-height: 36px;
    height: 45px;
    border: 0;
    font-size: 13px;
    color: #b0b6bd;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header-search .input-box input {
        width: 270px;
    }
}

@media (max-width: 767px) {
    .main-header-search .input-box input {
        width: 100%;
    }
}

.main-header-search .input-box input::placeholder {
    opacity: 1;
    color: #b0b6bd;
}

.main-header-search .input-box button {
    position: absolute;
    right: 1px;
    top: 0;
    height: 100%;
    width: 45px;
    background: #0f1417;
    color: #fff;
    border: 0;
    border-radius: 0 6px 6px 0;
}


/* 2. Home 1 Header css here */


/* 01. header css here */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main_menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .main_menu {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main_menu nav {
        display: none;
    }
}

@media (max-width: 767px) {
    .main_menu nav {
        display: none;
    }
}

.main_menu nav>ul {
    display: flex;
    justify-content: left;
}

.main_menu nav>ul>li {
    position: relative;
    margin-right: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main_menu nav>ul>li {
        margin-right: 25px;
    }
}

.main_menu nav>ul>li::last-child {
    margin-right: 0;
}

.main_menu nav>ul>li:hover ul.sub_menu {
    visibility: visible;
    max-height: 360px;
    padding: 24px 20px;
}

.main_menu nav>ul>li:hover .mega_menu {
    visibility: visible;
    max-height: 425px;
    padding: 25px 30px 30px 30px;
}

.main_menu nav>ul>li:hover a {
    border-color: #222;
}

.main_menu nav>ul>li>a {
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.main_menu nav>ul>li>a:hover {
    color: var(--main-color);
}


.main_menu nav>ul>li>a i {
    margin-left: 3px;
}

.main_menu nav>ul>li>a.active {
    color: var(--main-color);
}

.main_menu nav>ul>li ul.sub_menu {
    position: absolute;
    min-width: 220px;
    padding: 0 20px;
    background: #ffffff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    max-height: 0;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    left: 0;
    right: auto;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
    top: 120%;
    text-align: left;
}

.main_menu nav>ul>li ul.sub_menu li a {
    font-size: 14px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    display: block;
    line-height: 32px;
    text-transform: capitalize;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.main_menu nav>ul>li ul.sub_menu li a:hover {
    color: var(--main-color);
}

.main_menu nav>ul>li.mega_items {
    position: static;
}

.main_menu nav>ul>li .mega_menu {
    position: absolute;
    min-width: 100%;
    padding: 0 30px 0 30px;
    background: #ffffff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    max-height: 0;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    left: 0;
    right: auto;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
    top: 120%;
    text-align: left;
}

.mega_menu_inner>li {
    width: 25%;
    float: left;
}

.mega_menu_inner>li.header_banner_menu {
    width: 100%;
    margin-top: 15px;
    overflow: hidden;
}

.mega_menu_inner>li.header_banner_menu img {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mega_menu_inner>li.header_banner_menu:hover img {
    -webkit-transform: scale(1.05) rotate(0.05deg);
    -moz-transform: scale(1.05) rotate(0.05deg);
    -ms-transform: scale(1.05) rotate(0.05deg);
    -o-transform: scale(1.05) rotate(0.05deg);
    transform: scale(1.05) rotate(0.05deg);
}

.mega_menu_inner>li>a {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color: #222;
}

.mega_menu_inner>li>a:hover {
    color: var(--main-color);
}

.mega_menu_inner>li>a img {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mega_menu_inner>li>a img:hover {
    opacity: .8;
}

.mega_menu_inner>li ul li {
    display: block;
}

.mega_menu_inner>li ul li a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 30px;
    text-transform: capitalize;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.mega_menu_inner>li ul li a:hover {
    color: var(--main-color);
}

.mega_menu_inner>li.h_banner_menu2 {
    width: 100%;
}

.header-area .header_bottom {
    padding: 13px 0;
    background: #0f1417;
    /* border-top: 1px solid #e5e5e5; */
}

.main-header {
    background: #ececec;
}

.header-area {
    box-shadow: 0 5px 20px 0px rgba(112, 112, 112, 0.2);
}

.header-btn a {
    line-height: 40px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #3e4142;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.header-sticky.sticky-on .header-btn a {
    color: #222 !important;
}
.header-btn a:hover {
    color: #ffffff !important;
}

.header-btn a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #222;
}

.header-btn.header-btn-2 a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.h_banner_menu2 {
    display: flex;
    margin-top: 18px;
}

.h_banner_menu2 .header_banner_menu {
    margin-right: 30px;
}

.h_banner_menu2 .header_banner_menu img {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.h_banner_menu2 .header_banner_menu:last-child {
    margin-right: 0;
}

.h_banner_menu2 .header_banner_menu a {
    overflow: hidden;
}

.h_banner_menu2 .header_banner_menu:hover img {
    -webkit-transform: scale(1.05) rotate(0.05deg);
    -moz-transform: scale(1.05) rotate(0.05deg);
    -ms-transform: scale(1.05) rotate(0.05deg);
    -o-transform: scale(1.05) rotate(0.05deg);
    transform: scale(1.05) rotate(0.05deg);
}

.menu_two nav>li:hover .mega_menu {
    min-height: 448px;
}

.mega-wrap-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    overflow-y: scroll;
    background: #0c1013;
    padding: 35px;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    -webkit-box-shadow: 0px 15px 30px 0px rgb(0 3 143 / 10%);
    box-shadow: 0px 15px 30px 0px rgb(0 3 143 / 10%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 99;
}

.mega-wrap-menu::-webkit-scrollbar {
    background-color: #000;
    width: 8px;
}

.mega-wrap-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

.main_menu nav>ul>li:hover .mega-wrap-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.mega-wrap-menu .mega-wrap {
    display: flex;
    flex-wrap: wrap;
}

.mega-wrap-menu .mega-wrap .sidebar-list {
    flex: 0 0 25%;
    max-width: 25%;
}

.mega-wrap-menu .mega-wrap .sidebar-list a {
    display: block;
    padding: 10px 0;
    font-weight: 700;
    color: #fff;
}

.mega-wrap-menu .mega-wrap .sidebar-main-wrapper h4.title,
.mega-wrap-menu .mega-wrap .sidebar-main-wrapper .box-item .box-info h4:hover,
.mega-wrap-menu .mega-wrap .sidebar-list a:hover,
.mega-wrap-menu .mega-wrap .sidebar-list a.active {
    color: var(--main-color);
}

.mega-wrap-menu .mega-wrap .sidebar-main-wrapper {
    flex: 0 0 75%;
    max-width: 75%;
}

.sidebar-main-wrapper .box-item .box-img {
    margin-bottom: 15px;
}

.sidebar-main-wrapper .box-item .box-info h4 {
    font-size: 16px;
    color: #fff;
}

.sidebar-main-wrapper .box-item .box-info h4 a {
    color: inherit;
}

.sidebar-main-wrapper h4.title {
    margin-bottom: 15px;
    color: #fff;
}

.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
}

.off_canvars_overlay.active {
    opacity: .5;
    visibility: visible;
}

.offcanvas_menu {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offcanvas_menu {
        display: block;
    }
}

@media (max-width: 767px) {
    .offcanvas_menu {
        display: block;
    }
}

.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: #fff;
    z-index: 99;
    top: 0;
    height: 100vh;
    transition: .5s;
    left: 0;
    margin-left: -300px;
    padding: 50px 15px 30px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
    margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper .header-btn {
    margin-bottom: 30px;
}

.offcanvas_menu_wrapper .header-btn a {
    color: #222;
}

.offcanvas_menu_wrapper .header-btn a:hover {
    color: #222;
}

.offcanvas_main_menu li {
    position: relative;
}

.offcanvas_main_menu li:last-child {
    margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 0;
}

.offcanvas_main_menu li a {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas_main_menu li a:hover {
    color: var(--main-color);
}

.offcanvas_main_menu li ul.sub-menu {
    padding-left: 20px;
}

.offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.offcanvas_footer span a {
    font-size: 14px;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.offcanvas_footer span a:hover {
    color: var(--main-color);
}

.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}

.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 32px;
    border: 1px solid #ededed;
    border-radius: 50%;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.canvas_close a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.canvas_open a {
    font-size: 26px;
    width: 50px;
    height: 42px;
    display: block;
    line-height: 39px;
    text-align: center;
    border: 1px solid #232323;
    color: #222;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.canvas_open a:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}


/*===========================
    3.HEADER css 
===========================*/

.banner-area .banner-slide .slick-dots {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.banner-area .banner-slide .slick-dots li {
    display: inline-block;
}

.banner-area .banner-slide .slick-dots li button {
    font-size: 0;
    border: 0;
    background: #fff;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.banner-area .banner-slide .slick-dots li.slick-active button {
    width: 20px;
    background: var(--main-color);
    border-radius: 30px;
}

.banner-area .banner-slide .banner-item {
    height: 470px;
    border-radius: 8px;
}

.banner-area .banner-slide .banner-item .banner-content {
    overflow: hidden;
    max-width: 400px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area .banner-slide .banner-item .banner-content {
        padding-left: 50px;
    }
}

@media (max-width: 767px) {
    .banner-area .banner-slide .banner-item .banner-content {
        padding-left: 30px;
    }
}

.banner-area .banner-slide .banner-item .banner-content span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 2px;
}

.banner-area .banner-slide .banner-item .banner-content .title {
    /* font-size: 50px; */
    font-weight: 800;
    color: var(--main-color);
    /* color: #fff; */
    font-family: "Poppins", sans-serif;
    padding-bottom: 10px;
    padding-inline-end: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner-area .banner-slide .banner-item .banner-content p {
    color: #fff7f7;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    padding-bottom: 42px;
}

.banner-area .banner-slide .banner-item .banner-content a {
    line-height: 45px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    color: #fff;
    padding: 0px 20px;
    transition: all .3s;
}

.banner-area .banner-slide .banner-item .banner-content a:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.banner-services .banner-services-item {
    position: relative;
    display: flex;
    align-items: start;
    gap: 20px;
}

.banner-services .banner-services-item img {
    flex: 0 0 auto;
    width: 55px;
}

.banner-services .banner-services-item .title {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #222;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-services .banner-services-item .title {
        font-size: 13px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-services .banner-services-item .title {
        font-size: 13px;
    }
}

.banner-services .banner-services-item p {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-services .banner-services-item p {
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-services .banner-services-item p {
        font-size: 12px;
    }
}

.categories_wrap {
    position: relative;
}

.categories_btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 0px 0px 0 20px;
    line-height: 50px;
    color: #222;
    text-align: left;
    width: 100%;
    border-radius: 7px 7px 0 0px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.categories_btn i {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

.categories_btn.categories_menu {
    padding: 12px 15px;
    border-radius: 0px;
}

.categories_btn.categories_menu i {
    margin-right: 0;
    float: right;
}

.categories_btn span {
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 500;
    color: #ffffff;
}

.categories_btn i {
    color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .categories_btn span {
        font-size: 15px;
    }
}

#navCatContent li {
    list-style: none;
}

#navCatContent {
    background-color: #fff;
    position: absolute;
    padding: 5px 0px 0;
    top: 100%;
    width: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ededed;
    border-radius: 0px 0px 7px 7px;
    border-top: 0;
    z-index: 11;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #navCatContent {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        display: block;
        max-width: 270px;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
    }
}

@media (max-width: 767px) {
    #navCatContent {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        display: block;
        max-width: 270px;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #navCatContent.show {
        left: 0;
    }
}

@media (max-width: 767px) {
    #navCatContent.show {
        left: 0;
    }
}

.nav_cat {
    display: block;
    height: auto !important;
}

.nav_cat.collapse:not(.show) {
    display: block;
}

#navCatContent ul {
    width: 100%;
}

#navCatContent li .card {
    border-radius: 0;
    border: none;
}

#navCatContent li a.card-header {
    text-transform: capitalize;
    border-radius: 0;
    border-bottom: none;
    font-size: 14px;
    color: #6a7783;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 0 26px;
    line-height: 47px;
    cursor: pointer;
}

#navCatContent li a.card-header[aria-expanded]:before {
    margin-right: 10px;
    content: '\f067';
    font-weight: 600;
    font-family: 'Font Awesome 5 Pro';

}

#navCatContent li a.card-header[aria-expanded=true]:before {
    content: '\f068';
}

#navCatContent li .card .card-body {
    padding: 0 30px;
    padding-inline-start: 44px;
}

#navCatContent li .card .card-body a {
    display: block;
    font-weight: 500;
    padding: 5px 0;
    font-size: 14px;
    color: #6a7783;
}

#navCatContent li .card .card-body a:hover {
    color: var(--main-color);
}

#navCatContent li a i {
    font-size: 22px;
    vertical-align: middle;
    margin-right: 10px;
    line-height: 30px;
}

#navCatContent li a span {
    vertical-align: middle;
}

#navCatContent li a:hover {
    color: var(--main-color);
}

#navCatContent li a.dropdown-toggler::after {
    position: absolute;
    right: 15px;
    top: 15px;
}

#navCatContent ul li .dropdown-menu {
    left: 100%;
    top: 0;
    margin: 0;
    border: 0;
    min-width: 800px;
    width: 100%;
    right: 0;
    box-shadow: 10px 16px 49px 0px rgba(38, 42, 46, 0.05);
    border-radius: 0;
    padding: 0;
}

#navCatContent ul li .dropdown-menu .dropdown-header {
    color: #333;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: bold;
}

#navCatContent .mega-menu-col {
    border: 0;
}

.more_categories {
    padding: 0 0px;
    margin: 0 26px;
    line-height: 47px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    border-top: 1px solid #e5e5e5;
    color: #6a7783;
    margin-top: 5px;
    position: relative;
    cursor: pointer;
    width: ayto;
    text-transform: capitalize;
}

.more_categories.show {
    border-top: 0;
}

.banner-2-area {
    height: 520px;
}

.banner-2-area .banner-content {
    overflow: hidden;
}

.banner-2-area .banner-content .title {
    font-size: 48px;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .banner-2-area .banner-content .title {
        font-size: 28px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-2-area .banner-content .title {
        font-size: 48px;
    }
}

.banner-2-area .banner-content p {
    font-size: 14px;
    color: #6a7783;
    text-transform: uppercase;
    letter-spacing: 6px;
    padding-bottom: 7px;
}

@media (max-width: 767px) {
    .banner-2-area .banner-content p {
        letter-spacing: 2px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-2-area .banner-content p {
        letter-spacing: 6px;
    }
}

.banner-2-area .banner-content span {
    font-size: 48px;
    font-family: "Poppins", sans-serif;
    color: var(--main-color);
    font-weight: 700;
}

.banner-2-area .banner-content span span {
    color: #6a7783;
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    text-decoration: line-through;
}

.banner-2-area .banner-content a {
    border-radius: 5px;
    background-color: transparent;
    color: #222;
    line-height: 43px;
    padding: 0 20px;
    border: 2px solid #e5e5e3;
    margin-top: 34px;
}

.banner-2-area .banner-content a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.banner-services-area {
    background: #f2f3f8;
    padding-top: 32px;
    padding-bottom: 75px;
}

.banner-services-area.banner-services-about {
    background-color: transparent;
}

.banner-shop-item-area {
    background: #f2f3f8;
}

.banner-shop-item-area .banner-shop {
    background: #fff;
    padding: 50px;
}

@media (max-width: 767px) {
    .banner-shop-item-area .banner-shop {
        padding: 20px;
    }
}

.banner-shop-item-area .banner-shop-item {
    position: relative;
}

.banner-shop-item-area .banner-shop-item img {
    width: 100%;
}

.banner-shop-item-area .banner-shop-item a {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    width: 100%;
    background: var(--main-color);
    border-color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #fff;
    line-height: 45px;
    opacity: 0;
    visibility: hidden;
}

.banner-shop-item-area .banner-shop-item span {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--main-color);
    color: #222;
    line-height: 30px;
    font-size: 13px;
    padding: 0 9px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.banner-shop-item-area .banner-shop-item:hover a {
    opacity: 1;
    visibility: visible;
}

.banner-shop-item-area .banner-shop-item:hover span {
    opacity: 1;
    visibility: visible;
}

.banner-shop-item-area .banner-shop-item-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dadbe0;
    z-index: 99;
    cursor: pointer;
    color: #6a7783;
    font-size: 18px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.banner-shop-item-area .banner-shop-item-active .slick-arrow:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.banner-shop-item-area .banner-shop-item-active .slick-arrow.prev {
    left: -45px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .banner-shop-item-area .banner-shop-item-active .slick-arrow.prev {
        left: -45px;
    }
}

.banner-shop-item-area .banner-shop-item-active .slick-arrow.next {
    right: -45px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .banner-shop-item-area .banner-shop-item-active .slick-arrow.next {
        right: -45px;
    }
}

.page-title-area {
    height: 150px;
}

.page-title-area .page-title-item .title {
    font-size: 24px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .page-title-area .page-title-item .title {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-title-area .page-title-item .title {
        margin-bottom: 0px;
    }
}

.page-title-area .page-title-item nav ol {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.page-title-area .page-title-item nav ol li {
    color: #222;
}

.page-title-area .page-title-item nav ol li a {
    color: #6a7783;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding: 0 7px 0 3px;
    font-weight: 400;
    color: #222;
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
}

.banner-slide-2 .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-slide-2 .slick-arrow {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .banner-slide-2 .slick-arrow {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }
}

.banner-slide-2 .slick-arrow.prev {
    left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-slide-2 .slick-arrow.prev {
        left: 5px;
    }
}

@media (max-width: 767px) {
    .banner-slide-2 .slick-arrow.prev {
        left: 5px;
    }
}

.banner-slide-2 .slick-arrow.next {
    right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-slide-2 .slick-arrow.next {
        right: 5px;
    }
}

@media (max-width: 767px) {
    .banner-slide-2 .slick-arrow.next {
        right: 5px;
    }
}


/*===========================
    4.SUB css 
===========================*/

.sub-area {
    padding-bottom: 115px;
}

.sub-area .sub-item {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}
.sub-area .sub-item a {
    display: block;
}
.sub-area .sub-item img {
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sub-area .sub-item:hover img {
    transform: scale(1.1);
}

.sub-area .sub-item .sub-content {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.sub-area .sub-item .sub-content>span {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #fff;
}

.sub-area .sub-item .sub-content .title {
    font-size: 18px;
    color: #fff;
    line-height: 18px;
    padding-top: 5px;
}

.sub-area .sub-item .sub-content p {
    font-size: 14px;
    padding-top: 9px;
    color: #cecece;
}

.sub-area .sub-item .sub-content.item-2 span {
    color: var(--main-color);
}

.sub-area .sub-item .sub-content.item-3 {
    left: 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .sub-area .sub-item .sub-content.item-3 {
        left: 140px;
    }
}

@media (max-width: 767px) {
    .sub-area .sub-item .sub-content.item-3 {
        left: 132px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .sub-area .sub-item .sub-content.item-3 {
        left: 250px;
    }
}

.sub-area .sub-item .sub-content.item-3 .title {
    font-weight: 500;
}

.sub-area .sub-item .sub-content.item-3 span {
    color: #6a7783;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

.sub-area .sub-item .sub-content.item-3 p {
    font-weight: 300;
}

.sub-area .sub-item .sub-content.item-3 p span {
    color: #fff;
}


/*===========================
    5.ELECTRONICS PRODUCT css 
===========================*/

.electronics-product-area {
    padding-bottom: 29px;
}

.electronics-product-area .section-title {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 14px;
}

.electronics-product-area .electronics-title .title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    padding-inline-start: 10px;
    position: relative;
    z-index: 10;
}

.electronics-product-area .electronics-title .syotimer {
    margin-left: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #13191d;
}

.electronics-product-area .electronics-title .syotimer .syotimer__body {
    display: flex;
    align-items: center;
}

.electronics-product-area .electronics-title .syotimer .syotimer-cell:last-child .syotimer-cell__value:after {
    display: none;
}

.electronics-product-area .electronics-title .syotimer .syotimer-cell .syotimer-cell__value:after {
    content: ':';
    margin-left: 5px;
    margin-right: 10px;
}

.electronics-product-area .electronics-title .syotimer .syotimer-cell .syotimer-cell__unit {
    display: none;
}
.electronics-arrows{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.electronics-arrows .slick-arrow {
    font-size: 18px;
    color: #fff;
    z-index: 99;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background-color: var(--main-color);
}
.electronics-arrows .slick-arrow:hover {
    background-color: var(--hover-color);
}

.button-box a {
    color: #13191d;
    font-weight: 700;
}

.electronics-product-area .electronics-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--main-color);
    z-index: -1;
}

.electronics-product-area.electronics-product-2-area {
    background: #f2f3f8;
}

.electronics-product-area.electronics-product-2-area .electronics-title {
    border-bottom-color: #dfe0e5;
}

.electronics-product-area.electronics-product-2-area .electronics-title .title::before {
    background: var(--main-color);
}

.electronics-product-area.electronics-product-2-area .electronics-product-item {
    background: #fff;
    border: 0px;
}

.electronics-product-item {
    border: 1px solid #ededed;
    border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
}

.electronics-product-item .electronics-product-thumb {
    position: relative;
    overflow: hidden;
}

/* .electronics-product-item .electronics-product-thumb span {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e84506;
    color: #fff;
    line-height: 20px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
} */

.electronics-product-item .electronics-product-thumb img {
    width: 100%;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.electronics-product-item .electronics-product-thumb.item-2 span {
    background: var(--main-color);
    color: #222;
}

.electronics-product-item .electronics-product-content {
    padding-top: 14px;
    padding-bottom: 25px;
    padding-inline: 5px;
}

.electronics-product-item .electronics-product-content span {
    font-size: 13px;
    color: #222;
}

.electronics-product-item .electronics-product-content span span {
    color: #6a7783;
}

.electronics-product-item .electronics-product-content p {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: #222;
    padding-top: 0;
}

.electronics-product-item .electronics-product-content .review-price {
    margin-top: 5px;
    font-family: "Poppins", sans-serif;
}

.electronics-product-item .electronics-product-content .review-price .price {
    padding-top: 5px;
    font-weight: 600;
    font-size: 16px;
    color: var(--main-color);
    font-family: inherit;
}

.electronics-product-item .electronics-product-content .review-price ul li i {
    font-size: 12px;
    color: var(--main-color);
}

.electronics-product-item .electronics-product-content .review-price .title {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    padding-left: 15px;
}

.electronics-product-item .product-buy-btn {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.electronics-product-item .product-buy-btn ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.electronics-product-item .product-buy-btn ul li {
    display: inline-block;
}

.electronics-product-item .product-buy-btn ul li a {
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    color: var(--main-color);
    background: #fff;
}

.electronics-product-item .product-buy-btn ul li a.main-btn {
    width: auto;
    padding: 0 16px;
    border-color: var(--main-color);
    background: var(--main-color);
    border-radius: 5px;
    margin-left: 2px;
    margin-right: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
}

.electronics-product-item .product-buy-btn ul li a.main-btn i {
    padding-right: 6px;
    /* display: none; */
}

.electronics-product-item:hover .electronics-product-thumb img {
    transform: scale(1.1);
}

.electronics-product-item:hover .product-buy-btn {
    opacity: 1;
}

.electronics-active-2 .slick-arrow,
.electronics-active-3 .slick-arrow,
.electronics-active-4 .slick-arrow,
.electronics-active .slick-arrow {
    position: absolute;
    top: -40px;
    font-size: 18px;
    color: #fff;
    z-index: 99;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--main-color);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.electronics-active-2 .slick-arrow:hover,
.electronics-active-3 .slick-arrow:hover,
.electronics-active-4 .slick-arrow:hover,
.electronics-active .slick-arrow:hover {
    background-color: var(--hover-color);
}

.electronics-active-2 .slick-arrow.prev,
.electronics-active-3 .slick-arrow.prev,
.electronics-active-4 .slick-arrow.prev,
.electronics-active .slick-arrow.prev {
    right: 50px;
}

.electronics-active-2 .slick-arrow.next,
.electronics-active-3 .slick-arrow.next,
.electronics-active-4 .slick-arrow.next,
.electronics-active .slick-arrow.next {
    right: 15px;
}

/* .electronics-active-2 .slick-arrow.next::before,
.electronics-active-3 .slick-arrow.next::before,
.electronics-active-4 .slick-arrow.next::before,
.electronics-active .slick-arrow.next::before {
    position: absolute;
    content: '';
    height: 18px;
    width: 1px;
    background: #ebebeb;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
} */

.electronics-active-2.item-3 .slick-arrow,
.electronics-active-3.item-3 .slick-arrow,
.electronics-active-4.item-3 .slick-arrow,
.electronics-active.item-3 .slick-arrow {
    opacity: 0;
}

.electronics-active-3 .electronics-product-item .product-buy-btn a.main-btn,
.electronics-active-4 .electronics-product-item .product-buy-btn a.main-btn {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}


/*===========================
    5.SHOP HOME 1 css 
===========================*/

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb {
    position: relative;
    text-align: center;
}

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb .price-off {
    position: absolute;
    left: 21px;
    top: 21px;
}

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb .price-off sub {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb .price-off sub sup {
    font-size: 12px;
    font-weight: 700;
    color: #f00;
}

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb img {
    width: 100%;
}

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb .new-product-content {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
}

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb .new-product-content span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb .new-product-content .title {
    font-size: 60px;
    font-weight: 800;
    color: var(--main-color);
    line-height: 54px;
    padding-bottom: 24px;
}

.shop-home-1-area .shop-home-sidebar .new-product-item .new-product-thumb .new-product-content a {
    background: #0f1417;
    color: #fff;
    line-height: 45px;
    border: 2px solid #272c2f;
    border-radius: 5px;
}

.shop-home-1-area .shop-home-area .shop-banner {
    border-radius: 6px;
}

.shop-home-1-area .shop-home-area .shop-banner .shop-banner-content {
    margin-left: -30px;
    padding-top: 21px;
    padding-bottom: 25px;
}

@media (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-banner .shop-banner-content {
        margin-left: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-banner .shop-banner-content {
        margin-left: 170px;
    }
}

.shop-home-1-area .shop-home-area .shop-banner .shop-banner-content span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #e84506;
    letter-spacing: 4px;
}

.shop-home-1-area .shop-home-area .shop-banner .shop-banner-content .title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    padding-right: 40px;
    padding-top: 3px;
    padding-bottom: 23px;
}

@media (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-banner .shop-banner-content .title {
        padding-right: 0;
        font-size: 22px;
    }
}

.shop-home-1-area .shop-home-area .shop-banner .shop-banner-content a {
    line-height: 45px;
    padding: 0 18px;
    color: #222;
    border-radius: 6px;
}

.shop-home-1-area .shop-home-area .new-product-list {
    padding-top: 75px;
}

.shop-home-1-area .shop-home-area .new-product-list .new-product-title {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 14px;
}

.shop-home-1-area .shop-home-area .new-product-list .new-product-title .title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    padding-inline-start: 10px;
    position: relative;
    z-index: 10;
}

.shop-home-1-area .shop-home-area .new-product-list .new-product-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--main-color);
    z-index: -1;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 img,
.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 {
    margin-right: -25px;
    position: relative;
    height: 250px;
}

@media (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 {
        margin-right: 0;
    }
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content {
        left: 140px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content {
        left: 120px;
    }
}

@media (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content {
        left: 100px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content {
        left: 185px;
    }
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 1px;
    height: 60px;
    background: #d2d2d2;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content::after {
    position: absolute;
    left: -77px;
    top: -3px;
    font-size: 18px;
    font-weight: 700;
    color: #e84506;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content .title {
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    font-size: 38px;
    line-height: 42px;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content span {
    text-transform: capitalize;
    font-size: 14px;
    color: #c9c9c9;
    letter-spacing: 6px;
    display: block;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-1 .shop-product-content a {
    padding: 0 20px;
    line-height: 45px;
    font-size: 14px;
    color: #ffffff;
    border-radius: 5px;
    margin-top: 24px;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 {
    margin-left: 25px;
}

@media (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 {
        margin-left: 0;
        margin-top: 30px;
    }
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content {
    position: absolute;
    left: 245px;
    bottom: 45px;
    padding-left: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content {
        left: 200px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content {
        left: 200px;
    }
}

@media (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content {
        left: 130px;
        bottom: 22px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content {
        left: 245px;
        bottom: 45px;
    }
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content>span {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--main-color);
    text-transform: uppercase;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content p {
    font-size: 14px;
    text-transform: capitalize;
    color: #fff;
    letter-spacing: 6px;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content .title {
    font-size: 32px;
    color: var(--main-color);
    padding-top: 9px;
}

.shop-home-1-area .shop-home-area .shop-product-banner .shop-product-banner-item-2 .shop-product-content .title span {
    font-size: 16px;
    color: #6a7783;
    text-decoration: line-through;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

.shop-introducing-item {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
}

.shop-introducing-item img {
    width: 100%;
}

.shop-introducing-item .shop-introducing-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    text-align: center;
}

.shop-introducing-item .shop-introducing-content span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.shop-introducing-item .shop-introducing-content .title {
    font-size: 24px;
    color: var(--main-color);
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 23px;
}

.shop-introducing-item .shop-introducing-content a {
    padding: 0 20px;
    line-height: 43px;
    background: #fff;
    color: #222;
    font-size: 14px;
    border-color: #fff;
    border-radius: 4px;
}

.shop-introducing-item .shop-item {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
}

.shop-introducing-item .shop-item span {
    background: var(--main-color);
    color: #222;
    font-size: 14px;
    line-height: 34px;
    padding: 0 13px;
    border-radius: 3px;
}

.shop-add-banner {
    padding: 5px 92px 5px 200px;
    border-radius: 8px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-add-banner {
        padding: 5px 30px 5px 105px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-add-banner {
        padding: 5px 30px 5px 115px;
    }
}

@media (max-width: 767px) {
    .shop-add-banner {
        padding: 10px 0;
        text-align: center;
    }
}

.shop-add-banner .shop-item p {
    font-size: 18px;
    color: #222;
}

.shop-add-banner .shop-item a {
    background: #fee34d;
    border: 0;
    color: #222;
    border-radius: 6px;
    line-height: 40px;
    font-size: 14px;
}

.shop-add-banner.shop-add-banner-2 {
    padding: 5px 70px 5px 300px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .shop-add-banner.shop-add-banner-2 {
        padding: 5px 30px 5px 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-add-banner.shop-add-banner-2 {
        padding: 5px 20px 5px 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-add-banner.shop-add-banner-2 {
        padding: 5px 30px 5px 30px;
    }
}

@media (max-width: 767px) {
    .shop-add-banner.shop-add-banner-2 {
        padding: 10px 0;
        text-align: center;
    }
}

.shop-add-banner.shop-add-banner-2 .shop-item p {
    color: #fff;
    font-weight: 700;
}

.shop-add-banner.shop-add-banner-2 .shop-item a {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.shop-add-banner.shop-add-banner-2 .shop-item a:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.shop-lookbook-item .shop-lookbook-title {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 14px;
    margin-bottom: 10px;
}

.shop-lookbook-item .shop-lookbook-title .title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    padding-inline-start: 8px;
    position: relative;
    z-index: 10;
}

.shop-lookbook-item .shop-lookbook-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 12px;
    background: var(--main-color);
    border-radius: 50%;
    z-index: -1;
}

.shop-lookbook-item .shop-lookbook-slider .item {
    border: 1px solid #ededed;
    border-radius: 6px;
    padding-left: 100px;
    padding-top: 10px;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 2px;
    z-index: 10;
    padding-inline-end: 10px;
}
.shop-lookbook-item .shop-lookbook-slider .item .add-to-wish {
    position: absolute;
    bottom: 12px;
    right: 0;
    margin-inline-end: 12px;
    font-size: 14px;
    color: var(--main-color);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-lookbook-item .shop-lookbook-slider .item {
        padding-left: 82px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-lookbook-item .shop-lookbook-slider .item {
        padding-right: 25px;
    }
}

.shop-lookbook-item .shop-lookbook-slider .item img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 30%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-lookbook-item .shop-lookbook-slider .item img {
        left: 5px;
        width: 16%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-lookbook-item .shop-lookbook-slider .item img {
        width: 24%;
    }
}

@media (max-width: 767px) {
    .shop-lookbook-item .shop-lookbook-slider .item img {
        width: 24%;
    }

    .shop-lookbook-item .shop-lookbook-slider .item {
        padding-left: 140px;
    }
}

@media (max-width: 575px) {
    .shop-lookbook-item .shop-lookbook-slider .item img {
        width: 24%;
    }

    .shop-lookbook-item .shop-lookbook-slider .item {
        padding-left: 100px;
    }
}

.shop-lookbook-item .shop-lookbook-slider .item .label {
    left: unset;
    right: 5px;
    top: 5px;
}

.shop-lookbook-item .shop-lookbook-slider .item>span {
    font-size: 13px;
    color: #222;
    padding-bottom: 5px;
    display: block;
    margin-inline-end: 10px;
}

.shop-lookbook-item .shop-lookbook-slider .item>span span {
    color: #6a7783;
}

.shop-lookbook-item .shop-lookbook-slider .item .title {
    font-size: 14px;
    color: #222;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-lookbook-item .shop-lookbook-slider .item .title {
        font-size: 12px;
    }
}

.shop-lookbook-item .shop-lookbook-slider .item .review-price ul li {
    display: inline-block;
    margin-right: -4px;
}

.shop-lookbook-item .shop-lookbook-slider .item .review-price ul li i {
    font-size: 12px;
    color: var(--main-color);
}

.shop-lookbook-item .shop-lookbook-slider .item .review-price ul li:nth-child(4) i {
    color: #c7c7c7;
}

.shop-lookbook-item .shop-lookbook-slider .item .review-price ul li:nth-child(5) i {
    color: #c7c7c7;
}

.shop-lookbook-item .shop-lookbook-slider .item .review-price span {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    /* padding-left: 18px; */
    font-family: "Poppins", sans-serif;
}

.shop-lookbook-item .shop-lookbook-slider .item .review-price .price {
    color: var(--main-color);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-lookbook-item .shop-lookbook-slider .item .review-price span {
        font-size: 14px;
        /* padding-left: 10px; */
    }
}

.shop-lookbook-item .shop-lookbook-slider .item .item-cart {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 3;
}

.shop-lookbook-item .shop-lookbook-slider .item .item-cart a {
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 6px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
}

.shop-lookbook-item .shop-lookbook-slider .item:hover .item-cart {
    opacity: 1;
}

.shop-lookbook-item .shop-lookbook-slider .item .price-off {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
}

.shop-lookbook-item .shop-lookbook-slider .item h6.price span.pre-price {
    text-decoration: line-through;
    padding-left: 0;
}

.shop-lookbook-item .shop-lookbook-slider .item .price-off span {
    background: #e84506;
    line-height: 20px;
    padding: 0 9px;
    border-radius: 5px;
    font-size: 13px;
    color: #fff;
}

.shop-lookbook-item .shop-lookbook-slider .slick-arrow {
    position: absolute;
    top: -49px;
    font-size: 18px;
    color: #fff;
    z-index: 99;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background-color: var(--main-color);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.shop-lookbook-item .shop-lookbook-slider .slick-arrow:hover {
    background-color: var(--hover-color);
}

.shop-lookbook-item .shop-lookbook-slider .slick-arrow.prev {
    right: 50px;
}

.shop-lookbook-item .shop-lookbook-slider .slick-arrow.next {
    right: 15px;
}

.shop-home-2-area .shop-home-sidebar .shop-lookbook-item .shop-lookbook-slider .item .item-cart a {
    background: var(--main-color);
    color: #fff;
}


/*===========================
    5.OFFER PRODUCT css 
===========================*/

.offer-product-area .offer-product-bg {
    border-radius: 6px;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .offer-product-area .offer-product-bg {
        background-position: 65%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .offer-product-area .offer-product-bg {
        background-position: 58%;
    }
}

@media (max-width: 767px) {
    .offer-product-area .offer-product-bg .offer-product-content {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .offer-product-area .offer-product-bg .offer-product-content {
        margin-left: 250px;
    }
}

.offer-product-area .offer-product-bg .offer-product-content span {
    color: #e84506;
}

.offer-product-area .offer-product-bg .offer-product-content .title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

.offer-product-area .offer-product-bg .offer-product-content p {
    font-weight: 300;
    color: #6a7783;
    text-transform: uppercase;
    padding-top: 22px;
    padding-bottom: 15px;
}

.offer-product-area .offer-product-bg .offer-product-content a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #222;
}

.offer-product-area .offer-product-bg .offer-product-content a i {
    font-size: 18px;
    padding-left: 8px;
}


/*===========================
    6.FOOTER css 
===========================*/

.footer-area {
    background: #0f1417;
}

.footer-area .main-footer .footer-about .footer-logo {
    margin-bottom: 7px;
}

.footer-area .main-footer .footer-about p {
    line-height: 30px;
    font-weight: 300;
    padding-top: 19px;
    padding-bottom: 38px;
    padding-right: 50px;
}

.footer-area .main-footer .footer-about ul li {
    display: inline-block;
}

.footer-area .main-footer .footer-about ul li a {
    height: 40px;
    width: 40px;
    background: #0c1013;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer-area .main-footer .footer-about ul li a:hover {
    background: var(--main-color);
    color: #222;
}

.footer-area .main-footer h4.widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-bottom: 22px;
}
.footer-area .main-footer .contact-info {
    margin-top: 13px;
}
.footer-area .main-footer h4.widget-title:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -7px;
    height: 2px;
    width: 50px;
    background: #272c2f;
    margin-bottom: 15px;
}

.footer-area .main-footer .footer-list {
    margin-left: 70px;
}

.footer-area .main-footer .footer-list .footer-list-item ul li a {
    font-size: 16px;
    color: #6a7783;
    font-weight: 300;
    line-height: 44px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding-left: 0;
}

.footer-area .main-footer .footer-list .footer-list-item ul li a:hover {
    color: #fff;
    padding-left: 12px;
}

.footer-area .main-footer .footer-contact-widget .contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.footer-area .main-footer .footer-contact-widget .contact-info p i {
    margin-right: 10px;
    flex: 0 0 20px;
    max-width: 20px;
    margin-top: 5px;
}

.footer-area .main-footer .footer-contact-widget .contact-info p a {
    color: #6a7783;
}

.footer-area .footer-copyright {
    background: #0c1013;
}

.footer-area .footer-copyright .footer-copyright-item p {
    line-height: 80px;
}

@media (max-width: 767px) {}

.footer-area .footer-copyright .footer-copyright-item p span {
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-area .main-footer .footer-about p {
        padding-right: 20px;
    }

    .footer-area .main-footer .footer-list {
        margin-left: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-area .main-footer .footer-about p {
        padding-right: 0;
    }

    .footer-area .main-footer .footer-list {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .footer-area .main-footer .footer-about p {
        padding-right: 0px;
    }

    .footer-area .main-footer .footer-list {
        margin-left: 0px;
    }

    .footer-area .footer-copyright .footer-copyright-item p {
        font-size: 12px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .footer-area .footer-copyright .footer-copyright-item p {
        font-size: 15px;
    }
}

/*===== Go Top =====*/

.go-top-area {
    position: relative;
    z-index: 999;
}

.go-top-area .go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 24px;
    color: #ffffff;
    background-color: var(--main-color);
    z-index: 9999;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.9s ease-out 0s;
    -moz-transition: all 0.9s ease-out 0s;
    -ms-transition: all 0.9s ease-out 0s;
    -o-transition: all 0.9s ease-out 0s;
    transition: all 0.9s ease-out 0s;
    border-right: 0;
}

.go-top-area .go-top i {
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    font-size: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.go-top-area .go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top-area .go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--main-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.go-top-area .go-top:focus,
.go-top-area .go-top:hover {
    color: #fff;
}

.go-top-area .go-top:focus::before,
.go-top-area .go-top:hover::before {
    opacity: 1;
    visibility: visible;
}

.go-top-area .go-top:focus i:first-child,
.go-top-area .go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top-area .go-top:focus i:last-child,
.go-top-area .go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.go-top-area .go-top.active {
    top: 98%;
    -webkit-transform: translateY(-98%);
    -moz-transform: translateY(-98%);
    -ms-transform: translateY(-98%);
    -o-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .go-top-area .go-top.active {
        top: 93%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .go-top-area .go-top.active {
        top: 93%;
    }
}

.go-top-wrap {
    position: relative;
}

.go-top-wrap .go-top-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    top: 3px;
    z-index: 1;
    background: var(--main-color);
}

.go-top-wrap .go-top-btn i {
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
}

.go-top-wrap .go-top-btn::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
    -o-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background: var(--main-color);
}

.go-top-wrap .go-top-btn:hover {
    background-color: #222;
    color: #fff;
}

@keyframes ripple {

    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}

@-webkit-keyframes ripple {

    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}


/*===========================
    6.SHOP HOME 2 css 
===========================*/

.shop-home-2-area {
    background: #f2f3f8;
}

.shop-home-2-area .shop-home-sidebar {
    margin-right: -35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .shop-home-2-area .shop-home-sidebar {
        margin-right: -100px;
    }
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb img {
    width: 100%;
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb .sidebar-thumb-content {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb .sidebar-thumb-content span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb .sidebar-thumb-content .title {
    font-size: 60px;
    color: var(--main-color);
    font-weight: 800;
    line-height: 55px;
    padding-bottom: 25px;
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb .sidebar-thumb-content a {
    line-height: 45px;
    padding: 0 22px;
    background-color: transparent;
    color: #fff;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb .sidebar-thumb-content a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb .offer-tag {
    position: absolute;
    top: 15px;
    right: 30px;
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb .offer-tag sub {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.shop-home-2-area .shop-home-sidebar .shop-sidebar-thumb .offer-tag sub sup {
    font-size: 12px;
    color: var(--main-color);
    text-transform: uppercase;
}

.shop-home-2-area .shop-home-sidebar .sidebar-newsletter {
    background: #e3e3e3;
    border-radius: 6px;
    padding: 30px;
    position: relative;
    z-index: 10;
}

.shop-home-2-area .shop-home-sidebar .sidebar-newsletter::before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    height: 80%;
    width: 65%;
    background-image: url(../images/icon/icon-newsletter.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .06;
    z-index: -1;
}

.shop-home-2-area .shop-home-sidebar .sidebar-newsletter .title {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
}

.shop-home-2-area .shop-home-sidebar .sidebar-newsletter p {
    font-size: 18px;
    color: #6a7783;
    font-size: 18px;
    line-height: 32px;
    font-weight: 300;
    padding-top: 14px;
    padding-bottom: 20px;
}

.shop-home-2-area .shop-home-sidebar .sidebar-newsletter a {
    background: var(--main-color);
    border-color: var(--main-color);
    border-radius: 5px;
    padding: 0 34px;
    line-height: 60px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-home-2-area .shop-home-2-item {
    margin-left: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .shop-home-2-area .shop-home-2-item {
        margin-left: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-home-2-area .shop-home-2-item {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-home-2-area .shop-home-2-item {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .shop-home-2-area .shop-home-2-item {
        margin-left: 0;
    }
}

.shop-home-2-area .shop-home-2-item .shop-items {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-home-2-area .shop-home-2-item .shop-items {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .shop-home-2-area .shop-home-2-item .shop-items {
        margin-top: 30px;
    }
}

.shop-home-2-area .shop-home-2-item .shop-items>a {
    display: block;
}

.shop-home-2-area .shop-home-2-item .shop-items img {
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.shop-home-2-area .shop-home-2-item .shop-home-sidebar {
    margin-right: 0;
}

.shop-home-2-area .shop-home-2-item .shop-home-sidebar .shop-lookbook-item .shop-lookbook-title .title::before {
    background: var(--main-color);
}

.shop-home-2-area .shop-home-2-item .shop-home-sidebar .shop-lookbook-item .shop-lookbook-slider .item {
    background: #fff;
    border: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .shop-home-2-area .shop-home-2-item .shop-home-sidebar .shop-lookbook-item .shop-lookbook-slider .item {
        padding-left: 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .shop-home-2-area .shop-home-2-item .shop-home-sidebar .shop-lookbook-item .shop-lookbook-slider .item img {
        position: static;
        left: 30px;
        top: 0;
        transform: translateY(0);
    }
}

.shop-home-2-area .shop-home-2-item .shop-home-sidebar .shop-lookbook-item .shop-lookbook-slider .item>a {
    display: block;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .shop-home-2-area .shop-home-2-item .shop-home-sidebar .shop-lookbook-item .shop-lookbook-slider .item .item-cart {
        top: 30px;
        transform: translateY(0);
    }
}


/*===========================
    7.SHOP PRODUCT css 
===========================*/

.shop-product-area {
    background: #f2f3f8;
    padding-bottom: 80px;
}

.shop-product-area .shop-product-bg {
    background: #fff;
    padding: 50px;
    border-radius: 7px;
    overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-product-area .shop-product-bg {
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-product-area .shop-product-bg {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .shop-product-area .shop-product-bg {
        padding: 20px;
    }
}

.shop-product-area .shop-product-bg .shop-product-title {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
}

.shop-product-area .shop-product-bg .shop-product-title .title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 10px;
    position: relative;
    z-index: 10;
}

.shop-product-area .shop-product-bg .shop-product-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--main-color);
    z-index: -1;
}

.shop-product-area .shop-product-bg .product-thumb {
    margin-right: -40px;
}

.shop-product-area .shop-product-bg .product-thumb img {
    width: 100%;
    border-radius: 5px;
}

.shop-product-area .shop-product-bg .product-product-item {
    margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-product-area .shop-product-bg .product-product-item {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-product-area .shop-product-bg .product-product-item {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .shop-product-area .shop-product-bg .product-product-item {
        margin-left: 0;
    }
}


/*===========================
    8.SUPPORT css 
===========================*/

.support-area {
    background: #f2f3f8;
    padding-bottom: 80px;
}

.support-area .support-pack {
    margin-right: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .support-area .support-pack {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .support-area .support-pack {
        margin-right: 0;
    }
}

.support-area .support-pack .support-item {
    background: #dee3ea;
    padding: 68px 35px 43px 155px;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .support-area .support-pack .support-item {
        padding: 25px 0px 43px 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .support-area .support-pack .support-item {
        padding: 68px 35px 43px 135px;
    }
}

@media (max-width: 767px) {
    .support-area .support-pack .support-item {
        padding: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .support-area .support-pack .support-item {
        padding: 68px 35px 43px 155px;
    }
}

.support-area .support-pack .support-item img {
    position: absolute;
    left: 50px;
    top: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .support-area .support-pack .support-item img {
        position: static;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .support-area .support-pack .support-item img {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .support-area .support-pack .support-item img {
        position: static;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .support-area .support-pack .support-item img {
        position: absolute;
    }
}

.support-area .support-pack .support-item span {
    font-size: 32px;
    color: #222;
    display: block;
}

.support-area .support-pack .support-item p {
    color: #222;
}

.support-area .support-pack .support-item.item-2 {
    background: #5ad1a7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .support-area .support-pack .support-item.item-2 {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .support-area .support-pack .support-item.item-2 {
        margin-top: 30px;
    }
}

.support-area .support-pack .support-item.item-2 span {
    color: #fff;
}

.support-area .support-pack .support-item.item-2 p {
    color: #fff;
}

.support-area .support-thumb {
    margin-left: -55px;
    height: 207px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .support-area .support-thumb {
        height: 240px;
        background-position: 90%;
    }
}


/*===========================
    9.ABOUT US css 
===========================*/

.about-us-area .about-us-content .title {
    font-size: 44px;
    font-weight: 500;
    padding-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-us-area .about-us-content .title {
        font-size: 36px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-us-area .about-us-content .title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .about-us-area .about-us-content .title {
        font-size: 30px;
    }
}

.about-us-area .about-us-content span {
    background: #0f1417;
    color: var(--main-color);
    line-height: 53px;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 200;
    font-style: italic;
    font-family: "Poppins", sans-serif;
    display: block;
    margin-right: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-us-area .about-us-content span {
        margin-right: 0;
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-us-area .about-us-content span {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .about-us-area .about-us-content span {
        margin-right: 0;
        font-size: 14px;
        line-height: 24px;
        padding: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-us-area .about-us-content span {
        line-height: 53px;
        padding: 0 20px;
    }
}

.about-us-area .about-us-content .about-text {
    margin-right: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-us-area .about-us-content .about-text {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-us-area .about-us-content .about-text {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .about-us-area .about-us-content .about-text {
        margin-right: 0;
    }
}

.about-us-area .about-us-content .about-text p {
    font-size: 14px;
    line-height: 28px;
    margin-top: 28px;
}

.about-us-area .about-us-sidebar ul li a {
    font-size: 24px;
    line-height: 50px;
    color: #222;
    font-family: "Poppins", sans-serif;
    position: relative;
}

.about-us-area .about-us-sidebar ul li a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 7px;
    height: 2px;
    width: 100%;
    background: #222;
}

.about-us-area .about-thumb {
    margin-top: 40px;
}

.about-us-area .about-thumb img {
    width: 100%;
}

.about-support-area .support-item {
    background: #dee3ea;
    padding: 68px 35px 43px 155px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-support-area .support-item {
        padding: 68px 20px 43px 110px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-support-area .support-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-support-area .support-item {
        padding: 20px;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-support-area .support-item {
        padding: 68px 35px 43px 155px;
    }
}

.about-support-area .support-item img {
    position: absolute;
    left: 50px;
    top: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-support-area .support-item img {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .about-support-area .support-item img {
        position: static;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-support-area .support-item img {
        position: absolute;
    }
}

.about-support-area .support-item span {
    font-size: 32px;
    color: #222;
    display: block;
}

.about-support-area .support-item p {
    color: #222;
}

.about-support-area .support-offer {
    height: 208px;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .about-support-area .support-offer {
        background-position: 90%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-support-area .support-offer {
        background-position: center;
    }
}


/*===========================
    10.SHOP GRID css 
===========================*/

.shop-grid-area .shop-grid-sidebar .categories_wrap #navCatContent {
    position: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-grid-area .shop-grid-sidebar .categories_wrap #navCatContent {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .shop-grid-area .shop-grid-sidebar .categories_wrap #navCatContent {
        position: fixed;
    }
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-tab-btns span {
    font-size: 13px;
    color: #222;
    margin-right: 9px;
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-tab-btns ul li {
    margin-left: 5px;
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-tab-btns ul li a {
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 28px;
    border: 1px solid #e5e5e7;
    border-radius: 3px;
    padding: 0;
    font-size: 13px;
    color: #6a7783;
    background-color: transparent;
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-tab-btns ul li a.active {
    color: var(--main-color);
}

@media (max-width: 767px) {
    .shop-grid-area .shop-grid-items .shop-grid-topbar .shop-tab-btns .item {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-grid-area .shop-grid-items .shop-grid-topbar .shop-tab-btns .item {
        margin-left: 0px;
        margin-right: 20px;
        margin-top: 0px;
    }
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-tab-btns .item .nice-select {
    height: 30px;
    line-height: 27px;
    border-color: #e5e5e7;
    border-radius: 3px;
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-tab-btns .item .nice-select span {
    color: #666;
}

@media (max-width: 767px) {
    .shop-grid-area .shop-grid-items .shop-grid-topbar .shop-pagination {
        margin-top: 30px;
    }
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-pagination nav ul li {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .shop-grid-area .shop-grid-items .shop-grid-topbar .shop-pagination nav ul li {
        margin-left: 0;
        margin-right: 10px;
    }
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-pagination nav ul li a {
    padding: 0;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #e5e5e7;
    color: #6a7783;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 300;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-pagination nav ul li a.active,
.shop-grid-area .shop-grid-items .shop-grid-topbar .shop-pagination nav ul li a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #222;
}

.shop-grid-area .shop-list .shop-list-item {
    border: 1px solid #f2f2f2;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.shop-grid-area .shop-list .shop-list-item:hover {
    border-color: var(--main-color);
}

.shop-grid-area .shop-list .shop-list-item .shop-list-thumb {
    margin-right: -20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-thumb {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-thumb {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-thumb {
        margin-right: 0;
    }
}

.shop-grid-area .shop-list .shop-list-item .shop-list-thumb img {
    width: 100%;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content {
    margin-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-content {
        margin-left: 0;
        padding: 30px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-content {
        margin-left: 0;
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-content {
        margin-left: 0;
        padding: 30px;
    }
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content>span {
    font-size: 13px;
    color: #222;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content>span span {
    color: #6a7783;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content p {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #222;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content p.text {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    color: #6a7783;
    padding-right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-content p.text {
        padding-right: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-content p.text {
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-content p.text {
        padding-right: 0px;
    }
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content a {
    line-height: 35px;
    padding: 0 38px;
    border-radius: 6px;
    color: #222;
    margin-top: 24px;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content a:hover {
    color: var(--main-color);
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content .price {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-content .price {
        display: block;
    }
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content .price h6.price {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 16px;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content .price h6.price span.pre-price {
    font-family: "Open Sans", sans-serif;
    color: #7c848d;
    text-decoration: line-through;
    margin-left: 5px;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content .price ul {
    padding-left: 115px;
}

@media (max-width: 767px) {
    .shop-grid-area .shop-list .shop-list-item .shop-list-content .price ul {
        padding-left: 0;
    }
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content .price ul li {
    display: inline-block;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content .price ul li i {
    font-size: 12px;
    color: #c7c7c7;
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content .price ul li:nth-child(1) i {
    color: var(--main-color);
}

.shop-grid-area .shop-list .shop-list-item .shop-list-content .price ul li:nth-child(2) i {
    color: var(--main-color);
}

.product-filter-widget {
    padding: 18px 18px 10px;
}

.checkbox-style-one .single-checkbox {
    margin-bottom: 10px;
}

.checkbox-style-one .single-checkbox input {
    display: none;
}

.checkbox-style-one .single-checkbox input:checked+label:after {
    visibility: visible;
    opacity: 1;
}

.checkbox-style-one .single-checkbox label {
    position: relative;
    display: flex;
}

.checkbox-style-one .single-checkbox label:before {
    flex: 0 0 15px;
    max-width: 15px;
    height: 15px;
    content: '';
    border: 1px solid #ccc;
}

.checkbox-style-one .single-checkbox label:after {
    position: absolute;
    top: 0;
    left: 3px;
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    font-size: 10px;
    visibility: hidden;
    opacity: 1;
}

.checkbox-style-one .single-checkbox label span {
    margin-left: 10px;
    margin-top: -5px;
}

.catalog-item {
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    padding: 18px 18px 0px;
}

.product-filter-widget .filter-title .title,
.catalog-item .catalog-title .title {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
}

.product-filter-widget .filter-title .title::before,
.catalog-item .catalog-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #e5e5e5;
}

.catalog-item .catalog-size {
    margin-top: 32px;
    margin-bottom: 70px;
}

.catalog-item .catalog-size .title {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
}

.catalog-item .catalog-size .nice-select {
    width: 100%;
}

.price-range-box {
    margin-top: 34px;
}

.price-range-box .title {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 33px;
}

.price-range-box form {
    position: relative;
}

.price-range-box form span {
    font-weight: 700;
    color: #0f1417;
}

.price-range-box form input {
    width: 140px;
    border: 0;
    color: #0f1417;
}

.price-range-box form input::placeholder {
    opacity: 1;
}

.price-range-box form button {
    background-color: var(--main-color);
    border: 0;
    padding: 0 8px;
    position: absolute;
    right: 0;
    bottom: -2px;
    font-weight: 700;
    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    color: #222;
    text-transform: uppercase;
    line-height: 35px;
    border-radius: 5px;
}

/* .ui-slider-horizontal .ui-slider-range {
    background: #222;
    height: 2px;
}

.ui-slider-horizontal {
    height: 2px;
    background: #dbdbdb;
    border: none;
    width: 92%;
    margin: 0 auto;
    margin-bottom: 32px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    background: #fff;
    width: 12px;
    height: 12px;
    top: -5px;
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #222;
} */


/*===========================
    11.SHOP DETAILS css 
===========================*/
.shop-details-area .shop-details-item .shop-details-thumb {
    margin-right: -50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-details-area .shop-details-item .shop-details-thumb {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-details-area .shop-details-item .shop-details-thumb {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .shop-details-area .shop-details-item .shop-details-thumb {
        margin-right: 0;
    }
}

.shop-details-area .shop-details-item .shop-details-thumb img {
    width: 100%;
    display: inline-block;
}

.shop-details-area .shop-details-item .shop-details-thumb .shop-thumb-active .item.slick-center {
    position: relative;
}

.shop-details-area .shop-details-item .shop-details-thumb .shop-thumb-active .item.slick-center::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #222;
    opacity: .8;
}

.shop-details-area .shop-details-item .shop-details-thumb .shop-thumb-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.shop-details-area .shop-details-item .shop-details-thumb .shop-thumb-active .slick-arrow:hover {
    color: var(--main-color);
}

.shop-details-area .shop-details-item .shop-details-thumb .shop-thumb-active .slick-arrow.prev {
    left: -15px;
}

.shop-details-area .shop-details-item .shop-details-thumb .shop-thumb-active .slick-arrow.next {
    right: -15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .shop-details-area .shop-details-item .shop-details-content {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-details-area .shop-details-item .shop-details-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .shop-details-area .shop-details-item .shop-details-content {
        margin-left: 0;
        margin-top: 30px;
    }
}

.shop-details-area .shop-details-item .shop-details-content .title {
    font-size: 24px;
    color: #222;
    padding-right: 40px;
    padding-bottom: 15px;
}

@media (max-width: 767px) {
    .shop-details-area .shop-details-item .shop-details-content .title {
        padding-right: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-details-area .shop-details-item .shop-details-content .title {
        padding-right: 40px;
    }
}

.shop-details-area .shop-details-item .shop-details-content .review span {
    font-size: 13px;
    color: #222;
    font-weight: 700;
}

.shop-details-area .shop-details-item .shop-details-content .review span span {
    color: #6a7783;
    padding-left: 16px;
    font-weight: 400;
}

.shop-details-area .shop-details-item .shop-details-content .price {
    padding-top: 15px;
}

.shop-details-area .shop-details-item .shop-details-content .price span {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.shop-details-area .shop-details-item .shop-details-content .price span span {
    font-size: 16px;
    color: #6a7783;
    font-weight: 400;
    text-decoration: line-through;
    padding-left: 5px;
}

.shop-details-area .shop-details-item .shop-details-content .stock {
    padding-top: 28px;
    display: flex;
}

.shop-details-area .shop-details-item .shop-details-content .stock ul li {
    display: inline-block;
}

.shop-details-area .shop-details-item .shop-details-content .stock ul li i {
    font-size: 12px;
    color: #6a7783;
}

.shop-details-area .shop-details-item .shop-details-content .stock ul li:nth-child(1) i {
    color: var(--main-color);
}

.shop-details-area .shop-details-item .shop-details-content .stock ul li:nth-child(2) i {
    color: var(--main-color);
}

.shop-details-area .shop-details-item .shop-details-content .stock>span {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    padding-left: 90px;
}

@media (max-width: 767px) {
    .shop-details-area .shop-details-item .shop-details-content .stock>span {
        padding-left: 30px;
    }
}

.shop-details-area .shop-details-item .shop-details-content .stock>span span {
    color: #6a7783;
    padding-left: 6px;
}

.shop-details-area .shop-details-item .shop-details-content .text {
    padding-top: 31px;
}

.shop-details-area .shop-details-item .shop-details-content .text p {
    font-size: 14px;
    line-height: 28px;
    padding-right: 10px;
}

.shop-details-area .shop-details-item .shop-details-content .social {
    display: flex;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 12px;
    margin-top: 20px;
}

.shop-details-area .shop-details-item .shop-details-content .social span {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.shop-details-area .shop-details-item .shop-details-content .social ul {
    margin-left: 10px;
}

.shop-details-area .shop-details-item .shop-details-content .social ul li {
    display: inline-block;
    margin-left: 6px;
}

.shop-details-area .shop-details-item .shop-details-content .social ul li a {
    font-size: 13px;
    color: #45619d;
}

.shop-details-area .shop-details-item .shop-details-content .social ul li:nth-child(2) a {
    color: #cf4539;
}

.shop-details-area .shop-details-item .shop-details-content .social ul li:nth-child(3) a {
    color: #42c0fb;
}

.shop-details-area .shop-details-item .shop-details-content .social ul li:nth-child(4) a {
    color: #009ee5;
}

.shop-details-area .shop-details-item .shop-details-content .social ul li:nth-child(5) a {
    color: #ec9f21;
}

.shop-details-area .shop-details-info {
    border: 2px solid #f2f2f2;
    border-radius: 6px;
}

.shop-details-area .shop-details-info .shop-description-tab {
    padding: 48px 48px 40px;
}

@media (max-width: 767px) {
    .shop-details-area .shop-details-info .shop-description-tab {
        padding: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-details-area .shop-details-info .shop-description-tab {
        padding: 30px;
    }
}

.shop-details-area .shop-details-info .shop-description-tab .nav li a {
    padding: 0 20px;
    line-height: 46px;
    background: #f3f3f3;
    color: #222;
    border-radius: 10px 10px 0 0;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .shop-details-area .shop-details-info .shop-description-tab .nav li a {
        padding: 0 10px;
    }
}

.shop-details-area .shop-details-info .shop-description-tab .nav li a.active {
    background: var(--main-color);
}

.shop-details-area .shop-details-info .shop-description-tab .tab-content .tab-pane p {
    line-height: 28px;
    padding-right: 10px;
    padding-top: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shop-details-area .shop-details-info .shop-description-tab .tab-content .tab-pane p {
        font-size: 15px;
    }
}

.shop-details-area .shop-details-info .shop-description-tab .tab-content .tab-pane p.text {
    padding-top: 0;
}

.shop-details-area .shop-details-info .shop-details-features {
    padding: 30px 48px 48px;
}

@media (max-width: 767px) {
    .shop-details-area .shop-details-info .shop-details-features {
        padding: 0 20px 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-details-area .shop-details-info .shop-details-features {
        padding: 0 30px 30px;
    }
}

.shop-details-area .shop-details-info .shop-details-features .title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.shop-details-area .shop-details-info .shop-details-features ul {
    margin-left: 20px;
}

.shop-details-area .shop-details-info .shop-details-features ul li {
    font-size: 14px;
    line-height: 28px;
    color: #6a7783;
    position: relative;
    padding-left: 24px;
}

.shop-details-area .shop-details-info .shop-details-features ul li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 11px;
    width: 11px;
    border-radius: 50%;
    border: 2px solid #222;
}

.shop-details-area .shop-details-info .shop-details-tag {
    border-top: 2px solid #f2f2f2;
    padding: 28px 0px 0px 0px;
}

@media (max-width: 767px) {
    .shop-details-area .shop-details-info .shop-details-tag {
        padding: 20px 0 0px 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .shop-details-area .shop-details-info .shop-details-tag {
        padding: 28px 0 0px 0px;
    }
}

.shop-details-area .shop-details-info .shop-details-tag span {
    font-size: 14px;
    font-weight: 400;
    color: #6a7783;
}

.shop-details-area .shop-details-info .shop-details-tag span span {
    color: #222;
    font-weight: 700;
    padding-right: 5px;
}

.cart-qty {
    padding-top: 20px;
}

.cart-qty .product-quantity button {
    width: 30px;
    height: 40px;
    padding: 0;
    background-color: #fff;
    font-size: 18px;
    color: #6a7783;
    border: 1px solid #dce1e5;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.cart-qty .product-quantity button:hover {
    color: var(--main-color);
}

.cart-qty .product-quantity button.sub {
    border-right: 0;
    border-radius: 5px 0 0 5px;
}

.cart-qty .product-quantity button.add {
    border-left: 0;
    border-radius: 0px 5px 5px 0px;
}

@media (max-width: 767px) {
    .cart-qty .product-quantity button {
        width: 40px;
        height: 40px;
    }
}

.cart-qty .product-quantity input {
    width: 20px;
    height: 40px;
    border-top: 1px solid #dce1e5;
    border-bottom: 1px solid #dce1e5;
    border-left: 0;
    border-right: 0;
    padding: 0 0px;
    text-align: center;
    margin: 0 0;
    color: #222;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .cart-qty .product-quantity input {
        height: 40px;
    }
}

.cart-qty>a {
    line-height: 40px;
    border: 0;
    padding: 0 22px;
    border-radius: 5px;
    margin-left: 5px;
    background: var(--main-color);
    color: #222;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .cart-qty>a {
        padding: 0 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-qty>a {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .cart-qty>a {
        margin-left: 0;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cart-qty>a {
        margin-left: 5px;
        margin-bottom: 0px;
        margin-top: 0px;
    }
}

.cart-qty>a:hover {
    background: var(--main-color);
    color: #222;
}

.cart-qty ul li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 3px;
}

.cart-qty ul li a {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #6a7783;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .cart-qty ul li a {
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 13px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart-qty ul li a {
        height: 30px;
        width: 30px;
        line-height: 30px;
        font-size: 13px;
    }
}

.cart-qty ul li a:hover {
    color: #222;
}

.tab-pane .new-product-list .new-product-title .title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    padding-left: 10px;
    position: relative;
    z-index: 10;
}

.tab-pane .new-product-list .new-product-title .title::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--main-color);
    z-index: -1;
}

.tab-pane .new-product-color {
    margin-bottom: 60px;
    margin-top: 40px;
}

.tab-pane .new-product-color .item {
    border: 1px solid #f2f2f2;
}

.tab-pane .new-product-color .item p {
    display: inline-block;
    line-height: 45px !important;
    padding-left: 15px;
    padding-right: 120px !important;
    border-right: 1px solid #f2f2f2;
}

.tab-pane .new-product-color .item span {
    padding-left: 15px;
}

.review ul li+li {
    margin-top: 30px;
}

.review .singel-review {
    position: relative;
    background-color: #fff7f7;
    padding: 30px;
    border: 1px solid #e8f4fc;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .review .singel-review {
        padding: 20px;
    }
}

.review .singel-review .review-thum {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.review .singel-review .review-thum .review-img img {
    border-radius: 50%;
    width: 80px;
}

.review .singel-review .review-thum .review-head .author_name {
    color: #222;
    font-size: 16px;
}

.review .singel-review .review-thum .review-head span {
    color: #222;
    font-size: 14px;
}

.review .singel-review .date {
    position: absolute;
    right: 30px;
    top: 30px;
}

@media (max-width: 767px) {
    .review .singel-review .date {
        position: relative;
        right: 0;
        top: 0;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .review .singel-review .date {
        position: absolute;
        right: 30px;
        top: 30px;
        margin-top: 0;
    }
}

.review .singel-review .date span {
    font-size: 14px;
    font-weight: 700;
}

.review .singel-review .review-cont p {
    padding-top: 10px;
    padding-bottom: 8px;
}

.review .singel-review .review-cont .rating {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.review .singel-review .review-cont .rating ul {
    overflow: hidden;
}

.review .singel-review .review-cont .rating ul li {
    float: left;
    margin-top: 0;
    color: #ffa800;
    font-size: 14px;
}

.review .singel-review .review-cont .rating span {
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
}

.reviwe-form .form_title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

.reviwe-form .form-box {
    margin-top: 30px;
}

.reviwe-form .form-box input,
.reviwe-form .form-box textarea {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border: 1px solid #e6e9f1;
    border-radius: 5px;
    font-size: 14px;
    color: #222;
}

.reviwe-form .form-box textarea {
    height: 220px;
    padding-top: 15px;
    resize: none;
}

.reviwe-form .note {
    margin-top: 30px;
}

.reviwe-form .note p span {
    font-weight: 700;
    margin-right: 10px;
    color: #222;
}

.reviwe-form .rating {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.reviwe-form .rating ul li {
    display: inline-block;
    color: #222;
    font-weight: 700;
    font-size: 14px;
}

.reviwe-form .rating ul li:after {
    display: inline-block;
    content: '|';
    margin-left: 10px;
    margin-right: 7px;
    color: #999;
}

.reviwe-form .rating ul li:hover span {
    color: #f8d640;
}

.reviwe-form .rating ul li:last-child:after {
    display: none;
}

.reviwe-form .rating ul li span {
    font-size: 14px;
    color: #999;
}

.reviwe-form button {
    padding: 0 50px;
    font-size: 16px;
    line-height: 45px;
    color: #fff;
    background-color: #222;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    border-radius: 5px;
    margin-top: 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.reviwe-form button:hover {
    background-color: var(--main-color);
}


/*===========================
    12.blog css 
===========================*/

.blog-area .blog-sidebar .categories_wrap #navCatContent {
    position: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-area .blog-sidebar .categories_wrap #navCatContent {
        position: fixed;
    }
}

@media (max-width: 767px) {
    .blog-area .blog-sidebar .categories_wrap #navCatContent {
        position: fixed;
    }
}

.blog-area .blog-sidebar .blog-box {
    border: 2px solid #f2f2f2;
    border-radius: 5px;
}

.blog-area .blog-sidebar .blog-box .box .blog-box-title {
    border-bottom: 2px solid #f2f2f2;
}

.blog-area .blog-sidebar .blog-box .box .blog-box-title .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
}

.blog-area .blog-sidebar .blog-box .blog-tags .blog-tags-item {
    padding-top: 20px;
    padding-bottom: 30px;
}

.blog-area .blog-sidebar .blog-box .blog-tags .blog-tags-item ul {
    display: flex;
    justify-content: center;
}

.blog-area .blog-sidebar .blog-box .blog-tags .blog-tags-item ul li {
    display: inline-block;
    margin-top: 10px;
}

.blog-area .blog-sidebar .blog-box .blog-tags .blog-tags-item ul li a {
    line-height: 32px;
    padding: 0 10px;
    color: #6a7783;
    position: relative;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 14px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-area .blog-sidebar .blog-box .blog-tags .blog-tags-item ul li a {
        padding: 0 5px;
    }
}

.blog-area .blog-sidebar .blog-box .blog-tags .blog-tags-item ul li a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #f2f2f2;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-area .blog-sidebar .blog-box .blog-tags .blog-tags-item ul li a:hover {
    background: var(--main-color);
    color: #222;
}

.blog-area .blog-sidebar .blog-box .blog-tags .blog-tags-item ul li a:hover::before {
    height: 0;
}

.blog-area .blog-sidebar .blog-box .blog-project .blog-box-title {
    border-top: 2px solid #f2f2f2;
}

.blog-area .blog-sidebar .blog-box .blog-project .blog-project-item {
    padding: 30px;
}

.blog-area .blog-sidebar .blog-box .blog-project .blog-project-item ul li a {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 30px;
    color: #6a7783;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.blog-area .blog-sidebar .blog-box .blog-project .blog-project-item ul li a:hover {
    color: var(--main-color);
}

.blog-area .blog-standard .blog-standard-item .blog-standard-thumb {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.blog-area .blog-standard .blog-standard-item .blog-standard-thumb .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.blog-area .blog-standard .blog-standard-item .blog-standard-thumb .play a {
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    background: var(--main-color);
    border-radius: 50%;
    color: #222;
    font-size: 26px;
}

@media (max-width: 767px) {
    .blog-area .blog-standard .blog-standard-item .blog-standard-thumb .play a {
        height: 60px;
        width: 60px;
        line-height: 60px;
        font-size: 16px;
    }
}

.blog-area .blog-standard .blog-standard-item .blog-standard-thumb img {
    width: 100%;
}

.blog-area .blog-standard .blog-standard-item .blog-play-thumb .thumb img {
    width: 100%;
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content {
    padding-top: 27px;
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content ul li {
    display: inline-block;
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content ul li a {
    font-size: 14px;
    color: #6a7783;
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content ul li a i {
    padding-right: 6px;
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content ul li:last-child {
    margin-left: 30px;
}

@media (max-width: 767px) {
    .blog-area .blog-standard .blog-standard-item .blog-standard-content ul li:last-child {
        margin-left: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-area .blog-standard .blog-standard-item .blog-standard-content ul li:last-child {
        margin-left: 30px;
    }
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content .title {
    font-size: 24px;
    font-weight: 600;
    padding-top: 12px;
}

@media (max-width: 767px) {
    .blog-area .blog-standard .blog-standard-item .blog-standard-content .title {
        font-size: 20px;
    }
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content span {
    font-size: 14px;
    font-weight: 700;
    color: #ccae0a;
    text-transform: uppercase;
    padding-top: 15px;
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content p {
    font-size: 14px;
    line-height: 28px;
    padding-right: 70px;
    padding-top: 14px;
    padding-bottom: 19px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-area .blog-standard .blog-standard-item .blog-standard-content p {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-area .blog-standard .blog-standard-item .blog-standard-content p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .blog-area .blog-standard .blog-standard-item .blog-standard-content p {
        padding-right: 0;
    }
}

.blog-area .blog-standard .blog-standard-item .blog-standard-content>a {
    line-height: 50px;
    padding: 0 28px;
    border-radius: 6px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
}

.blog-area .blog-standard .blog-standard-item.item-2 .blog-standard-content>a {
    background: #f2f2f2;
    border: 2px solid #ebebeb;
}

.blog-area .blog-standard .blog-standard-item.item-2 .blog-standard-content>a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
}

.blog-details .blog-details-thumb img {
    width: 100%;
}

.blog-details .blog-details-thumb .title {
    font-size: 24px;
    font-weight: 600;
    padding-right: 100px;
    line-height: 36px;
    padding-top: 40px;
    padding-bottom: 32px;
}

@media (max-width: 767px) {
    .blog-details .blog-details-thumb .title {
        padding-right: 0;
        font-size: 18px;
        line-height: 28px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details .blog-details-thumb .title {
        padding-right: 0;
        font-size: 24px;
        line-height: 36px;
    }
}

.blog-details .blog-details-thumb p {
    font-size: 14px;
    line-height: 28px;
}

.blog-details .blog-details-thumb p.text {
    padding-top: 12px;
}

.blog-details .blog-details-quote {
    border-radius: 5px;
    background: #0f1417;
    padding: 67px 50px 67px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .blog-details .blog-details-quote {
        padding: 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details .blog-details-quote {
        padding: 67px 50px 67px;
    }
}

.blog-details .blog-details-quote>p {
    font-size: 32px;
    line-height: 48px;
    color: #6a7783;
    font-family: "Poppins", sans-serif;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details .blog-details-quote>p {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-details .blog-details-quote>p {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .blog-details .blog-details-quote>p {
        font-size: 16px;
        line-height: 26px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details .blog-details-quote>p {
        font-size: 19px;
        line-height: 36px;
    }
}

.blog-details .blog-details-quote i {
    position: absolute;
    left: -18px;
    top: 0;
    font-size: 16px;
    color: var(--main-color);
}

.blog-details .blog-details-quote i.fa-quote-right {
    left: auto;
    right: 22px;
    bottom: 0;
    top: auto;
}

.blog-details .blog-details-social {
    margin-top: 27px;
}

.blog-details .blog-details-social .list ul li {
    line-height: 28px;
    font-size: 14px;
    color: #6a7783;
    line-height: 55px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-details .blog-details-social .list ul li {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .blog-details .blog-details-social .list ul li {
        line-height: 26px;
        padding-bottom: 20px;
    }
}

.blog-details .blog-details-social .social {
    border-top: 1px solid #f2f2f2;
    padding-top: 12px;
}

.blog-details .blog-details-social .social span {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.blog-details .blog-details-social .social ul {
    margin-left: 10px;
}

.blog-details .blog-details-social .social ul li {
    display: inline-block;
    margin-left: 6px;
}

.blog-details .blog-details-social .social ul li a {
    font-size: 13px;
    color: #45619d;
}

.blog-details .blog-details-social .social ul li:nth-child(2) a {
    color: #cf4539;
}

.blog-details .blog-details-social .social ul li:nth-child(3) a {
    color: #42c0fb;
}

.blog-details .blog-details-social .social ul li:nth-child(4) a {
    color: #009ee5;
}

.blog-details .blog-details-social .social ul li:nth-child(5) a {
    color: #ec9f21;
}

.blog-details-comment .comment-title {
    font-size: 24px;
    font-weight: 600;
}

.blog-comment .comment-replay {
    padding-left: 100px;
}

@media (max-width: 767px) {
    .blog-comment .comment-replay {
        padding-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-comment .comment-replay {
        padding-left: 60px;
    }
}

.single-comment {
    padding: 20px 25px;
    padding-left: 0;
    border: 1px solid #f2f2f2;
    margin-left: 40px;
    border-radius: 5px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .single-comment {
        margin-left: 0;
        padding-top: 0;
        margin-top: 70px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-comment {
        margin-left: 40px;
        padding-top: 0;
        margin-top: 30px;
        padding: 20px 25px;
        padding-left: 0;
    }
}

.single-comment .comment-author {
    margin-left: -40px;
}

@media (max-width: 767px) {
    .single-comment .comment-author {
        margin-left: 0;
        text-align: center;
        margin-top: -40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-comment .comment-author {
        margin-left: -40px;
        margin-top: 0;
    }
}

.single-comment .comment-author img {
    width: 80px;
    border-radius: 50%;
}

.single-comment .comment-text {
    padding-left: 25px;
}

@media (max-width: 767px) {
    .single-comment .comment-text {
        padding-top: 20px;
        padding-left: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-comment .comment-text {
        padding-top: 0;
        padding-left: 25px;
    }
}

.single-comment .comment-text .author-name {
    font-size: 16px;
}

.single-comment .comment-text .text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
    padding-right: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-comment .comment-text .text {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-comment .comment-text .text {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .single-comment .comment-text .text {
        padding-right: 0;
    }
}

.single-comment .comment-text .meta li {
    display: inline-block;
    margin-top: 10px;
}

.single-comment .comment-text .meta li+li {
    margin-left: 30px;
}

@media (max-width: 767px) {
    .single-comment .comment-text .meta li+li {
        margin-left: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-comment .comment-text .meta li+li {
        margin-left: 25px;
    }
}

.single-comment .comment-text .meta li a {
    font-size: 14px;
    color: #6a7783;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.single-comment .comment-text .meta li a:hover {
    color: #222;
}

.blog-form .single-form {
    margin-top: 25px;
}

.blog-form .single-form input {
    width: 100%;
    height: 35px;
    border: 2px solid #f2f2f2;
    border-radius: 6px;
    padding-left: 30px;
}

.blog-form .single-form textarea {
    width: 100%;
    height: 200px;
    resize: none;
    border: 2px solid #f2f2f2;
    border-radius: 6px;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-top: 12px;
}

.blog-form .single-form button {
    line-height: 55px;
    padding: 0 25px;
    border-radius: 6px;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}


/*===========================
       13.CHECKOUT css 
===========================*/

.payment-options h3,
.checkout_page .shop-title-box h3 {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}

.checkout_page .shipping-info .field-label,
.checkout_page .billing-info .field-label {
    display: block;
    font-size: 20px;
    color: #666666;
    margin-bottom: 10px;
}

.checkout_page .shipping-info .form_control,
.checkout_page .billing-info .form_control {
    width: 100%;
    height: 50px;
    background: #F8F8F8;
    border-radius: 3px;
    padding: 20px;
    border: none;
}

.checkout_page .shipping-info textarea.form_control,
.checkout_page .billing-info textarea.form_control {
    height: 120px;
}

.checkout-area-section .shipping-info textarea.form_control,
.checkout-area-section .billing-info textarea.form_control {
    height: auto;
    min-height: auto;
}

.checkout_page .cart-table .product-column h3.prod-title {
    font-size: 16px;
    color: #13191d;
}

.checkout_page .cart-table .table thead th {
    border: none;
}

.checkout_page .cart-table .product-column h3.prod-title a {
    color: inherit;
}

.checkout_page .cart-total .cart-total-table li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
}

.checkout_page .cart-total .cart-total-table li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.checkout_page .cart-total .cart-total-table li span.price {
    float: right;
}

.checkout_page .cart-total .coupon-box .form-group {
    position: relative;
}

.checkout_page .cart-total .coupon-box .form_control {
    width: 100%;
    height: 50px;
    border: 1px solid #e1e1e1;
    padding: 0 20px;
}

.checkout_page .cart-total .coupon-box .coupon-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 13px 20px;
    background-color: var(--main-color);
    color: #13191d;
    font-weight: 700;
    border: none;
    font-size: 16px;
}

/*===========================
       14.CART css 
===========================*/
.cart_table {
    width: 100%;
}

.cart_table .table-bordered {
    margin-bottom: 0;
}

.cart_table .table-bordered thead tr th {
    border-bottom-width: 0px;
    text-align: center;
    vertical-align: middle;
    padding: 15px 0;
    border: 1px solid #f3f6fb;
    font-size: 14px;
    font-weight: 700;
}

.cart_table .table-bordered thead tr th.product {
    width: 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_table .table-bordered thead tr th.product {
        min-width: 120px;
    }
}

@media (max-width: 767px) {
    .cart_table .table-bordered thead tr th.product {
        min-width: 120px;
    }
}

.cart_table .table-bordered thead tr th.description {
    width: 360px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_table .table-bordered thead tr th.description {
        min-width: 300px;
    }
}

@media (max-width: 767px) {
    .cart_table .table-bordered thead tr th.description {
        min-width: 300px;
    }
}

.cart_table .table-bordered thead tr th.model {
    width: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_table .table-bordered thead tr th.model {
        min-width: 110px;
    }
}

@media (max-width: 767px) {
    .cart_table .table-bordered thead tr th.model {
        min-width: 110px;
    }
}

.cart_table .table-bordered thead tr th.edit {
    width: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_table .table-bordered thead tr th.edit {
        min-width: 60px;
    }
}

.cart_table .table-bordered thead tr th.quantity {
    width: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_table .table-bordered thead tr th.quantity {
        min-width: 110px;
    }
}

@media (max-width: 767px) {
    .cart_table .table-bordered thead tr th.quantity {
        min-width: 110px;
    }
}

.cart_table .table-bordered thead tr th.price {
    width: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_table .table-bordered thead tr th.price {
        min-width: 90px;
    }
}

@media (max-width: 767px) {
    .cart_table .table-bordered thead tr th.price {
        min-width: 90px;
    }
}

.cart_table .table-bordered thead tr th.total {
    width: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_table .table-bordered thead tr th.total {
        min-width: 90px;
    }
}

@media (max-width: 767px) {
    .cart_table .table-bordered thead tr th.total {
        min-width: 90px;
    }
}

.cart_table .table-bordered tbody tr td {
    border-bottom-width: 0px;
    text-align: center;
    vertical-align: middle;
    padding: 0 0;
    border-color: #f3f6fb;
}

.cart_table .table-bordered tbody tr td .product_img {
    padding: 10px;
}

.cart_table .table-bordered tbody tr td .product_img img {
    width: 100%;
}

.cart_table .table-bordered tbody tr td .product_description {
    padding: 0 30px;
    text-align: left;
}

.cart_table .table-bordered tbody tr td .product_description .product_title a {
    font-size: 14px;
    padding-bottom: 10px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-family: "Poppins", sans-serif;
    color: #222;
}

.cart_table .table-bordered tbody tr td .product_description .product_title a:hover {
    color: var(--main-color);
}

.cart_table .table-bordered tbody tr td .product_model p {
    font-size: 13px;
}

.cart_table .table-bordered tbody tr td .product_edit ul li+li {
    margin-top: 8px;
}

.cart_table .table-bordered tbody tr td .product_edit ul li a {
    color: #222;
    font-size: 16px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.cart_table .table-bordered tbody tr td .product_edit ul li a:hover {
    color: var(--main-color);
}

.cart_table .table-bordered tbody tr td .product_quantity {
    padding: 0 20px;
}

.cart_table .table-bordered tbody tr td .product_quantity .quanty_form .product-quantity {
    overflow: hidden;
    border-radius: 5px;
}

.cart_table .table-bordered tbody tr td .product_quantity .quanty_form .product-quantity .sub,
.cart_table .table-bordered tbody tr td .product_quantity .quanty_form .product-quantity .add {
    border: 0;
    width: 16px;
    height: 30px;
    background-color: var(--main-color);
    font-size: 18px;
    color: #fff;
    position: relative;
    left: 1px;
}

.cart_table .table-bordered tbody tr td .product_quantity .quanty_form .product-quantity .add {
    left: auto;
    right: 1px;
}

.cart_table .table-bordered tbody tr td .product_quantity .quanty_form .product-quantity input {
    width: 40px;
    height: 30px;
    border: 1px solid #f3f6fb;
    text-align: center;
}

.cart_table .table-bordered tbody tr td .product_price p {
    font-size: 14px;
}

.cart_table .table-bordered tbody tr td .product_total p {
    font-size: 14px;
}

.cart_btn {
    border: 1px solid #f3f6fb;
    padding: 20px;
    padding-top: 0;
}

.cart_btn .main-btn {
    margin-top: 20px;
    height: 40px;
    border: 0;
    line-height: 40px;
    background-color: var(--main-color);
    color: #222;
    padding: 0 25px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
}

.cart_btn .main-btn:hover {
    background-color: var(--main-color);
}

.cart_btn .btn_left .main-btn {
    background-color: transparent;
}

.cart_title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.cart_form {
    border: 1px solid #f3f6fb;
    padding: 18px 20px 20px;
    border-radius: 10px;
}

.cart_form .single_cart_form {
    margin-top: 20px;
}

.cart_form .single_cart_form label {
    font-size: 14px;
    font-weight: 400;
    color: #222;
}

.cart_form .single_cart_form input {
    width: 100%;
    height: 40px;
    border: 2px solid #f2f2f2;
    border-radius: 0px;
    padding: 0 15px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color: #222;
    margin-top: 5px;
}

.cart_form .single_cart_form input:hover {
    border-color: var(--main-color);
}

.cart_form .single_cart_form .main-btn {
    height: 40px;
    border: 0;
    line-height: 40px;
    background-color: #222;
    border-radius: 6px;
    color: #fff;
    padding: 0 25px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 13px;
    font-weight: 700;
}

.cart_form .single_cart_form .main-btn:hover {
    background-color: var(--main-color);
}

.cart_total {
    border: 1px solid #f3f6fb;
    padding: 15px 20px 20px;
    border-radius: 10px;
}

.cart_total p {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-top: 5px;
}

.cart_total p span {
    width: 80px;
}

.cart_total a {
    border: 0;
    margin-top: 18px;
    background: #222;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart_total a:hover {
    background-color: #222;
    color: #fff;
}

/*===========================
       15.COMMING SOON css 
===========================*/
.comming-soon-area .comming-soon-item {
    border-radius: 5px;
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-item {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .comming-soon-area .comming-soon-item {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.comming-soon-area .comming-soon-item .title {
    font-size: 100px;
    color: #fff;
    font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .comming-soon-area .comming-soon-item .title {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-item .title {
        font-size: 32px;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .comming-soon-area .comming-soon-item .title {
        font-size: 60px;
        padding-top: 0;
    }
}

.comming-soon-area .comming-soon-item .title span {
    color: #222;
    font-weight: 700;
}

.comming-soon-area .comming-soon-item p {
    font-size: 28px;
    color: #fff;
    margin-top: 50px;
    padding-top: 18px;
    position: relative;
    display: inline-block;
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-item p {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .comming-soon-area .comming-soon-item p {
        font-size: 28px;
    }
}

.comming-soon-area .comming-soon-item p::after {
    position: absolute;
    content: '';
    left: -15px;
    top: 73%;
    transform: translateY(-50%);
    height: 9px;
    width: 9px;
    background: #daedf0;
    border-radius: 50%;
}

.comming-soon-area .comming-soon-item p::before {
    position: absolute;
    content: '';
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 1px;
    width: 440px;
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-item p::before {
        width: 100%;
    }
}

.comming-soon-area .comming-soon-item .input-box {
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-item .input-box {
        display: block;
    }
}

.comming-soon-area .comming-soon-item .input-box button {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    background: #fff;
    border: 0;
    border-radius: 5px;
}

.comming-soon-area .comming-soon-item .input-box input {
    width: 570px;
    background: var(--main-color);
    border: 2px solid #a5aa02;
    border-radius: 2px;
    line-height: 55px;
    padding-left: 28px;
    font-weight: 300;
    color: #222;
    font-size: 14px;
}

@media (max-width: 767px) {
    .comming-soon-area .comming-soon-item .input-box input {
        width: 100%;
    }
}

.comming-soon-area .comming-soon-item .input-box input::placeholder {
    opacity: 1;
    color: #222;
}

.comming-soon-area #simple_timer {
    margin-top: 25px;
}

.comming-soon-area #simple_timer .syotimer__body {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .comming-soon-area #simple_timer .syotimer__body {
        display: inline-block;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .comming-soon-area #simple_timer .syotimer__body {
        display: flex;
    }
}

.comming-soon-area #simple_timer .syotimer__body .syotimer-cell {
    margin: 0 24px;
}

.comming-soon-area #simple_timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
    .comming-soon-area #simple_timer .syotimer__body .syotimer-cell .syotimer-cell__value {
        font-size: 50px;
    }
}

.comming-soon-area #simple_timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    margin-top: -10px;
}

.comming-soon-area #simple_timer .syotimer__body .syotimer-cell:last-child::before {
    width: 0;
}

/*===========================
       15.COMMING SOON css 
===========================*/
.map-area .map-item iframe {
    width: 100%;
    height: 590px;
}

.contact-area .contact-form .contact-title {
    font-size: 24px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-bottom: 31px;
}

.contact-area .contact-form .single-form label {
    font-size: 14px;
    color: #6a7783;
    padding-bottom: 3px;
    padding-top: 7px;
}

.contact-area .contact-form .single-form input {
    width: 100%;
    border: 2px solid #f2f2f2;
    border-radius: 5px;
    height: 35px;
    padding-left: 20px;
}

.contact-area .contact-form .single-form textarea {
    width: 100%;
    border: 2px solid #f2f2f2;
    border-radius: 5px;
    height: 200px;
    resize: none;
    padding-left: 20px;
    padding-top: 13px;
}

.contact-area .contact-form .single-form button {
    background: #222;
    color: #fff;
    line-height: 54px;
    padding: 0 24px;
    border-color: #222;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    border-radius: 5px;
}

.contact-area .contact-info .contact-title {
    font-size: 24px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-bottom: 31px;
}

.contact-area .contact-info p {
    font-size: 14px;
    line-height: 28px;
    font-weight: 300;
}

.contact-area .contact-info ul li .single-info {
    padding: 10px 0;
}

.contact-area .contact-info ul li .single-info .icon i {
    font-size: 32px;
    color: #222;
}

.contact-area .contact-info ul li .single-info .content {
    padding-left: 30px;
}

.contact-area .contact-info ul li .single-info .content p {
    font-weight: 300;
    line-height: 28px;
    font-size: 16px;
}


/* Dashboard css */

.user-dashbord {
    padding: 120px 0;
}

.user-sidebar {
    border: 1px solid #e1e1e1;
    padding: 20px 30px;
}

.user-sidebar .links li {
    border-bottom: 1px dashed #e1e1e1;
    transition: all .3s;
}

.user-sidebar .links li:last-child {
    border-bottom: none;
}

.user-sidebar .links li:last-child a {
    padding-bottom: 0;
}

.user-sidebar .links li a {
    display: block;
    color: #676767;
}

.user-sidebar .links li a.active,
.user-sidebar .links li:hover>a {
    color: var(--main-color);
}

.order-details,
.account-info {
    border: 1px solid #e1e1e1;
    padding: 30px;
}

.user-dashbord .title {
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 20px;
}

.user-dashbord .main-info {
    overflow: hidden;
}

.user-dashbord .main-info h5 {
    margin-bottom: 15px;
}

/* .user-dashbord .main-info ul.list {
    float: left;
    width: 30%;
} */

.user-dashbord .main-info ul.list li {
    line-height: 30px;
}

.user-dashbord .main-info ul.list li p span {
    font-weight: 500;
    margin-right: 20px;
}

.card-box {
    padding: 30px 20px;
    background: #6963FF;
}

.card-box:after {
    position: absolute;
    bottom: -30px;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    font-size: 90px;
    font-weight: 600;
    color: #fff;
    opacity: .7;
}

.card-box.box-1:after {
    content: '\f15c';
}

.card-box.box-2:after {
    content: '\f0c0';
}

.card-box.box-3:after {
    content: '\f02e';
    font-weight: 400;
}

.card-box.box-1 {
    background: #6963FF;
}

.card-box.box-2 {
    background: #07BFA7;
}

.card-box.box-3 {
    background: #EC7424;
}

.card-box .card-info h5 {
    color: #fff;
    margin-bottom: 10px;
}

.card-box .card-info p {
    color: #fff;
}

.progress-area-step {
    margin-bottom: 60px;
    display: block;
    overflow: hidden;
}

.progress-steps li {
    width: 25%;
    float: left;
    text-align: center;
    position: relative;
}

.progress-steps li .icon {
    height: 30px;
    width: 30px;
    text-align: center;
    margin: auto;
    background: #efefef;
    border-radius: 50%;
    line-height: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    position: relative;
}

.progress-steps li.active .icon {
    background: var(--main-color);
    color: #fff;
}

.progress-steps li:first-child:after {
    display: none;
}

.progress-steps li:after {
    position: absolute;
    content: "";
    height: 3px;
    width: calc(100% - 30px);
    background: #efefef;
    top: 14px;
    z-index: 0;
    right: calc(50% + 15px);
}

.progress-steps li .progress-title {
    padding-top: 10px;
}

.main-table .dataTables_wrapper .row:last-child,
.main-table .dataTables_wrapper .row:first-child {
    margin-bottom: 30px;
    align-items: center;
}

.main-table .dataTables_wrapper .row:last-child {
    margin-top: 20px;
}

.main-table .dataTables_wrapper input[type="search"] {
    height: 35px;
    outline: none;
}

.main-table .dataTables_wrapper input[type="search"]:focus {
    outline: none;
    box-shadow: none;
}

.main-table .dataTables_wrapper td span.pending {
    padding: 5px 10px;
    background: var(--main-color);
    color: #fff;
    border-radius: 3px;
    line-height: 18px;
    font-size: 14px;
}

.main-table .dataTables_wrapper td a.btn {
    border: 1px solid var(--main-color);
    color: #123212;
    background: transparent;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s;
}

.main-table .dataTables_wrapper td a.btn:hover {
    background: var(--main-color);
    border-color: transparent;
    color: #fff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: none;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: none;
    border-bottom: none;
    background: transparent;
    background-color: transparent;
}

.paginate_button .page-link {
    border: 1px solid #e1e1e1;
    color: #123212;
    outline: none;
    box-shadow: none;
}

.paginate_button.active .page-link {
    background-color: var(--main-color) !important;
    border-color: transparent;
}

.paginate_button .page-link:hover {
    box-shadow: none;
    border-radius: 0;
    color: #fff;
    background-color: var(--main-color) !important;
}

table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
    top: 15px;
}

.view-order-page .order-info h3 {
    margin-bottom: 15px;
}

.order-info-area {
    margin-bottom: 40px;
}

.order-info-area .prinit {
    float: right;
}

.order-info-area .prinit .btn {
    background: var(--main-color);
    color: #fff;
}

.order-info-area .prinit .btn i {
    margin-right: 10px;
}

.billing-add-area {
    margin-bottom: 40px;
}

.billing-add-area .main-info ul.list {
    width: 100%;
}

.product-list h5 {
    margin-bottom: 15px;
}

.payment-information h5 {
    margin-bottom: 15px;
}

.payment-information p {
    line-height: 35px;
}

.edit-info-area {
    margin-top: 50px;
    overflow: hidden;
}

.btn {
    background: var(--main-color);
    color: #fff;
    text-transform: capitalize;
    outline: none;
    border-color: transparent;
}

.btn:hover,
.btn:focus {
    color: #fff;
    background: var(--hover-color);
    border-color: transparent;
}

.product-list table tr td b {
    line-height: 30px;
}

.product-list table tr td span {
    margin-left: 10px;
}

.product-list table tr td span.color {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #222;
}

.form_control {
    display: inline-block;
    width: 100%;
    height: 50px;
    padding-left: 23px;
    border: 1px solid #ddd;
    outline: 0;
    border-radius: 1px;
}

textarea.form_control {
    min-height: 200px;
}

.edit-info-area .upload-img {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.edit-info-area .upload-img .img-box {
    max-width: 100px;
    height: 100px;
}

.edit-info-area .upload-img .img-box img {
    width: 100%;
    border-radius: 50%;
}

.file-upload-area {
    margin-left: 30px;
}

.file-upload-area .upload-file {
    position: relative;
    cursor: pointer;
}

.file-upload-area .upload-file input {
    width: 150px;
    height: 40px;
    display: inline-block;
    opacity: 0;
    cursor: pointer;
}

.file-upload-area .upload-file span {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 40px;
    background: var(--main-color);
    z-index: -1;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
}

.edit-info-area .nice-select {
    width: 100%;
    height: 50px;
    border-color: #ddd;
    border-radius: 0;
    line-height: 50px;
    margin-bottom: 20px;
}

.edit-info-area .nice-select .list {
    width: 100%;
}

.single_radio,
.single_checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.single_radio span,
.single_checkbox span {
    display: inline-block;
    margin-left: 30px;
    line-height: 22px;
}

.single_input {
    display: none;
}

.single_input:checked+.single_input_label:after {
    opacity: 1;
}

.single_input:checked+.single_input_label:before {
    border-color: var(--main-color);
}

.single_input_label {
    display: inline-flex;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.single_radio .single_input_label:after,
.single_radio .single_input_label:before {
    border-radius: 50%;
}

.single_radio .single_input_label:after {
    content: '';
    width: 14px;
    height: 14px;
    line-height: 20px;
    top: 3px;
    left: 3px;
}

.single_input_label:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    display: inline-block;
    border: 1px solid #ddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.single_input_label:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    width: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    -webkit-transition: .2s opacity;
    -o-transition: .2s opacity;
    transition: .2s opacity;
}

.sigle_input_check:before {
    border-color: #ddd;
}

.sigle_input_check:after {
    background: var(--main-color);
    color: #FFFFFF;
    border-color: #ddd;
}

@media only screen and (max-width: 991px) {
    .user-sidebar {
        margin-bottom: 60px;
    }

    .card-box .card-info h5 {
        font-size: 18px;
    }

    .card-box:after {
        font-size: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .progress-steps li:first-child::after {
        display: block;
    }

    .progress-steps li::after {
        width: 3px;
        height: calc(100% - 30px);
        top: 30px;
        left: 15px;
    }

    .progress-steps li:last-child:after {
        display: none;
    }

    .progress-steps li .progress-title {
        padding-left: 20px;
    }

    .progress-steps li {
        display: flex;
        width: 100%;
        float: unset;
        text-align: left;
        padding-bottom: 20px;
    }

    .progress-steps li .icon {
        margin: 0;
    }

    .billing-add-area .main-info {
        margin-bottom: 30px;
    }

    .dataTables_length {
        margin-bottom: 20px;
    }

    div.dataTables_wrapper div.dataTables_length,
    div.dataTables_wrapper div.dataTables_filter,
    div.dataTables_wrapper div.dataTables_info,
    div.dataTables_wrapper div.dataTables_paginate {
        float: none;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: center;
        margin-top: 20px;
    }

    .order-info-area .prinit {
        float: none;
        margin-top: 20px;
    }

    .user-dashbord .main-info ul.list {
        width: 50%;
    }

    .billing-add-area .main-info ul.list {
        width: 100%;
    }

    .card-box:after {
        font-size: 100px;
    }
}

.user-area-section .form_checkbox label span {
    margin-left: 10px;
}

.user-area-section .form_group a {
    margin-left: 15px;
    color: #000000;
    font-weight: 600;
}

.user-area-section .form_group a:hover {
    color: var(--main-color);
}

.product-countdown .syotimer-cell {
    display: inline-flex;
}

.product-countdown .syotimer-cell:after {
    display: inline-block;
    content: ':';
    margin-left: 5px;
    margin-right: 5px;
}

.product-countdown .syotimer-cell:last-child:after {
    display: none;
}

.product-countdown .syotimer-cell__unit {
    display: none;
}


/* cart bar  */

a#cartIcon {
    position: fixed;
    z-index: 50;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-right: none;
    font-size: 12px;
    text-align: center;
    color: inherit;
    box-shadow: 0 2.8px 2.2px rgb(0 0 0 / 3%), 0 6.7px 5.3px rgb(0 0 0 / 5%), 0 12.5px 10px rgb(0 0 0 / 6%), 0 22.3px 17.9px rgb(0 0 0 / 7%), 0 41.8px 33.4px rgb(0 0 0 / 9%), 0 100px 80px rgb(0 0 0 / 12%);
    text-decoration: none;
}

a#cartIcon .cart-length {
    background: #55584d;
    padding: 5px 10px;
    font-weight: 600;
    color: #fdd670;
}

a#cartIcon .cart-length i {
    font-size: 16px;
}

a#cartIcon span.length {
    line-height: 22px;
}

a#cartIcon span.length {
    display: block;
    margin-top: -7px;
}

a#cartIcon .cart-total {
    background-color: #fff;
    line-height: 18px;
    text-align: center;
    font-weight: 600;
    color: inherit;
}

/* end cart bar  */
.newsletter-form input:not([type='file']) {
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
}
.product-gallery-arrow::-webkit-scrollbar-track {
    background-color: #e2e2e2;
}
.product-gallery-arrow::-webkit-scrollbar {
    width: 5px;
}
.product-gallery-arrow::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 30px;
}
.shop-details-wrap .product-details .product-gallery .product-gallery-arrow li {
    margin-bottom: 20px;
}
.shop-details-wrap .product-details .product-gallery .product-gallery-arrow li:last-child {
    margin-bottom: 0;
}
.product-gallery-arrow.overflow {
    height: 435px;
    overflow: hidden;
    overflow-y: scroll;
}
.product-gallery {
    padding: 20px;
    border: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-gallery .gallery-slider-warp {
    margin-inline-start: auto;
}
.single-product {
    border: 1px solid #dddddd;
    border-radius: 5px;
    position: relative;
}
.shop-details-wrap .product-details .product-gallery-slider .slick-track {
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-details-wrap .product-details .product-gallery .single-gallery-itam {
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product .product-desc {
    padding: 0 20px 30px;
}
.shop-details-wrap .lazy {
    filter: blur(10px);
    transition: all .3s linear;
}
.shop-details-wrap .lazy:not([src]) {
    visibility: visible;
}
.shop-details-wrap .lazy.loaded {
    filter: blur(0);
}
@media (max-width: 767px) {
    .header-area select {
        width: 30%;
        padding: 0;
        margin-right: 10px;
        height: 100%;
    }
}
.slick-arrow {
    cursor: pointer;
}
.banner-area .banner-slide .banner-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.banner-area .banner-slide .banner-item::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-color: #000;
    opacity: .5;
    z-index: -1;
}
.language-btn select {
    border: 0;
    padding: 0;
    font-size: 14px;
    color: #6a7783;
    padding-inline-start: 10px;
    cursor: pointer;
}
.language-btn select:focus {
    border: 0;
    box-shadow: unset;
}
.language-icon {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    font-size: 16px;
}
.shop-lookbook-item .shop-lookbook-slider .item {
    position: relative;
    overflow: hidden;
}
.shop-lookbook-item .shop-lookbook-slider .item .flash-badge {
    color: #fff;
    top: 0;
    left: -35px;
    width: 90px;
    height: 20px;
    line-height: 22px;
    border: none;
    font-size: 12px;
}
/* front-status-btn frontend */
.front-status-btn {
    color: var(--light);
    padding: 2px 6px;
    border-radius: 5px;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 22px;
}
.pending,
.Pending {
    background: #FFAD46 !important;
}
.completed,
.Completed {
    background: #31CE36 !important;
}
.processing,
.Processing {
    background: #1572E8 !important;
}
.rejected,
.Rejected {
    background: #F25961 !important;
}

/* end front-status-btn frontend */

.lazy{
	/* filter: blur(5px); */
	transition: filter 100ms;
}
.lazy.loaded,
.lazy.loading{
	filter: blur(0);
}
img.lazy:not([src]) {
    opacity: 0;
}

.electronics-product-item .electronics-product-content h6,
.shop-lookbook-item .shop-lookbook-slider .item .title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.electronics-product-item .electronics-product-content h6 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.shop-lookbook-item .shop-lookbook-slider .item .title {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}