/**
 * Base Stylesheet
 *
 * This file provides the foundational CSS for the fludora theme.
 * It includes normalization, typography, default layout, and utility classes
 * that ensure consistency across all browsers and devices.
 *
 * Contents:
 * - Normalize & Reset
 * - Typography
 * - Links & Buttons
 * - Forms & Inputs
 * - Utility Classes
 *
 * @package fludora
 * @subpackage CSS
 * @since 1.0.0
 */
 
:root {
  --sk-primary-color: #db3c3c;
  --sk-secondary-color: #000000;
  --sk-title-color: #000000;
  --sk-body-color: #333;
  --sk-text-light-color: #a7a7a7;
  --sk-link-color: #136cff;
  --sk-link-color-active: #db3c3c;
  --sk-form-border-color: #d9dde3;
  --sk-form-placeholder-color: #a7a7a7;
  --sk-button-color: #ffffff;
  --sk-star-color: #ffab00;
  --sk-background-color: #fff;
  --sk-theme-black-color: #000000;
  --sk-theme-gray-color: #D9D9D9;
  --sk-theme-white-color: #ffffff;
  --sk-theme-danger-color: #ef262c;
  --sk-theme-warning-color: #ff5c00;
  --sk-theme-info-color: #e8e8e8;
  --sk-theme-border-color: #e5e8ec;
  --sk-theme-success-color: #00a046;
  --sk-theme-light-color: #a7a7a7;
  --sk-product-fade-border-color: #e0e5ea;
  --sk-shop-button-color: #ffffff;
  --sk-shop-button-color-active: #ffffff;
  --sk-swiper-primary-color: #000000;
}

:root {
  --sk-icon-font-family: "aweicons";
}

:root {
  --sk-body-font-family: "Raleway", arial, sans-serif;
}


:root {
  --sk-border-radius-size: 0;
  --sk-form-radius-size: 0;
  --sk-button-radius-size: 0;
  --sk-circle-radius-size: 50%;
}

:root {
  --sk-main-container-width: 1240px;
  --sk-button-height: 2.625rem;
}

:root {
  --sk-product-title-font-size: 16px;
  --sk-widget-title-font-size: 18px;
  --sk-medium-font-size: 14px;
  --sk-small-font-size: 12px;
  --sk-body-font-size: 16px;
  --sk-nav-font-size: 15px;
  --sk-h1-font-size: 48px;
  --sk-h2-font-size: 38px;
  --sk-h3-font-size: 32px;
  --sk-h4-font-size: 24px;
  --sk-h5-font-size: 18px;
  --sk-h6-font-size: 16px;
  
}

:root {
  --sk-body-font-weight: 400;
  --sk-h1-font-weight: 700;
  --sk-h2-font-weight: 600;
  --sk-h3-font-weight: 550;
  --sk-h4-font-weight: 500;
  --sk-h5-font-weight: 400;
  --sk-h6-font-weight: 400;
}

:root {
  --sk-body-line-height: 1.6em;
  --sk-h1-line-height: 1.3em;
  --sk-h2-line-height: 1.3em;
  --sk-h3-line-height: 1.4em;
  --sk-h4-line-height: 1.4em;
  --sk-h5-line-height: 1.5em;
  --sk-h6-line-height: 1.5em;
}

:root {
  --sk-body-letter-spacing: normal;
  --sk-h1-letter-spacing: normal;
  --sk-h2-letter-spacing: normal;
  --sk-h3-letter-spacing: normal;
  --sk-h4-letter-spacing: normal;
  --sk-h5-letter-spacing: normal;
  --sk-h6-letter-spacing: normal;
}

::selection {
    background: var(--sk-secondary-color);
	color: var(--sk-theme-white-color);
}

html, body {
    scroll-behavior: smooth;
}

@media(max-width:1140px) {
    .container {
        max-width: 100% !important
    }
}

@media screen and (max-width: 1024px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

body {
  font-family: var(--sk-body-font-family);
  font-size: var(--sk-body-font-size);
  font-weight: var(--sk-body-font-weight);
  line-height: var(--sk-body-line-height);
  letter-spacing: var(--sk-body-letter-spacing);
  color: var(--sk-body-color);
  background-color: var(--sk-background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--sk-title-color);
  
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: normal;
    color: var(--sk-title-color);
}

h1 {
    font-weight: var(--sk-h1-font-weight);
    font-size: var(--sk-h1-font-size);
    line-height: var(--sk-h1-line-height);
    letter-spacing: var(--sk-h1-letter-spacing);
    color: var(--sk-title-color);
}

h2 {
    font-weight: var(--sk-h2-font-weight);
    font-size: var(--sk-h2-font-size);
    line-height: var(--sk-h2-line-height);
	letter-spacing: var(--sk-h2-letter-spacing);
}

h3 {
    font-weight: var(--sk-h3-font-weight);
    font-size: var(--sk-h3-font-size);
    line-height: var(--sk-h3-line-height);
	letter-spacing: var(--sk-h3-letter-spacing);
}

h4 {
    font-weight: var(--sk-h4-font-weight);
    font-size: var(--sk-h4-font-size);
    line-height: var(--sk-h4-line-height);
	letter-spacing: var(--sk-h4-letter-spacing);
}

h5 {
    font-weight: var(--sk-h5-font-weight);
    font-size: var(--sk-h5-font-size);
    line-height: var(--sk-h5-line-height);
	letter-spacing: var(--sk-h5-letter-spacing);
}

h6 {
    font-weight: var(--sk-h6-font-weight);
    font-size: var(--sk-h6-font-size);
    line-height: var(--sk-h6-line-height);
	letter-spacing: var(--sk-h6-letter-spacing);
}

img {
  max-width: 100%;
  height: auto;
}

a {
    color: var(--sk-primary-color);
    text-decoration: none;
}

a:hover, a:active, a:focus {
    color: currentColor;
}

.btn a {
    opacity: 1;
}

li a:hover {
	opacity: 0.75;
}



p {
   margin-bottom: 1.7em;
   margin-top: 0
}

strong, b {
   color: currentcolor;
   font-weight: bold;
}

.rich-text a, p a {
	color: var(--sk-primary-color);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 20px;
    padding-left: 20px;
}

.content-inner {
    display: flex;
    flex-direction: initial;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start;
    align-self: auto;
    gap: 65px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-inline-start: 0;
    padding-inline-end: 0;
}
@media (max-width:768px) {
	.content-inner{
		flex-direction: column;
		gap: 40px;
	}
}

.main-content {
	display: flex;
	flex-direction: column;
	width: 70%;
	gap: 40px;
}
.main-sidebar {
	display: flex;
	flex-direction: column;
	width: 30%;
	gap: 40px;
}
@media (max-width: 768px) {
    .main-content, 
	.main-sidebar {
        width: 100%;
    }
}
.main-sidebar.no-gap,
.main-content.no-gap {
	gap: 0;
}

/*
*** Sidebar ***/
.classic .main-content {
	width: 100%;
}
.no-sidebar .content-inner {
    justify-content: center;
}
.no-sidebar .main-content {
	min-width: 80%;
}
@media (min-width:768px) {
	.both-sidebar .content-inner {
		gap: 40px;
	}
	.left-sidebar .main-sidebar {
		order: -1;
	}
}
@media (max-width:768px) {
	.both-sidebar .main-content {
		order: -1;
	}
}
.sidebar{
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start;
    align-self: auto;
    gap: 40px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-inline-start: 0;
    padding-inline-end: 0;
}

/*
*** Row css ***/
.row {
    display: flex;
	flex-direction: initial;
    flex-wrap: wrap;
	flex-basis: auto;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start;
    align-self: auto;
	width: 100%;
}
.row > * {
    padding-right: 10px;
    padding-left: 10px;
}
.site-content {
    margin-bottom: 5%;
}

.elementor-page .site-content {
    margin: 0;
}


button:focus,
input:focus,
textarea:focus {
    outline: 0
}

label {
	display: inline-block;
    margin-bottom: 0.2rem;
}

@media ( min-width: 62rem ){
	.d-mt-40 {
		margin-top: 40px!important;
	}
}

.pt-120 {
    padding-top: 120px!important;
}

.pb-120 {
    padding-bottom: 120px!important;
}

.mb-120 {
    margin-bottom: 120px!important;
}

.pt-80 {
    padding-top: 80px!important;
}

.pt-50 {
    padding-top: 50px!important;
}

.pt-30 {
    padding-top: 30px!important;
}

.pt-20 {
    padding-top: 20px!important;
}

.pb-20 {
    padding-bottom: 20px!important;
}

.pt-15 {
    padding-top: 15px!important;
}

.pb-15 {
    padding-bottom: 15px!important;
}

.pb-80 {
    padding-bottom: 80px!important;
}

.mb-70 {
    margin-bottom: 70px!important;
}

.pb-60 {
    padding-bottom: 60px!important;
}

.mb-60 {
    margin-bottom: 60px!important;
}

.mb-50 {
    margin-bottom: 50px!important;
}

.mb-45 {
    margin-bottom: 45px!important;
}

.mb-30 {
    margin-bottom: 30px!important;
}

.mb-10 {
    margin-bottom: 10px!important;
}
.mt-30 {
    margin-top: 30px!important;
}
.mt-40 {
    margin-top: 40px !important;
}
.mt-60 {
    margin-top: 60px!important;
}
.mr-5 {
    margin-right: 5px!important;
}
.mr-10 {
    margin-right: 10px!important;
}
.mr-15 {
    margin-right: 15px!important;
}
.ml-5 {
    margin-left: 5px!important;
}
.ml-10 {
    margin-left: 10px!important;
}
.ml-15 {
    margin-left: 15px!important;
}
@media(max-width:767px) {
    .pt-120 {
        padding-top: 60px!important;
    }
    .pb-120 {
        padding-bottom: 60px!important;
    }
    .mb-120 {
        margin-bottom: 60px!important;
    }
    .pt-80 {
        padding-top: 40px!important;
    }
    .pt-50 {
        padding-top: 25px!important;
    }
    .mb-70 {
        margin-bottom: 40px!important;
    }
    .pb-80 {
        padding-bottom: 40px!important;
    }
    .pb-60 {
        padding-bottom: 35px!important;
    }
    .mb-60 {
        margin-bottom: 35px!important;
    }
}

@media (max-width:1200px) {
    .hide-below-1200 {
        display: none;
    }
}
.white-text,
.white-text ul li a {
    color: #ffffff !important;
}

#my-calendar,
.sigle-klte-1.grid-video .video-image img {
    width: 100%
}

.swiper-fix {
    padding: 15px;
    margin: -12px
}

table {
    border-spacing: 0;
    border-collapse: separate;
    border: 0;
    background-color: transparent;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 3rem;
    overflow-wrap: normal;
    word-break: normal;
}
table.bordered {
    border: 1px solid var(--sk-form-border-color);
    background-color: #ffffff;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin
}

table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
table::-webkit-scrollbar {
    background-color: #f1f1f1
}

table.bordered::-webkit-scrollbar-thumb {
    background: #a8a8a8
}

table td,
table th {
    padding: 7px 15px;
}
table.bordered td,
table.bordered th {
    border-bottom: 1px solid var(--sk-form-border-color);
}

table th {
    padding: 15px;
    text-align: left;
}

table.bordered tr:nth-child(odd) {
    background-color: #f5f5f5;
}

table tr:last-child td,
table tr:last-child th {
    border: none
}

dt {
    font-weight: bold;
}

dt, dd {
    line-height: 20px;
}

dd {
    margin-left: 10px;
}

.wp-calendar-table td, .wp-calendar-table th {
    text-align: center;
}

abbr, tla, acronym {
    text-decoration: underline;
    cursor: help;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

form select,
select {
    width: 100%;
}

.aligncenter img {
	display: block;
	margin-left: auto;
	margin-right: auto
}
.alignright {
	float: right;
    margin: 0 0 1em 1em;
    clear: both;
}
.alignleft {
	float: left;
	margin: 0 1em 1em 0;
    clear: both;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align:center;
}

blockquote {
    border-left: 3px var(--sk-primary-color) solid;
    padding: 30px 30px 20px 30px;
    background: #f0f6ff;
}

blockquote cite {
    color: var(--sk-primary-color);
    font-size: 17px;
    font-weight: 700;
}

.wp-block-button__link {
    height: auto;
}

@media (min-width: 768px) {
    .is_sticky {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 100px;
		padding-left: 1px;
    }

}
.action-btn.red {
    background: #00caeb
}

.action-btn.green,
.address-card:hover .content,
.hover-border1::before {
    background: var(--sk-primary-color)
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

.section-title span {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
    margin-bottom: 15px;
    display: inline-block
}

.section-title h3 {
    font-size: 2.8125rem;
    font-weight: 700;
    color: var(--sk-text-color);
    margin-bottom: 15px
}

/*
***** Preloader ******/

.klte-circle-preloader {
    position: fixed !important;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.klte-circle-preloader::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1
}

.klte-circle-preloader .circle-border {
    width: 100%;
    max-width: 140px;
    height: 100%;
    max-height: 140px;
    border: 0 solid var(--sk-primary_color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    border-radius: 50%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, .1)
}

.klte-circle-preloader .circle-border .moving-circle,
.klte-circle-preloader .circle-border .moving-circle:nth-child(2),
.klte-circle-preloader .circle-border .moving-circle:nth-child(3) {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: auto;
    background: var(--sk-primary-color);
    right: 0;
    position: absolute;
    bottom: 0;
    overflow: hidden
}

.klte-circle-preloader .circle-border svg {
    fill: var(--sk-primary-color)
}

.klte-circle-preloader .circle-border svg path {
    stroke: var(--sk-primary-color)
}

.klte-circle-preloader .circle-border .moving-circle {
    top: 0;
    left: 0;
    animation: 2s linear infinite circle
}

.klte-circle-preloader .circle-border .moving-circle:nth-child(2) {
    top: 0;
    left: 0;
    animation: 2.25s linear infinite circle
}

.klte-circle-preloader .circle-border .moving-circle:nth-child(3) {
    top: 0;
    left: 0;
    animation: 2.5s linear infinite circle
}

@keyframes circle {
    0% {
        transform: rotate(0) translate(-70px) rotate(0)
    }
    100% {
        transform: rotate(360deg) translate(-70px) rotate(-360deg)
    }
}

#outline {
    stroke-dasharray: 2.427766571px, 242.7766571045px;
    stroke-dashoffset: 0;
    animation: 1.6s linear infinite anim
}

@keyframes anim {
    12.5% {
        stroke-dasharray: 33.9887319946px, 242.7766571045px;
        stroke-dashoffset: -26.7054322815px
    }
    43.75% {
        stroke-dasharray: 84.9718299866px, 242.7766571045px;
        stroke-dashoffset: -84.9718299866px
    }
    100% {
        stroke-dasharray: 2.427766571px, 242.7766571045px;
        stroke-dashoffset: -240.3488905334px
    }
}
.klte-product-loader {
    text-align: center;
    margin-top: 30px;
}
.klte-product-loader .preloader-image {
	width: 2.125rem;
	color: currentColor;
	z-index: 100;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation: rotator 1.4s linear infinite;
	animation: rotator 1.4s linear infinite;
	-webkit-transition: opacity 1s cubic-bezier(0.28, 0.12, 0.22, 1);
	transition: opacity 1s cubic-bezier(0.28, 0.12, 0.22, 1);
}

.klte-product-loader .preloader-image .path {
    stroke: currentColor;
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite; 
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); 
	}
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); } }

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); } }

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187; }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg); }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); } }

@keyframes dash {
  0% {
    stroke-dashoffset: 187; }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg); }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
	} 
}

/*
***** Mobile Bottom Menu ******/
@media screen and (max-width: 768px){
    body.klte-bottom-menu .site-footer {
        margin-bottom: 56px;
    }
}
.mobile-button-menu {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background-color: #ffffff;
    border-top: 1px solid #f7f7f7;
    height: 56px;
    z-index: 1000;
}

@media screen and (min-width: 768px) {
    .mobile-button-menu {
        display:none!important
    }
}

.mobile-button-menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-button-menu .mobile-button {
    width: 100%
}

.mobile-button-menu .mobile-button ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none
}

.mobile-button-menu .mobile-button ul li {
    width: 20%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-button-menu .mobile-button ul li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    width: 100%;
    text-decoration: none;
    color: var(--sk-title-color);
    padding: 5px;
}

.mobile-button-menu .mobile-button ul li a i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mobile-button-menu .mobile-button ul li .header-addons-icon {
    position: relative;
    width: 30px;
    margin: 0 auto;
}

.mobile-button-menu .mobile-button ul li .button-count {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    min-width: 1.125rem;
    height: 1.125rem;
    top: 2px;
    right: -3px;
    color: #fff;
    background-color: var(--sk-primary-color);
    border-radius: 50%;
}

