.sec-title {
    margin-bottom: 30px;
}

/*product*/
.zk-summary-right.productbtn-mob {
    display: none;
}

/* ==== zk-hero-slider ==== */
.zk-hero-slider .site-container {
    max-width: 1280px;
    position: relative;
}
.slide-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}  
.slide-caption {
    padding: 100px 0px;
    max-width: 445px;
}
.slide-caption h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.slide-caption h1 {
    font-size: 43px;
    margin-bottom: 20px;
    line-height: 1.1;
}
.slide-caption .zk_btn {
    margin-top: 10px;
    background-color: var(--global-palette-highlight-alt);
    padding: 7px 20px;
}
.slide-caption .zk_btn:hover,.slide-caption .zk_btn:focus {
    color: #fff;
    background: var(--global-palette-btn-bg-hover);
}
.zk-hero-slider .owl-item.active .slide-caption {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.5s;
}
@-webkit-keyframes fadeInLeft {
0% {
   opacity: 0;
   -webkit-transform: translateX(-200px);
}
100% {
   opacity: 1;
   -webkit-transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
   opacity: 0;
   transform: translateX(-200px);
}
100% {
   opacity: 1;
   transform: translateX(0);
}
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.slide-caption-right {
    padding: 10px;
    position: absolute;
    z-index: 99999;
    top: 40%;
    right: 130px;
    border: 1px solid #fff;
    -webkit-animation: shake 2s linear infinite;
    -moz-animation: shake 2s linear infinite;
    -o-animation: shake 2s linear infinite;
    animation: shake 1s linear infinite;
}
.slide-caption-right h4 {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}
.slide-caption-right h4 p {
    margin-bottom: 0px;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotateZ(0);
  }
  10% {
    -webkit-transform: rotateZ(10deg);
  }
  20% {
    -webkit-transform: rotateZ(5deg);
  }
  30% {
    -webkit-transform: rotateZ(-10deg);
  }
  40% {
    -webkit-transform: rotateZ(7.5deg);
  }
  50% {
    -webkit-transform: rotateZ(-6deg);
  }
  60% {
    -webkit-transform: rotateZ(5deg);
  }
  70% {
    -webkit-transform: rotateZ(-4deg);
  }
  80% {
    -webkit-transform: rotateZ(3deg);
  }
  90% {
    -webkit-transform: rotateZ(-2deg);
  }
  100% {
    -webkit-transform: rotateZ(0);
  }
}
/* ==== zk-pr-category ==== */
.zk-pr-category .site-row {
    margin-right: 0px;
    margin-left: 0px;
}
.content--bx {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.content--bx .inner-bx {
    display: flex;
    gap: 20px;
    padding: 35px 30px;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
}
.content--bx .inner-bx * {
    color: #fff;
}
.content--bx .inner-bx:after {
    content: "";
    background-color: #f30e19;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
}
.content--bx:nth-child(2) .inner-bx:after {
    background-color: #3f9bed;
}
.content--bx:nth-child(3) .inner-bx:after {
    background-color: #f8b734;
}
.content--bx .inner-bx .cont-left, 
.content--bx .inner-bx .img-right {
    position: relative;
    z-index: 1;
}
.content--bx .inner-bx .cont-left {
    width: 70%;
}
.content--bx .inner-bx .img-right {
    width: 30%;
}
.content--bx .inner-bx h4 {
    font-size: 16px;
}
.content--bx .inner-bx h3 {
    line-height: 1.1;
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 18px;
}
.content--bx .inner-bx .zk_btn {
    background: transparent;
    border: 1px solid #fff;
}
.content--bx .inner-bx .zk_btn:empty {
    display: none;
}
.content--bx .inner-bx .zk_btn:hover,.content--bx .inner-bx .zk_btn:focus {
    background: var(--global-palette-btn-bg-hover)!important;
    border: 1px solid transparent;
    color: #fff;
}
.content--bx .inner-bx .cont-price {
    font-size: 22px;
    font-weight: 700;
}
/* ==== zk-categories-slide ==== */
.zk-categories-slide {
    padding: 70px 0px !important;
}
.zk-categories-slide .za-feature-card {
    padding: 0px;
}
.cat-item {
    text-align: center;
    transition: .9s ease;
}
.cat-item .cat-img {
    text-align: center;
    position: relative;
    padding-top: 60%;
}
.cat-item .cat-img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
}
.cat-item .cat-img:after {
    content: "";
    background-color: var(--global-palette-highlight-alt);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: all .5s ease;
}
.cat-item:hover .cat-img:after {
    opacity: 0.8;
    transition: all .5s ease;
}
.cat-item .zk_btn {
    transition: all .5s ease;
}
.cat-item:hover .zk_btn {
    opacity: 1;
    background-color: transparent;
}
.cat-item .cat-name {
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
}
.cat-item .zk_btn {
    opacity: 0;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    width: 100%;
}
#feature--cat .owl-nav,
.zk-testimonial .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    position: absolute;
    right: 0;
    top: -63px;
    margin-top: 0px !important;
}
/* ==== zk-special-products ==== */
.zk-special-products {
    padding: 60px 0px !important;
}
/* ==== zk-all-products ==== */
.zk-all-products {
    padding-top: 60px;
	padding-bottom: 50px;
}
.all_pr_slide .owl-stage-outer,
.all_pr_slide .owl-stage {
    display: flex;
}
.woocommerce .all_pr_slide.products li.product {
    height: 100% !important;
    margin: 0px 1px;
}
/* ==== zk-counter ==== */
.zk-counter {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}
.zk-counter .site-container {
    max-width: 1140px;
}
.counter-caption {
    max-width: 50%;
    margin-left: auto;
    padding: 100px 15px;
    text-align: center;
}
.counter-caption h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.counter-caption h2 {
    margin-bottom: 10px;
    font-size: 32px;
}
.counter-caption .zk_btn {
    margin-top: 20px;
}
/* ==== zk-testimonial ==== */
.zk-testimonial {
    padding: 60px 0px 0px 0px !important
}
.test-item .inner-bx {
    background-color: #f2f7ff;
    padding: 30px;
}
.test-item .inner-bx .star-icon {
    margin-bottom: 15px;
}
.test-item .inner-bx .star-icon i {
    color: #e7c551;
}
.test-item .inner-bx .uthor-info cite {
    font-weight: 700;
    font-style: normal;
}
.test-item .inner-bx .uthor-info cite span {
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}
.test-item .inner-bx .uthor-info cite span:after {
    content: "";
    position: absolute;
    background: #000;
    height: 1px;
    width: 7px;
    left: 7px;
    top: 11px;
}
/* ==== zk-get-in-touch ==== */
.zk-get-in-touch {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}
.get-in-touch-caption {
    max-width: 50%;
    margin-left: auto;
    padding: 120px 15px;
}
.get-in-touch-caption h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}
.get-in-touch-caption h2 {
    font-size: 40px;
    margin-bottom: 24px;
}
.get-in-touch-caption .mc4wp-form-fields {
    display: flex;
}
.get-in-touch-caption input[type="email"] {
    padding: 18px;
    height: 60px;
    width: 100%;
    border-radius: 0px;
    font-size: 16px;
    border: 0px;
    background-color: #fff;
}
.get-in-touch-caption input[type="submit"] {
    font-size: 15px;
    font-weight: 600;
    border-radius: 0px;
    padding: 0.4em 1.5em;
    background: var(--global-palette-highlight-alt);
}
.get-in-touch-caption .mc4wp-alert {
    border: 1px solid #fff;
    padding: 5px 10px;
    margin-top: 5px;
}
.get-in-touch-caption .mc4wp-alert p {
    margin-bottom: 0px;
}
/* ==== zk-pr-category v2 ==== */
.zk-pr-category.v2 .content--bx .inner-bx:after {
    background-color: #99ddcb;
    opacity: 1;
}
.zk-pr-category.v2 .content--bx:nth-child(2) .inner-bx:after {
    background-color: #fee6ce;
}
.zk-pr-category.v2 .content--bx:nth-child(3) .inner-bx:after {
    background-color: #ffb9b9;
}
.zk-pr-category.v2 .content--bx .inner-bx * {
    color: #000;
}
.zk-pr-category.v2 .content--bx .inner-bx h3 {
    font-size: 28px;
}
.zk-pr-category.v2 .content--bx .inner-bx .cont-price {
    display: block;
    margin-bottom: 30px;
}
.content--bx .inner-bx .cont-left {
    width: 60%;
}
.content--bx .inner-bx .img-right {
    width: 40%;
}
.zk-pr-category.v2 {
    padding-top: 70px;
}
.zk-pr-category.v2 .content--bx .inner-bx h4,
.zk-pr-category.v2 .content--bx .inner-bx .cont-price {
    font-size: 20px;
    font-weight: 400;
}
.zk-pr-category.v2 .content--bx .inner-bx .zk_btn {
    color: #fff;
    background-color: var(--global-palette-btn-bg);
    border: 0px;
}
/* ==== zk-all-products v2 ==== */
.zk-all-products.v2 {
    padding-top: 60px;
}
.all_pr_slide .owl-nav {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    position: absolute;
    right: 0;
    top: -63px;
    margin-top: 0px !important;
}
/* ==== zk-facility zk-support ==== */
.zk-facility {
    padding: 80px 0px;
}
.facility-col {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    display: flex;
    align-items: center;
    gap: 15px;
}
.facility-col span {
    font-size: 20px;
}
.woo-chatbot-ball {
    padding: 10px;
}
.woo-chatbot-msg span {
    background-color: #a374ce !important;
}
.single-product .entry-taxonomies{ display:none; }
.woocommerce .product_meta{ margin-top:2em; }
.woocommerce .content-area div.product div.summary{ width:68%; }
.woocommerce .content-area div.product div.images{ width:30%; }

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .single_add_to_wishlist i {
    font-size: 1rem;
    background-color: #fff;
    padding: 6px;
    border-radius: 99px;
    border: 1px solid var(--global-palette1);
    color: var(--global-palette1);
}
.woocommerce .add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback+a i {
    font-size: 1rem;
    padding: 6px;
    border-radius: 99px;
    background-color: var(--global-palette1);
    color: var(--global-palette9);
}
section.entry-hero.entry-hero-layout-standard .entry-hero-container-inner {
    padding: 5px 0 8px;
}

.top--bar-stripe {
    display: inline-block;
    width: 100%;
    padding: 5px 15px;
    background-color: #351dba;
}
.track--order {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.track--order-btn {
    color: var(--global-palette9);
    font-size: 14px;
    padding: 5px 0px;
}