.mobile-button-menu .mobile-button ul li a i.fludorath-icon-search {
    font-size: 1.625rem
}

.mobile-button-menu .mobile-button ul li a span {
    font-size: var(--sk-medium-font-size);
    text-align: center;
    display: flex;
    justify-content: center;
}
.mobile-button-menu .mobile-button ul li a.active {
    color: var(--sk-primary-color);
}

/* mobile bottom style */
.mobile-button-menu.mobile-button-style3,
.mobile-button-menu.mobile-button-style2 {
    -webkit-box-shadow: 0 -2px 10px rgba(0,0,0,.1);
    box-shadow: 0 -2px 10px rgba(0,0,0,.1);
}
.mobile-button-menu.mobile-button-style3 .mobile-button ul li a.store {
    width: 65px;
    height: 65px;
    border-radius: 50px;
    background: var(--sk-title-color);
    color: #fff;
    margin-top: -10px;
    border: 8px solid #fff;
    padding: 8px;
    -webkit-box-shadow: 0 -2px 2px rgba(0,0,0,.1);
    box-shadow: 0 -2px 2px rgba(0,0,0,.1);
}
.mobile-button-menu.mobile-button-style3 .mobile-button ul li a.store span {
    font-size: 0.6625rem
}

input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea,select,.form-control,.form-select {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: -.03px;
    width: 100%;
    height: 2.5rem;
    padding: 0 .9375rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--sk-form-border-color);
    border-radius: var(--sk-form-radius-size);
    font-size: var(--sk-body-font-size);
}

input[type=color]:focus,input[type=color]:active,input[type=date]:focus,input[type=date]:active,input[type=datetime-local]:focus,input[type=datetime-local]:active,input[type=datetime]:focus,input[type=datetime]:active,input[type=email]:focus,input[type=email]:active,input[type=month]:focus,input[type=month]:active,input[type=number]:focus,input[type=number]:active,input[type=password]:focus,input[type=password]:active,input[type=search]:focus,input[type=search]:active,input[type=tel]:focus,input[type=tel]:active,input[type=text]:focus,input[type=text]:active,input[type=time]:focus,input[type=time]:active,input[type=url]:focus,input[type=url]:active,input[type=week]:focus,input[type=week]:active,textarea:focus,textarea:active,select:focus,select:active,.form-control:focus,.form-control:active,.form-select:focus,.form-select:active {
    outline: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}

input[type=color]::-webkit-input-placeholder,input[type=date]::-webkit-input-placeholder,input[type=datetime-local]::-webkit-input-placeholder,input[type=datetime]::-webkit-input-placeholder,input[type=email]::-webkit-input-placeholder,input[type=month]::-webkit-input-placeholder,input[type=number]::-webkit-input-placeholder,input[type=password]::-webkit-input-placeholder,input[type=search]::-webkit-input-placeholder,input[type=tel]::-webkit-input-placeholder,input[type=text]::-webkit-input-placeholder,input[type=time]::-webkit-input-placeholder,input[type=url]::-webkit-input-placeholder,input[type=week]::-webkit-input-placeholder,textarea::-webkit-input-placeholder,select::-webkit-input-placeholder,.form-control::-webkit-input-placeholder,.form-select::-webkit-input-placeholder,
input[type=color]::-moz-placeholder,input[type=date]::-moz-placeholder,input[type=datetime-local]::-moz-placeholder,input[type=datetime]::-moz-placeholder,input[type=email]::-moz-placeholder,input[type=month]::-moz-placeholder,input[type=number]::-moz-placeholder,input[type=password]::-moz-placeholder,input[type=search]::-moz-placeholder,input[type=tel]::-moz-placeholder,input[type=text]::-moz-placeholder,input[type=time]::-moz-placeholder,input[type=url]::-moz-placeholder,input[type=week]::-moz-placeholder,textarea::-moz-placeholder,select::-moz-placeholder,.form-control::-moz-placeholder,.form-select::-moz-placeholder,
input[type=color]:-ms-input-placeholder,input[type=date]:-ms-input-placeholder,input[type=datetime-local]:-ms-input-placeholder,input[type=datetime]:-ms-input-placeholder,input[type=email]:-ms-input-placeholder,input[type=month]:-ms-input-placeholder,input[type=number]:-ms-input-placeholder,input[type=password]:-ms-input-placeholder,input[type=search]:-ms-input-placeholder,input[type=tel]:-ms-input-placeholder,input[type=text]:-ms-input-placeholder,input[type=time]:-ms-input-placeholder,input[type=url]:-ms-input-placeholder,input[type=week]:-ms-input-placeholder,textarea:-ms-input-placeholder,select:-ms-input-placeholder,.form-control:-ms-input-placeholder,.form-select:-ms-input-placeholder,
input[type=color]::-ms-input-placeholder,input[type=date]::-ms-input-placeholder,input[type=datetime-local]::-ms-input-placeholder,input[type=datetime]::-ms-input-placeholder,input[type=email]::-ms-input-placeholder,input[type=month]::-ms-input-placeholder,input[type=number]::-ms-input-placeholder,input[type=password]::-ms-input-placeholder,input[type=search]::-ms-input-placeholder,input[type=tel]::-ms-input-placeholder,input[type=text]::-ms-input-placeholder,input[type=time]::-ms-input-placeholder,input[type=url]::-ms-input-placeholder,input[type=week]::-ms-input-placeholder,textarea::-ms-input-placeholder,select::-ms-input-placeholder,.form-control::-ms-input-placeholder,.form-select::-ms-input-placeholder,
input[type=color]::placeholder,input[type=date]::placeholder,input[type=datetime-local]::placeholder,input[type=datetime]::placeholder,input[type=email]::placeholder,input[type=month]::placeholder,input[type=number]::placeholder,input[type=password]::placeholder,input[type=search]::placeholder,input[type=tel]::placeholder,input[type=text]::placeholder,input[type=time]::placeholder,input[type=url]::placeholder,input[type=week]::placeholder,textarea::placeholder,select::placeholder,.form-control::placeholder,.form-select::placeholder {
    color: var(--sk-form-placeholder-color)
}

textarea {
    padding-top: .9375rem;
    padding-bottom: .9375rem
}

.form-select {
    padding-right: 2.1875rem
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 9L12 15L18 9' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") calc(100% - 5px) 12px no-repeat;
    background-size: 18px 15px;
    padding-right: 1.875rem
}

button, .button, input[type=submit], .submit, .btn, .wp-element-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 100%;
    letter-spacing: -.03px;
    text-decoration: none;
    padding: 0.625rem 1.375rem;
    color: var(--sk-theme-white-color);
    background: var(--sk-primary-color);
    border: none;
    border-radius: var(--sk-button-radius-size);
    -webkit-transition: all 0.2s cubic-bezier(.28,.12,.22,1);
    transition: all 0.2s cubic-bezier(.28,.12,.22,1);
}

button:active,button:focus,.button:active,.button:focus,input[type=submit]:active,input[type=submit]:focus,.submit:active,.submit:focus,.btn:active,.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none
}

button:hover,.button:hover,input[type=submit]:hover,.submit:hover,.btn:hover, .wp-element-button:hover {
    color: #fff;
    background-color: var(--sk-secondary-color);
    border-color: var(--sk-secondary-color);
    opacity: .9
}

button.small,.button.small,input[type=submit].small,.submit.small,.btn.small {
    font-size: var(--sk-small-font-size);
    height: var(--sk-button-height);
}

button.rounded,.button.rounded,input[type=submit].rounded,.submit.rounded,.btn.rounded {
    border-radius: var(--sk-button-radius-size);
}

button.link-color,.button.link-color,input[type=submit].link-color,.submit.link-color,.btn.link-color {
    background-color: var(--sk-link-color);
    border-color: var(--sk-link-color)
}

button.link-color:hover,.button.link-color:hover,input[type=submit].link-color:hover,.submit.link-color:hover,.btn.link-color:hover {
    opacity: .9
}

button.wide,.button.wide,input[type=submit].wide,.submit.wide,.btn.wide {
    width: 100%
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: var(--sk-theme-white-color);
    background-color: var(--sk-secondary-color);
    border-color:var(--sk-secondary-color);
    box-shadow: none;
}
.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

/* social-links */
.social-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.social-links li {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
  align-items: center;
  justify-content: center;
}
.social-links li a {
    color: currentColor;
}
/* share-links*/
.share-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
	gap: 3px;
}
.share-links li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-links li a {
    color: currentColor;
    font-size: 100%;
    opacity: 0.66;
    padding: 5px;
}
.share-links li:hover a {
    opacity: 1;
}


/*------------------------------------ 
    06 - Perfect Scrollbar 
------------------------------------*/
/**
 * Swiper 6.7.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 1, 2021
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-button-prev, 
.swiper-button-next {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fff;
    color: var(--sk-body-color);
    border: 1px solid var(--sk-theme-border-color);
    border-radius: 50%;
    -webkit-box-shadow: 1px 1px 1px rgba(2, 21, 35, 0.08);
    box-shadow: 1px 1px 1px rgba(2, 21, 35, 0.08);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
    transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.swiper-container:hover .swiper-button-prev, 
.swiper-container:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
}
.swiper-button-prev::after, 
.swiper-button-next::after {
    font-size: var(--sk-body-font-size);
    color: currentColor;
    text-shadow: 0px 0px 0px;
}

/*
*** Site Search ****/
.site-search {
    line-height: normal;
}
.site-search .klte-ajax-search {
    background: rgb(126 126 126 / 7%);
}
.site-search .input-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}
.site-search .input-group>* {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.site-search .input-group>*.input-search-field {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}
.site-search .input-search-addon {
    position: relative;
}

.site-search .input-search-addon::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #e5e5e5;
}
.site-search .selected-value {
    position: fixed;
    font-size: .875rem;
    padding-left: .9375rem;
    padding-right: 2.1875rem;
    left: -10000px;
    visibility: hidden;
    opacity: 0
}
.site-search select {
    background: transparent;
    width: auto;
    border-right: 0;
    height:2.625rem;
    border: none;
    border-radius: 0;
    color: currentColor;
}
.site-search select option {
    color: var(--sk-body-color);
    background: #f7f7f7;
}
@media screen and (min-width: 1200px) {
    .site-search select {
        height: var(--sk-button-height);
    }
}

.site-search input[type=search] {
    border: none;
    background: transparent;
    border-radius: 0;
    height: var(--sk-button-height);
    color: currentColor;
}
.site-search input[type=search]::placeholder {
  opacity: 0.75;
  color: currentColor;
}
@media screen and (min-width: 1200px) {
    .site-search input[type=search] {
        height: var(--sk-button-height);
    }
}
.site-search button {
    background: transparent;
    color: currentColor;
    border-radius: 0;
    height: var(--sk-button-height);
    padding-left: 1.125rem;
    padding-right: 1.125rem
}
.site-search button i {
    font-size: 1.2rem;
    color: currentColor;
}
.site-search .klte-product-loader {
    position: absolute;
    margin: 0;
}
.site-search .preloader-image {
    width: 1.2rem;
}

@media screen and (max-width: 768px) {
    .site-search .input-search-addon {
        display: none;
    }
}
.site-search .search-message {
    font-size: var(--sk-small-font-size);
    opacity: 0.5;
}

.site-scroll {
  width: 100%;
  height: 100%;
}

.label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  height: 1.125rem;
  border-radius: 1.125rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.label.danger {
  color: #fff;
  background-color: var(--sk-theme-danger-color);
}

.site-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.4);
  will-change: opacity;
}

/*
*** Swiper ***/

.swiper-container {
  position: relative;
}
.swiper-container:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  background-color: #fff;
  will-change: opacity;
  -webkit-transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.swiper-container .slider-loader {
  position: absolute;
  width: 46px;
  height: 46px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 12;
}
.swiper-container .slider-loader .spinner {
  fill: var(--sk-primary-color);
  stroke: var(--sk-primary-color);
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  will-change: opacity;
  -webkit-transition: opacity 0.3s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.swiper-container .slider-loader .spinner .spinner-path {
  stroke-linecap: round;
  -webkit-animation: dash 1.5s cubic-bezier(0.28, 0.12, 0.22, 1) infinite;
  animation: dash 1.5s cubic-bezier(0.28, 0.12, 0.22, 1) infinite;
}
.swiper-container .slider-loader .spinner .spinner-path {
    stroke: currentColor;
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}
.swiper-container.slider-loaded:before {
  opacity: 0;
  visibility: hidden;
}
.swiper-container.slider-loaded .slider-loader {
  opacity: 0;
  visibility: hidden;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

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

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.color-primary {
  color: var(--sk-primary-color);
}

.color-secondary {
  color: var(--sk-secondary-color);
}

.color-text {
  color: var(--sk-body-color);
}

.color-success {
  color: var(--sk-theme-success-color);
}

.color-danger {
  color: var(--sk-theme-danger-color);
}

.color-light {
  color: var(--sk-text-light-color);
}

.border-yellow {
  border-color: #ffbd27 !important;
}

.overlay-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

@media screen and (min-width: 1200px) {
  .d-mt-0 {
    margin-top: 0 !important;
  }
}

.tooltip {
  font-family: var(--sk-body-font-family);
  font-size: 0.75rem;
  font-weight: 500;
}

/*
*** product progress ***/
.product-progress {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--sk-theme-light-color);
  border-radius: 0.625rem;
}
.product-progress span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  background-color: var(--sk-secondary-color);
}

.product-offer-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 0.75rem;
}
.product-offer-count .product-progress {
  margin-bottom: 0.75rem;
}
.product-offer-count .product-count-top {
  font-size: 0.75rem;
  color: var(--sk-text-light-color);
  margin-bottom: 0.625rem;
}
.product-offer-count .product-count-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  color: var(--sk-text-light-color);
}
.product-offer-count .product-count-detail .sold {
  margin-left: auto;
}
.product-offer-count .product-count-detail strong {
  color: var(--sk-body-color);
}
.product-offer-count.color-red .product-count-top strong {
  color: var(--sk-theme-danger-color);
}
.product-offer-count.color-red .product-progress {
  margin-bottom: 0;
}
.product-offer-count.color-red .product-progress span {
  background-color: var(--sk-theme-danger-color);
}
/*
*** site social ***/
.site-social ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-social ul li + li {
  margin-left: 4px;
}
.site-social ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--sk-small-font-size);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: var(--sk-button-radius-size);
  color: #fff;
  background-color: #d1d6dd;
}
@media screen and (min-width: 768px) {
  .site-social ul li a {
    font-size: 0.9375rem;
    width: 2.125rem;
    height: 2.125rem;
  }
}
.site-social.colored a {
  color: #fff;
  border-color: transparent;
}
.site-social.colored a:hover {
  opacity: 0.8;
}
.site-social.colored .facebook {
  background-color: #3b5998;
}
.site-social.colored .instagram {
  background-color: #c30080;
}
.site-social.colored .pinterest {
  background-color: #e60023;
}
.site-social.colored .spotify {
  background-color: #1db954;
}
.site-social.colored .twitch {
  background-color: #9146ff;
}
.site-social.colored .whatsapp {
  background-color: #25d366;
}
.site-social.colored .amazon {
  background-color: #ff9900;
}
.site-social.colored .skype {
  background-color: #00aff0;
}
.site-social.colored .twitter {
  background-color: #1da1f2;
}
.site-social.colored .vimeo {
  background-color: #1ab7ea;
}
.site-social.colored .google {
  background-color: #ea4335;
}
.site-social.colored .linkedin {
  background-color: #0077b5;
}
.site-social.colored .yelp {
  background-color: #af0606;
}
.site-social.colored .pocket {
  background-color: #ef4056;
}
.site-social.colored .paypal {
  background-color: #003087;
}
.site-social.colored .tumblr {
  background-color: #35465c;
}
.site-social.colored .vkontakte {
  background-color: #45668e;
}
.site-social.colored .youtube {
  background-color: #ff0000;
}
.site-social.colored .reddit {
  background-color: #ff4500;
}


/*
*** Contact Info ***/

.klte-contact-info {
    padding: 0;
    margin: 0;
}
.klte-contact-info .klte-phone-icon {
    display: flex;
    position: relative;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: var(--sk-primary-color);
    border-right: 1px solid #dddddd94;
    font-size: 25px;
    margin-right: 10px;
    color: #fff
}
.klte-contact-info .phone-number {
    font-weight: 600;
}
.klte-contact-info .phone-number span {
    display: block;
    line-height: 15px;
    margin-top: 5px
}
.klte-contact-info .klte-contact-phone {
    display: flex;
    align-items: center;
    justify-content: flex-end
}


/*
*** Site header ***/

.site-header {
  position: relative;
  z-index: 99;
}
.site-header .gap-enable {
  gap: 2%;
}
.site-header.border-enable {
  border-bottom: 1px solid #e5e8ec;
}
.site-header .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .site-switcher {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-header .site-switcher > span {
  font-size: 0.75rem;
  margin-right: 0.375rem;
}
.site-header .site-switcher + .site-switcher {
  margin-left: 1.5625rem;
}
.site-header .header-addons {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-header .header-addons ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .header-addons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: currentColor;
}
.site-header .header-addons-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  width: 2.25rem;
  height: 2.25rem;
  color: currentColor;
}
.site-header .header-addons-icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.site-header .header-addons-icon.search-button i {
    font-size: 120%;
}
.site-header .header-addons-icon .avatar {
    border-radius: 50%;
}
.site-header .header-addons-icon .fludorath-icon-heart {
  font-size: 1.625rem;
  text-shadow: 0 0.2px 0;
}
.site-header .header-addons-icon .fludorath-icon-simple-cart {
  font-size: 1.75rem;
  text-shadow: 0 0.2px 0;
}
.site-header .cart-button {
    margin-right: 5px;
}
.site-header .action-header {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 10px;
    margin-left: 10px;
}
.site-header .header-addons-icon .button-count {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    line-height: 15px;
    top: 4px;
    right: 0px;
    color: #fff;
    background: var(--sk-secondary-color);
    border-radius: 50%;
}
.site-header .header-addons-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.225rem;
  line-height: 1.1;
}
.site-header .header-addons-text .sub-text {
  display: block;
  font-size: var(--sk-small-font-size);
  opacity: 0.5;
  margin-bottom: 2px;
}
.site-header .header-addons-text .cart-subtotal {
  display: flex;
}
.site-header .header-addons.cart-button:hover .cart-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* header top */
.site-header .header-top {
  position: relative;
  font-size: var(--sk-medium-font-size);
  background: #f7f7f7;
  color: #021523;
  padding: 4px 0;
  z-index: 1;
}
.site-header .header-top .header-wrapper {
    justify-content: space-between;
}
.site-header .header-top .social-links {
    font-size: var(--sk-medium-font-size);
}
.site-header .header-top.border-enable .header-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}
.site-header .header-top a {
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-header .header-top .site-menu .menu > li > a:hover {
  color: var(--sk-primary-color);
}
.site-header .header-top .site-menu .menu > li > a i {
  font-size: 0.85rem;
  margin-right: 0.625rem;
}
.site-header .header-top .site-menu .menu > li.menu-item-has-children:hover > a {
  color: var(--sk-primary-color);
}
.site-header .header-top .site-menu .menu .sub-menu {
  min-width: auto;
  padding: 0.3125rem 0;
  left: auto;
  border-color: #e5e8ec;
}
.site-header .header-top .site-menu .menu .sub-menu a {
  font-size: var(--sk-small-font-size);
  font-weight: 500;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  color: #021523;
}
.site-header .header-top .site-menu .menu .sub-menu a:hover {
  color: #0070dc;
}
.site-header .header-top .site-switcher .menu > li > a {
  font-weight: 600;
}
.site-header .header-top .column.left .header-addons {
    margin-left: 0;
}
.site-header .header-top .column.left .header-addons ul {
  gap: 10px;
}
.site-header .header-top .column.right .site-menu + .site-switcher {
  margin-left: 1.25rem;
  padding-left: 1.25rem;
}
.site-header .header-top .column.right .site-menu + .site-switcher:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0.9375rem;
  opacity: 0.1;
  left: 0;
}

.site-header .header-main {
  position: relative;
  z-index: 10;
}
.site-header .header-main a {
  color: currentColor;
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-header .header-main a.btn {
    color: var(--sk-theme-white-color);
	background: var(--sk-secondary-color);
}
.site-header .header-main .column.right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-header .header-main .site-brand {
  margin-right: 4.5rem;
}
.site-header .header-nav a {
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-header .header-nav .column.right {
  margin-left: auto;
}
.site-header .header-nav .site-menu .menu > li > a:hover {
  color: var(--sk-link-color-active);
}
.site-header .header-nav .site-menu .menu > li.menu-item-has-children:hover > a {
  color: var(--sk-link-color-active);
}
.site-header .header-nav .site-menu .menu .sub-menu a:hover {
  color: var(--sk-link-color-active);
}
.site-header .header-nav .site-menu .menu .sub-menu .menu-item-has-children:hover > a {
  color: var(--sk-link-color-active);
}
.site-header .site-menu.primary .menu {
  margin-left: -0.625rem;
}
.site-header .site-menu.primary .menu > li {
  margin-right: 0.625rem;
}
.site-header .site-menu.primary .menu > li > a {
  display: inline-block;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  color: currentColor;
}
.site-header .site-menu.primary a {
  font-size: var(--sk-nav-font-size);
  font-weight: 500;
}
.site-header .site-menu.primary a .menu-icon-image {
    width: 20px;
    height: auto;
}
.site-header .site-menu.primary a .menu-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: .275rem;
    width: 1.125rem;
    height: 1.125rem;
}
.site-header .site-menu.primary a i {
  margin-right: 0.125rem;
}
.site-header .site-menu.primary.category-menu .menu > li {
  margin-right: 1.5rem;
}

/*
*** site menu ***/

.column {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.column.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.column.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.column.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column.align-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.site-brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.site-menu.horizontal .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none
}

.site-menu.horizontal .menu>li {
    margin-right: 1.5625rem;
}

.site-menu.horizontal .menu>li:last-child {
    margin-right: 0
}

.site-menu.horizontal .menu a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none
}

/* menu-tooltip*/
.site-menu.horizontal .menu li > a .menu-tooltip {
    position: relative;
    margin-top: -10px;
    align-self: flex-start;
    margin-inline-start: -20px;
    padding: 0 5px;
    font-size: 10px;
    border-radius: 0.125rem;
}
.site-menu.horizontal .menu > li > a .menu-tooltip {
    background: var(--sk-primary-color);
    color: #fff;
}
.site-menu.horizontal .menu > li a .menu-tooltip::before {
    content: "";
    position: absolute;
    top: 100%;
    inset-inline-start: 10px;
    border: 5px solid;
    border-bottom-color: transparent !important;
    border-inline-end-color: transparent!important;
    border-inline-end-width: 5px;
    border-inline-start-width: 0;
    border-color: var(--sk-primary-color);
}
.site-menu.horizontal .menu .menu-item:not(.mega-menu) {
    position: relative;
    white-space: nowrap
}

.site-menu.horizontal .menu .menu-item:not(.mega-menu) .sub-menu li.menu-item:not(:last-child) {
    border-bottom: 1px solid var(--sk-theme-border-color);
}

.site-menu.horizontal .menu .sub-menu {
	background: #fff;
    color: var(--sk-body-color);
}
.site-menu.horizontal .menu .sub-menu a {
    font-size: var(--sk-medium-font-size);
    font-weight: 400;
    padding-top: 0.825rem;
    padding-bottom: 0.825rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
	line-height: normal;
}
.site-menu.horizontal .menu .menu-item:not(.mega-menu) .sub-menu .menu-item-has-children>a::after {
    position: relative;
    font-family: var(--sk-icon-font-family);
	content: '\e6db';
    padding-left: .4375rem;
    margin-left: auto;
    text-decoration: none;
    display: inline-block;
    font-size: 100%;
    transition: 0.3s ease;
	
}
.site-menu.horizontal .menu .sub-menu .sub-menu {
    top: 0;
    left: 100%
}

.site-menu.horizontal .menu .menu-item-has-children>a::after {
    font-family: var(--sk-icon-font-family);
    content: '\e6db';
    margin-left: .4375rem;
    
}
.site-menu.horizontal .menu .menu-item-has-children>a::after {
    font-family: var(--sk-icon-font-family);
    content: '\e6d9';
    color: currentColor;
    position: relative;
    padding-left: .4375rem;
    margin-left: auto;
    display: inline-block;
    font-size: 100%;
    text-decoration: none;
    transition: 0.3s ease;
}
.site-menu.horizontal .menu > .menu-item-has-children:hover>a::after {
    content: '\e6dc';
}

.site-menu.horizontal .menu .menu-item:not(.mega-menu) > .sub-menu {
    position: absolute;
    min-width: 16.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
	box-shadow: 0 20px 25px rgba(0, 0, 0, .1);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    pointer-events: none;
    will-change: opacity;
    transition: all .4s ease-out 0s;
    transform: translateY(20px);
}
.site-menu.horizontal .menu .menu-item.menu-item-has-children:not(.mega-menu):hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto
}

/*
*** site Mega Menu ***/
.site-menu.horizontal .menu .mega-menu .mega-menu-container {
    display: none;
}
.site-menu.horizontal .menu .mega-menu.menu-item-has-children:hover .mega-menu-container {
    display: block;
}
.site-menu.horizontal .menu .menu-item.mega-menu .mega-menu-container>.sub-menu .sub-menu {
    position: relative;
    left: 0;
    top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background-color: transparent;
    z-index: 10;
}
.site-menu.horizontal .menu .menu-item.mega-menu .mega-menu-container>.sub-menu .menu-item-has-children>a::after {
    content: unset;
}
.site-menu.horizontal .menu .menu-item.mega-menu .sub-menu li.menu-item:not(:last-child) {
    border: none;
}

/* 
Hover */
.site-menu.horizontal .menu .mega-menu.menu-item-has-children>.mega-menu-wrap {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    pointer-events: none;
    will-change: opacity;
    transition: all .4s ease-out 0s;
    transform: translateY(20px);
}
.site-menu.horizontal .menu .mega-menu.menu-item-has-children:hover > .mega-menu-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto
}
.site-menu.horizontal .menu .mega-menu .mega-menu-container {
	box-shadow: 0 20px 25px rgba(0, 0, 0, .1);
}
.site-menu.horizontal .menu .mega-menu .sub-menu {
	opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-menu.horizontal .menu .mega-menu.menu-item-has-children:hover > .mega-menu-wrap .sub-menu {
    opacity: 1;
    visibility: visible;
}
.site-header .horizontal .menu .mega-menu .mega-menu-container>.sub-menu {
    padding: 30px 10%;
    gap: 30px;
}
.site-menu.horizontal .menu .mega-menu .mega-menu-wrap .sub-menu li a {
    padding: 7px 0px;
}

/* 
Equal Height */
.site-menu.horizontal .menu .mega-menu:not(.mega-menu):not(.style1) .sub-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 20px;
}

.site-menu.horizontal .menu .mega-menu.columns2:not(.style1) .sub-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 20px;
}
.site-menu.horizontal .menu .mega-menu.columns3:not(.style1) .sub-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 20px;
}
.site-menu.horizontal .menu .mega-menu.columns4:not(.style1) .sub-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 20px;
}
.site-menu.horizontal .menu .mega-menu.columns5:not(.style1) .sub-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px 20px;
}
.site-menu.horizontal .menu .mega-menu.columns6:not(.style1) .sub-menu {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px 20px;
}
.site-menu.horizontal .menu .mega-menu:not(.style1) .sub-menu .sub-menu {
    display: inline;
}
.site-menu.horizontal .menu .mega-menu:not(.style1) .mega-menu-container {
    margin-left: auto;
    margin-right: auto;
}

/* 
style1 */
.site-menu.horizontal .menu .mega-menu.style1 .sub-menu {
    direction: ltr;
    width: calc(100% + 8px);
    flex-grow: 1;
    justify-content: flex-start;
    height: calc(100% + 8px);
    column-count: 4;
}
.site-menu.horizontal .menu .mega-menu.columns2.style1 .sub-menu {
    column-count: 2;
}
.site-menu.horizontal .menu .mega-menu.columns3.style1 .sub-menu {
    column-count: 3;
}
.site-menu.horizontal .menu .mega-menu.columns4.style1 .sub-menu {
    column-count: 4;
}
.site-menu.horizontal .menu .mega-menu.columns5.style1 .sub-menu {
    column-count: 5;
}
.site-menu.horizontal .menu .mega-menu.columns6.style1 .sub-menu {
    column-count: 6;
}

/*
*** site departments Menu ***/
.site-departments {
  margin-right: 1.875rem;
}
.site-departments .site-departments-wrapper {
  position: relative;
}
.site-departments .site-departments-wrapper > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.site-departments .site-departments-wrapper > a .departments-icon {
  font-size: 1.1875rem;
}
.site-departments .site-departments-wrapper > a .departments-text {
  font-size: var(--sk-nav-font-size);
  font-weight: 500;
  margin-left: 0.75rem;
}
.site-departments .site-departments-wrapper > a .departments-arrow {
  font-size: var(--sk-medium-font-size);
  margin-left: auto;
}
.site-departments .site-departments-wrapper>a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}
.site-departments .site-departments-wrapper>a {
    min-width: 100%;
    height: 50px;
    padding-left: .9375rem;
    padding-right: .9375rem;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    color: currentColor
}
.site-departments .site-departments-wrapper {
    position: relative;
    z-index: 1;
}

.site-departments .departments-menu {
    position: absolute;
    min-width: 100%;
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #e5e8ec;
	background: white;
	color: var(--sk-body-color);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px
}
.site-departments.hover-menu .departments-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity;
    transition: all .4s ease-out;
    transform: translateY(20px);
	z-index: 10;
}
.site-departments.hover-menu:hover .departments-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.site-departments.slide-menu .departments-menu{
   display: none;
}

.site-departments .departments-menu a {
    font-size: var(--sk-nav-font-size);
    text-decoration: none
}

.site-departments .departments-menu>li {
    position: relative
}

.site-departments .departments-menu>li+li {
    border-top: 1px solid #e5e8ec
}

.site-departments .departments-menu>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    height: 38px;
    color: currentColor;
    padding-left: .9375rem;
    padding-right: .9375rem
}

.site-departments .departments-menu>li>a .menu-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: var(--sk-body-font-size);
    margin-right: .275rem;
    width: 1.5625rem;
    height: 1.5625rem
}

.site-departments .departments-menu>li>a i.text {
    font-size: var(--sk-small-font-size);
    font-weight: 600;
    font-style: normal;
    color: var(--sk-link-color)
}

.site-departments .departments-menu>li>a .label {
    margin-left: auto
}

.site-departments .departments-menu>li.menu-item-has-children {
    position: static
}

.site-departments .departments-menu>li.menu-item-has-children>a::after {
	font-family: var(--sk-icon-font-family);
    content: '\e6db';
    margin-left: auto;
}

.site-departments .departments-menu>li.menu-item-has-children:hover .mega-menu-wrap,
.site-departments .departments-menu>li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: auto
}
.site-departments .departments-menu>li.menu-item-has-children>.sub-menu a .menu-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: var(--sk-body-font-size);
    margin-right: 0.2375rem;
    width: 1.1625rem;
    height: 1.1625rem;
}
.site-departments .departments-menu>li.menu-item-has-children.has-image>.sub-menu {
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto
}

.site-departments .departments-menu>li.menu-item-has-children.column-2>.sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    background-size: cover;
    width: calc(166% + 10px);
    align-items: flex-start;
}

.site-departments .departments-menu>li.menu-item-has-children.column-2>.sub-menu>.menu-item-title {
    display: none
}

.site-departments .departments-menu>li.menu-item-has-children.column-2>.sub-menu>.menu-item-has-children {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.site-departments .departments-menu>li.menu-item-has-children.column-3>.sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    background-size: cover;
    width: calc(250% + 10px);
    align-items: flex-start;
}

.site-departments .departments-menu>li.menu-item-has-children.column-3>.sub-menu>.menu-item-has-children {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}
.site-departments .departments-menu>li.menu-item-has-children.column-4>.sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    background-size: cover;
    width: calc(333% + 10px);
    align-items: flex-start;
}

.site-departments .departments-menu>li.menu-item-has-children.column-4>.sub-menu>.menu-item-has-children {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}
.site-departments .departments-menu li.menu-item-has-children.column-2 .sub-menu>.menu-item-has-children > a,
.site-departments .departments-menu li.menu-item-has-children.column-3 .sub-menu>.menu-item-has-children > a,
.site-departments .departments-menu li.menu-item-has-children.column-4 .sub-menu>.menu-item-has-children > a {
    color: var(--sk-title-color);
    font-weight: 600;
}
.site-departments .departments-menu .mega-menu-wrap,
.site-departments .departments-menu .sub-menu {
    position: absolute;
    width: 100%;
    min-height: 100%;
    left: calc(100% - 1px);
    top: 0;
    margin: 0;
    padding: 1.25rem 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #e5e8ec;
    border-top: 0;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    -webkit-transition: all 0.2s cubic-bezier(.28,.12,.22,1);
    transition: all 0.2s cubic-bezier(.28,.12,.22,1)
}

.site-departments .departments-menu .sub-menu .menu-item-has-children > a .menu-item-title {
    font-size: var(--sk-medium-font-size);
    font-weight: 600;
    color: var(--sk-title-color);
}

.site-departments .departments-menu .sub-menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .4375rem 1.875rem;
    color: currentColor;
}

.site-departments .departments-menu .sub-menu a:hover {
    text-decoration: underline
}

.site-departments .departments-menu .sub-menu .sub-menu {
    position: relative;
    left: 0;
    padding: 0;
    background-color: transparent;
    border: 0
}

.site-departments.locked .departments-menu {
    display: none
}

.site-departments.only-menu .site-departments-wrapper {
    z-index: 2
}

.site-departments.only-menu .site-departments-wrapper>a {
    display: none
}

.site-departments.only-menu .site-departments-wrapper .departments-menu {
    position: relative
}


/*
*** Discount-menu ***/
.site-header .discount-menu .site-menu .menu-icon{
    color: var(--sk-primary-color);
}


/*
*** Site Dropdown Cart ***/

.site-header .cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 20rem;
  max-width: 20rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: all 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
@media (max-width: 768px) {
    .site-header .header-mobile-type-1 .cart-dropdown {
      right: -100%;
    }
}
.site-header .cart-dropdown-wrapper {
  padding: 0.9375rem;
  color: #021523;
  background-color: #fff;
  border: 1px solid #eef2f6;
  -webkit-box-shadow: 0 2px 3px rgba(4, 30, 66, 0.07);
          box-shadow: 0 2px 3px rgba(4, 30, 66, 0.07);
  border-radius: var(--sk-border-radius-size);
  width: 100%;
}
.site-header .cart-dropdown-wrapper.load-more .product:not(.display) {
  display: none;
}
.site-header .cart-dropdown .cart-empty {
  text-align: center;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
.site-header .cart-dropdown .cart-empty .empty-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.9375rem;
}
.site-header .cart-dropdown .cart-empty .empty-icon svg {
  max-width: 52px;
}
.site-header .cart-dropdown .cart-empty .empty-text {
  font-size: var(--sk-medium-font-size);
  font-weight: 500;
}
.site-header .cart-dropdown .cart-noticy {
  position: relative;
  display: block;
  font-size: var(--sk-medium-font-size);
  text-align: center;
  margin-top: 0.875rem;
  padding-top: 0.9375rem;
}
.site-header .cart-dropdown .cart-noticy::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  opacity: 0.1;
}
.site-header .cart-dropdown .products {
  position: relative;
  padding: 0;
  margin: 0 0 0 0;
  overflow: auto;
  max-height: 341px;
}
.site-header .cart-dropdown .products .product .product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header .cart-dropdown .products .product .product-content .thumbnail-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.5rem;
          flex: 0 0 3.5rem;
  max-width: 3.5rem;
  padding: 0;
  margin-right: 0.625rem;
  margin-bottom: 0;
}
.site-header .cart-dropdown .products .product .product-title {
  font-size: var(--sk-medium-font-size);
  margin-bottom: 3px;
}
.site-header .cart-dropdown .products .product .entry-price .quantity {
  all: unset;
  font-size: var(--sk-medium-font-size);
}
.site-header .cart-dropdown .products .product .entry-price .quantity .amount {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--sk-primary-color);
}
.site-header .cart-dropdown .products .product .content-wrapper {
  padding-bottom: 0;
}
.site-header .cart-dropdown .products .product .remove_from_cart_button {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--sk-small-font-size);
  font-weight: 600;
  width: 1.125rem;
  height: 1.125rem;
  line-height: 1.125rem;
  background-color: var(--sk-secondary-color);
  color: var(--sk-theme-white-color);
  border-radius: 50%;
  top: 0;
  right: 0;
}
.site-header .cart-dropdown .products .product + .product {
  padding-top: 0.625rem;
  margin-top: 0.625rem;
  border-top: 1px solid var(--sk-theme-border-color);
}
.site-header .cart-dropdown .woocommerce-mini-cart__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--sk-theme-border-color);
  line-height: normal;
}
.site-header .cart-dropdown .woocommerce-mini-cart__total strong {
  font-size: var(--sk-medium-font-size);
  font-weight: 500;
  color: var(--sk-text-light-color);
}
.site-header .cart-dropdown .woocommerce-mini-cart__total .woocommerce-Price-amount {
  margin-left: auto;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sk-primary-color);
}
.site-header .cart-dropdown .woocommerce-mini-cart__buttons .btn {
  font-size: var(--sk-medium-font-size);
  height: 2.75rem;
  border-radius: var(--sk-border-radius-size);
}
.site-header .cart-dropdown .woocommerce-mini-cart__buttons .btn:not(.checkout) {
  background-color: var(--sk-theme-light-color);
  border-color: transparent;
  margin-bottom: 3px;
}
.site-header .cart-dropdown .woocommerce-mini-cart__buttons .btn.checkout {
  color: #fff;
  background-color: var(--sk-primary-color);
  border-color: transparent;
}
.site-header .cart-dropdown .woocommerce-mini-cart__buttons .btn:hover {
  opacity: 0.8;
}
.site-header .cart-dropdown .button-more {
  width: 100%;
  border-top: 1px solid var(--sk-theme-border-color);
  margin-top: 8px;
}
.site-header .cart-dropdown .button-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.5625rem;
}
.site-header .cart-dropdown .cart-slider {
  position: relative;
  max-height: 180px;
  overflow: initial;
  margin-top: 45px;
  margin-bottom: 30px;
}
.site-header .cart-dropdown .cart-slider .swiper-button-prev {
  top: -50px;
  left: 0;
  right: 0;
  margin-top: 0;
  width: 100%;
  height: 30px;
  color: var(--sk-body-color);
  background-color: #fff;
  border-bottom: 1px solid var(--sk-theme-border-color);
}
.site-header .cart-dropdown .cart-slider .swiper-button-prev::after {
  font-size: var(--sk-body-font-size);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding-right: 7px;
}
.site-header .cart-dropdown .cart-slider .swiper-button-next {
  top: auto;
  bottom: -30px;
  left: 0;
  right: 0;
  margin-top: 0;
  width: 100%;
  height: 30px;
  color: var(--sk-body-color);
  background-color: #fff;
  border-top: 1px solid var(--sk-theme-border-color);
}
.site-header .cart-dropdown .cart-slider .swiper-button-next::after {
  font-size: var(--sk-body-font-size);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding-left: 7px;
}
.site-header .cart-dropdown .cart-total-product {
  display: block;
  font-size: var(--sk-snall-font-size);
  color: var(--sk-text-light-color);
  margin-bottom: 0.625rem;
}
.woocommerce-mini-cart__buttons.buttons a {
    font-size: var(--sk-medium-font-size);
    height: 2.75rem;
    border-radius: var(--sk-button-radius-size);
    width: 100%;
}

.woocommerce-mini-cart__buttons.buttons a:not(.checkout) {
    background-color: var(--sk-secondary-color);
    border-color: transparent;
    margin-bottom: 3px;
	color: #fff;
}

.woocommerce-mini-cart__buttons.buttons a.checkout {
    color: #fff;
    background-color: var(--sk-primary-color);
    border-color: transparent;
}

.site-header .wishlist-button {
    margin-right: 5px;
}

.site-header .wishlist-button .cart1 {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 4px;
}
.site-header .wishlist-button .fa-heart:before {
    content: '\e60c';
    font-family: "aweicons" !important;
    font-style: normal;
}
.site-header .wishlist-button .wishlist_products_counter_number {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15px;
    min-width: 15px;
    height: 15px;
    min-height: 15px;
    font-size: 10px;
    font-weight: 700;
    line-height: 15px;
    top: 4px;
    right: 0px;
    color: #fff;
    background-color: var(--sk-primary-color);
    border-radius: 50%;
    padding: 0;
}

/*
*** Menu toggle ***/
.klte-menu-button {
	position: relative;
}

.klte-menu-button .menu-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(0deg);
  height: 16px;
  width: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 300ms ease;
}

.klte-menu-button .menu-button span {
  height: 3px;
  width: 24px;
  background-color: currentColor;
  transition: width 200ms ease;
}

.klte-menu-button .menu-button span:nth-child(1) {
  width: 80%;
  transition-delay: 200ms;
}

.klte-menu-button .button span:nth-child(2) {
  width: 100%;
}

.klte-menu-button .menu-button span:nth-child(3) {
  width: 60%;
  transition-delay: 400ms;
}

.klte-menu-button .menu-button span:nth-child(4) {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 3px;
  height: 0;
  transition: height 400ms;
}

/* toggled state */

.klte-menu-button.open .menu-button {
  transform: translate(-50%, -50%) rotate(45deg);
  transition-delay: 400ms;
}

.klte-menu-button.open .menu-button span:nth-child(1) {
  width: 0;
  transition: 200ms ease;
}

.klte-menu-button.open .menu-button span:nth-child(3) {
  width: 0;
  transition: 200ms ease;
  transition-delay: 150ms;
}

.klte-menu-button.open .menu-button span:nth-child(4) {
  height: 24px;
  transition: height 200ms ease;
  transition-delay: 200ms;
}

/*
*** Mini Cart Price ***/


/*
*** Search Form ***/


/*
*** Contact info ***/
.site-header ul.contact-info li i {
    margin-right: 8px;
}

/*
*** Search Style ***/ 
.search-btn svg{
	cursor: pointer;
}

.model-search-box {
	display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100px;
    z-index: -1;
    z-index: 99999;
}

.model-search-box::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    transition: all 0.3s ease;
     z-index: 0;
}

.model-search-box .search-modal__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    color: #222;
    text-align: center;
    z-index: 0;
}
.model-search-box .search-modal__inner .site-search {
    display: flex;
    align-items: center;
    width: calc(100% - 20px);
    max-width: 1140px;
    margin: 0 auto;
    gap: 20px;
}
.model-search-box .search-modal__inner .search-title {
    color: currentColor;
    font-size: 30px;
    font-weight: 500;
}
.model-search-box .site-search .search-form {
    width: 100%;
    background: transparent;
}
.model-search-box input[type="search"] {
    font-size: 100%;
    font-weight: 300;
    text-align: center;
    outline: none;
    height: 60px;
    padding: 10px;
}
.model-search-box p {
    color: var(--sk-theme-white-color);
}
.model-search-box .close {
    cursor: pointer;
    font-size: 27px;
    color: currentColor;
    order: 1;
    z-index: 1;
}
.model-search-box .close i {
    fill: currentColor;
}
.model-search-box .close:hover i{
  fill: currentColor;
}
.model-search-box .site-search button, 
.model-search-box .site-search select {
    color: rgb(175 173 173);
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    outline: none;
    height: 60px;
    padding: 0 30px;
    width: 100% !important;
}
.site-search .input-search-addon::after {
    background: rgb(175 173 173);
}

.model-search-box.full-screen {
    position: fixed;
    height: 100%;
    color: #fff;
}
.model-search-box.full-screen .site-search {
    color: #fff;
}
.model-search-box.style-1::before {
    background: rgba(0, 0, 0, 0.98);
}
.model-search-box.full-screen .search-modal__inner {
    background: transparent;
    transform: translateY(-15%);
}
.model-search-box.full-screen .site-search .search-form {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(116 116 116);
}
@media (max-width: 768px) {
    .model-search-box .input-search-addon {
		display: none;
	}
}

/*
*** offcanvas ***/
.site-offcanvas {
    position: fixed;
    top: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: none;
    color: #021523;
    background-color: #fff;
    z-index: 99999;
    padding: 4%;
}
.site-offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.site-offcanvas-header .site-brand {
  padding-left: 0.7em;
}
.site-offcanvas-header .site-brand img {
    height: auto;
}
.site-offcanvas-header .site-offcanvas-close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  width: 2.375rem;
  height: 2.375rem;
  cursor: pointer;
}

/*  mobile-menus */
.offcanvas-container {
    position: relative;
}
.mobile-menu {
	 overflow: hidden;
}
.mobile-menu ul {
    list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-menu li {
	 margin: 0;
	 border-bottom: 1px solid #f7f7f7;
	 font-size: var(--sk-body-font-size);
}
.mobile-menu ul li a {
     position: relative;
	 padding: 10px 20px;
	 text-decoration: none;
	 color: currentColor;
	 display: block;
	 transition: 350ms all;
}
.mobile-menu ul li a:hover {
	 color: var(--sk-secondary-color);
}
.mobile-menu ul li .menu-icon-image {
    display: inline-block;
    width: 20px;
    margin-right: 7px;
}

/* Barger menu */
.mobile-menu.barger-menu {
    position: relative;
}
.mobile-menu.barger-menu ul li {
    position: relative;
}
.mobile-menu.barger-menu ul li i.trigger {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    cursor: pointer;
    margin: 2px;
	transition: .3s ease-in;
}
.mobile-menu.barger-menu ul li i.trigger:before {
    position: absolute;
    top: 14px;
    left: 12%;
}
.mobile-menu.barger-menu ul ul.sub-menu {
    display: none;
    padding: 0;
    width: 100%;
}

/* Back menu */
.mobile-menu.back-menu ul {
	 transition: 350ms all;
	 display: block;
}
.mobile-menu.back-menu li a .navtrigger {
	 position: absolute;
	 right: 0;
	 top: 0;
	 bottom: 0;
	 width: 30px;
	 margin: 2px;
	 background: #f7f7f7;
	 border: 1px solid #f7f7f7;
}
.mobile-menu.back-menu li a .navtrigger:before {
	 content: "";
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 height: 8px;
	 width: 8px;
	 border-right: 1px solid currentColor;
	 border-bottom: 1px solid currentColor;
	 transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu.back-menu li .sub-menu {
	 position: absolute;
	 top: 0;
	 left: 100%;
	 width: 100%;
	 background: #fff;
	 height: 100%;
	 display: none;
	 transition: 350ms all;
	 z-index: 1;
}
.mobile-menu.back-menu li .sub-menu li {
	 font-size: 14px;
}
.mobile-menu.back-menu li .sub-menu .back-menu-row {
	 position: relative;
	 padding: 15px 20px;
	 padding-left: 50px;
	 background: var(--sk-primary-color);
	 font-size: 16px;
}
.mobile-menu.back-menu li .sub-menu .back-menu-row .back-trigger {
	 padding: 0;
	 position: absolute;
	 left: 0;
	 top: 0;
	 bottom: 0;
	 width: 40px;
	 display: block;
	 background: var(--sk-primary-color);
	 border: 1px solid var(--sk-primary-color);
}
.mobile-menu.back-menu li .sub-menu .back-menu-row .back-trigger:before {
	 content: "";
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 height: 8px;
	 width: 8px;
	 border-right: 1px solid #fff;;
	 border-bottom: 1px solid #fff;;
	 transform: translate(-50%, -50%) rotate(135deg);
}
 .mobile-menu.back-menu li .sub-menu .back-menu-row em {
	 font-style: normal;
	 color: #fff;
}
.mobile-menu.back-menu li.sub-menu-open > .sub-menu {
	 left: 0;
	 display: block;
}

/* Hover menu */
.mobile-menu.hover-menu .menu-item-has-children > a:after {
    content: "";
    position: absolute;
    top: 42%;
    right: 15px;
    height: 8px;
    width: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transition: .3s ease-in;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-menu.hover-menu .menu-item-has-children > a:hover:after {
	 -webkit-transform: rotate(-134deg);
     transform: rotate(-134deg);
}
.mobile-menu.hover-menu ul.sub-menu {
    display: none;
    transition: .3s ease-in;
}
.mobile-menu.hover-menu .menu-item-has-children:hover > ul.sub-menu {
    display: block;
}

/* 
*** Announce Bar Style ***/
.site-marquees {
    max-width: 450px;
}
.site-marquees .owl-nav button {
    position: absolute;
    top: 0;
    height: auto;
    background-color: transparent;
    color: currentColor;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
    border: none;
}
.site-marquees .owl-nav button.owl-prev {
  left: 0;
}
.site-marquees .owl-nav button.owl-next {
  right: 0;
}
.site-marquees .owl-item {
    text-align: center;
}


/* 
*** Announce Bar Style ***/
.klte-announce-bar{
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	z-index: 1;
	transition: transform 0.4s ease, opacity 0.4s ease;
}
.klte-announce-bar .announce-close{
	position: absolute;
	right: 20px;
	cursor: pointer;
	z-index: 10;
}

.klte-announce-bar.hide{
	transform: translateY(-100%);
	opacity: 0;
}
.klte-announce-bar .owl-nav button {
    position: absolute;
    top: 0;
    height: auto;
    background-color: transparent;
    color: currentColor;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
    border: none;
}
.klte-announce-bar .owl-nav button.owl-prev {
  left: 0;
}
.klte-announce-bar .owl-nav button.owl-next {
  right: 0;
}
.klte-announce-bar .klte-announce {
    max-width: 450px;
}
.klte-announce-bar .owl-item {
    text-align: center;
}


/*
***** header top ******/
.site-header .site-social ul li a {
    font-size: var(--sk-body-font-size);
    width: 1.325rem;
    height: 1.325rem;
}

.site-header .site-social ul li a {
    background-color: transparent;
}

/*
***** Header Main ******/
.site-header .header-main {
    display: flex;
    align-items: center;
}
.site-header .header-main, .site-header .header-main .header-addons {
    height: 110px;
    line-height: 110px;
}
.site-header .header-nav.sticky-header:not(.is-sticky) .site-menu.horizontal .menu>li {
	line-height: 60px;
}
.site-header .header-main .column.right .header-form.site-search {
    width: 100%;
    margin-right: 2.5rem;
}
.site-header .header-nav .column.right {
    margin-left: auto;
}
.site-header .site-menu.primary .menu > li > a, 
.site-header .header-main .header-addons {
   line-height: 2rem;
}
.site-header .header-form.site-search select,
.site-header .header-form.site-search input[type=search]{
    font-size: var(--sk-nav-font-size);
}

/*
***** header type1 ******/

/*
***** header type2 ******/
.site-header.header-type2 .header-main .header-wrapper {
    justify-content: space-between;
}
.site-header.header-type2 .header-main .column.right {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
}

/*
***** header type3 ******/
.site-header.header-type3 .header-content {
    width: 100%;
}
.site-header.header-type3 .header-content .header-wrapper {
    padding: 0;
    margin: 0;
}
.site-header.header-type3 .header-content .header-wrapper.nav-inner {
    position: static;
}
.site-header.header-type3 .header-top {
    background: transparent;
}

/*
***** header type4 ******/
.site-header.header-type4 .header-nav {
    border-top: 1px solid #eee;
}
@media (min-width: 1024px) {
    .site-header.header-type4 .header-form.site-search {
        width: 100%;
        max-width: 756px;
        margin: 0 20px;
    }
}
.site-header.header-type4 .header-nav .column.center {
  margin-left: auto;
  width: 63%;
}
.site-header.header-type4 .site-menu.horizontal .menu .mega-menu>.sub-menu {
    margin-top: -1.25rem;
}
.site-header.header-type4 .site-departments {
    min-width: 100%;
}
.site-header.header-type4 .site-departments .site-departments-wrapper>a {
    height: 60px;
    width: 230px;
}
/*
***** header type5 ******/
.site-header.header-type5 .header-nav {
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #eee;
}
.site-header.header-type5 .site-departments {
    min-width: 48%;
}
.site-header.header-type5 .site-menu.main-nav {
    min-width: 100%;
}

/*
***** header type6 ******/
.site-header.header-type7 .header-main .header-wrapper,
.site-header.header-type6 .header-nav .header-wrapper {
    justify-content: space-around;
}
.site-header.header-type6 .header-main .column.left {
    width: 25%;
}
.site-header.header-type6 .header-main .column.center {
    width: 46%;
}
.site-header.header-type6 .header-main .column.right {
    width: 25%;
}


/*
***** header type7 ******/
.site-header.header-type7 .header-main .header-wrapper,
.site-header.header-type7 .header-nav .header-wrapper {
    justify-content: space-around;
}
.site-header.header-type7 .header-main .column.left {
    width: 25%;
}
.site-header.header-type7 .header-main .column.center {
    width: 46%;
}
.site-header.header-type7 .header-main .column.right {
    width: 25%;
}

/*
***** header type8 ******/


/*
***** header mobile ******/
.site-header .header-mobile {
	padding-left: 20px;
    padding-right: 20px;
}
.site-header .header-mobile .column.center {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.site-header .header-mobile .column.right {
    margin-left: auto;
    gap: 2%;
}
.site-header .header-mobile .header-addons {
    height: 60px;
}
.site-header .header-addons.menu-toggle .header-addons-icon i {
    font-size: 1.75rem;
}
@media (max-width: 768px) {
    .site-header .header-mobile .header-btn {
        display: none;
    }
}
.site-header .header-mobile .site-search {
    max-width: 100%;
    width: 100%;
    margin: 15px 0;
}
.site-header .header-mobile .site-search .search-title {
    font-size: 20px;
    color: currentColor;
}


/*
***** Mobile Header******/
.site-header .header-mobile .site-search select {
    width: 135px !important;
}
.site-header .header-mobile .site-brand {
    margin: 0;
}
/*
***** Mobile type 2 ******/

/*
***** Mobile type 3 ******/
.site-header .header-main.header-mobile-type-3{
	justify-content: center;
}
.site-header .header-main.header-mobile-type-3 .site-brand {
    margin: 0;
}
.site-header .header-mobile-type-3 .site-menu.primary .menu > li > a,
.site-header .header-mobile-type-3 .wishlist-button,
.site-header .header-mobile-type-3 .cart-button
.site-header .header-mobile-type-3 .header-icons {
    height: auto;
}


/*
***** offcanvas zoom ******/
.site-offcanvas.slideUp {
    width: 100%;
	max-width: 100%;
}
.site-offcanvas.slideUp .site-scroll {
    text-align: center;
}
.site-offcanvas.slideUp .sidebar-menu.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
***** offcanvas slideDown ******/
.site-offcanvas.slideDown {
    width: 100%;
	max-width: 100%;
}
.site-offcanvas.slideDown .site-scroll {
    text-align: center;
}
.site-offcanvas.slideDown .sidebar-menu.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
***** offcanvas zoom ******/
.site-offcanvas.zoom {
    width: 100%;
	max-width: 100%;
}
.site-offcanvas.zoom .site-scroll {
    text-align: center;
}
.site-offcanvas.zoom .sidebar-menu.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*
***** header Logo ******/
.site-brand .default {
    gap: 10px;
}
.site-brand .default  .tagline {
    font-size: 12px;
    letter-spacing: 2px;
    line-height: normal;
    display: block;
}

/*
***** sticky header ******/
.site-header .sticky-visible {
    display: none
}
.site-header .sticky-header.is-sticky, .site-header .sticky-header.is-sticky .header-addons  {
    height: 100px;
	line-height: 100px;
}
.site-header .sticky-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	opacity: 1;
	transition: all 0.7s ease;
}
.site-header .sticky-header.is-hidden {
	opacity: 0;
	top: -100px;
	position: fixed;
	width: 100%;
}
.site-header .sticky-header.is-sticky .site-brand {
    margin-right: 20px;
}
.site-header .sticky-header.is-sticky .header-wrapper {
    justify-content: space-between;
}
.site-header .sticky-header.is-sticky .column {
    width: unset;
}
.site-header .sticky-header.is-sticky .column.right {
    margin-left: inherit;
}
.site-header .sticky-header.is-sticky + div {
    padding-top: 60px;
}
.site-header .sticky-header.is-sticky .default-logo,
.site-header .sticky-logo {
    display: none;
}
.site-header .sticky-header.is-sticky .sticky-logo {
    display: block;
}
.site-header .sticky-header.is-sticky .sticky-visible {
    display: inline-flex;
}

/*
***** Header transparent ******/
.transparent-header-enable .site-header .header-top {
    background: transparent;
    margin-top: 10px;
}
.transparent-header-enable .site-header {
    position: absolute;
    background: transparent;
    left: 0;
    top: 0;
    margin: 0 auto;
    width: 100%;
    border: none;
    width: 100%;
}
.transparent-header-enable .page-heading-wrap.layout-4 {
    padding-top: 150px;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .transparent-header-enable .page-heading-wrap.layout-4 {
		padding-top: 150px;
		min-height: 350px;
	}
}


/*
***** Popup ******/
.klte-popup {
    display: none;
}
.klte-popup .popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 14px 40px 0px #00000057;
    width: 80%;
    max-width: 800px;
    overflow: auto;
    max-height: 90%;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -30%);
    transition: all 1s ease;
}
.klte-popup.active .popup-container {
	opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.klte-popup button.close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    transition: 0.35s ease;
    padding: 0;
    cursor: pointer;
    line-height: normal;
    border: none;
    outline: none;
    background: none;
    font-size: 27px;
    color: #b0b0b0;
    border-radius: 100px;
    z-index: 10001;
}
.klte-popup button.close-button:hover {
    color: red;
}
.klte-popup .popup-content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
	margin: 20px;
}
.klte-popup .close-button.browsing {
	position: relative;
    cursor: pointer;
    color: #717171;
    font-size: 1rem;
    margin: 10px 0px 10px 0px;
}
.klte-popup .popup-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #000000c7;
    pointer-events: none;
    opacity: 0;
    transition: 200ms ease-in-out;
    z-index: 999;
} 
.klte-popup.active .popup-overlay {
    opacity: 1;
    pointer-events: all;
}

/*
***** Banner ******/
.inner-banner .inner-bannerdot {
    position: absolute;
    bottom: 10px;
    left: 20%;
    opacity: .9;
    animation: 10s linear infinite alternate move
}

@keyframes move {
    0% {
        transform: rotate(0) scaleX(0)
    }
    100% {
        transform: rotate(360deg) scaleX(1)
    }
}

.inner-banner .inner-bannerwave {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: .1
}

.inner-banner a.down-arrow-icon {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, .1);
    height: 3.75rem;
    width: 3.75rem;
    line-height: 3.75rem;
    text-align: center;
    border-radius: 50%;
    cursor: pointer
}

.inner-banner a.down-arrow-icon svg {
    animation: 1.5s linear infinite vibrate;
    fill: var(--sk-primary-color);
    width: 1rem;
    height: 1.75rem
}

@keyframes vibrate {
    0%,
    100%,
    50% {
        transform: translateY(0)
    }
    25% {
        transform: translateY(-5px)
    }
    75% {
        transform: translateY(5px)
    }
}

@media(min-width: 1024px) and (max-width:1199px) {
    .inner-banner {
        min-height: 300px
    }
}

/*
***** Breadcrumb ******/
.page-heading-wrap:not(.layout-4) .page-title {
	position: relative;
	font-size: 28px;
	line-height: 1.4em;
	text-transform: capitalize;
}

@media (max-width: 768px) {
	.page-heading-wrap.layout-4 .page-title {
		position: relative;
		font-size: 32px;
		line-height: 1.4em;
		text-transform: capitalize;
		text-align: center;
	}
}
.page-header .page-title img {
    border-radius: 50px;
    width: 36px;
}
.site-breadcrumb {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: normal;
    font-size: var(--sk-medium-font-size);
    gap: 5px;
}
.site-breadcrumb > span:last-child {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    opacity: 0.7;
}
.shop-page-header {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
    margin-top: 1.275rem;
}
.heading-content {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.3rem 0.2rem;
}

/*
***** Heading 1******/
.page-heading-wrap.layout-2 .page-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

/*
***** Heading 3******/

.page-heading-wrap.layout-4 {
    min-height: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9
}
.page-heading-wrap.layout-4:before {
    content: '';
    background-color: #756f6f;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.page-heading-wrap.layout-4 .page-header,
.page-heading-wrap.layout-4 .site-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--sk-body-font-size);
    flex-wrap: wrap;
}
.page-heading-wrap.layout-4 .site-breadcrumb {
    justify-content: center;
	font-size: var(--sk-body-font-size);
}

.page-heading-wrap.layout-4 .site-breadcrumb {
    margin-bottom: 15px;
}

/*
***** Author Bio ******/
.author-bio {
    margin-top: 40px;
}
.author-bio-wrapper {
    width: 100%;
    display: inline-block;
    padding-bottom: 40px;
    margin-top: 40px;
    border-bottom: 1px solid var(--sk-theme-border-color);
}
@media (min-width: 768px) {
    .author-bio-wrapper {
        display: flex;
        grid-row-gap: 20px;
        grid-column-gap: 40px;
    }
    .author-bio-wrapper .author-image {
        flex: 1;
    }
    .author-bio-wrapper .author-bio-content {
        flex: 3;
    }
}
.author-bio-wrapper .author-image img {
    height: auto;
    max-width: 100%;
}

.author-bio-wrapper .title {
    padding: 0;
    margin: 0;
    line-height: 30px;
}

.author-bio-wrapper .author-title {
    font-size: 30px;
    line-height: 44px;
    padding: 15px 0;
}
.author-bio-wrapper .author-socials {
    margin-bottom: 20px;
}
.author-bio-wrapper .author-description {
    margin: 0;
}
@media (max-width:768px) {
    .author-bio-wrapper {
        text-align: center;
        padding: 35px;
    }
    .author-bio-wrapper .author-image img {
        border-radius: 50%;
    }
    .author-bio-wrapper .author-bio-content {
        padding: 0;
        padding-top: 20px;
    }
    .author-bio-wrapper .social-links {
        justify-content: center;
    }
}

/*
***** Blog Pagination ******/
nav.klte-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 6px;
}

nav.klte-pagination a,
nav.klte-pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    min-height: 36px;
    padding: 0 10px;
    background: #f0f0f0;
    color: #333;
    font-weight: 500;
    border-radius: var(--sk-button-radius-size);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 36px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
nav.klte-pagination a:hover {
    color: var(--sk-theme-white-color);
    background-color: var(--sk-secondary-color);
    border-color: var(--sk-secondary-color);
    transform: translateY(-2px);
}
nav.klte-pagination span.current {
    color: var(--sk-theme-white-color);
    background-color: var(--sk-secondary-color);
    border-color: var(--sk-secondary-color);
    font-weight: 600;
    cursor: default;
    transform: none;
}
nav.klte-pagination span.dots {
    background: transparent;
    color: #999;
    cursor: default;
    box-shadow: none;
}
nav.klte-pagination .prev.disabled,
nav.klte-pagination .next.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none; /* prevents clicking */
}
@media (max-width: 480px) {
    nav.klte-pagination a,
    nav.klte-pagination span {
        min-width: 28px;
        min-height: 28px;
        line-height: 28px;
        font-size: 14px;
        padding: 0 6px;
    }
}



/*
***** Blog Content ******/

.post-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
}

.wrap-above {
    padding-top: 80px;
}
.klte-content-wrap .image {
    position: relative;
}

.klte-content-wrap .content {
    margin-top: 12px;
}
.klte-content-wrap .klte-post-title {
    font-weight: var(--sk-h3-font-weight);
    font-size: var(--sk-h3-font-size);
    line-height: var(--sk-h3-line-height);
    color: var(--sk-text-color);
    margin-bottom: 16px;
}

.klte-content-wrap .post-summary {
    font-weight: var(--sk-body-font-weight);
    font-size: var(--sk-body-font-size);
    line-height: var(--sk-body-line-height);
}

.klte-content-wrap .klte-post-item .klte-post-title a {
    background: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
    background: -webkit-linear-gradient(left, currentColor 0%, currentColor 100%);
    background: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 0 5%;
    background-repeat: no-repeat;
    background-position: left 100%;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    display: inline;
    color: currentColor;
}

.klte-content-wrap .klte-post-item:hover .klte-post-title a {
    background-size: 100% 5%;
}

.klte-post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.klte-post-meta.meta-below {
    margin-bottom: 30px;
}
.klte-post-meta.meta-below-medium {
    margin-bottom: 15px;
}
.klte-post-meta.meta-below-low {
    margin-bottom: 10px;
}
.klte-post-meta.meta-above {
    margin-top: 30px;
}
.klte-post-meta.meta-above-medium {
    margin-top: 15px;
}
.klte-post-meta.meta-above-low {
    margin-top: 10px;
}
.klte-post-meta .text-icon {
    gap: 5px;
}
.klte-post-meta .klte-meta-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
}
.klte-post-meta .meta-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: small;
	text-transform: capitalize;
    opacity: 0.95;
    color: currentColor;
}
.klte-post-meta .meta-item a {
    opacity: 0.95;
    color: currentColor;
}
.klte-post-meta .klte-meta-items .meta-item:not(:last-child)::after {
    content: "|";
    display: inline-block;
    padding: 0 0.2rem;
    color: rgba(0, 0, 0, .15);
    font-size: var(--sk-body-font-size) 16px;
}
.klte-post-meta .meta-item img {
    margin-right: 8px;
    border-radius: 50px;
    width: 32px;
    height: 32px;
}
.klte-post-meta .meta-item i {
    font-size: var(--sk-medium-font-size);
}
.klte-post-meta .author-title img {
    border-radius: 50%;
}
.klte-post-meta .author.meta-item strong {
    margin-bottom: -4px;
    color: currentColor;
}
.klte-post-meta .post-categories {
    display: flex;
	flex-wrap: wrap;
    padding: 0;
    margin: 0;
	list-style-type: none;
}

.klte-post-meta .post-categories li {
    margin-right: 5px;
    line-height: normal;
}

.klte-post-meta .post-categories li:after {
    content: ",";
}

.klte-post-meta .post-categories li:last-child::after{
    content: "";
}

.klte-post-meta .post-share {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 1rem;
}
.klte-post-meta .post-share ul {
    margin: 0;
	padding: 0;
	list-style-type: none;
}

.klte-content-wrap .share-text {
    display: flex;
    align-items: center;
}

.action-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    position: relative;
}

.action-button .klte-btn a {
    line-height: 36px;
    text-align: center;
    border-radius: var(--sk-button-radius-size);
    cursor: pointer;
    background: var(--sk-primary-color);
    color: var(--sk-theme-white-color);
    border: 1px solid var(--sk-primary-color);
    font-size: var(--sk-body-font-size);
    display: block;
    padding: 5px 24px;
    transition: .5s ease-in-out;
}

.action-button .klte-btn a:hover {
    background-color: var(--sk-secondary-color);
    border-color: var(--sk-secondary-color);
}

/* Post share */

.action-button .klte-post-share {
    position: relative;
}
.action-button .klte-post-share .share-links {
    list-style-type: none;
    display: block;
    cursor: pointer
}

.action-button .klte-post-share .back {
    bottom: 100%;
    left: 50%;
    position: absolute;
    white-space: nowrap;
    border-radius: var(--sk-border-radius-size);
    font-size: var(--sk-medium-font-size);
    padding: 5px;
    color: #fff;
    background-color: var(--sk-primary-color);
    content: attr(aria-label);
    line-height: 1.3;
    transition-delay: .1s;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .1);
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(0px);
    z-index: 9999;
}
.action-button .klte-post-share:hover .back.post-share {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}
.action-button .klte-post-share .back:before {
    content: "";
    position: absolute;
    left: calc(50% - 7px);
    bottom: 0;
    transition-delay: .1s;
    border: 7px solid transparent;
    border-top-color: var(--sk-primary-color);
    z-index: 9;
    margin-bottom: -13px;
    transition-delay: .1s;
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
}

/* Featured posted */
.klte-post-featured .posted-on {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}
.klte-post-featured .posted-on a {
    width: 100px;
    height: 90px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
	color: initial;
    text-align: center;
}
.klte-post-featured .date-day {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: normal;
    display: block;
    position: relative;
    margin-top: -15px;
}

/* Post Featured */
.klte-post-featured {
    position: relative;
    max-width: 100%
}

.klte-featured-cover {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 45%;
}
@media (max-width: 768px) {
    .klte-featured-cover {
		padding-bottom: 65%;
	}
}

.klte-featured-cover img {
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
    object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center
}

.klte-post-featured .klte-featured-cover img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.klte-post-featured .klte-featured-cover img {
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
}

.klte-post-featured .klte-featured-cover:hover img {
    opacity: 0.9;
}

.klte-standard-single .image img {
    max-width: 100%;
    width: 100%;
    height: auto
}


/*
***** Page header  ******/
.page-header .primary-image__media {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 20%;
}
.page-header .primary-image__image {
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
    object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
}
.page-header-content {
	padding-top: 40px;
    padding-bottom: 40px;
}
@media (max-width: 1024px) {
    .klte-content-wrap .page-title {
        font-size: 25px;
    }
}
.page-header-content .klte-categories {
    margin-bottom: 25px;
}
.page-header-content .klte-meta-items {
    display: flex;
    justify-content: center;
}
.page-header-content .klte-categories li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


/*
***** Blog Post ******/
.klte-block-content .klte-post-meta .meta-item.above {
	font-size: var(--sk-medium-font-size);
	margin-bottom: 15px;
}

/* post format */

.klte-content-wrap .post-format {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1
}

.klte-content-wrap .post-format-icon {
    position: relative;
    line-height: 45px;
    display: inline-block;
    text-align: center;
    padding: 15px;
    border: 1px solid var(--sk-primary-color);
    font-size: 30px;
    color: var(--sk-theme-white-color);
    background: var(--sk-primary-color);
    border-radius: 50%;
}

.klte-content-wrap .post-format-icon i {
    color: var(--sk-theme-white-color);
}

.klte-content-wrap .post-format-icon::after,
.klte-content-wrap .post-format-icon::before {
    display: block;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    content: ""
}

.klte-content-wrap .video .post-format-icon::before,
.klte-content-wrap .audio .post-format-icon::before {
    background: rgb(129 129 129 / 50%);
    -webkit-animation: 2s ease-in-out infinite ripple-1;
    animation: 2s ease-in-out infinite ripple-1
}

.klte-content-wrap .video .post-format-icon::after,
.klte-content-wrap .audio .post-format-icon::after {
    background: rgb(135 135 135 / 30%);
    -webkit-animation: 2s ease-in-out .5s infinite ripple-2;
    animation: 2s ease-in-out .5s infinite ripple-2
}

@keyframes ripple-1 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0
    }
}

@keyframes ripple-2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1.9);
        transform: scale(1.9);
        opacity: 0
    }
}

/*
***** Blog Post  ******/
.klte-block-content {
	grid-template-columns: repeat(1, 1fr);
	display: grid;
	gap: 30px;
}
@media (min-width: 768px) {
	.block-columns1 {
        grid-template-columns: repeat(1, 1fr);
        gap: 55px;
    }
    .block-columns2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .block-columns3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .block-columns4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}
.klte-block-content .post-content {
	padding: 20px;
}
.klte-block-content .klte-post-title {
    font-size: 24px;
}
@media (min-width: 768px) {
	.klte-block-content .post-content {
		padding: 25px 30px;
	}
	.block-columns1 .klte-post-title {
		font-size: 32px;
	}
	.block-columns2 .klte-featured-cover {
		padding-bottom: 65%;
	}
    .block-columns2 .klte-post-title {
        font-size: 24px;
    }
	.block-columns2 .klte-post-meta .meta-item {
		font-size: 80%;
	}
	.block-columns3 .klte-featured-cover {
		padding-bottom: 65%;
	}
	.block-columns3 .klte-post-title {
        font-size: 20px;
    }
	.block-columns3 .klte-post-meta .meta-item {
		font-size: 75%;
	}
	.block-columns4 .klte-featured-cover {
		padding-bottom: 65%;
	}
	.block-columns4 .klte-post-title {
        font-size: 18px;
    }
	.block-columns4 .klte-post-meta .meta-item {
		font-size: 75%;
	}
}
@media (min-width: 768px) {
	.klte-grid.over .post-content {
		position: relative;
        background: #f7f4f0;
        display: block;
        overflow: hidden;
        border-radius: var(--sk-border-radius-size);
    }
	.block-columns1.klte-grid.over .post-content {
        margin-left: 30px;
        margin-right: 30px;
        margin-top: -100px;
		padding: 40px 50px;
    }
	.block-columns2.klte-grid.over .post-content {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -70px;
		padding: 25px;
    }
	.block-columns3.klte-grid.over .post-content {
        margin-left: 18px;
        margin-right: 18px;
        margin-top: -60px;
		padding: 25px;
    }
	.block-columns4.klte-grid.over .post-content {
        margin-left: 18px;
        margin-right: 18px;
        margin-top: -60px;
		padding: 25px;
    }
}
@media (min-width: 768px) {
	.klte-list {
		gap: 40px;
	}
	.klte-list .klte-post-item {
		position: relative;
	}
	.klte-list .klte-post-item {
		display: flex;
		align-items: center;
	}
	.klte-list .klte-post-featured {
		width: 45%;
	}
	.klte-list .post-content {
		padding: 30px 40px;
		width: 55%;
	}
	.klte-list .post-content.left {
		padding: 0 20px 0 0;
	}
	.klte-list .post-content.right {
		padding: 0 0 0 20px;
	}
	.klte-list .klte-featured-cover {
		padding-bottom: 80%;
		margin: 0;
	}
	.klte-list .klte-post-title {
		font-size: 22px;
		margin-bottom: 7px;
	}
	.klte-list .content {
		margin-top: 7px;
	}
	.klte-list .action-button {
		padding-bottom: 0;
	}
	.klte-list .action-button .klte-btn a {
		line-height: 30px;
		font-size: var(--sk-medium-font-size);
	}
	.klte-list .action-button .klte-post-share .front span {
		font-size: var(--sk-small-font-size);
	}
	.klte-list.right .klte-post-item .klte-post-featured {
		order: 2;
	}
}

/*
***** Single Page ******/
.klte-breadcrumb-wrap .site-breadcrumb {
	padding: 2rem 0;
}
.klte-content-wrap .klte-details-video,
.klte-content-wrap .page-header {
    position: relative
}

.klte-content-wrap .entry-content {
    margin-bottom: 50px;
    width: 100%;
    clear: both;
    overflow: hidden;
}
.klte-content-wrap .entry-content a {
    color: var(--sk-link-color);
}

.klte-content-wrap .klte-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-radius: var(--sk-border-radius-size);
    -webkit-border-radius: var(--sk-border-radius-size);
    -moz-border-radius: var(--sk-border-radius-size);
    margin-top: 20px;
    margin-bottom: 50px;
}
.klte-content-wrap .klte-tags-wrap .tags-title {
    margin: 0;
}
.klte-content-wrap .tags-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.klte-content-wrap .tags-list li {
    display: inline-block;
}

.klte-content-wrap .tags-list li a {
    font-size: var(--sk-medium-font-size);
    font-weight: 400;
    color: var(--sk-body-color);
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: var(--sk-border-radius-size);
    text-align: center;
    transition: .42s ease-in-out;
}

.klte-content-wrap .tags-list li a:hover {
    color: var(--sk-theme-white-color);
	background: var(--sk-secondary-color);
}

.klte-content-wrap .dropcap:first-child:first-letter {
    float: left;
    font-size: 440%;
    line-height: 90%;
    margin: 7px 10px 0 0;
    color: var(--sk-title-color);
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border: 1px solid;
    border-radius: var(--sk-border-radius-size);
}

.klte-content-wrap .entry-content p {
    margin-bottom: 28px;
    line-height: 28px;
}

.klte-content-wrap .post-video-cover {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0
}

.klte-content-wrap .post-video-cover iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.klte-content-wrap .klte-post-navigation-inner {
    height: 60px
}

.klte-content-wrap .klte-post-navigation-inner .prev-post {
    border-left: 0;
    float: left;
    height: 60px;
    width: 50%;
    position: relative
}

.klte-content-wrap .klte-post-navigation-inner .next-post {
    border-left: 1px solid #f4f4f4;
    float: left;
    height: 60px;
    width: 50%;
    position: relative;
    text-align: right
}

.klte-content-wrap .next-featured-cover img,
.klte-content-wrap .prev-featured-cover img {
    bottom: 0;
    width: 60px;
    object-fit: cover;
    object-position: center;
    border-style: none;
    margin: 0;
    max-width: 100%;
    height: 100%;
    top: 0
}

.klte-content-wrap .next-featured-cover,
.klte-content-wrap .prev-featured-cover {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 60px;
    border-radius: 3px
}

.klte-content-wrap .prev-featured-cover img {
    position: absolute;
    left: 0
}

.klte-content-wrap .next-featured-cover img {
    position: absolute;
    right: 0
}

/*
***** Post navigation ******/

.klte-post-navigation {
    border-bottom: 1px solid var(--sk-theme-border-color);
    padding: 50px 0;
}
.klte-post-navigation-inner .prev {
    position: absolute;
    width: calc(100% - 60px);
    left: 80px;
    top: 0
}

.klte-post-navigation-inner .next {
    width: calc(100% - 60px);
    position: absolute;
    right: 80px;
    top: 0
}

.klte-post-navigation-inner .next-post-text,
.klte-post-navigation-inner .prev-post-text {
    color: #555;
    display: block;
    transition: .3s
}

.klte-post-navigation-inner .next-post-text:hover,
.klte-post-navigation-inner .prev-post-text:hover {
    color: #333;
    transition: .3s
}

.klte-post-navigation-inner .prev-post-text i {
    color: #333;
    font-size: var(--sk-body-font-size);
    margin-right: 10px
}

.klte-post-navigation-inner .next-post-text i {
    color: #333;
    font-size: var(--sk-body-font-size);
    margin-left: 10px
}

.klte-post-navigation-inner .name-post {
    color: #333;
    font-weight: 500;
    text-transform: capitalize;
    transition: .3s;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: var(--sk-body-font-size);
}

.klte-post-navigation-inner .next-post .name-post {
    padding-left: 20px;
    margin-left: 10px
}

.klte-post-navigation-inner .prev-post .name-post {
    padding-right: 20px
}

.klte-post-navigation-inner .name-post:hover {
    color: var(--sk-primary-color);
    transition: .3s
}

@media (max-width:768px) {
    .klte-content-wrap .klte-post-navigation-inner .prev {
        width: calc(100% - 46px);
        left: 56px
    }
    .klte-content-wrap .klte-post-navigation-inner .next {
        width: calc(100% - 46px);
        right: 56px
    }
    .klte-content-wrap .next-featured-cover,
    .klte-content-wrap .prev-featured-cover {
        padding-bottom: 50px
    }
    .klte-content-wrap .next-featured-cover img,
    .klte-content-wrap .prev-featured-cover img {
        width: 50px
    }
    .klte-content-wrap .klte-post-navigation-inner .next-post-text,
    .klte-content-wrap .klte-post-navigation-inner .prev-post-text {
        font-size: .8em
    }
    .klte-content-wrap .klte-related-post-inner .klte-post-meta {
        display: none
    }
    .klte-content-wrap .klte-related-post-inner .post-content {
        padding: 15px 0 30px
    }
}

/* Comments */
.klte-comments {
    margin-top: 40px;
}
.klte-comments .heading {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 35px;
}
.klte-comments .klte-comment-img {
    width: 100px;
}

.klte-comments .comment-reply-title {
    padding-bottom: 10px;
}

.klte-comments .comment-list ul,
.klte-comments .comment-list ol {
    list-style-type: none;
}

.klte-comments .comment-respond {
    border-radius: var(--sk-border-radius-size);
    -webkit-border-radius: var(--sk-border-radius-size);
    -moz-border-radius: var(--sk-border-radius-size);
}

.klte-comments .comment-list,
.klte-comments .comment-list .comment-box,
.klte-comments .comment-list>ol {
    padding: 0;
    margin: 0;
}

.klte-comments .comment-list .klte-comment-details>ul {
    padding: 0
}

.klte-comments .comment-list>li .comment-reply {
    margin: 0;
    padding: 0 0 0 10%
}

.klte-comments .comment-list .comment-item {
    border-radius: var(--sk-border-radius-size);
    border: 1px solid #eee;
    padding: 25px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 35px
}

.klte-comments .comment-list .comment-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 15px
}

.klte-comments .comment-list .comment-meta h5 {
    margin-right: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0
}

.klte-comments .comment-list .comment-meta span {
    font-weight: 500;
}

.klte-comments .comment-list .content p {
    font-weight: 400;
}

.klte-comments .comment-list .content .reply {
    font-weight: 500;
    border: none;
    outline: 0;
    background-color: var(--sk-theme-white-color);
    transition: .35s;
    padding: 0
}

.klte-comments .comment-list .content .reply .bi {
    margin-left: 5px
}

.klte-comments .form-group {
    margin-bottom: 0.75rem;
}

.klte-comments .form-inner input, 
.klte-comments .form-inner textarea {
    border: none;
    border-bottom: 1px solid var(--sk-theme-border-color);
    border-radius: var(--sk-button-radius-size);
    padding: 15px 20px;
    width: 100%;
    transition: .5s;
    opacity: .85;
}

.klte-comments .form-inner input::placeholder,
.klte-comments .form-inner textarea::placeholder {
    font-size: var(--sk-body-font-size);
    font-weight: 400;
}

.klte-comments .form-inner input:focus,
.klte-comments .form-inner textarea:focus {
    border: 1px solid var(--sk-primary-color)
}

.klte-comments .btn--submit {
    color: var(--sk-theme-white-color);
    font-size: 18px;
    font-weight: 600;
    border: none;
    outline: 0;
    padding: 15px 35px;
    transition: .5s
}

.klte-comments .btn--submit:hover {
    background-color: var(--sk-text-color);
    color: var(--sk-theme-white-color)
}

@media(max-width:768px) {
    .klte-comments .heading {
        font-size: 22px;
    }
    .klte-comments .comment-list .comment-item {
        flex-wrap: wrap
    }
    .klte-comments .comment-list .comment-meta {
        gap: 5px;
        flex-wrap: wrap
    }
}

/* Single Post */

.single-post .klte-content-wrap {
    padding-top: 80px;
}
.single-post .entry-title {
    text-transform: capitalize;
    margin-bottom: 20px;
    color: currentColor;
}

.single-post .responsive-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
	margin-bottom: 40px;
}

.single-post .audio-play {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 1;
    display: block;
    padding: 5px 15px;
}

.single-post .audio-play audio {
    width: 100%;
}

.single-post .site-breadcrumb {
    justify-content: left;
    align-items: center;
}
.single-post .klte-post-meta {
    text-align: left
}

.single-post .klte-post-meta .post-categories a {
    font-size: var(--sk-medium-font-size);
	color: currentColor;
}
.single-post .entry-content .klte-meta-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 1024px) {
    .single-post .single-page-content .main-content {
        padding-right: 40px;
    }
}

@media (max-width:768px) {
    .dropcap:first-child:first-letter {
        font-size: 300%;
    }
    .single-post .single-page-header.main-content {
        padding: 20px 10px 0 10px;
    }
	.single-post .single-page-header .entry-title,
    .single-post .klte-the-post .klte-post-modern .entry-title {
        font-size: 30px;
        line-height: 1.4;
    }
    .single-post .klte-content-wrap .klte-post-meta {
        margin-bottom: 20px;
    }
    .single-post .klte-post-meta .post-categories {
        margin-bottom: 20px;
    }
}

/* single-page template 1*/

.klte-single-style1 .klte-breadcrumb {
    background: #f0f6ff;
}
.klte-single-style1 .entry-title {
    color: var(--sk-title-color);
}

/* single-page template 2*/

.klte-single-style2 .single-page-header {
    position: relative;
    padding-top: 80px;
    padding-bottom: 50px;
}
.klte-single-style2 .single-page-header-content {
    position: relative;
    z-index: 2;
}
.klte-single-style2 .single-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.klte-single-style2 .single-bg-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(34, 35, 40, .5);
    z-index: -1;
}
.klte-single-style2 .post-overlay {
    padding: 4%;
    background: #fff;
}



/* single-page template 3*/
.klte-single-style3 .single-page-header {
    position: relative;
    padding-top: 80px;
    padding-bottom: 50px;
}

.klte-single-style3 .single-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.klte-single-style3 .single-bg-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(34, 35, 40, .5);
    z-index: -1;
}
.klte-single-style3 .klte-post-meta .klte-meta-items {
    justify-content: center;
}



/* single-page template 4*/
.klte-single-style4 .single-page-header {
    position: relative;
    padding-top: 80px;
    padding-bottom: 50px;
}
.klte-single-style4 .single-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.klte-single-style4 .single-bg-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(34, 35, 40, .5);
    z-index: -1;
}
.klte-single-style4.klte-post-meta .klte-meta-items {
    justify-content: center;
}


/* single-page template 5*/
.klte-single-style5 .single-page-header {
    position: relative;
    padding-top: 80px;
    padding-bottom: 50px;
}

.klte-single-style5 .single-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.klte-single-style5 .single-bg-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(34, 35, 40, .5);
    z-index: -1;
}

.klte-single-style5 .klte-post-meta .klte-meta-items {
    justify-content: center;
}

.klte-single-style5 .post-overlay {
    position: relative;
    width: 100%;
}

.transparent-header-enable .single-page-header {
    padding-top: 200px;
}



/*
***** Related Post ******/
.klte-related-post {
    padding-top: 40px;
}
.cats-related {
    padding-top: 80px;
}
.klte-related-wrap {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    grid-row-gap: 30px;
    grid-column-gap: 30px;
}
@media (max-width: 1024px) {
	.klte-related-wrap {
		grid-template-columns: repeat(3, 1fr);
		grid-row-gap: 30px;
		grid-column-gap: 30px;
	}
}
@media (max-width: 768px) {
    .klte-related-wrap {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 20px;
		grid-column-gap: 20px;
	}
}
.klte-related-wrap .klte-post-item {
    background: #F7F4F0;
}
.klte-related-post-inner .klte-featured-cover {
    padding-bottom: 56%;
}

.klte-related-post-inner .klte-post-title {
    margin: 0;
    font-size: var(--sk-body-font-size);
    font-weight: 600;
    line-height: 1.3em;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.klte-related-post-inner .klte-post-terms {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgb(0 0 0 / 53%);
    color: white;
    padding: 0 10px;
    font-size: var(--sk-small-font-size);
}

.klte-related-post-inner .klte-post-time {
    font-size: var(--sk-small-font-size);
}

.klte-related-post-inner .post-content {
    padding: 20px 25px;
}

.klte-related-post-inner .klte-post-meta {
    margin: 4px 0;
    padding: 0;
}
.klte-related-post-inner .klte-post-meta .meta-item {
    font-size: 70%;
}
.klte-related-post-inner .klte-post-meta .post-categories a {
    font-size: var(--sk-small-font-size);
    color: var(--sk-body-color);
    background: transparent;
    padding: 0;
}


/*
***** 404 ******/

.error-404 {
    font-size: 16vw;
    font-weight: bold;
    display: inline-block;
    line-height: normal;
    position: relative;
    color: var(--sk-primary-color);
    margin-bottom: 0;
    opacity: 40%;
}

/*
***** Widgets ******/

.widget_block ul li {
    padding: 5px 0;
    line-height: 1.5rem;
}
.wp-block-search__button {
    margin: 0;
    padding: 0 1.25rem;
    border-color: var(--sk-primary-color);
}
.shop-content .content-wrapper.sidebar-right .main-sidebar::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: var(--sk-theme-border-color);
  left: 0.75rem;
  top: -1.875rem;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .shop-content .content-wrapper.sidebar-right .main-sidebar .widget-body {
    padding-left: 1.875rem;
  }
}
.shop-content .content-wrapper.sidebar-left .main-sidebar::before {
  position: absolute;
  content: "";
  width: 1px;
  background-color: var(--sk-theme-border-color);
  right: 0.75rem;
  top: -1.875rem;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .shop-content .content-wrapper.sidebar-left .main-sidebar .widget-body {
    padding-right: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .left-sidebar .main-sidebar:first-child {
	order: 10;
  }
}

.shop-content .main-sidebar {
    position: relative;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
}

/*
*** Widgets service nav ***/

.service-nav {
	position: relative;
}

.service-nav ul {
	position: relative;
	padding: 0;
	margin: 0;
}

.service-nav ul li {
	position: relative;
	display: block;
	margin: 0;
}

.service-nav ul li a {
	position: relative;
	display: block;
	font-size: var(--sk-body-font-size);
	line-height: 26px;
	font-weight: 500;
	padding: 10px 0px 10px 10px;
	border-bottom: 1px solid #e6ebed;
	z-index: 1;
}

.service-nav ul li:last-child a {
	border-bottom: none;
	color: var(--sk-body-color);
}

.service-nav ul li:hover a, .service-nav ul li.current-menu-item a, .service-nav ul li.current-menu-item a:hover:before {
	color: #fff;
}

.service-nav ul li a:before {
	position: absolute;
	content: '';
	width: calc(100% - 59px);
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	z-index: -1;
	transition: all 500ms ease;
	background: var(--sk-primary-color);
}

.service-nav ul li a:after {
	position: absolute;
	content: '';
	width: 30px;
	height: 100%;
	top: 0px;
	right: 30px;
	opacity: 0;
	z-index: -1;
	transition: all 500ms ease;
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 0% 0%);
	background: var(--sk-primary-color);
}

.service-nav ul li a:hover:before, .service-nav ul li.current-menu-item a:before, .service-nav ul li.current-menu-item a:hover:before, .service-nav ul li a:hover:after, .service-nav ul li.current-menu-item a:after, .service-nav ul li.current-menu-item a:hover:after {
	opacity: 1;
}

.service-nav .download-widget a:before {
	display: none;
}

.service-nav .download-widget a:after {
	display: none;
}

.service-nav .download-widget a:before {
	display: none;
}


/*
*** widgets ***/
.widget {
    position: relative;
    display: inline-block;
    width: 100%;
}
.sidebar .widget:last-child {
    margin: 0;
}
.widget .klte-post-title {
    font-size: var(--sk-body-font-size);
}
.widget .klte-post-featured {
    position: relative;
    max-width: 100%
}
.widget .wp-block-search__label,
.widget .wp-block-heading, 
.widget .widget-title {
    font-size: var(--sk-widget-title-font-size);
    padding: 0.8015rem 0;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--sk-theme-border-color);
    line-height: 20px;
    color: var(--sk-title-color);
}
.widget .social-icon svg {    
    display: block;
    height: 1em;
    position: relative;
    width: 1em;
}
.header-widget .widget,
.header-widget .widget p {
    padding: 0;
    margin: 0;
}

.main-sidebar .widget ol,
.main-sidebar .widget ul {
    list-style: none;
    padding-left: 0;
	margin: 0;
}

.widget .widget-checkbox-list ul li {
    flex-direction: column;
}

.widget .widget-checkbox-list ul.children {
    padding-left: 1.75rem;
    margin-top: 0.5rem;
}

.widget ol,
.widget ul {
    list-style: none;
    padding-left: 0;
}

.widget ul.children,
.widget ul.sub-menu {
    padding-left: 15px;
    margin-top: 0.5rem;
    width: 100%;
}

.widget ol li a, 
.widget ul li a {
    text-decoration: none;
    display: inline-block;
    padding: 3px 0;
    line-break: auto;
	color: currentColor;
}

/*
*** Widget posts ****/
.widget .klte-post-item .klte-post-title {
    line-height: 1.3em;
    margin-bottom: 5px;
}
.widget .klte-post-item .klte-post-meta .meta-item {
    font-size: small;
}
.widget .klte-grid {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    gap: 25px;
}
.widget .klte-grid .post-content {
	position: relative;
    padding: 20px 20px;
    background: #ffffff;
}
.widget .klte-grid .klte-featured-cover {
    padding-bottom: 55%;
}
.widget .klte-grid .klte-post-meta .meta-item {
    font-size: 80%;
}

.widget .klte-grid.over {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    gap: 25px;
}
.widget .klte-grid.over .post-content {
	position: relative;
    padding: 20px 20px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -50px;
	background: white;
}
.widget .klte-grid.over .klte-featured-cover {
    padding-bottom: 55%;
}
.widget .klte-grid.over .klte-post-title {
    margin-bottom: 5px;
}
.widget .klte-grid.over .klte-post-meta .meta-item {
    font-size: 80%;
}
.widget .klte-list {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    gap: 20px;
}
.widget .klte-list .klte-post-item {
        display: flex;
        align-items: center;
    }
.widget .klte-list .klte-post-featured {
	width: 30%;
	margin-right: 20px;
}
.widget .klte-list .klte-featured-cover {
    padding-bottom: 85%;
}
.widget .klte-list .post-content {
	width: 70%;
    padding: 0;
}

/*
*** Widget nav ****/


/*
*** Socials ****/

.widget .social-items {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    gap: 2%;
}
.widget .social-item {
    position: relative;
    flex: 0 0 32%;
    max-width: 32%
}
.widget .social-item {
    -khtml-transition: all .5s cubic-bezier(.32, .74, .57, 1);
    transition: .5s cubic-bezier(.32, .74, .57, 1)
}
.widget .social-item a {
    text-decoration: none;
    display: inline-block;
    color: var(--sk-body-color);
    width: 100%;
}
.widget .social-inner:hover {
    -webkit-box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
    -khtml-box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
    -ms-box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
    -o-box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
    box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
    -webkit-transform: translate3d(0, -3px, 0);
    -khtml-transform: translate3d(0, -3px, 0);
    -moz-transform: translate3d(0, -3px, 0);
    -ms-transform: translate3d(0, -3px, 0);
    -o-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0)
}
.widget .social-inner {
    font-size: var(--sk-body-font-size);
    display: flex;
    align-items: center;
    flex: 1;
    flex-direction: column;
    margin: 0px;
    padding: 15px;
    -khtml-transition: all .5s cubic-bezier(.32, .74, .57, 1);
    transition: .5s cubic-bezier(.32, .74, .57, 1);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid;
    -webkit-box-shadow: 0 0 10px #00000012;
    -khtml-box-shadow: 0 0 10px #00000012;
    -moz-box-shadow: 0 0 10px #00000012;
    -ms-box-shadow: 0 0 10px #00000012;
    -o-box-shadow: 0 0 10px #00000012;
    box-shadow: 0 0 10px #00000012;
}
.widget .social-inner .social-icon {
    font-size: 1.5em;
    line-height: 1
}
.widget .social-inner .social-icon i {
    font-size: inherit;
    line-height: 1;
    text-shadow: 3px 3px 0 #ffffff10, 4px 2px 0 #00000020
}
.widget .social-inner .social-label {
    font-size: var(--sk-small-font-size);
    line-height: 1.3;
    margin-top: 7px;
    white-space: nowrap
}
.widget .social-inner .text-count {
    font-size: var(--sk-small-font-size);
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: normal;
    color: #666;
    -webkit-transition: .5s cubic-bezier(.32, .74, .57, 1);
    -khtml-transition: all .5s cubic-bezier(.32, .74, .57, 1);
    -moz-transition: .5s cubic-bezier(.32, .74, .57, 1);
    -ms-transition: .5s cubic-bezier(.32, .74, .57, 1);
    -o-transition: .5s cubic-bezier(.32, .74, .57, 1);
    transition: .5s cubic-bezier(.32, .74, .57, 1)
}


/*
*** Widget Posts ****/

.widget .posts-widget {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget .posts-widget .post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.25rem;
}
.widget .posts-widget .post .entry-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5rem;
          flex: 0 0 5rem;
  max-width: 5rem;
  margin-right: 0.9375rem;
}
.widget .posts-widget .post .entry-title {
  font-size: var(--sk-medium-font-size);
}

/*
*** Widget Contact Info ****/

.widget .contact-us ul li {
    display: flex;
    align-items: center;
    position: relative;
    line-height: 22px;
    margin-bottom: 10px;
}
.widget .contact-us ul li:first-child {
    align-items: flex-start;
}
.widget .contact-us ul li:last-child {
    margin-bottom: 0;
}
.widget .contact-us ul li i {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--sk-body-color);
    flex: 0 0 20px;
    font-size: var(--sk-body-font-size);
    line-height: 30px;
    border-radius: 80px;
    margin-right: 15px;
}
.widget .contact-us ul li a {
    color: inherit;
    align-self: center;
}
.widget .contact-us ul li a:hover {
    color: var(--sk-body-color);
    text-decoration: none;
}

/*
*** Widget calendar ****/

#my-calendar a,
#my_calender span {
    padding: 6px 0;
    width: 100% !important
}

.ajax-calendar {
    position: relative;
    padding: 1px
}

#ajax_ac_widget th {
    background: var(--sk-primary-color);
    color: #fff;
    font-weight: 400;
    padding: 5px 1px;
    text-align: center;
    font-size: var(--sk-body-font-size);
}

#ajax_ac_widget td {
    border: 1px solid #ccc;
    text-align: center
}

#my-calendar a {
    background: #2cb2bc;
    color: #fff;
    display: block
}

#my_calender span {
    display: block
}

#today a,
#today span {
    background: var(--sk-primary-color) !important;
    color: #fff
}

#ajax_ac_widget .select_ca #my_year {
    float: right;
    padding: 2px 10px;
    font-size: var(--sk-body-font-size);
    border: none;
    width: 49%;
    background: var(--sk-primary-color);
    color: #fff
}

#ajax_ac_widget .select_ca #my_month {
    float: left;
    padding: 2px 10px;
    font-size: var(--sk-body-font-size);
    border: none;
    width: 49%;
    background: var(--sk-primary-color);
    color: #fff
}

/*
*** footer scrollup ****/
.scrollup {
    position: fixed;
    bottom: 25px;
    width: 45px;
    height: 45px;
    background: var(--sk-primary-color);
    color: #fff;
    border-radius: var(--sk-button-radius-size);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.scrollup i {
	font-size: 25px;
    color: inherit;
    line-height: 38px
}

/* Position */
.scroll-right { right: 25px; }
.scroll-left  { left: 25px; }

/* Active */
.scrollup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scrollup:hover {
    background: var(--sk-secondary-color);
}

/*
*** Site footer ****/

.site-footer {
  position: relative;
  background-color: #f7f8f9;
}
.site-footer {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9
} 
.site-footer .footer-main:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.site-footer .widgets.klte-items {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}
@media screen and (min-width: 768px) {
    .site-footer .widgets .klte-item {
        width: 15%;
    }
    .site-footer .widgets .klte-item:nth-child(1) {
        width: 25%;
    }
    .site-footer .widgets .klte-item:nth-child(5) {
        width: 18%;
    }
}
@media screen and (max-width: 768px) {
    .site-footer .widgets .klte-item {
        width: 100%;
        text-align: center;
    }
}
.site-footer .widgets-wrap {
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
    .site-footer .widgets-wrap {
        padding-top: 3.525rem;
    }
}
.site-footer .widgets .widget {
  margin-bottom: 2rem;
}
.site-footer .widgets .widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer .widgets .widget ul li{
  margin-top: 4px;
}
.site-footer .widgets .widget ul li a {
  text-decoration: none;
  -webkit-transition: 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
  transition: 0.1s cubic-bezier(0.28, 0.12, 0.22, 1);
}
.site-footer .widgets .widget ul li a:hover {
  color: var(--sk-secondary-color);
  text-decoration: underline;
}


/*
*** Widget note ****/

.site-footer .footer-note .footer__note {
    text-align: center;
}

/*
*** Copyright ****/

.site-footer .copyright-wrap {
    border-top: 1px solid var(--sk-theme-border-color);
}
.site-footer .copyright-wrap .container {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .site-footer .copyright-wrap .container {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .site-footer .copyright-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.site-footer .copyright-items p,
.site-footer .copyright-item p {
    margin: 0;
}
.site-footer .copyright-item {
    text-align: center;
}

.site-footer .copyright-items .klte-nav-menu ul {
    display: flex;
	flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    gap: 12px;
}
.site-footer .copyright-items .klte-nav-menu ul li a {
    width: 1.875rem;
    height: 1.875rem;
    color: #ffffff;
}
.site-footer .copyright-items .klte-nav-menu ul li:hover a {
    opacity: 0.9;
}
.site-footer .copyright-items .klte-social {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap:15px;
}
.site-footer .copyright-items .klte-social .social-links {
	display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.site-footer .copyright-items .klte-social .social-links li {
    border: none;
}
.site-footer .copyright-items .klte-social .social-links li:hover a {
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .site-footer .copyright-items .copyright {
        text-align: center;
    }
    .site-footer .copyright-items .klte-social ul {
        justify-content: center;
    }
    .site-footer .copyright-items .klte-social {
      justify-content: center;
    }
}


/* ----------
Animations */

.fadeSpinIn{
  animation: fadeSpinIn ease 1.5s;
  animation-fill-mode:forwards;
}

.page-content {
  animation: fadeInPage ease-in 1s;
  animation-fill-mode:forwards;
}


@keyframes fadeInPage {
  0% {
    opacity:0;
  }
  35% {
    opacity:0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeSpinIn {
  0% {
    opacity:0;
    transform:  translate(0px,-250px)  rotate(-30deg) ;
  }
  40% {
    opacity:1;
    transform:  translate(0px,0px)  rotate(0deg) ;
  }
  100% {
    opacity: 0;
  }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0);
        opacity: 0;
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Editor visible override */
.is-visible {
    opacity: 1;
}

























.klte-animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes klteFlash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes kltePulseIn {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(0.99, 0.99, 0.99);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-in, .klte-animated.klte-pulse {
	-webkit-animation-name: kltePulseIn;
    animation-name: kltePulseIn;
}

@keyframes kltePulseIn1 {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(0.98, 0.98, 0.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-in-1, .klte-animated.klte-pulse1 {
    animation-name: kltePulseIn1;
}

@keyframes kltePulseIn2 {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(0.96, 0.96, 0.96);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-in-2, .klte-animated.klte-pulse2 {
    animation-name: kltePulseIn2;
}

@keyframes kltePulseIn3 {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(0.94, 0.94, 0.94);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-in-3, .klte-animated.klte-pulse3 {
    animation-name: kltePulseIn3;
}

@keyframes kltePulseIn4 {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-in-4, .klte-animated.klte-pulse4 {
    animation-name: kltePulseIn4;
}

@keyframes kltePulseOut1 {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-out-1, .klte-animated.klte-pulse-out-1 {
    animation-name: kltePulseOut1;
}

@keyframes kltePulseOut2 {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-out-2, .klte-animated.klte-pulse-out-2 {
    animation-name: kltePulseOut2;
}

@keyframes kltePulseOut3 {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.15, 1.15, 1.15);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-out-3, .klte-animated.klte-pulse-out-3 {
    animation-name: kltePulseOut3;
}

@keyframes kltePulseOut4 {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.2, 1.2, 1.2);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-pulse-out-4, .klte-animated.klte-pulse-out-4 {
    animation-name: kltePulseOut4;
}

@keyframes klteShake {
    from, to {
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translate3d(-50px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        opacity: 1;
        transform: translate3d(50px, 0, 0);
    }
}

.klte-anim-shake, .klte-animated.klte-shake {
    animation-name: klteShake;
}

@keyframes klteBounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-bounce-in, .klte-animated.klte-bounce-in {
    animation-name: klteBounceIn;
}

@keyframes klteFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.klte-anim-fade-in, .klte-animated.klte-fade-in {
    animation-name: klteFadeIn;
}

@keyframes klteFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -27px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-down, .klte-animated.klte-fade-in-down {
    animation-name: klteFadeInDown;
}

@keyframes klteFadeInDown1 {
    from {
        opacity: 0;
        transform: translate3d(0, -50px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-down-1, .klte-animated.klte-fade-in-down-1 {
    animation-name: klteFadeInDown1;
}

@keyframes klteFadeInDown2 {
    from {
        opacity: 0;
        transform: translate3d(0, -75px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-down-2, .klte-animated.klte-fade-in-down-2 {
    animation-name: klteFadeInDown2;
}

@keyframes klteFadeInFromUpDownCustom {
    from {
        opacity: 0;
        transform: translate3d(var(--klte-anim-fade-in-from-x), var(--klte-anim-fade-in-from-y), 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-custom, .klte-animated.klte-fade-in-custom {
    animation-name: klteFadeInFromUpDownCustom;
}

@keyframes klteFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 27px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-up, .klte-animated.klte-fade-in-up {
    animation-name: klteFadeInUp;
}

@keyframes klteFadeInUp1 {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-up-1, .klte-animated.klte-fade-in-up-1 {
    animation-name: klteFadeInUp1;
}

@keyframes klteFadeInUp2 {
    from {
        opacity: 0;
        transform: translate3d(0, 75px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-up-2, .klte-animated.klte-fade-in-up-2 {
    animation-name: klteFadeInUp2;
}

@keyframes klteFadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-27px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-left, .klte-animated.klte-fade-in-left {
    animation-name: klteFadeInLeft;
}

@keyframes klteFadeInLeft1 {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-left-1, .klte-animated.klte-fade-in-left-1 {
    animation-name: klteFadeInLeft1;
}

@keyframes klteFadeInLeft2 {
    from {
        opacity: 0;
        transform: translate3d(-75px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-left-2, .klte-animated.klte-fade-in-left-2 {
    animation-name: klteFadeInLeft2;
}

@keyframes klteFadeInRight {
    from {
        opacity: 0;
        transform: translate3d(27px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-right, .klte-animated.klte-fade-in-right {
    animation-name: klteFadeInRight;
}

@keyframes klteFadeInRight1 {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-right-1, .klte-animated.klte-fade-in-right-1 {
    animation-name: klteFadeInRight1;
}

@keyframes klteFadeInRight2 {
    from {
        opacity: 0;
        transform: translate3d(75px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-fade-in-right-2, .klte-animated.klte-fade-in-right-2 {
    animation-name: klteFadeInRight2;
}

@keyframes klteRotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in, .klte-animated.klte-rotate-in {
    animation-name: klteRotateIn;
}

@keyframes klteRotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -25deg);
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-down-left, .klte-animated.klte-rotate-in-down-left {
    animation-name: klteRotateInDownLeft;
}

@keyframes klteRotateInDownLeft1 {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -35deg);
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-down-left-1, .klte-animated.klte-rotate-in-down-left-1 {
    animation-name: klteRotateInDownLeft1;
}

@keyframes klteRotateInDownLeft2 {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-down-left-2, .klte-animated.klte-rotate-in-down-left-2 {
    animation-name: klteRotateInDownLeft2;
}

@keyframes klteRotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 25deg);
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-down-right, .klte-animated.klte-rotate-in-down-right {
    animation-name: klteRotateInDownRight;
}

@keyframes klteRotateInDownRight1 {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 35deg);
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-down-right-1, .klte-animated.klte-rotate-in-down-right-1 {
    animation-name: klteRotateInDownRight1;
}

@keyframes klteRotateInDownRight2 {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-down-right-2, .klte-animated.klte-rotate-in-down-right-2 {
    animation-name: klteRotateInDownRight2;
}

@keyframes klteRotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 25deg);
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-up-left, .klte-animated.klte-rotate-in-up-left {
    animation-name: klteRotateInUpLeft;
}

@keyframes klteRotateInUpLeft1 {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 35deg);
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-up-left-1, .klte-animated.klte-rotate-in-up-left-1 {
    animation-name: klteRotateInUpLeft1;
}

@keyframes klteRotateInUpLeft2 {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-up-left-2, .klte-animated.klte-rotate-in-up-left-2 {
    animation-name: klteRotateInUpLeft2;
}

@keyframes klteRotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -35deg);
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-up-right, .klte-animated.klte-rotate-in-up-right {
    animation-name: klteRotateInUpRight;
}

@keyframes klteRotateInUpRight1 {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -60deg);
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-up-right-1, .klte-animated.klte-rotate-in-up-right-1 {
    animation-name: klteRotateInUpRight1;
}

@keyframes klteRotateInUpRight2 {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-in-up-right-2, .klte-animated.klte-rotate-in-up-right-2 {
    animation-name: klteRotateInUpRight2;
}

@keyframes klteRotateCustom {
    from {
        transform-origin: var(--klte-anim-rotate-origin);
        transform: rotate3d(0, 0, 1, var(--klte-anim-rotate-deg));
    }

    to {
        transform-origin: var(--klte-anim-rotate-origin);
        transform: none;
        opacity: 1;
    }
}

.klte-anim-rotate-custom, .klte-animated.klte-rotate-custom {
    animation-name: klteRotateCustom;
}

@keyframes klteFlipInUp {
    from {
        transform: rotateX(-40deg) translateY(40px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-up, .klte-animated.klte-flip-in-up {
    animation-name: klteFlipInUp;
}

@keyframes klteFlipInUp1 {
    from {
        transform: rotateX(-40deg) translateY(80px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-up-1, .klte-animated.klte-flip-in-up-1 {
    animation-name: klteFlipInUp1;
}

@keyframes klteFlipInUp2 {
    from {
        transform: rotateX(-40deg) translateY(120px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-up-2, .klte-animated.klte-flip-in-up-2 {
    animation-name: klteFlipInUp2;
}

@keyframes klteFlipInDown {
    from {
        transform: rotateX(40deg) translateY(-40px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-down, .klte-animated.klte-flip-in-down {
    animation-name: klteFlipInDown;
}

@keyframes klteFlipInDown1 {
    from {
        transform: rotateX(40deg) translateY(-80px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-down-1, .klte-animated.klte-flip-in-down-1 {
    animation-name: klteFlipInDown1;
}

@keyframes klteFlipInDown2 {
    from {
        transform: rotateX(40deg) translateY(-120px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-down-2, .klte-animated.klte-flip-in-down-2 {
    animation-name: klteFlipInDown2;
}

@keyframes klteFlipInLeft {
    from {
        transform: rotateY(-40deg) translateX(40px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-left, .klte-animated.klte-flip-in-left {
    animation-name: klteFlipInLeft;
}

@keyframes klteFlipInLeft1 {
    from {
        transform: rotateY(-40deg) translateX(80px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-left-1, .klte-animated.klte-flip-in-left-1 {
    animation-name: klteFlipInLeft1;
}

@keyframes klteFlipInLeft2 {
    from {
        transform: rotateY(-40deg) translateX(140px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-left-2, .klte-animated.klte-flip-in-left-2 {
    animation-name: klteFlipInLeft2;
}

@keyframes klteFlipInLeft3 {
    from {
        transform: rotateY(-40deg) translateX(200px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-left-3, .klte-animated.klte-flip-in-left-3 {
    animation-name: klteFlipInLeft3;
}

@keyframes klteFlipInRight {
    from {
        transform: rotateY(40deg) translateX(-40px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-right, .klte-animated.klte-flip-in-right {
    animation-name: klteFlipInRight;
}

@keyframes klteFlipInRight1 {
    from {
        transform: rotateY(40deg) translateX(-80px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-right-1, .klte-animated.klte-flip-in-right-1 {
    animation-name: klteFlipInRight1;
}

@keyframes klteFlipInRight2 {
    from {
        transform: rotateY(40deg) translateX(-140px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-right-2, .klte-animated.klte-flip-in-right-2 {
    animation-name: klteFlipInRight2;
}

@keyframes klteFlipInRight3 {
    from {
        transform: rotateY(40deg) translateX(-200px);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-flip-in-right-3, .klte-animated.klte-flip-in-right-3 {
    animation-name: klteFlipInRight3;
}

@keyframes klteZoomIn {
    from {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50% {
        opacity: 1;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-zoom-in, .klte-animated.klte-zoom-in {
    animation-name: klteZoomIn;
}

@keyframes klteZoomIn1 {
    from {
        transform: scale3d(0.8, 0.8, 0.8);
    }

    50% {
        opacity: 1;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-zoom-in-1, .klte-animated.klte-zoom-in-1 {
    animation-name: klteZoomIn1;
}

@keyframes klteZoomIn2 {
    from {
        transform: scale3d(0.7, 0.7, 0.7);
    }

    50% {
        opacity: 1;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-zoom-in-2, .klte-animated.klte-zoom-in-2 {
    animation-name: klteZoomIn2;
}

@keyframes klteZoomIn3 {
    from {
        transform: scale3d(0.6, 0.6, 0.6);
    }

    50% {
        opacity: 1;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-zoom-in-3, .klte-animated.klte-zoom-in-3 {
    animation-name: klteZoomIn3;
}

@keyframes klteScaleUp {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-scale-up, .klte-animated.klte-scale-up {
    animation-name: klteScaleUp;
}

@keyframes klteScaleUp1 {
    from {
        transform: scale(0.7, 0.7);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-scale-up-1, .klte-animated.klte-scale-up-1 {
    animation-name: klteScaleUp1;
}

@keyframes klteScaleUp2 {
    from {
        transform: scale(0.6, 0.6);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-scale-up-2, .klte-animated.klte-scale-up-2 {
    animation-name: klteScaleUp2;
}

@keyframes klteScaleDown {
    from {
        transform: scale(1.1, 1.1);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-scale-down, .klte-animated.klte-scale-down {
    animation-name: klteScaleDown;
}

@keyframes klteScaleDown1 {
    from {
        transform: scale(1.3, 1.3);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-scale-down-1, .klte-animated.klte-scale-down-1 {
    animation-name: klteScaleDown1;
}

@keyframes klteScaleDown2 {
    from {
        transform: scale(1.4, 1.4);
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-scale-down-2, .klte-animated.klte-scale-down-2 {
    animation-name: klteScaleDown2;
}

@keyframes klteScaleCustom {
    from {
        transform: scale(var(--klte-scale-custom), var(--klte-scale-custom));
    }

    to {
        transform: none;
        opacity: 1;
    }
}

.klte-anim-scale-custom, .klte-animated.klte-scale-custom {
    animation-name: klteScaleCustom;
}

@keyframes klteJackInTheBox {
    from {
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }

    50% {
        transform: rotate(-10deg);
    }

    70% {
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-jack-in-box, .klte-animated.klte-jack-in-box {
    animation-name: klteJackInTheBox;
}

/** General Animations */
@keyframes klte-scrolldown {
    0% {
        transform: translate(-50%, -60%);
    }

    100% {
        transform: translate(-50%, -20%);
    }
}

@keyframes klte-header-animation {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: none;
    }
}

@keyframes klteSlideFromRight {
    from {
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-slide-from-right, .klte-animated.klte-slide-from-right > .elementor-widget-container, .klte-animated.klte-slide-from-right > .elementor-column-wrap {
    animation-name: klteSlideFromRight;
}

@keyframes klteSlideFromLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-slide-from-left, .klte-animated.klte-slide-from-left > .elementor-widget-container, .klte-animated.klte-slide-from-left > .elementor-column-wrap {
    animation-name: klteSlideFromLeft;
}

@keyframes klteSlideFromTop {
    from {
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-slide-from-top, .klte-animated.klte-slide-from-top > .elementor-widget-container, .klte-animated.klte-slide-from-top > .elementor-column-wrap {
    animation-name: klteSlideFromTop;
}

@keyframes klteSlideFromBot {
    from {
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.klte-anim-slide-from-bot, .klte-animated.klte-slide-from-bot > .elementor-widget-container, .klte-animated.klte-slide-from-bot > .elementor-column-wrap {
    animation-name: klteSlideFromBot;
}

@keyframes klteMaskFromTop {
    from {
        clip-path: inset(0 0 100% 0);
        opacity: 1;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.klte-anim-mask-from-top, .klte-animated.klte-mask-from-top {
    animation-name: klteMaskFromTop;
}

@keyframes klteMaskFromBot {
    from {
        clip-path: inset(100% 0 0 0);
        opacity: 1;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.klte-anim-mask-from-bot, .klte-animated.klte-mask-from-bot {
    animation-name: klteMaskFromBot;
}

@keyframes klteMaskFromRight {
    from {
        clip-path: inset(0 0 0 100%);
        opacity: 1;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.klte-anim-mask-from-right, .klte-animated.klte-mask-from-right {
    animation-name: klteMaskFromRight;
}

@keyframes klteMaskFromLeft {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 1;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.klte-anim-mask-from-left, .klte-animated.klte-mask-from-left {
    animation-name: klteMaskFromLeft;
}

@keyframes klteLoadingWave {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 66% 0;
    }
}